This commit is contained in:
84
application/language/french/calendar_lang.php
Normal file
84
application/language/french/calendar_lang.php
Normal file
@@ -0,0 +1,84 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') or exit('No direct script access allowed');
|
||||
|
||||
$lang['cal_su'] = 'Di';
|
||||
$lang['cal_mo'] = 'Lu';
|
||||
$lang['cal_tu'] = 'Ma';
|
||||
$lang['cal_we'] = 'Me';
|
||||
$lang['cal_th'] = 'Je';
|
||||
$lang['cal_fr'] = 'Ve';
|
||||
$lang['cal_sa'] = 'Sa';
|
||||
$lang['cal_sun'] = 'Dim';
|
||||
$lang['cal_mon'] = 'Lun';
|
||||
$lang['cal_tue'] = 'Mar';
|
||||
$lang['cal_wed'] = 'Mer';
|
||||
$lang['cal_thu'] = 'Jeu';
|
||||
$lang['cal_fri'] = 'Ven';
|
||||
$lang['cal_sat'] = 'Sam';
|
||||
$lang['cal_sunday'] = 'Dimanche';
|
||||
$lang['cal_monday'] = 'Lundi';
|
||||
$lang['cal_tuesday'] = 'Mardi';
|
||||
$lang['cal_wednesday'] = 'Mercredi';
|
||||
$lang['cal_thursday'] = 'Jeudi';
|
||||
$lang['cal_friday'] = 'Vendredi';
|
||||
$lang['cal_saturday'] = 'Samedi';
|
||||
$lang['cal_jan'] = 'Jan';
|
||||
$lang['cal_feb'] = 'Fév';
|
||||
$lang['cal_mar'] = 'Mar';
|
||||
$lang['cal_apr'] = 'Avr';
|
||||
$lang['cal_may'] = 'Mai';
|
||||
$lang['cal_jun'] = 'Jui';
|
||||
$lang['cal_jul'] = 'Jui';
|
||||
$lang['cal_aug'] = 'Aou';
|
||||
$lang['cal_sep'] = 'Sep';
|
||||
$lang['cal_oct'] = 'Oct';
|
||||
$lang['cal_nov'] = 'Nov';
|
||||
$lang['cal_dec'] = 'Déc';
|
||||
$lang['cal_january'] = 'Janvier';
|
||||
$lang['cal_february'] = 'Février';
|
||||
$lang['cal_march'] = 'Mars';
|
||||
$lang['cal_april'] = 'Avril';
|
||||
$lang['cal_mayl'] = 'Mai';
|
||||
$lang['cal_june'] = 'Juin';
|
||||
$lang['cal_july'] = 'Juillet';
|
||||
$lang['cal_august'] = 'Août';
|
||||
$lang['cal_september'] = 'Septembre';
|
||||
$lang['cal_october'] = 'Octobre';
|
||||
$lang['cal_november'] = 'Novembre';
|
||||
$lang['cal_december'] = 'Décembre';
|
||||
94
application/language/french/date_lang.php
Normal file
94
application/language/french/date_lang.php
Normal file
@@ -0,0 +1,94 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') or exit('No direct script access allowed');
|
||||
|
||||
$lang['date_year'] = 'Année';
|
||||
$lang['date_years'] = 'Années';
|
||||
$lang['date_month'] = 'Mois';
|
||||
$lang['date_months'] = 'Mois';
|
||||
$lang['date_week'] = 'Semaine';
|
||||
$lang['date_weeks'] = 'Semaines';
|
||||
$lang['date_day'] = 'Jour';
|
||||
$lang['date_days'] = 'Jours';
|
||||
$lang['date_hour'] = 'Heure';
|
||||
$lang['date_hours'] = 'Heures';
|
||||
$lang['date_minute'] = 'Minute';
|
||||
$lang['date_minutes'] = 'Minutes';
|
||||
$lang['date_second'] = 'Seconde';
|
||||
$lang['date_seconds'] = 'Secondes';
|
||||
|
||||
$lang['UM12'] = '(UTC -12:00) Baker/Howland Island';
|
||||
$lang['UM11'] = '(UTC -11:00) Niue';
|
||||
$lang['UM10'] = '(UTC -10:00) Hawaii-Aleutian Standard Time, Cook Islands, Tahiti';
|
||||
$lang['UM95'] = '(UTC -9:30) Marquesas Islands';
|
||||
$lang['UM9'] = '(UTC -9:00) Alaska Standard Time, Gambier Islands';
|
||||
$lang['UM8'] = '(UTC -8:00) Pacific Standard Time, Clipperton Island';
|
||||
$lang['UM7'] = '(UTC -7:00) Mountain Standard Time';
|
||||
$lang['UM6'] = '(UTC -6:00) Central Standard Time';
|
||||
$lang['UM5'] = '(UTC -5:00) Eastern Standard Time, Western Caribbean Standard Time';
|
||||
$lang['UM45'] = '(UTC -4:30) Venezuelan Standard Time';
|
||||
$lang['UM4'] = '(UTC -4:00) Atlantic Standard Time, Eastern Caribbean Standard Time';
|
||||
$lang['UM35'] = '(UTC -3:30) Newfoundland Standard Time';
|
||||
$lang['UM3'] = '(UTC -3:00) Argentina, Brazil, French Guiana, Uruguay';
|
||||
$lang['UM2'] = '(UTC -2:00) South Georgia/South Sandwich Islands';
|
||||
$lang['UM1'] = '(UTC -1:00) Azores, Cape Verde Islands';
|
||||
$lang['UTC'] = '(UTC) Greenwich Mean Time, Western European Time';
|
||||
$lang['UP1'] = '(UTC +1:00) Central European Time, West Africa Time';
|
||||
$lang['UP2'] = '(UTC +2:00) Central Africa Time, Eastern European Time, Kaliningrad Time';
|
||||
$lang['UP3'] = '(UTC +3:00) Moscow Time, East Africa Time, Arabia Standard Time';
|
||||
$lang['UP35'] = '(UTC +3:30) Iran Standard Time';
|
||||
$lang['UP4'] = '(UTC +4:00) Azerbaijan Standard Time, Samara Time';
|
||||
$lang['UP45'] = '(UTC +4:30) Afghanistan';
|
||||
$lang['UP5'] = '(UTC +5:00) Pakistan Standard Time, Yekaterinburg Time';
|
||||
$lang['UP55'] = '(UTC +5:30) Indian Standard Time, Sri Lanka Time';
|
||||
$lang['UP575'] = '(UTC +5:45) Nepal Time';
|
||||
$lang['UP6'] = '(UTC +6:00) Bangladesh Standard Time, Bhutan Time, Omsk Time';
|
||||
$lang['UP65'] = '(UTC +6:30) Cocos Islands, Myanmar';
|
||||
$lang['UP7'] = '(UTC +7:00) Krasnoyarsk Time, Cambodia, Laos, Thailand, Vietnam';
|
||||
$lang['UP8'] = '(UTC +8:00) Australian Western Standard Time, Beijing Time, Irkutsk Time';
|
||||
$lang['UP875'] = '(UTC +8:45) Australian Central Western Standard Time';
|
||||
$lang['UP9'] = '(UTC +9:00) Japan Standard Time, Korea Standard Time, Yakutsk Time';
|
||||
$lang['UP95'] = '(UTC +9:30) Australian Central Standard Time';
|
||||
$lang['UP10'] = '(UTC +10:00) Australian Eastern Standard Time, Vladivostok Time';
|
||||
$lang['UP105'] = '(UTC +10:30) Lord Howe Island';
|
||||
$lang['UP11'] = '(UTC +11:00) Srednekolymsk Time, Solomon Islands, Vanuatu';
|
||||
$lang['UP115'] = '(UTC +11:30) Norfolk Island';
|
||||
$lang['UP12'] = '(UTC +12:00) Fiji, Gilbert Islands, Kamchatka Time, New Zealand Standard Time';
|
||||
$lang['UP1275'] = '(UTC +12:45) Chatham Islands Standard Time';
|
||||
$lang['UP13'] = '(UTC +13:00) Samoa Time Zone, Phoenix Islands Time, Tonga';
|
||||
$lang['UP14'] = '(UTC +14:00) Line Islands';
|
||||
34
application/language/french/db_lang.php
Normal file
34
application/language/french/db_lang.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') or exit('No direct script access allowed');
|
||||
|
||||
$lang['db_invalid_connection_str'] = 'Impossible de déterminer les paramètres d’accès à la base de données en se basant sur la chaîne de connexion que vous avez fournie.';
|
||||
$lang['db_unable_to_connect'] = 'Impossible de se connecter à la base de données en utilisant les paramètres fournis.';
|
||||
$lang['db_unable_to_select'] = 'Impossible de sélectionner cette base de données : %s';
|
||||
$lang['db_unable_to_create'] = 'Impossible de créer cette base de données : %s';
|
||||
$lang['db_invalid_query'] = 'La requête que vous avez fournie est invalide.';
|
||||
$lang['db_must_set_table'] = 'Vous devez spécifier une table pour effectuer votre requête.';
|
||||
$lang['db_must_use_set'] = 'Vous devez utiliser la méthode "set()" pour mettre à jour une entrée.';
|
||||
$lang['db_must_use_index'] = 'Vous devez spécifier un index pour les mises à jour groupées.';
|
||||
$lang['db_batch_missing_index'] = 'Une ou plusieurs rangées de la mise à jour groupée ne disposent pas de l’index requis.';
|
||||
$lang['db_must_use_where'] = 'Il faut obligatoirement spécifier la clause "WHERE" pour mettre à jour une entrée.';
|
||||
$lang['db_del_must_use_where'] = 'Il faut obligatoirement spécifier la clause "WHERE" pour supprimer une entrée.';
|
||||
$lang['db_field_param_missing'] = 'La méthode "fetch_fields()" requiert le nom de la table cible en paramètre.';
|
||||
$lang['db_unsupported_function'] = 'Cette fonctionnalité n’est pas disponible pour la base de données utilisée.';
|
||||
$lang['db_transaction_failure'] = 'Erreur de transaction : la transaction est annulée.';
|
||||
$lang['db_unable_to_drop'] = 'Impossible d’effacer la base de données spécifiée.';
|
||||
$lang['db_unsupported_feature'] = 'Cette fonctionnalité n’est pas supportée par le système de gestion de bases de données utilisé.';
|
||||
$lang['db_unsupported_compression'] = 'Le format de compression choisi n’est pas supporté par votre serveur.';
|
||||
$lang['db_filepath_error'] = 'Impossible d’écrire des données au chemin de fichiers indiqué.';
|
||||
$lang['db_invalid_cache_path'] = 'Le chemin de mise en cache indiqué n’est pas valide ou inscriptible.';
|
||||
$lang['db_table_name_required'] = 'Un nom de table est requis pour cette opération.';
|
||||
$lang['db_column_name_required'] = 'Un nom de champ est requis pour cette opération.';
|
||||
$lang['db_column_definition_required'] = 'Une définition de champ est requise pour cette opération.';
|
||||
$lang['db_unable_to_set_charset'] = 'Impossible de définir le jeu de caractères de la connexion client : %s';
|
||||
$lang['db_error_heading'] = 'Une erreur de la base de données s’est produite.';
|
||||
29
application/language/french/email_lang.php
Normal file
29
application/language/french/email_lang.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') or exit('No direct script access allowed');
|
||||
|
||||
$lang['email_must_be_array'] = 'La méthode de validation d’email n’accepte que les tableaux associatifs (array).';
|
||||
$lang['email_invalid_address'] = 'Adresse email invalide : %s';
|
||||
$lang['email_attachment_missing'] = 'Impossible de localiser le fichier joint suivant : %s';
|
||||
$lang['email_attachment_unreadable'] = 'Impossible d’ouvrir ce fichier joint : %s';
|
||||
$lang['email_no_from'] = 'Impossible d’envoyer un email sans en-tête "From".';
|
||||
$lang['email_no_recipients'] = 'Vous devez spécifier des destinataires: To, Cc, ou Bcc';
|
||||
$lang['email_send_failure_phpmail'] = 'Impossible d’envoyer des emails avec la fonction mail() de PHP. Votre serveur ne doit pas être configuré pour pouvoir utiliser cette méthode.';
|
||||
$lang['email_send_failure_sendmail'] = 'Impossible d’envoyer des emails avec la méthode Sendmail de PHP. Votre serveur ne doit pas être configuré pour pouvoir utiliser cette méthode.';
|
||||
$lang['email_send_failure_smtp'] = 'Impossible d’envoyer des emails avec la méthode SMTP de PHP. Votre serveur ne doit pas être configuré pour pouvoir utiliser cette méthode.';
|
||||
$lang['email_sent'] = 'Votre message a bien été expédié par le protocole suivant : %s';
|
||||
$lang['email_no_socket'] = 'Impossible d’ouvrir un socket avec Sendmail. Veuillez vérifier la configuration de votre environnement.';
|
||||
$lang['email_no_hostname'] = 'Vous n’avez pas spécificé d’hôte SMTP.';
|
||||
$lang['email_smtp_error'] = 'L’erreur SMTP suivante s’est produite : %s';
|
||||
$lang['email_no_smtp_unpw'] = 'Erreur : Vous devez spécifier un nom d’utilisateur et un mot de passe SMTP.';
|
||||
$lang['email_failed_smtp_login'] = 'Échec lors de l’envoi de la commande AUTH LOGIN. Erreur : %s';
|
||||
$lang['email_smtp_auth_un'] = 'Impossible d’identifier le nom d’utilisateur. Erreur : %s';
|
||||
$lang['email_smtp_auth_pw'] = 'Impossible d’identifier le mot de passe. Erreur : %s';
|
||||
$lang['email_smtp_data_failure'] = 'Impossible d’envoyer les données : %s';
|
||||
$lang['email_exit_status'] = 'Code de retour : %s';
|
||||
69
application/language/french/form_validation_lang.php
Normal file
69
application/language/french/form_validation_lang.php
Normal file
@@ -0,0 +1,69 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') or exit('No direct script access allowed');
|
||||
|
||||
$lang['form_validation_required'] = 'Le champ {field} est requis.';
|
||||
$lang['form_validation_isset'] = 'Le champ {field} doit avoir une valeur.';
|
||||
$lang['form_validation_valid_email'] = 'Le champ {field} doit contenir une adresse e-mail valide.';
|
||||
$lang['form_validation_valid_emails'] = 'Le champ {field} doit contenir toutes les adresses e-mail valides.';
|
||||
$lang['form_validation_valid_url'] = 'Le champ {field} doit contenir une URL valide.';
|
||||
$lang['form_validation_valid_ip'] = 'Le champ {field} doit contenir une IP valide.';
|
||||
$lang['form_validation_valid_base64'] = 'Le champ {field} doit contenir une chaîne de base64 valide.';
|
||||
$lang['form_validation_min_length'] = 'Le champ {field} doit être au moins {param} des caractères en longueur.';
|
||||
$lang['form_validation_max_length'] = 'Le champ {field} ne peut pas dépasser les caractères {param} en longueur.';
|
||||
$lang['form_validation_exact_length'] = 'Le champ {field} doit être exactement des caractères {param} en longueur.';
|
||||
$lang['form_validation_alpha'] = 'Le champ {field} ne peut contenir que des caractères alphabétiques.';
|
||||
$lang['form_validation_alpha_numeric'] = 'Le champ {field} ne peut contenir que des caractères alpha-numes.';
|
||||
$lang['form_validation_alpha_numeric_spaces'] = 'Le champ {field} ne peut contenir que des caractères et des espaces alpha-numeriques.';
|
||||
$lang['form_validation_alpha_dash'] = 'Le champ {field} ne peut contenir que des caractères, des soulignements et des tirets alpha-numeriques.';
|
||||
$lang['form_validation_numeric'] = 'Le champ {field} ne doit contenir que des nombres.';
|
||||
$lang['form_validation_is_numeric'] = 'Le champ {field} ne doit contenir que des caractères numériques.';
|
||||
$lang['form_validation_integer'] = 'Le champ {field} doit contenir un entier.';
|
||||
$lang['form_validation_regex_match'] = 'Le champ {field} n\'est pas dans le bon format.';
|
||||
$lang['form_validation_matches'] = 'Le champ {field} ne correspond pas au champ {param}.';
|
||||
$lang['form_validation_differs'] = 'Le champ {field} doit différer du champ {param}.';
|
||||
$lang['form_validation_is_unique'] = 'Le champ {field} doit contenir une valeur unique.';
|
||||
$lang['form_validation_is_natural'] = 'Le champ {field} ne doit contenir que des chiffres.';
|
||||
$lang['form_validation_is_natural_no_zero'] = 'Le champ {field} ne doit contenir que des chiffres et doit être supérieur à zéro.';
|
||||
$lang['form_validation_decimal'] = 'Le champ {field} doit contenir un numéro décimal.';
|
||||
$lang['form_validation_less_than'] = 'Le champ {field} doit contenir un nombre inférieur à {param}.';
|
||||
$lang['form_validation_less_than_equal_to'] = 'Le champ {field} doit contenir un nombre inférieur ou égal à {param}.';
|
||||
$lang['form_validation_greater_than'] = 'Le champ {field} doit contenir un nombre supérieur à {param}.';
|
||||
$lang['form_validation_greater_than_equal_to'] = 'Le champ {field} doit contenir un nombre supérieur ou égal à {param}.';
|
||||
$lang['form_validation_error_message_not_set'] = 'Impossible d\'accéder à un message d\'erreur correspondant au nom de votre champ {field}.';
|
||||
$lang['form_validation_in_list'] = 'Le champ {field} doit être l\'un des: {param}.';
|
||||
51
application/language/french/ftp_lang.php
Normal file
51
application/language/french/ftp_lang.php
Normal file
@@ -0,0 +1,51 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') or exit('No direct script access allowed');
|
||||
|
||||
$lang['ftp_no_connection'] = 'Impossible de trouver un ID de connexion valide. Assurez-vous d’être connecté avant d’effectuer des routines de fichiers.';
|
||||
$lang['ftp_unable_to_connect'] = 'Impossible de se connecter à votre serveur FTP à l’aide du nom d’hôte fourni.';
|
||||
$lang['ftp_unable_to_login'] = 'Impossible de se connecter à votre serveur FTP. Veuillez vérifier votre nom d’utilisateur et votre mot de passe.';
|
||||
$lang['ftp_unable_to_mkdir'] = 'Impossible de créer le répertoire que vous avez spécifié.';
|
||||
$lang['ftp_unable_to_changedir'] = 'Impossible de changer de répertoire.';
|
||||
$lang['ftp_unable_to_chmod'] = 'Impossible de définir les autorisations de fichier. S’il vous plaît vérifier votre chemin.';
|
||||
$lang['ftp_unable_to_upload'] = 'Impossible de téléverser le fichier spécifié. S’il vous plaît vérifier votre chemin.';
|
||||
$lang['ftp_unable_to_download'] = 'Impossible de télécharger le fichier spécifié. S’il vous plaît vérifier votre chemin.';
|
||||
$lang['ftp_no_source_file'] = 'Impossible de localiser le fichier source. S’il vous plaît vérifier votre chemin.';
|
||||
$lang['ftp_unable_to_rename'] = 'Impossible de renommer le fichier.';
|
||||
$lang['ftp_unable_to_delete'] = 'Impossible de supprimer le fichier.';
|
||||
$lang['ftp_unable_to_move'] = 'Impossible de déplacer le fichier. Assurez-vous que le répertoire de destination existe.';
|
||||
57
application/language/french/imglib_lang.php
Normal file
57
application/language/french/imglib_lang.php
Normal file
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') or exit('No direct script access allowed');
|
||||
|
||||
$lang['imglib_source_image_required'] = 'Vous devez spécifier une image source dans vos préférences.';
|
||||
$lang['imglib_gd_required'] = 'La bibliothèque d’images GD est requise pour cette fonctionnalité.';
|
||||
$lang['imglib_gd_required_for_props'] = 'Votre serveur doit prendre en charge la bibliothèque d’images GD afin de déterminer les propriétés de l’image.';
|
||||
$lang['imglib_unsupported_imagecreate'] = 'Votre serveur ne prend pas en charge la fonction GD requise pour traiter ce type d’image.';
|
||||
$lang['imglib_gif_not_supported'] = 'Les images GIF ne sont souvent pas prises en charge en raison de restrictions de licence. Vous devrez peut-être utiliser des images JPG ou PNG à la place.';
|
||||
$lang['imglib_jpg_not_supported'] = 'Les images JPG ne sont pas prises en charge.';
|
||||
$lang['imglib_png_not_supported'] = 'Les images PNG ne sont pas prises en charge.';
|
||||
$lang['imglib_jpg_or_png_required'] = 'Le protocole de redimensionnement d’image spécifié dans vos préférences ne fonctionne qu’avec les types d’images JPEG ou PNG.';
|
||||
$lang['imglib_copy_error'] = 'Une erreur s’est produite lors de la tentative de remplacement du fichier. Assurez-vous que votre répertoire de fichiers est accessible en écriture.';
|
||||
$lang['imglib_rotate_unsupported'] = 'La rotation des images ne semble pas être prise en charge par votre serveur.';
|
||||
$lang['imglib_libpath_invalid'] = 'Le chemin d’accès à votre bibliothèque d’images n’est pas correct. Veuillez définir le chemin correct dans vos préférences d’image.';
|
||||
$lang['imglib_image_process_failed'] = 'Echec du traitement de l’image. Veuillez vérifier que votre serveur prend en charge le protocole choisi et que le chemin d’accès à votre bibliothèque d’images est correct.';
|
||||
$lang['imglib_rotation_angle_required'] = 'Un angle de rotation est nécessaire pour faire pivoter l’image.';
|
||||
$lang['imglib_invalid_path'] = 'Le chemin d’accès à l’image n’est pas correct.';
|
||||
$lang['imglib_invalid_image'] = 'L’image fournie n’est pas valide.';
|
||||
$lang['imglib_copy_failed'] = 'La routine de copie d’image a échoué.';
|
||||
$lang['imglib_missing_font'] = 'Impossible de trouver une police à utiliser.';
|
||||
$lang['imglib_save_failed'] = 'Impossible d’enregistrer l’image. Assurez-vous que l’image et le répertoire de fichiers sont accessibles en écriture.';
|
||||
10
application/language/french/index.html
Normal file
10
application/language/french/index.html
Normal file
@@ -0,0 +1,10 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
18
application/language/french/migration_lang.php
Normal file
18
application/language/french/migration_lang.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') or exit('No direct script access allowed');
|
||||
|
||||
$lang['migration_none_found'] = 'Aucune migration trouvée.';
|
||||
$lang['migration_not_found'] = 'Aucune migration n’a été trouvée avec le numéro de version : %d.';
|
||||
$lang['migration_sequence_gap'] = 'Il y a un trou dans la séquence de migration près de la version numéro : %s.';
|
||||
$lang['migration_multiple_version'] = 'Il y a plusieurs migrations avec le même numéro de version : %d.';
|
||||
$lang['migration_class_doesnt_exist'] = 'La classe de migration "%s" n’a pas pu être trouvée.';
|
||||
$lang['migration_missing_up_method'] = 'La classe de migration "%s" ne dispose pas d’une méthode "up".';
|
||||
$lang['migration_missing_down_method'] = 'La classe de migration "%s" ne dispose pas d’une méthode "down".';
|
||||
$lang['migration_invalid_filename'] = 'Le nom de fichier de la migration "%s" est invalide.';
|
||||
44
application/language/french/number_lang.php
Normal file
44
application/language/french/number_lang.php
Normal file
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') or exit('No direct script access allowed');
|
||||
|
||||
$lang['terabyte_abbr'] = 'To';
|
||||
$lang['gigabyte_abbr'] = 'Go';
|
||||
$lang['megabyte_abbr'] = 'Mo';
|
||||
$lang['kilobyte_abbr'] = 'Ko';
|
||||
$lang['bytes'] = 'Octets';
|
||||
43
application/language/french/pagination_lang.php
Normal file
43
application/language/french/pagination_lang.php
Normal file
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') or exit('No direct script access allowed');
|
||||
|
||||
$lang['pagination_first_link'] = '‹ Première';
|
||||
$lang['pagination_next_link'] = '>';
|
||||
$lang['pagination_prev_link'] = '<';
|
||||
$lang['pagination_last_link'] = 'Dernière ›';
|
||||
60
application/language/french/profiler_lang.php
Normal file
60
application/language/french/profiler_lang.php
Normal file
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') or exit('No direct script access allowed');
|
||||
|
||||
$lang['profiler_database'] = 'DATABASE';
|
||||
$lang['profiler_controller_info'] = 'CLASS/METHOD';
|
||||
$lang['profiler_benchmarks'] = 'BENCHMARKS';
|
||||
$lang['profiler_queries'] = 'QUERIES';
|
||||
$lang['profiler_get_data'] = 'GET DATA';
|
||||
$lang['profiler_post_data'] = 'POST DATA';
|
||||
$lang['profiler_uri_string'] = 'URI STRING';
|
||||
$lang['profiler_memory_usage'] = 'MEMORY USAGE';
|
||||
$lang['profiler_config'] = 'CONFIG VARIABLES';
|
||||
$lang['profiler_session_data'] = 'SESSION DATA';
|
||||
$lang['profiler_headers'] = 'HTTP HEADERS';
|
||||
$lang['profiler_no_db'] = 'Database driver is not currently loaded';
|
||||
$lang['profiler_no_queries'] = 'No queries were run';
|
||||
$lang['profiler_no_post'] = 'No POST data exists';
|
||||
$lang['profiler_no_get'] = 'No GET data exists';
|
||||
$lang['profiler_no_uri'] = 'No URI data exists';
|
||||
$lang['profiler_no_memory'] = 'Memory Usage Unavailable';
|
||||
$lang['profiler_no_profiles'] = 'No Profile data - all Profiler sections have been disabled.';
|
||||
$lang['profiler_section_hide'] = 'Hide';
|
||||
$lang['profiler_section_show'] = 'Show';
|
||||
$lang['profiler_seconds'] = 'seconds';
|
||||
487
application/language/french/translations_lang.php
Normal file
487
application/language/french/translations_lang.php
Normal file
@@ -0,0 +1,487 @@
|
||||
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
||||
// French
|
||||
$lang['page_title'] = 'Prendre rendez-vous avec...';
|
||||
$lang['service_and_provider'] = 'Choisissez une prestation et un exécutant';
|
||||
$lang['select_service'] = 'Choisissez une prestation';
|
||||
$lang['select_provider'] = 'Choisissez un exécutant';
|
||||
$lang['duration'] = 'Durée';
|
||||
$lang['minutes'] = 'Minutes';
|
||||
$lang['price'] = 'Prix';
|
||||
$lang['back'] = 'Retour';
|
||||
$lang['appointment_date_and_time'] = 'Choisissez la date et l’heure de votre rendez-vous';
|
||||
$lang['no_available_hours'] = 'Il n’y a pas d’heures de rendez-vous disponibles pour la date sélectionnée. Choisissez une autre date s’il vous plaît.';
|
||||
$lang['appointment_hour_missing'] = 'S’il vous plaît, choisissez une heure de rendez-vous avant de pouvoir poursuivre.';
|
||||
$lang['customer_information'] = 'Remplissez vos informations';
|
||||
$lang['first_name'] = 'Prénom';
|
||||
$lang['last_name'] = 'Nom';
|
||||
$lang['email'] = 'Email';
|
||||
$lang['phone_number'] = 'Numéro de téléphone';
|
||||
$lang['phone'] = 'Téléphone';
|
||||
$lang['address'] = 'Adresse';
|
||||
$lang['city'] = 'Ville';
|
||||
$lang['zip_code'] = 'Code postal';
|
||||
$lang['notes'] = 'Commentaires';
|
||||
$lang['language'] = 'Langue';
|
||||
$lang['no_language'] = 'Pas de langue';
|
||||
$lang['fields_are_required'] = 'Les champs avec * sont obligatoires';
|
||||
$lang['appointment_confirmation'] = 'Confirmez votre rendez-vous';
|
||||
$lang['confirm'] = 'Confirmation';
|
||||
$lang['update'] = 'Mise à jour';
|
||||
$lang['cancel_appointment_hint'] = 'Appuyer sur le bouton "Annuler" pour supprimer un rendez-vous de l’agenda.';
|
||||
$lang['cancel'] = 'Annuler';
|
||||
$lang['appointment_registered'] = 'Votre rendez-vous a été enregistré avec succès.';
|
||||
$lang['cancel_appointment_title'] = 'Annuler le rendez-vous';
|
||||
$lang['appointment_cancelled'] = 'Votre rendez-vous a bien été annulé.';
|
||||
$lang['appointment_cancelled_title'] = 'Rendez-vous annulé';
|
||||
$lang['reason'] = 'Motif';
|
||||
$lang['appointment_removed_from_schedule'] = 'Le rendez-vous suivant a été supprimé de l’agenda.';
|
||||
$lang['appointment_details_was_sent_to_you'] = 'Un email reprenant les détails de votre rendez-vous vient de vous être envoyé.';
|
||||
$lang['add_to_google_calendar'] = 'Ajouter à Google Calendar';
|
||||
$lang['appointment_booked'] = 'Votre rendez-vous a été confirmé avec succès.';
|
||||
$lang['thank_you_for_appointment'] = 'Merci de votre prise de rendez-vous avec nous. Vous trouvez ci-joint les détails de votre rendez-vous. Si nécessaire, faites les changements souhaités en cliquant sur le lien du rendez-vous.';
|
||||
$lang['appointment_details_title'] = 'Détails du rendez-vous';
|
||||
$lang['customer_details_title'] = 'Informations client';
|
||||
$lang['service'] = 'Prestations';
|
||||
$lang['provider'] = 'Exécutant';
|
||||
$lang['customer'] = 'Client';
|
||||
$lang['start'] = 'Début';
|
||||
$lang['end'] = 'Fin';
|
||||
$lang['name'] = 'Nom';
|
||||
$lang['appointment_link_title'] = 'Lien du rendez-vous';
|
||||
$lang['success'] = 'Succès.';
|
||||
$lang['appointment_added_to_your_plan'] = 'Un nouveau rendez-vous a été ajouté à votre planning.';
|
||||
$lang['appointment_link_description'] = 'Vous pouvez faire des modifications en cliquant sur le lien suivant.';
|
||||
$lang['appointment_locked'] = 'Modification impossible.';
|
||||
$lang['appointment_locked_message'] = 'Le rendez-vous ne peut pas être modifié moins de {$limit} heures avant.';
|
||||
$lang['appointment_not_found'] = 'Rendez-vous introuvable.';
|
||||
$lang['appointment_does_not_exist_in_db'] = 'Le rendez-vous demandé n’existe plus dans la base de données système.';
|
||||
$lang['display_calendar'] = 'Afficher le calendrier.';
|
||||
$lang['calendar'] = 'Calendrier';
|
||||
$lang['users'] = 'Utilisateurs';
|
||||
$lang['settings'] = 'Paramètres';
|
||||
$lang['log_out'] = 'Déconnexion';
|
||||
$lang['synchronize'] = 'Synchronisation';
|
||||
$lang['enable_sync'] = 'Activer la synchronisation';
|
||||
$lang['disable_sync'] = 'Désactiver la synchronisation';
|
||||
$lang['disable_sync_prompt'] = 'Êtes-vous sûr de vouloir désactiver la synchronisation du calendrier ?';
|
||||
$lang['reload'] = 'Actualiser';
|
||||
$lang['appointment'] = 'Rendez-vous';
|
||||
$lang['unavailability'] = 'Indisponible';
|
||||
$lang['week'] = 'Semaine';
|
||||
$lang['month'] = 'Mois';
|
||||
$lang['today'] = 'Aujourd’hui';
|
||||
$lang['not_working'] = 'Pas en fonction';
|
||||
$lang['break'] = 'Pause';
|
||||
$lang['add'] = 'Ajouter';
|
||||
$lang['edit'] = 'Éditer';
|
||||
$lang['hello'] = 'Bonjour';
|
||||
$lang['all_day'] = 'Toute la journée';
|
||||
$lang['manage_appointment_record_hint'] = 'Gérer tous les enregistrements de rendez-vous des exécutants et des prestations actives.';
|
||||
$lang['select_filter_item_hint'] = 'Choisir un exécutant ou une prestation et visualisez les rendez-vous sur l’agenda.';
|
||||
$lang['enable_appointment_sync_hint'] = 'Activer la synchronisation des rendez-vous avec le calendrier Google de l’exécutant.';
|
||||
$lang['manage_customers_hint'] = 'Gérer les clients enregistrés et voir leur historique de rendez-vous.';
|
||||
$lang['manage_services_hint'] = 'Gérer les prestations et les catégories actives du système.';
|
||||
$lang['manage_users_hint'] = 'Gérer les utilisateurs du système (administrateurs, exécutants, secrétaires).';
|
||||
$lang['settings_hint'] = 'Régler les paramètres système et utilisateurs.';
|
||||
$lang['log_out_hint'] = 'Déconnexion du système.';
|
||||
$lang['unavailability_periods_hint'] = 'Durant les périodes d’indisponibilité l’exécutant n’acceptera pas de nouvelle prestation.';
|
||||
$lang['new_appointment_hint'] = 'Créer un nouveau rendez-vous et le stocker dans la base de données.';
|
||||
$lang['reload_appointments_hint'] = 'Actualiser le calendrier des rendez-vous.';
|
||||
$lang['trigger_sync_hint'] = 'Démarrer la procédure de synchronisation du calendrier Google.';
|
||||
$lang['appointment_updated'] = 'Rendez-vous mis à jour avec succès.';
|
||||
$lang['undo'] = 'Annuler';
|
||||
$lang['appointment_details_changed'] = 'Les détails du rendez-vous ont bien été modifiés.';
|
||||
$lang['appointment_changes_saved'] = 'Les modifications du rendez-vous ont été enregistrées.';
|
||||
$lang['save'] = 'Enregistrer';
|
||||
$lang['new'] = 'Nouveau';
|
||||
$lang['select'] = 'Choisir';
|
||||
$lang['hide'] = 'Cacher';
|
||||
$lang['type_to_filter_customers'] = 'Filtrer les clients.';
|
||||
$lang['clear_fields_add_existing_customer_hint'] = 'Effacer tous les champs et entrer un nouveau client.';
|
||||
$lang['pick_existing_customer_hint'] = 'Rechercher un client existant.';
|
||||
$lang['new_appointment_title'] = 'Nouveau rendez-vous';
|
||||
$lang['edit_appointment_title'] = 'Éditer rendez-vous';
|
||||
$lang['delete_appointment_title'] = 'Effacer rendez-vous';
|
||||
$lang['write_appointment_removal_reason'] = 'S’il vous plaît, veuillez bien prendre quelques secondes pour nous expliquer les raisons de l’annulation du rendez-vous.';
|
||||
$lang['appointment_saved'] = 'Rendez-vous sauvegardé avec succès.';
|
||||
$lang['new_unavailability_title'] = 'Nouvelle période d’indisponibilité';
|
||||
$lang['edit_unavailability_title'] = 'Éditer une période d’indisponibilité';
|
||||
$lang['unavailability_saved'] = 'Période d’indisponibilité sauvegardée avec succès.';
|
||||
$lang['start_date_before_end_error'] = 'La date de début est ultérieure à la date de fin.';
|
||||
$lang['invalid_duration'] = 'Durée invalide.';
|
||||
$lang['invalid_email'] = 'Adresse email invalide .';
|
||||
$lang['customers'] = 'Clients';
|
||||
$lang['details'] = 'Détails';
|
||||
$lang['no_records_found'] = 'Pas d’enregistrement trouvé...';
|
||||
$lang['services'] = 'Prestations';
|
||||
$lang['duration_minutes'] = 'Durée (Minutes)';
|
||||
$lang['currency'] = 'Devise';
|
||||
$lang['category'] = 'Catégorie';
|
||||
$lang['no_category'] = 'Pas de catégorie';
|
||||
$lang['description'] = 'Description';
|
||||
$lang['categories'] = 'Catégories';
|
||||
$lang['admins'] = 'Administrateurs';
|
||||
$lang['providers'] = 'Exécutants';
|
||||
$lang['secretaries'] = 'Secrétaires';
|
||||
$lang['mobile_number'] = 'Téléphone portable';
|
||||
$lang['mobile'] = 'Portable';
|
||||
$lang['state'] = 'État / Pays';
|
||||
$lang['username'] = 'Nom d’utilisateur';
|
||||
$lang['password'] = 'Mot de passe';
|
||||
$lang['retype_password'] = 'Réinscription du mot de passe';
|
||||
$lang['receive_notifications'] = 'Recevoir les notifications';
|
||||
$lang['passwords_mismatch'] = 'Les 2 mots de passe ne correspondent pas.';
|
||||
$lang['admin_saved'] = 'Administrateur enregistré avec succès.';
|
||||
$lang['provider_saved'] = 'Exécutant enregistré avec succès.';
|
||||
$lang['secretary_saved'] = 'Secrétaire enregistré·e avec succès.';
|
||||
$lang['admin_deleted'] = 'Administrateur supprimé avec succès.';
|
||||
$lang['provider_deleted'] = 'Exécutant supprimé avec succès.';
|
||||
$lang['secretary_deleted'] = 'Secrétaire supprimé·e avec succès.';
|
||||
$lang['service_saved'] = 'Prestation enregistrée avec succès.';
|
||||
$lang['service_category_saved'] = 'Catégorie de prestation enregistrée avec succès.';
|
||||
$lang['service_deleted'] = 'Prestation supprimée avec succès.';
|
||||
$lang['service_category_deleted'] = 'Catégorie de prestation supprimée avec succès.';
|
||||
$lang['customer_saved'] = 'Client enregistré avec succès.';
|
||||
$lang['customer_deleted'] = 'Client supprimé avec succès.';
|
||||
$lang['current_view'] = 'Vue normale';
|
||||
$lang['working_plan'] = 'Planning de travail';
|
||||
$lang['reset_plan'] = 'Redémarrer le planning';
|
||||
$lang['monday'] = 'Lundi';
|
||||
$lang['tuesday'] = 'Mardi';
|
||||
$lang['wednesday'] = 'Mercredi';
|
||||
$lang['thursday'] = 'Jeudi';
|
||||
$lang['friday'] = 'Vendredi';
|
||||
$lang['saturday'] = 'Samedi';
|
||||
$lang['sunday'] = 'Dimanche';
|
||||
$lang['breaks'] = 'Pauses';
|
||||
$lang['add_breaks_during_each_day'] = 'Ajoutez ici les périodes de pause pour chaque jour. Pendant ces pauses l’exécutant n’acceptera pas de rendez-vous...';
|
||||
$lang['day'] = 'Jour';
|
||||
$lang['days'] = 'Jours';
|
||||
$lang['actions'] = 'Actions';
|
||||
$lang['reset_working_plan_hint'] = 'Restaurer les valeurs d’origine du planning de travail.';
|
||||
$lang['company_name'] = 'Nom de la société';
|
||||
$lang['company_name_hint'] = 'Le nom de la société sera affiché et utilisé un peu partout dans le système (obligatoire).';
|
||||
$lang['company_email'] = 'Email de la société';
|
||||
$lang['company_email_hint'] = 'Ceci sera l’adresse email de la société. Elle sera utilisée comme adresse d’envoi et de réponse par le système de messagerie électronique (obligatoire).';
|
||||
$lang['company_link'] = 'Site web de la société';
|
||||
$lang['company_link_hint'] = 'Le lien de la société doit pointer vers le site web officiel de la société (obligatoire).';
|
||||
$lang['go_to_booking_page'] = 'Aller à la page de rendez-vous';
|
||||
$lang['settings_saved'] = 'Paramètres sauvegardés avec succès.';
|
||||
$lang['general'] = 'Général';
|
||||
$lang['booking'] = 'Réservation';
|
||||
$lang['visible'] = 'Visible';
|
||||
$lang['hidden'] = 'Caché';
|
||||
$lang['business_logic'] = 'Logique commerciale';
|
||||
$lang['current_user'] = 'Utilisateur actuel';
|
||||
$lang['about_app'] = 'Au sujet d’Easy!Appointments';
|
||||
$lang['edit_working_plan_hint'] = 'Indiquer ici les jours et les heures pendant lesquels votre société accepte les rendez-vous. Il est possible de fixer vous-même un rendez-vous en dehors des heures de travail tandis que les clients ne pourront pas prendre d’eux-mêmes un rendez-vous en dehors des périodes de travail indiquées ici. Ce planning de travail sera celui proposé par défaut pour chaque nouvel enregistrement. Toutefois il vous sera possible de changer séparément chaque planning de travail individuel en l’éditant. Après cela vous pouvez encore ajouter les périodes de pause.';
|
||||
$lang['edit_breaks_hint'] = 'Indiquer ici les périodes des pauses quotidiennes. Ces pauses seront disponibles à chaque nouvel exécutant.';
|
||||
$lang['book_advance_timeout'] = 'Paramètres de réservation';
|
||||
$lang['book_advance_timeout_hint'] = 'Les réservations ne peuvent pas être créées, modifiées ou annulées moins de ## heures avant le rendez-vous.';
|
||||
$lang['timeout_minutes'] = 'Délai de réservation (en minutes)';
|
||||
$lang['about_app_info'] = 'Easy!Appointments est une application Web hautement personnalisable qui permet à vos clients de prendre rendez-vous avec vous via le web. En outre, elle offre la possibilité de synchroniser vos données avec un calendrier Google afin que vous puissiez les utiliser avec d’autres services. Easy!Appointments est un projet open source et vous pouvez le télécharger et l’installer même pour un usage commercial. Easy!Appointments fonctionnera sans problème avec votre site web existant car il peut être installé dans un dossier spécifique du serveur et bien sûr, les deux sites peuvent partager la même base de données.';
|
||||
$lang['current_version'] = 'Version actuelle';
|
||||
$lang['support'] = 'Support';
|
||||
$lang['about_app_support'] = 'Si vous rencontrez des problèmes pour installer ou configurer l’application, allez chercher les réponses dans le groupe Google officiel. Vous pouvez également avoir besoin de créer une demande sur la page code de Google pour permettre l’avancée du projet.';
|
||||
$lang['official_website'] = 'Site Web officiel';
|
||||
$lang['google_plus_community'] = 'Communauté Google+';
|
||||
$lang['support_group'] = 'Groupe de soutien';
|
||||
$lang['project_issues'] = 'Questions sur le projet';
|
||||
$lang['license'] = 'Licence';
|
||||
$lang['about_app_license'] = 'Easy!Appointments est fourni sous licence GPLv3. En utilisant le code d’Easy!Appointments, quelqu’en soit l’usage, vous êtes tenu d’accepter les termes décrits dans l’URL suivante :';
|
||||
$lang['logout_success'] = 'Vous avez bien été déconnecté ! Cliquez sur l’un des boutons suivants pour naviguer dans les différentes pages';
|
||||
$lang['book_appointment_title'] = 'Carnet de rendez-vous';
|
||||
$lang['backend_section'] = 'Administration';
|
||||
$lang['you_need_to_login'] = 'Bonjour ! Vous devez vous connecter pour voir les pages d’administration.';
|
||||
$lang['enter_username_here'] = 'Entrez votre nom d’utilisateur ici...';
|
||||
$lang['enter_password_here'] = 'Entrez votre mot de passe ici...';
|
||||
$lang['login'] = 'Connexion';
|
||||
$lang['forgot_your_password'] = 'Mot de passe oublié ?';
|
||||
$lang['login_failed'] = 'La connexion a échoué. S’il vous plaît entrez les informations d’identification correctes et ré-essayez.';
|
||||
$lang['type_username_and_email_for_new_password'] = 'Inscrivez votre nom d’utilisateur et adresse email pour recevoir un nouveau mot de passe.';
|
||||
$lang['enter_email_here'] = 'Entrez votre email ici...';
|
||||
$lang['regenerate_password'] = 'Régénération du mot de passe';
|
||||
$lang['go_to_login'] = 'Retourner à la page de connexion';
|
||||
$lang['new_password_sent_with_email'] = 'Votre nouveau mot de passe vous a été envoyé par email.';
|
||||
$lang['new_account_password'] = 'Nouveau mot de passe du compte';
|
||||
$lang['new_password_is'] = 'Votre nouveau mot de passe est $password. Conservez cet email afin de pouvoir retrouver votre mot de passe si nécessaire. Vous pouvez aussi modifier ce mot de passe par un nouveau dans la page des paramètres.';
|
||||
$lang['delete_record_prompt'] = 'Êtes-vous sûr de vouloir supprimer cet enregistrement ? Cette action est irréversible.';
|
||||
$lang['delete_admin'] = 'Supprimer l’administrateur';
|
||||
$lang['delete_customer'] = 'Supprimer le client';
|
||||
$lang['delete_service'] = 'Supprimer la prestation';
|
||||
$lang['delete_service_category'] = 'Supprimer la catégorie de prestation';
|
||||
$lang['delete_provider'] = 'Supprimer un exécutant';
|
||||
$lang['delete_secretary'] = 'Supprimer un·e secrétaire';
|
||||
$lang['delete_appointment'] = 'Supprimer un rendez-vous';
|
||||
$lang['delete_unavailability'] = 'Supprimer une période d’indisponibilité';
|
||||
$lang['delete'] = 'Supprimer';
|
||||
$lang['unexpected_issues'] = 'Résultats inattendus';
|
||||
$lang['unexpected_issues_message'] = 'L’opération n’a pu être terminée à cause de résultats inattendus.';
|
||||
$lang['close'] = 'Fermer';
|
||||
$lang['page_not_found'] = 'Page non trouvée';
|
||||
$lang['page_not_found_message'] = 'Malheureusement la page demandée n’existe pas. Vérifiez l’URL de votre navigateur ou naviguez vers une autre page en utilisant les boutons ci-dessous.';
|
||||
$lang['error'] = 'Erreur';
|
||||
$lang['no_privileges'] = 'Aucun privilège';
|
||||
$lang['no_privileges_message'] = 'Vous n’avez pas les privilèges nécessaires pour voir cette page. Veuillez s’il vous plaît naviguer vers une section différente.';
|
||||
$lang['backend_calendar'] = 'Administration du calendrier';
|
||||
$lang['start_date_time'] = 'Date/heure de début';
|
||||
$lang['end_date_time'] = 'Date/heure de fin';
|
||||
$lang['licensed_under'] = 'Licencié sous';
|
||||
$lang['unexpected_issues_occurred'] = 'Une erreur inattendue est survenue.';
|
||||
$lang['service_communication_error'] = 'Erreur de communication avec le serveur, Veuillez s’il vous plait réessayer.';
|
||||
$lang['no_privileges_edit_appointments'] = 'Vous n’avez pas les privilèges nécessaires pour modifier les rendez-vous.';
|
||||
$lang['unavailability_updated'] = 'La période d’indisponibilité a bien été actualisée.';
|
||||
$lang['appointments'] = 'Rendez-vous';
|
||||
$lang['unexpected_warnings'] = 'Avertissements inattendus';
|
||||
$lang['unexpected_warnings_message'] = 'Opération terminée mais des avertissements sont survenus.';
|
||||
$lang['filter'] = 'Filtrer';
|
||||
$lang['clear'] = 'Effacer';
|
||||
$lang['uncategorized'] = 'Non catégorisé';
|
||||
$lang['username_already_exists'] = 'Ce nom d’utilisateur existe déjà.';
|
||||
$lang['password_length_notice'] = 'Le mot de passe doit avoir au moins $number caractères de long.';
|
||||
$lang['general_settings'] = 'Paramètres généraux';
|
||||
$lang['personal_information'] = 'Informations personnelles';
|
||||
$lang['system_login'] = 'Connexion système';
|
||||
$lang['user_settings_are_invalid'] = 'Paramètres utilisateur non valides ! Vérifiez vos paramètres et essayez de nouveau.';
|
||||
$lang['add_break'] = 'Ajouter une Pause';
|
||||
$lang['january'] = 'Janvier';
|
||||
$lang['february'] = 'Février';
|
||||
$lang['march'] = 'Mars';
|
||||
$lang['april'] = 'Avril';
|
||||
$lang['may'] = 'Mai';
|
||||
$lang['june'] = 'Juin';
|
||||
$lang['july'] = 'Juillet';
|
||||
$lang['august'] = 'Août';
|
||||
$lang['september'] = 'Septembre';
|
||||
$lang['october'] = 'Octobre';
|
||||
$lang['november'] = 'Novembre';
|
||||
$lang['december'] = 'Décembre';
|
||||
$lang['previous'] = 'Précédent';
|
||||
$lang['next'] = 'Suivant';
|
||||
$lang['now'] = 'Maintenant';
|
||||
$lang['select_time'] = 'Choisir l’heure';
|
||||
$lang['time'] = 'Heure du RDV';
|
||||
$lang['hour'] = 'Heure';
|
||||
$lang['minute'] = 'Minute';
|
||||
$lang['calendar_sync_completed'] = 'La synchronisation Google s\'est terminée avec succès.';
|
||||
$lang['calendar_sync_failed'] = 'La synchronisation Google a échoué : Échec de connexion avec le serveur.';
|
||||
$lang['select_sync_calendar'] = 'Choisir un calendrier Google';
|
||||
$lang['select_sync_calendar_prompt'] = 'Sélectionnez le calendrier souhaité pour synchroniser votre rendez-vous. Si vous ne sélectionnez pas de calendrier spécifique, le calendrier par défaut sera sélectionné pour vous.';
|
||||
$lang['sync_calendar_selected'] = 'Le calendrier Google a été sélectionné avec succès.';
|
||||
$lang['oops_something_went_wrong'] = 'Oups ! Une erreur s’est produite.';
|
||||
$lang['ea_update_success'] = 'Easy!Appointments à été mis à jour avec succès.';
|
||||
$lang['require_captcha'] = 'CAPTCHA obligatoire';
|
||||
$lang['require_captcha_hint'] = 'Lorsque l’option est activée, les clients doivent taper un code de vérification CAPTCHA avant de pouvoir réserver ou mettre à jour un rendez-vous.';
|
||||
$lang['captcha_is_wrong'] = 'Le code de vérification CAPTCHA est erroné, merci de réessayer.';
|
||||
$lang['any_provider'] = 'Toute personne disponible';
|
||||
$lang['requested_hour_is_unavailable'] = 'Cette heure de rendez n’est malheureusement pas disponible. Merci de sélectionner une autre heure pour votre rendez-vous.';
|
||||
$lang['customer_notifications'] = 'Notifications aux clients';
|
||||
$lang['customer_notifications_hint'] = 'Définit si les clients reçoivent des notifications par email chaque fois qu’il y a un changement d’horaire de l’un de leurs rendez-vous.';
|
||||
$lang['date_format'] = 'Format des dates';
|
||||
$lang['date_format_hint'] = 'Change le format d’affichage des dates (D - Jour, M - Mois, Y - Année).';
|
||||
$lang['time_format'] = 'Format de l’heure';
|
||||
$lang['time_format_hint'] = 'Change le format d’affichage de l’heure (H - Heures, M - Minutes).';
|
||||
$lang['first_weekday'] = 'Premier jour de la semaine';
|
||||
$lang['first_weekday_hint'] = 'Définit le premier jour de la semaine calendaire.';
|
||||
$lang['google_analytics_code_hint'] = 'Renseigner l’ID Google Analytics à utiliser dans la page des réservations.';
|
||||
$lang['availabilities_type'] = 'Type de disponibilités';
|
||||
$lang['flexible'] = 'Flexible';
|
||||
$lang['fixed'] = 'Fixe';
|
||||
$lang['attendants_number'] = 'Nombre de participants';
|
||||
$lang['reset_working_plan'] = 'Restaurer les valeurs d’origine du planning de travail.';
|
||||
$lang['legal_contents'] = 'Contenu juridique';
|
||||
$lang['cookie_notice'] = 'Informations sur les cookies';
|
||||
$lang['display_cookie_notice'] = 'Afficher les informations sur les cookies';
|
||||
$lang['cookie_notice_content'] = 'Description de la politique d’utilisation des cookies';
|
||||
$lang['terms_and_conditions'] = 'Conditions générales';
|
||||
$lang['display_terms_and_conditions'] = 'Afficher les conditions générales';
|
||||
$lang['terms_and_conditions_content'] = 'Description des conditions générales';
|
||||
$lang['privacy_policy'] = 'Politique de confidentialité';
|
||||
$lang['display_privacy_policy'] = 'Afficher la politique de confidentialité';
|
||||
$lang['privacy_policy_content'] = 'Description de la politique de confidentialité';
|
||||
$lang['website_using_cookies_to_ensure_best_experience'] = 'Ce site web utilise des cookies pour vous assurer la meilleure expérience utilisateur.';
|
||||
$lang['read_and_agree_to_terms_and_conditions'] = 'J’ai lu, compris et accepte les {$link}Conditions Générales{/$link}.';
|
||||
$lang['read_and_agree_to_privacy_policy'] = 'J’ai lu, compris et accepte la {$link}politique de confidentialité{/$link}.';
|
||||
$lang['delete_personal_information_hint'] = 'Effacer toutes vos données personnelles du système.';
|
||||
$lang['delete_personal_information'] = 'Effacer toutes mes données personnelles';
|
||||
$lang['delete_personal_information_prompt'] = 'Êtes-vous sûr·e de vouloir effacer toutes vos données personnelles ? Cette action est irréversible.';
|
||||
$lang['location'] = 'Emplacement';
|
||||
$lang['working_plan_exception'] = 'Exception au planning';
|
||||
$lang['working_plan_exceptions'] = 'Exceptions au planning';
|
||||
$lang['working_plan_exceptions_hint'] = 'Ajouter un jour d’exception au planning, en dehors du planning.';
|
||||
$lang['new_working_plan_exception_title'] = 'Nouvelle exception au planning';
|
||||
$lang['working_plan_exception_saved'] = 'Exception au planning enregistrée avec succès.';
|
||||
$lang['working_plan_exception_deleted'] = 'Exception au planning supprimée avec succès.';
|
||||
$lang['add_working_plan_exceptions_during_each_day'] = 'Ajouter des exceptions au planning, en dehors du planning.';
|
||||
$lang['add_working_plan_exception'] = 'Ajouter une exception au planning';
|
||||
$lang['require_phone_number'] = 'Exiger un numéro de téléphone';
|
||||
$lang['require_phone_number_hint'] = 'Lorsque activé, les clients et les utilisateurs devront entrer le numéro de téléphone du client lors de la prise de rendez-vous.';
|
||||
$lang['check_spam_folder'] = 'Veuillez vérifier votre dossier de courrier indésirable si l’email n’arrive pas dans les minutes qui suivent.';
|
||||
$lang['api_token_hint'] = 'Définissez un jeton secret afin d’activer l’authentification basée sur le jeton de l’API Easy!Appointments. ';
|
||||
$lang['timezone'] = 'Fuseau horaire';
|
||||
$lang['overwrite_existing_working_plans'] = 'Cela écrasera les plannings existants du fournisseur. Êtes-vous sûr de vouloir continuer ?';
|
||||
$lang['working_plans_got_updated'] = 'Tous les plannings ont été mis à jour.';
|
||||
$lang['apply_to_all_providers'] = 'Appliquer à tous les fournisseurs';
|
||||
$lang['display_any_provider'] = 'Afficher toutes les options de fournisseurs';
|
||||
$lang['display_any_provider_hint'] = 'La page de réservation obtiendra une option supplémentaire qui permet aux clients de réserver sans spécifier de fournisseur.';
|
||||
$lang['load_more'] = 'Charger plus';
|
||||
$lang['list'] = 'Liste';
|
||||
$lang['default'] = 'Défaut';
|
||||
$lang['table'] = 'Tableau';
|
||||
$lang['date'] = 'Date';
|
||||
$lang['about'] = 'À propos';
|
||||
$lang['booking_settings'] = 'Paramètres de réservation';
|
||||
$lang['display'] = 'Afficher';
|
||||
$lang['require'] = 'Requis';
|
||||
$lang['color'] = 'Couleur';
|
||||
$lang['matomo_analytics_url_hint'] = 'Ajoutez l’URL à votre propre installation Matomo pour activer le suivi Matomo sur les pages de réservation.';
|
||||
$lang['invalid_phone'] = 'Numéro de téléphone invalide.';
|
||||
$lang['legal'] = 'Juridique';
|
||||
$lang['business'] = 'Entreprise';
|
||||
$lang['account'] = 'Compte';
|
||||
$lang['disable_booking'] = 'Désactiver la réservation';
|
||||
$lang['disable_booking_hint'] = 'La page de réservation sera désactivée tant que ce paramètre sera actif et que les clients ne pourront pas enregistrer de nouveaux rendez-vous.';
|
||||
$lang['display_message'] = 'Afficher le message';
|
||||
$lang['booking_is_disabled'] = 'La réservation est désactivée!';
|
||||
$lang['appearance'] = 'Apparence';
|
||||
$lang['company_logo'] = 'Logo d’entreprise';
|
||||
$lang['company_logo_hint'] = 'Le logo de l’entreprise sera affiché dans de nombreux endroits de l’application, y compris la page de réservation et les e-mails de notification (fichier image, max 2 Mo).';
|
||||
$lang['company_color'] = 'Couleur de l’entreprise';
|
||||
$lang['company_color_hint'] = 'La couleur de l’entreprise sera appliquée dans l’application afin qu’elle utilise votre marque.';
|
||||
$lang['localization'] = 'Localisation';
|
||||
$lang['integrations'] = 'Intégrations';
|
||||
$lang['company'] = 'Entreprise';
|
||||
$lang['remove'] = 'Retirer';
|
||||
$lang['login_button'] = 'Bouton de Connexion';
|
||||
$lang['display_login_button_hint'] = 'Définit si le bouton de connexion est affiché dans la page de réservation.';
|
||||
$lang['private'] = 'Privé';
|
||||
$lang['private_hint'] = 'Les dossiers privés ne seront pas affichés ou traités dans des pages publiques telles que la page de réservation.';
|
||||
$lang['reset'] = 'Réinitialiser';
|
||||
$lang['all'] = 'Tout';
|
||||
$lang['booking_link'] = 'Lien de réservation';
|
||||
$lang['add_new_event'] = 'Ajouter un nouvel événement';
|
||||
$lang['what_kind_of_event'] = 'Quel genre d’événement aimeriez-vous ajouter?';
|
||||
$lang['theme'] = 'Thème';
|
||||
$lang['limit_customer_access'] = 'Limiter l’accès des clients';
|
||||
$lang['limit_customer_access_hint'] = 'S’ils sont activés, les fournisseurs et les secrétaires ne pourront accéder qu’à des clients avec lesquels ils ont rendez-vous.';
|
||||
$lang['url'] = 'URL';
|
||||
$lang['secret_token'] = 'Token secret';
|
||||
$lang['verify_ssl'] = 'Vérifiez SSL';
|
||||
$lang['appointment_save'] = 'Sauver le rendez-vous';
|
||||
$lang['appointment_delete'] = 'Effacer le rendez-vous';
|
||||
$lang['unavailability_save'] = 'Sauver l’indisponibilité';
|
||||
$lang['unavailability_delete'] = 'Effacer l’indisponibilité';
|
||||
$lang['customer_save'] = 'Sauvegarde du client';
|
||||
$lang['customer_delete'] = 'Supprimer le client';
|
||||
$lang['service_save'] = 'Sauvegarde du service';
|
||||
$lang['service_delete'] = 'Supprimer le service';
|
||||
$lang['service_category_save'] = 'Sauvegarde de la catégorie';
|
||||
$lang['service_category_delete'] = 'Supprimer la catégorie';
|
||||
$lang['provider_save'] = 'Sauvegarde de l’exécutant';
|
||||
$lang['provider_delete'] = 'Supprimer l’exécutant';
|
||||
$lang['secretary_save'] = 'Sauvegarde de la secrétaire';
|
||||
$lang['secretary_delete'] = 'Supprimer la secrétaire';
|
||||
$lang['admin_save'] = 'Sauvegarde de l’administrateur';
|
||||
$lang['admin_delete'] = 'Supprimer l’administrateur';
|
||||
$lang['options'] = 'Options';
|
||||
$lang['webhooks'] = 'Webhooks';
|
||||
$lang['webhooks_info'] = 'les Webhooks vous permettent d’envoyer des notifications HTTP aux applications Web externes en réponse à divers événements d’application, tels que la création d’un rendez-vous ou la suppression d’un client.';
|
||||
$lang['integrations_info'] = 'Les intégrations vous permettent d’établir des connexions tierces avec des applications externes et des API.';
|
||||
$lang['configure'] = 'Configurer';
|
||||
$lang['google_analytics'] = 'Google Analytics';
|
||||
$lang['google_analytics_info'] = 'Google Analytics vous permet d’ajouter automatiquement le code de suivi et le balisage HTML à la page publique et de suivre toutes les sessions de réservation publique.';
|
||||
$lang['matomo_analytics'] = 'Matomo Analytics';
|
||||
$lang['matomo_analytics_info'] = 'Matomo Analytics vous permet d’ajouter automatiquement le code de suivi et le balisage HTML à la page publique et de suivre toutes les sessions de réservation publique.';
|
||||
$lang['api'] = 'API';
|
||||
$lang['api_info'] = 'L’API vous permet d’interagir avec toutes les données de Easy!Appointments via le protocole HTTP et les points de terminaison API disponibles et créer vos propres intégrations.';
|
||||
$lang['google_analytics_code'] = 'Code de Google analytics';
|
||||
$lang['matomo_analytics_url'] = 'URL de Matomo analytics';
|
||||
$lang['future_booking_limit'] = 'Limite des réservations futures';
|
||||
$lang['limit_days'] = 'Limite (jours)';
|
||||
$lang['future_booking_limit_hint'] = 'Définissez la limite future en jours que les clients peuvent prendre rendez-vous via la page de réservation publique.';
|
||||
$lang['api_token'] = 'Jeton de l’API';
|
||||
$lang['allow_rescheduling_cancellation_before'] = 'Autoriser le reprogrammation/annulation passée';
|
||||
$lang['at_least_one_field'] = 'Au moins un champ doit être affiché dans la page de réservation.';
|
||||
$lang['status'] = 'Statut';
|
||||
$lang['appointment_status_options'] = 'Options de statut de rendez-vous';
|
||||
$lang['appointment_status_options_info'] = 'Définissez une liste des options d’état de rendez-vous disponibles qui peuvent être utilisées dans la page du calendrier (la première deviendra automatiquement la valeur par défaut).';
|
||||
$lang['sunday_short'] = 'Dim';
|
||||
$lang['monday_short'] = 'Lun';
|
||||
$lang['tuesday_short'] = 'Mar';
|
||||
$lang['wednesday_short'] = 'Mer';
|
||||
$lang['thursday_short'] = 'Jeu';
|
||||
$lang['friday_short'] = 'Ven';
|
||||
$lang['saturday_short'] = 'Sam';
|
||||
$lang['january_short'] = 'Jan';
|
||||
$lang['february_short'] = 'Fév';
|
||||
$lang['march_short'] = 'Mar';
|
||||
$lang['april_short'] = 'Avr';
|
||||
$lang['may_short'] = 'Mai';
|
||||
$lang['june_short'] = 'Jun';
|
||||
$lang['july_short'] = 'Jul';
|
||||
$lang['august_short'] = 'Aou';
|
||||
$lang['september_short'] = 'Sep';
|
||||
$lang['october_short'] = 'Oct';
|
||||
$lang['november_short'] = 'Nov';
|
||||
$lang['december_short'] = 'Déc';
|
||||
$lang['am'] = 'am';
|
||||
$lang['pm'] = 'pm';
|
||||
$lang['to'] = 'à';
|
||||
$lang['click_to_toggle'] = 'Cliquez pour basculer';
|
||||
$lang['week_short'] = 'Se';
|
||||
$lang['scroll_to_increment'] = 'Faire défiler pour incrémenter';
|
||||
$lang['year'] = 'Année';
|
||||
$lang['make_non_working_day'] = 'Cet exécutant ne sera pas disponible pour travailler le jour sélectionné.';
|
||||
$lang['no_breaks'] = 'Pas de pauses';
|
||||
$lang['service_categories'] = 'Catégories de services';
|
||||
$lang['service_category'] = 'Catégorie de service';
|
||||
$lang['blocked_period_saved'] = 'La période bloquée a été enregistrée avec succès.';
|
||||
$lang['blocked_period_deleted'] = 'La période bloquée a été supprimée avec succès.';
|
||||
$lang['delete_blocked_period'] = 'Supprimer la période bloquée';
|
||||
$lang['blocked_period'] = 'Période bloquée';
|
||||
$lang['blocked_periods'] = 'Périodes bloquées';
|
||||
$lang['blocked_period_save'] = 'Sauvegarde de la période bloquée';
|
||||
$lang['blocked_period_delete'] = 'Suppression de la période bloquée';
|
||||
$lang['blocked_periods_hint'] = 'Définissez des périodes pendant lesquelles les réservations publiques seront désactivées pour tous les fournisseurs (par exemple, les dates de fermeture, les jours fériés, etc.).';
|
||||
$lang['custom_field'] = 'Champ personnalisé';
|
||||
$lang['custom_fields'] = 'Champs personnalisés';
|
||||
$lang['label'] = 'Étiquette';
|
||||
$lang['webhook_saved'] = 'Webhook enregistré avec succès.';
|
||||
$lang['webhook_deleted'] = 'Webhook supprimé avec succès.';
|
||||
$lang['delete_webhook'] = 'Supprimer le webhook';
|
||||
$lang['contact_info'] = 'Coordonnées';
|
||||
$lang['hide_from_public'] = 'Cacher au Public';
|
||||
$lang['matomo_analytics_site_id'] = 'ID du Site Matomo Analytics';
|
||||
$lang['matomo_analytics_site_id_hint'] = 'Définissez l\'ID du site qui sera suivi par Matomo (le site par défaut a l\'ID "1").';
|
||||
$lang['default_timezone'] = 'Fuseau Horaire par Défaut';
|
||||
$lang['default_timezone_hint'] = 'Définissez la valeur du fuseau horaire par défaut qui sera utilisée pour les nouveaux enregistrements.';
|
||||
$lang['default_language'] = 'Langue par Défaut';
|
||||
$lang['default_language_hint'] = 'Définissez la valeur de la langue par défaut qui sera utilisée pour les nouveaux enregistrements.';
|
||||
$lang['sync_method_prompt'] = 'Quelle méthode de synchronisation souhaitez-vous utiliser ?';
|
||||
$lang['caldav_server'] = 'Serveur CalDAV';
|
||||
$lang['caldav_connection_info_prompt'] = 'Veuillez entrer les informations de connexion du calendrier CalDAV cible.';
|
||||
$lang['connect'] = 'Se Connecter';
|
||||
$lang['ldap'] = 'LDAP';
|
||||
$lang['ldap_info'] = 'Cette intégration vous permet de vous connecter à un serveur LDAP existant et d\'importer automatiquement les utilisateurs dans Easy!Appointments, tout en leur permettant de se connecter via leur mot de passe de répertoire (le nom d\'utilisateur doit correspondre).';
|
||||
$lang['host'] = 'Hôte';
|
||||
$lang['port'] = 'Port';
|
||||
$lang['user_dn'] = 'DN de l\'Utilisateur';
|
||||
$lang['base_dn'] = 'DN de Base';
|
||||
$lang['keyword'] = 'Mot-clé';
|
||||
$lang['ldap_search_hint'] = 'Fournissez un mot-clé pour rechercher dans le répertoire LDAP les utilisateurs correspondant aux critères de filtre.';
|
||||
$lang['ldap_extension_not_loaded'] = 'L\'extension PHP LDAP n\'est pas chargée, mais elle est nécessaire pour que cette intégration fonctionne.';
|
||||
$lang['field_mapping'] = 'Cartographie des Champs';
|
||||
$lang['content'] = 'Contenu';
|
||||
$lang['active'] = 'Actif';
|
||||
$lang['user_imported'] = 'L\'enregistrement de l\'utilisateur a été importé avec succès.';
|
||||
$lang['import'] = 'Importer';
|
||||
$lang['ldap_dn'] = 'DN LDAP';
|
||||
$lang['role'] = 'Rôle';
|
||||
$lang['at_least_one_field_required'] = 'Au moins un champ doit être défini comme requis sur la page de réservation.';
|
||||
$lang['customer_is_already_booked'] = 'Ce client a déjà un rendez-vous pendant la période de réservation demandée.';
|
||||
$lang['fields'] = 'Champs';
|
||||
$lang['invalid_credentials_provided'] = 'Identifiants fournis invalides, veuillez réessayer.';
|
||||
$lang['calendar_url'] = 'URL du Calendrier';
|
||||
$lang['please_select'] = 'Veuillez Sélectionner';
|
||||
$lang['secret_header'] = 'Secret Header';
|
||||
// End
|
||||
58
application/language/french/unit_test_lang.php
Normal file
58
application/language/french/unit_test_lang.php
Normal file
@@ -0,0 +1,58 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') or exit('No direct script access allowed');
|
||||
|
||||
$lang['ut_test_name'] = 'Test Name';
|
||||
$lang['ut_test_datatype'] = 'Test Datatype';
|
||||
$lang['ut_res_datatype'] = 'Expected Datatype';
|
||||
$lang['ut_result'] = 'Result';
|
||||
$lang['ut_undefined'] = 'Undefined Test Name';
|
||||
$lang['ut_file'] = 'File Name';
|
||||
$lang['ut_line'] = 'Line Number';
|
||||
$lang['ut_passed'] = 'Passed';
|
||||
$lang['ut_failed'] = 'Failed';
|
||||
$lang['ut_boolean'] = 'Boolean';
|
||||
$lang['ut_integer'] = 'Integer';
|
||||
$lang['ut_float'] = 'Float';
|
||||
$lang['ut_double'] = 'Float'; // can be the same as float
|
||||
$lang['ut_string'] = 'String';
|
||||
$lang['ut_array'] = 'Array';
|
||||
$lang['ut_object'] = 'Object';
|
||||
$lang['ut_resource'] = 'Resource';
|
||||
$lang['ut_null'] = 'Null';
|
||||
$lang['ut_notes'] = 'Notes';
|
||||
55
application/language/french/upload_lang.php
Normal file
55
application/language/french/upload_lang.php
Normal file
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') or exit('No direct script access allowed');
|
||||
|
||||
$lang['upload_userfile_not_set'] = 'Impossible de trouver une variable post appelée userfile.';
|
||||
$lang['upload_file_exceeds_limit'] = 'Le fichier téléversé dépasse la taille maximale autorisée dans votre fichier de configuration PHP.';
|
||||
$lang['upload_file_exceeds_form_limit'] = 'Le fichier téléversé dépasse la taille maximale autorisée par le formulaire de soumission.';
|
||||
$lang['upload_file_partial'] = 'Le fichier n’a été que partiellement téléversé.';
|
||||
$lang['upload_no_temp_directory'] = 'Le dossier temporaire est manquant.';
|
||||
$lang['upload_unable_to_write_file'] = 'Le fichier n’a pas pu être écrit sur le disque.';
|
||||
$lang['upload_stopped_by_extension'] = 'Le téléversement du fichier a été arrêté par extension.';
|
||||
$lang['upload_no_file_selected'] = 'Vous n’avez pas sélectionné de fichier à télécharger.';
|
||||
$lang['upload_invalid_filetype'] = 'Le type de fichier que vous tentez de télécharger n’est pas autorisé.';
|
||||
$lang['upload_invalid_filesize'] = 'Le fichier que vous tentez de télécharger est plus volumineux que la taille autorisée.';
|
||||
$lang['upload_invalid_dimensions'] = 'L’image que vous tentez de télécharger ne rentre pas dans les dimensions autorisées.';
|
||||
$lang['upload_destination_error'] = 'Un problème s’est produit lors de la tentative de déplacement du fichier téléversé vers la destination finale.';
|
||||
$lang['upload_no_filepath'] = 'Le chemin de téléversement ne semble pas valide.';
|
||||
$lang['upload_no_file_types'] = 'Vous n’avez spécifié aucun type de fichier autorisé.';
|
||||
$lang['upload_bad_filename'] = 'Le nom de fichier que vous avez envoyé existe déjà sur le serveur.';
|
||||
$lang['upload_not_writable'] = 'Le dossier de destination du téléversement ne semble pas être accessible en écriture.';
|
||||
Reference in New Issue
Block a user