1<?php
2/**
3 * english language file for structtasks plugin
4 *
5 * @author Chris MacMackin <cmacmackin@gmail.com>
6 */
7
8// keys need to match the config setting name
9$lang['schema'] = 'Name of Struct schema continaing task data; must contain fields "duedate" (of type Date or DateTime, not multi-value), "assignees" (of type User or Mail, may be multi-value), and "status" (of type Text or Dropdown, not multi-value). If this setting is empty then the plugin is treated as deactivated.';
10$lang['reminder'] = 'Send email reminders to assignees this number of days before a task is due to be completed.';
11$lang['overdue_reminder'] = 'Email reminders to assignees every day for tasks that are overdue';
12$lang['completed'] = '(Case-insensitive) regular expression applied to the "status" column of the schema to determine when a task is completed or otherwise no longer active.';
13