Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.

Differences Between: [Versions 311 and 400] [Versions 311 and 401] [Versions 311 and 402] [Versions 311 and 403] [Versions 39 and 311]

   1  <?php
   2  // This file is part of Moodle - http://moodle.org/
   3  //
   4  // Moodle is free software: you can redistribute it and/or modify
   5  // it under the terms of the GNU General Public License as published by
   6  // the Free Software Foundation, either version 3 of the License, or
   7  // (at your option) any later version.
   8  //
   9  // Moodle is distributed in the hope that it will be useful,
  10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12  // GNU General Public License for more details.
  13  //
  14  // You should have received a copy of the GNU General Public License
  15  // along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
  16  
  17  /**
  18   * Strings for component 'tool_task', language 'en'
  19   *
  20   * @package    tool_task
  21   * @copyright  2014 Damyon Wiese
  22   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  $string['adhoc'] = 'Ad hoc';
  26  $string['adhoctaskid'] = 'Ad hoc task ID: {$a}';
  27  $string['adhoctasks'] = 'Ad hoc tasks';
  28  $string['asap'] = 'ASAP';
  29  $string['adhocempty'] = 'Ad hoc task queue is empty';
  30  $string['adhocqueuesize'] = 'Ad hoc task queue has {$a} tasks';
  31  $string['adhocqueueold'] = 'Oldest task is {$a->age} which is more than {$a->max}';
  32  $string['backtoscheduledtasks'] = 'Back to scheduled tasks';
  33  $string['blocking'] = 'Blocking';
  34  $string['cannotfindthepathtothecli'] = 'Cannot find the path to the PHP CLI executable so task execution aborted. Set the \'Path to PHP CLI\' setting in Site administration / Server / System paths.';
  35  $string['checkadhocqueue'] = 'Ad hoc task queue';
  36  $string['checkcronrunning'] = 'Cron running';
  37  $string['checkmaxfaildelay'] = 'Tasks max fail delay';
  38  $string['classname'] = 'Class name';
  39  $string['clearfaildelay_confirm'] = 'Are you sure you want to clear the fail delay for task \'{$a}\'? After clearing the delay, the task will run according to its normal schedule.';
  40  $string['component'] = 'Component';
  41  $string['corecomponent'] = 'Core';
  42  $string['crondisabled'] = 'Cron is disabled. No new tasks will be started. The system will not operate properly until it is enabled again.';
  43  $string['cronok'] = 'Cron is running frequently';
  44  $string['default'] = 'Default';
  45  $string['defaultx'] = 'Default: {$a}';
  46  $string['disabled'] = 'Disabled';
  47  $string['disabled_help'] = 'Disabled scheduled tasks are not executed from cron, however they can still be executed manually via the CLI tool.';
  48  $string['edittaskschedule'] = 'Edit task schedule: {$a}';
  49  $string['enablerunnow'] = 'Allow \'Run now\' for scheduled tasks';
  50  $string['enablerunnow_desc'] = 'Allows administrators to run a single scheduled task immediately, rather than waiting for it to run as scheduled. The feature requires \'Path to PHP CLI\' (pathtophp) to be set in System paths. The task runs on the web server, so you may wish to disable this feature to avoid potential performance issues.';
  51  $string['faildelay'] = 'Fail delay';
  52  $string['fromcomponent'] = 'From component: {$a}';
  53  $string['hostname'] = 'Host name';
  54  $string['lastruntime'] = 'Last run';
  55  $string['lastupdated'] = 'Last updated {$a}.';
  56  $string['nextruntime'] = 'Next run';
  57  $string['pid'] = 'PID';
  58  $string['plugindisabled'] = 'Plugin disabled';
  59  $string['pluginname'] = 'Scheduled task configuration';
  60  $string['resettasktodefaults'] = 'Reset task schedule to defaults';
  61  $string['resettasktodefaults_help'] = 'This will discard any local changes and revert the schedule for this task back to its original settings.';
  62  $string['runningtasks'] = 'Tasks running now';
  63  $string['runnow'] = 'Run now';
  64  $string['runagain'] = 'Run again';
  65  $string['runnow_confirm'] = 'Are you sure you want to run this task \'{$a}\' now? The task will run on the web server and may take some time to complete.';
  66  $string['runpattern'] = 'Run pattern';
  67  $string['scheduled'] = 'Scheduled';
  68  $string['scheduledtasks'] = 'Scheduled tasks';
  69  $string['scheduledtaskchangesdisabled'] = 'Modifications to the list of scheduled tasks have been prevented in Moodle configuration';
  70  $string['started'] = 'Started';
  71  $string['taskdisabled'] = 'Task disabled';
  72  $string['taskfailures'] = '{$a} task(s) failing';
  73  $string['tasklogs'] = 'Task logs';
  74  $string['tasknofailures'] = 'There are no tasks failing';
  75  $string['taskscheduleday'] = 'Day';
  76  $string['taskscheduleday_help'] = 'Day of month field for task schedule. The field uses the same format as unix cron. Some examples are:
  77  
  78  * <strong>*</strong> Every day
  79  * <strong>*/2</strong> Every 2nd day
  80  * <strong>1</strong> The first of every month
  81  * <strong>1,15</strong> The first and fifteenth of every month';
  82  $string['taskscheduledayofweek'] = 'Day of week';
  83  $string['taskscheduledayofweek_help'] = 'Day of week field for task schedule. The field uses the same format as unix cron. Some examples are:
  84  
  85  * <strong>*</strong> Every day
  86  * <strong>0</strong> Every Sunday
  87  * <strong>6</strong> Every Saturday
  88  * <strong>1,5</strong> Every Monday and Friday';
  89  $string['taskschedulehour'] = 'Hour';
  90  $string['taskschedulehour_help'] = 'Hour field for task schedule. The field uses the same format as unix cron. Some examples are:
  91  
  92  * <strong>*</strong> Every hour
  93  * <strong>*/2</strong> Every 2 hours
  94  * <strong>2-10</strong> Every hour from 2am until 10am (inclusive)
  95  * <strong>2,6,9</strong> 2am, 6am and 9am';
  96  $string['taskscheduleminute'] = 'Minute';
  97  $string['taskscheduleminute_help'] = 'Minute field for task schedule. The field uses the same format as unix cron. Some examples are:
  98  
  99  * <strong>*</strong> Every minute
 100  * <strong>*/5</strong> Every 5 minutes
 101  * <strong>2-10</strong> Every minute between 2 and 10 past the hour (inclusive)
 102  * <strong>2,6,9</strong> 2, 6 and 9 minutes past the hour';
 103  $string['taskschedulemonth'] = 'Month';
 104  $string['taskschedulemonth_help'] = 'Month field for task schedule. The field uses the same format as unix cron. Some examples are:
 105  
 106  * <strong>*</strong> Every month
 107  * <strong>*/2</strong> Every second month
 108  * <strong>1</strong> Every January
 109  * <strong>1,5</strong> Every January and May';
 110  $string['privacy:metadata'] = 'The Scheduled task configuration plugin does not store any personal data.';
 111  $string['viewlogs'] = 'View logs for {$a}';