File: /www/wwwroot/oa.sanjiangapp.com/app/sys/cron/lang/en.php
<?php
if(!isset($lang->cron)) $lang->cron = new stdclass();
$lang->cron->common = 'Cron';
$lang->cron->index = 'Home';
$lang->cron->list = 'List';
$lang->cron->create = 'Create';
$lang->cron->edit = 'Edit';
$lang->cron->delete = 'Delete';
$lang->cron->toggle = 'Enable/Disable';
$lang->cron->turnon = 'Open/Close';
$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 = 'Remark';
$lang->cron->lastTime = 'Last run';
$lang->cron->turnonList['1'] = 'Open';
$lang->cron->turnonList['0'] = 'Close';
$lang->cron->statusList['normal'] = 'Normal';
$lang->cron->statusList['running'] = 'Running';
$lang->cron->statusList['stop'] = 'Stop';
$lang->cron->typeList['zdoo'] = 'Self call';
$lang->cron->typeList['system'] = 'System command';
$lang->cron->toggleList['start'] = 'Enable';
$lang->cron->toggleList['stop'] = 'Disable';
$lang->cron->confirmDelete = 'Do you want to delete the task?';
$lang->cron->confirmTurnon = 'Do you want to trun off the cron?';
$lang->cron->introduction = <<<EOD
<p>Cron such as compute burn and backup.</p>
<p>Cron features is in optimization, so this feature is not ON by default</p>
EOD;
$lang->cron->confirmOpen = <<<EOD
<p>Do you want to set this feature ON? <a href="%s">Open timing task</a></p>
EOD;
$lang->cron->notice = new stdclass();
$lang->cron->notice->m = 'Range : 0-59,"*" means the range of numbers, "/" means "Every", "-" means digit 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';