Files
EasySoft-ZenTaoPMS/module/cron/lang/fr.php
2019-10-16 17:28:10 +08:00

56 lines
2.4 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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 = 'NoteIf 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';