From ba85ddd7729cec6fa7207d121994d60c271abd86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20M?= Date: Thu, 20 Jul 2017 18:20:45 +0200 Subject: [PATCH] FRENCH translation for phpBB Countdown extension --- language/fr/acp_countdown.php | 67 ++++++++++++++++++++++++++++++ language/fr/common.php | 48 +++++++++++++++++++++ language/fr/info_acp_countdown.php | 46 ++++++++++++++++++++ 3 files changed, 161 insertions(+) create mode 100644 language/fr/acp_countdown.php create mode 100644 language/fr/common.php create mode 100644 language/fr/info_acp_countdown.php diff --git a/language/fr/acp_countdown.php b/language/fr/acp_countdown.php new file mode 100644 index 0000000..c0e2d29 --- /dev/null +++ b/language/fr/acp_countdown.php @@ -0,0 +1,67 @@ + + * @license GNU General Public License, version 2 (GPL-2.0) + * + */ + +/** + * DO NOT CHANGE + */ +if (!defined('IN_PHPBB')) +{ + exit; +} + +if (empty($lang) || !is_array($lang)) +{ + $lang = array(); +} + +// DEVELOPERS PLEASE NOTE +// +// All language files should use UTF-8 as their encoding and the files must not contain a BOM. +// +// Placeholders can now contain order information, e.g. instead of +// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows +// translators to re-order the output of data while ensuring it remains correct +// +// You do not need this where single placeholders are used, e.g. 'Message %d' is fine +// equally where a string contains only two placeholders which are used to wrap text +// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine +// +// Some characters you may want to copy&paste: +// ’ « » “ ” … +// + +$lang = array_merge($lang, array( + 'COUNTDOWN_TITLE' => 'Compte à rebours', + 'COUNT_DOWNCOUNT' => 'Décroissant', + 'COUNT_UPCOUNT' => 'Croissant', + 'COUNTDOWN_CONFIG_SET' => 'Paramètres', + 'COUNTDOWN_CONFIG_SAVED' => 'Les paramètres du compte à rebours ont été sauvegardés.', + 'COUNTDOWN_ENABLE' => 'Activer le compte à rebours', + 'COUNTDOWN_ENABLE_EXPLAIN' => 'Permet d’activer ou de désactiver le compte à rebours.', + 'COUNTDOWN_DIRECTION' => 'Type de compte à rebours', + 'COUNTDOWN_DIRECTION_EXPLAIN' => 'Permet de sélectionner le type de compte à rebours entre la manière croissante ou décroissante.', + 'COUNTDOWN_DATE' => 'Date du compte à rebours', + 'COUNTDOWN_DATE_EXPLAIN' => 'Permet de saisir la date du compte à rebours, telle que : 2015/12/31 00:00:00.', + 'COUNTDOWN_TEXT' => 'Texte du compte à rebours', + 'COUNTDOWN_TEXT_EXPLAIN' => 'Permet de faire apparaitre le texte avant le compte à rebours.', + 'COUNTDOWN_COMPLETE' => 'Texte de la fin du compte à rebours', + 'COUNTDOWN_COMPLETE_EXPLAIN' => 'Permet d’afficher un texte une fois le compte à rebours terminé.', + 'COUNTDOWN_TESTMODE' => 'Mode de test du compte à rebours', + 'COUNTDOWN_TESTMODE_EXPLAIN' => 'Permet d’afficher le compte à rebours uniquement aux administrateurs.', + 'COUNTDOWN_YEAR' => 'Années du compte à rebours', + 'COUNTDOWN_YEAR_EXPLAIN' => 'Permet d’afficher les années dans le compte à rebours.', + 'COUNTDOWN_MONTH' => 'Mois du compte à rebours', + 'COUNTDOWN_MONTH_EXPLAIN' => 'Permet d’afficher les mois dans le compte à rebours.', + 'COUNTDOWN_OFFSET_ENABLE' => 'Fuseau horaire du compte à rebours', + 'COUNTDOWN_OFFSET_ENABLE_EXPLAIN' => 'Permet de définir le fuseau horaire pris en compte dans le compte à rebours.', + 'COUNTDOWN_OFFSET' => 'Paramètres du fuseau horaire', + 'COUNTDOWN_OFFSET_EXPLAIN' => 'Permet de définir un fuseau horaire spécifique pour tous les utilisateurs. Par exemple, une valeur de « 4 » équivaut à « UTC+04:00 » correspondant à « Océan Indien/Réunion » ou encore, une valeur de « -4 » équivaut à « UTC-04:00 » correspondant à « Amérique/Guadeloupe ».', +)); diff --git a/language/fr/common.php b/language/fr/common.php new file mode 100644 index 0000000..c5eeda0 --- /dev/null +++ b/language/fr/common.php @@ -0,0 +1,48 @@ + + * @license GNU General Public License, version 2 (GPL-2.0) + * + */ + +/** + * DO NOT CHANGE + */ +if (!defined('IN_PHPBB')) +{ + exit; +} + +if (empty($lang) || !is_array($lang)) +{ + $lang = array(); +} + +// DEVELOPERS PLEASE NOTE +// +// All language files should use UTF-8 as their encoding and the files must not contain a BOM. +// +// Placeholders can now contain order information, e.g. instead of +// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows +// translators to re-order the output of data while ensuring it remains correct +// +// You do not need this where single placeholders are used, e.g. 'Message %d' is fine +// equally where a string contains only two placeholders which are used to wrap text +// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine +// +// Some characters you may want to copy&paste: +// ’ « » “ ” … +// + +$lang = array_merge($lang, array( + 'COUNT_YEARS' => 'années', + 'COUNT_MONTHS' => 'mois', + 'COUNT_DAYS' => 'jours', + 'COUNT_HOURS' => 'heures', + 'COUNT_MINUTES' => 'minutes', + 'COUNT_SECONDS' => 'secondes', +)); diff --git a/language/fr/info_acp_countdown.php b/language/fr/info_acp_countdown.php new file mode 100644 index 0000000..6a8246c --- /dev/null +++ b/language/fr/info_acp_countdown.php @@ -0,0 +1,46 @@ + + * @license GNU General Public License, version 2 (GPL-2.0) + * + */ + +/** + * DO NOT CHANGE + */ +if (!defined('IN_PHPBB')) +{ + exit; +} + +if (empty($lang) || !is_array($lang)) +{ + $lang = array(); +} + +// DEVELOPERS PLEASE NOTE +// +// All language files should use UTF-8 as their encoding and the files must not contain a BOM. +// +// Placeholders can now contain order information, e.g. instead of +// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows +// translators to re-order the output of data while ensuring it remains correct +// +// You do not need this where single placeholders are used, e.g. 'Message %d' is fine +// equally where a string contains only two placeholders which are used to wrap text +// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine +// +// Some characters you may want to copy&paste: +// ’ « » “ ” … +// + +$lang = array_merge($lang, array( + 'ACP_COUNTDOWN' => 'Compte à rebours', + 'ACP_COUNTDOWN_CONFIG' => 'Paramètres', + //Log + 'LOG_COUNTDOWN_SETTINGS' => 'Paramètres du compte à rebours modifiés', +));