59 lines
2.4 KiB
PHP
59 lines
2.4 KiB
PHP
<?php
|
||
$lang->cron->common = 'Cron';
|
||
$lang->cron->id = 'ID';
|
||
$lang->cron->buildin = 'Build In';
|
||
$lang->cron->index = 'Cron Home';
|
||
$lang->cron->list = 'Task';
|
||
$lang->cron->create = 'Add';
|
||
$lang->cron->createAction = 'Add Cron';
|
||
$lang->cron->edit = 'Edit Cron';
|
||
$lang->cron->delete = 'Delete Cron';
|
||
$lang->cron->toggle = 'Activate/Deactivate';
|
||
$lang->cron->turnon = 'On/Off';
|
||
$lang->cron->openProcess = 'Restart';
|
||
$lang->cron->restart = 'Restart Cron';
|
||
|
||
$lang->cron->m = 'Minute';
|
||
$lang->cron->h = 'Hour';
|
||
$lang->cron->dom = 'Day';
|
||
$lang->cron->mon = 'Month';
|
||
$lang->cron->dow = 'Week';
|
||
$lang->cron->command = 'Command';
|
||
$lang->cron->status = 'Status';
|
||
$lang->cron->type = 'Type';
|
||
$lang->cron->remark = 'Comment';
|
||
$lang->cron->lastTime = 'Last Run';
|
||
|
||
$lang->cron->turnonList['1'] = 'On';
|
||
$lang->cron->turnonList['0'] = 'Off';
|
||
|
||
$lang->cron->statusList['normal'] = 'Normal';
|
||
$lang->cron->statusList['running'] = 'Running';
|
||
$lang->cron->statusList['stop'] = 'Stop';
|
||
|
||
$lang->cron->typeList['zentao'] = 'Self Call';
|
||
global $config;
|
||
if($config->features->cronSystemCall) $lang->cron->typeList['system'] = 'System Command';
|
||
|
||
$lang->cron->toggleList['start'] = 'Activate';
|
||
$lang->cron->toggleList['stop'] = 'Deactivate';
|
||
|
||
$lang->cron->confirmDelete = 'Do you want to delete the cron?';
|
||
$lang->cron->confirmTurnon = 'Do you want to turn off the cron?';
|
||
$lang->cron->introduction = <<<EOD
|
||
<p>Cron is set to do scheduled actions, such as update burndown chart, backup, etc.</p>
|
||
<p>Features of Cron need to be improved, so it is turned off by default.</p>
|
||
EOD;
|
||
$lang->cron->confirmOpen = <<<EOD
|
||
<p>Do you want to turn it on?<a href="%s" target='hiddenwin'><strong>Turn On Cron<strong></a></p>
|
||
EOD;
|
||
|
||
$lang->cron->notice = new stdclass();
|
||
$lang->cron->notice->m = 'Range:0-59,"*" means the numbers within the range, "/" means "per", "-" means the range.';
|
||
$lang->cron->notice->h = 'Range:0-23';
|
||
$lang->cron->notice->dom = 'Range:1-31';
|
||
$lang->cron->notice->mon = 'Range:1-12';
|
||
$lang->cron->notice->dow = 'Range:0-6';
|
||
$lang->cron->notice->help = 'Note:If the server is restarted or the Cron is not working, it means the Cron has stopped. You can restart it by clicking 【Restart】 or refresh this page. If the last execution time changes, it means the Cron is running.';
|
||
$lang->cron->notice->errorRule = '"%s" is not valid';
|