| 1 | <?php |
|---|
| 2 | |
|---|
| 3 | global $lang,$conf; |
|---|
| 4 | |
|---|
| 5 | $conf_LCAS= unserialize($conf['LoginCaseAccentsSensitivity']); |
|---|
| 6 | |
|---|
| 7 | $lang['LCAS_Tab_Global'] = 'Configuration'; |
|---|
| 8 | $lang['LCAS_Title_Tab'] = 'Login Case Accents Sensitivity'; |
|---|
| 9 | $lang['LCAS_SubTitle_Global'] = 'Configuration du plugin'; |
|---|
| 10 | |
|---|
| 11 | $lang['LCAS_Title_Global'] = 'Paramétrage de la sensibilité'; |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | $lang['LCAS_Case_Sensitive'] = 'Insensible à la casse :'; |
|---|
| 15 | $lang['LCAS_Case_Sensitive_false'] = ' Désactiver (valeur par défaut)'; |
|---|
| 16 | $lang['LCAS_Case_Sensitive_true'] = ' Activer'; |
|---|
| 17 | |
|---|
| 18 | $lang['LCAS_Accent_Sensitive'] = 'Insensible aux accents :'; |
|---|
| 19 | $lang['LCAS_Accent_Sensitive_false'] = ' Désactiver (valeur par défaut)'; |
|---|
| 20 | $lang['LCAS_Accent_Sensitive_true'] = ' Activer'; |
|---|
| 21 | |
|---|
| 22 | $lang['LCAS_currentPWGConfigHeader'] = 'Paramètre actuel de Piwigo'; |
|---|
| 23 | |
|---|
| 24 | $lang['LCAS_Support_txt'] = 'Le support officiel sur ce plugin se fait exclusivement sur ces fils du forum Piwigo:<br> |
|---|
| 25 | <a href="http://fr.piwigo.org/forum/viewtopic.php?pid=158565" onclick="window.open(this.href);return false;">Forum français - http://fr.piwigo.org/forum/viewtopic.php?id=ToDefine</a> |
|---|
| 26 | <br>ou<br> |
|---|
| 27 | <a href="http://fr.piwigo.org/forum/viewtopic.php?pid=158565" onclick="window.open(this.href);return false;">Forum anglais - http://piwigo.org/forum/viewtopic.php?id=ToDefine</a><br><br> |
|---|
| 28 | Egalement disponible, le bugtracker du projet: <a href="http://piwigo.org/bugs/" onclick="window.open(this.href);return false;">http://piwigo.org/bugs/</a>'; |
|---|
| 29 | |
|---|
| 30 | |
|---|
| 31 | |
|---|
| 32 | $lang['LCAS_Tab_UserList'] = 'Validation des utilisateurs'; |
|---|
| 33 | $lang['LCAS_SubTitle_UserList'] = 'Vérification des utilisateurs'; |
|---|
| 34 | |
|---|
| 35 | $lang['LCAS_UserList_Title'] = 'Utilisateurs nécessitant des modifications'; |
|---|
| 36 | |
|---|
| 37 | |
|---|
| 38 | $lang['LCAS_Err_Userlist_Settings'] = 'Cette page n\'est accessible que si un paramétrage pour au moins une des sensibilités est activé.'; |
|---|
| 39 | |
|---|
| 40 | $lang['LCAS_Info_userlist_username_renamed'] = 'Le nom de l\'utilisateur a été mis à jour.'; |
|---|
| 41 | $lang['LCAS_Err_Userlist_Empty_New_Username'] = 'Le nom de l\'utilisateur ne peut être vide.'; |
|---|
| 42 | |
|---|
| 43 | $lang['LCAS_Compare_value_h'] = 'Comparaison'; |
|---|
| 44 | $lang['LCAS_Update_h'] = 'Modifier'; |
|---|
| 45 | $lang['LCAS_Notify_h'] = 'Notifier'; |
|---|
| 46 | |
|---|
| 47 | $lang['LCAS_Update_User'] = 'Mettre à jour'; |
|---|
| 48 | $lang['LCAS_Send_Email'] = 'Envoyer email'; |
|---|
| 49 | |
|---|
| 50 | $lang['LCAS_No_User'] = 'Aucun problème détecté pour les utilisateurs actuels'; |
|---|
| 51 | |
|---|
| 52 | |
|---|
| 53 | $lang['LCAS_save_config'] = 'Paramètres enregistrés<br/>Veuillez vérifier les éventuels utilisateurs problématiques sur le second onglet.'; |
|---|
| 54 | |
|---|
| 55 | ?> |
|---|