56 lines
2.4 KiB
PHP
56 lines
2.4 KiB
PHP
<?php
|
||
$lang->cron->common = 'Cron';
|
||
$lang->cron->index = 'Accueil Cron';
|
||
$lang->cron->list = 'Tâches';
|
||
$lang->cron->create = 'Ajouter';
|
||
$lang->cron->createAction = 'Ajouter Cron';
|
||
$lang->cron->edit = 'Editer Cron';
|
||
$lang->cron->delete = 'Supprimer Cron';
|
||
$lang->cron->toggle = 'Activer/Désactiver';
|
||
$lang->cron->turnon = 'On/Off';
|
||
$lang->cron->openProcess = 'Restart';
|
||
$lang->cron->restart = 'Restart Cron';
|
||
|
||
$lang->cron->m = 'Minute';
|
||
$lang->cron->h = 'Heure';
|
||
$lang->cron->dom = 'Jour';
|
||
$lang->cron->mon = 'Mois';
|
||
$lang->cron->dow = 'Semaine';
|
||
$lang->cron->command = 'Commande';
|
||
$lang->cron->status = 'Statut';
|
||
$lang->cron->type = 'Type';
|
||
$lang->cron->remark = 'Commentaire';
|
||
$lang->cron->lastTime = 'Dernier 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';
|
||
$lang->cron->typeList['system'] = 'Command Système';
|
||
|
||
$lang->cron->toggleList['start'] = 'Activer';
|
||
$lang->cron->toggleList['stop'] = 'Désactiver';
|
||
|
||
$lang->cron->confirmDelete = 'Voulez-vous supprimer ce cron ?';
|
||
$lang->cron->confirmTurnon = 'Voulez-vous arrêter le cron ?';
|
||
$lang->cron->introduction = <<<EOD
|
||
<p>Cron sert à accomplire des actions récurrentes, telles que la mise à jour des graphiques d'atterrissage, des sauvegardes, etc.</p>
|
||
<p>Les fonctionnalités du Cron ont besoin d'être plus testées, le Cron est donc désactivé par défaut.</p>
|
||
EOD;
|
||
$lang->cron->confirmOpen = <<<EOD
|
||
<p>Voulez-vous le mettre en route ?<a href="%s" target='hiddenwin'><strong>Activer les Tâches Programmées<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 is changed, it means the Cron is running.';
|
||
$lang->cron->notice->errorRule = '"%s" invalide';
|