| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- /*
- *
- * OGP - Open Game Panel
- * Copyright (C) 2008 - 2017 The OGP Development Team
- *
- * http://www.opengamepanel.org/
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- *
- */
- define('minute', "Minute");
- define('hour', "Heure");
- define('day', "Jour");
- define('month', "Mois");
- define('day_of_the_week', "J/Sem");
- define('action', "Action");
- define('steam_auto_update', "Mise à Jour Steam Automatique");
- define('stop', "Stop");
- define('start', "Start");
- define('restart', "Restart");
- define('command', "Commande");
- define('add', "Ajouter");
- define('remove', "Effacer");
- define('now', "Maintenant");
- define('schedule_new_job', "Planifier une action");
- define('scheduled_jobs', "Actions planifiées");
- define('there_are_no_scheduled_jobs', "Pas d'actions planifiées");
- define('cron_events', "Logs des Événements Planifiés");
- define('refresh_interval', "Intervalle d'actualisation");
- define('cron_no_servers_tied_to_account', "Il n'y a pas de serveur assigné sur votre compte.");
- define('cron_admin_link_display_text', "Administration Cron (Tous les Serveurs)");
- define('cron_admin_no_ogp_servers_to_display', "Il n'y a pas de serveur de jeu configuré dans OGP.");
- ?>
|