Replace fatal_error.tpl and error_404.tpl by an unique error.tpl file

This commit is contained in:
Benjamin Renard 2020-05-05 13:02:54 +02:00
parent edc625b85f
commit cf40eb999a
8 changed files with 223 additions and 237 deletions

View file

@ -355,20 +355,20 @@ input[type='submit'].LSview_search {
/* /*
********************* *********************
* Fatal error * Error page
********************* *********************
*/ */
#fatal_error { #error {
margin: auto; margin: auto;
max-width: 80%; max-width: 80%;
text-align: center; text-align: center;
} }
#fatal_error h1 { #error h1 {
border: none; border: none;
} }
#fatal_error pre { #error pre {
color: #111; color: #111;
text-align: left; text-align: left;
background-color: #eee; background-color: #eee;
@ -380,7 +380,7 @@ input[type='submit'].LSview_search {
border: 1px solid #ccc; border: 1px solid #ccc;
} }
#fatal_error pre em { #error pre em {
border-radius: 6px; border-radius: 6px;
background-color: #60B7D4; background-color: #60B7D4;
font-family: sans-serif; font-family: sans-serif;

View file

@ -382,8 +382,10 @@ class LStemplate {
* @retval void * @retval void
**/ **/
public static function fatal_error($error=null) { public static function fatal_error($error=null) {
self :: $_smarty -> assign('fatal_error', $error); self :: $_smarty -> assign('pagetitle', _("A fatal error occured."));
self :: $_smarty -> display("ls:fatal_error.tpl"); self :: $_smarty -> assign('error', _("A fatal error occured. If problem persist, please contact support."));
self :: $_smarty -> assign('details', $error);
self :: $_smarty -> display("ls:error.tpl");
exit(); exit();
} }

View file

@ -218,7 +218,8 @@ class LSurl {
* @retval void * @retval void
**/ **/
public static function error_404($request=null) { public static function error_404($request=null) {
LSsession :: setTemplate('error_404.tpl'); LStemplate :: assign('error', _("The requested page was not found."));
LSsession :: setTemplate('error.tpl');
LSsession :: displayTemplate(); LSsession :: displayTemplate();
} }

View file

@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: LdapSaisie\n" "Project-Id-Version: LdapSaisie\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: \n" "POT-Creation-Date: \n"
"PO-Revision-Date: 2020-05-04 18:25+0200\n" "PO-Revision-Date: 2020-05-05 13:01+0200\n"
"Last-Translator: Benjamin Renard <brenard@zionetrix.net>\n" "Last-Translator: Benjamin Renard <brenard@zionetrix.net>\n"
"Language-Team: LdapSaisie <ldapsaisie-users@lists.labs.libre-entreprise." "Language-Team: LdapSaisie <ldapsaisie-users@lists.labs.libre-entreprise."
"org>\n" "org>\n"
@ -458,11 +458,11 @@ msgstr "Confirmez-vous votre choix ?"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSconfirmBox.php:37 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSconfirmBox.php:37
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsmoothbox.php:39 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsmoothbox.php:39
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1359 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1367
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSform.php:68 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSform.php:68
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:529 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:568
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1109 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1148
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1213 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1252
msgid "Validate" msgid "Validate"
msgstr "Valider" msgstr "Valider"
@ -525,8 +525,8 @@ msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSformElement_select_object.php:68 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSformElement_select_object.php:68
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSformElement_supannLabeledValue.php:62 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSformElement_supannLabeledValue.php:62
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsearchEntry.php:167 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsearchEntry.php:167
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:890 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:929
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1048 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1087
msgid "Modify" msgid "Modify"
msgstr "Modifier" msgstr "Modifier"
@ -579,21 +579,21 @@ msgstr "Maintenant."
msgid "Today." msgid "Today."
msgstr "Aujourd'hui." msgstr "Aujourd'hui."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:94 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:93
msgid "LStemplate : compile directory is not writable (dir : %{dir})" msgid "LStemplate : compile directory is not writable (dir : %{dir})"
msgstr "" msgstr ""
"LStemplate : Le dossier de compilation n'est pas accessible en écriture " "LStemplate : Le dossier de compilation n'est pas accessible en écriture "
"(dossier : %{dir})" "(dossier : %{dir})"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:113 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:112
msgid "LStemplate : Can't load Smarty 2 support file" msgid "LStemplate : Can't load Smarty 2 support file"
msgstr "LStemplate : Impossible de charger le fichier de support de Smarty 2" msgstr "LStemplate : Impossible de charger le fichier de support de Smarty 2"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:120 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:119
msgid "LStemplate : Can't load Smarty 3 support file" msgid "LStemplate : Can't load Smarty 3 support file"
msgstr "LStemplate : Impossible de charger le fichier de support de Smarty 3" msgstr "LStemplate : Impossible de charger le fichier de support de Smarty 3"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:124 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:123
msgid "LStemplate : Smarty version not recognized." msgid "LStemplate : Smarty version not recognized."
msgstr "LStemplate : Version de Smarty non reconnue." msgstr "LStemplate : Version de Smarty non reconnue."
@ -602,20 +602,30 @@ msgid "LStemplate : Can't load Smarty."
msgstr "" msgstr ""
"LStemplate : Impossible de charger le moteur de gestion de template Smarty." "LStemplate : Impossible de charger le moteur de gestion de template Smarty."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:317 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:353
msgid "Smarty - An exception occured displaying template '%{template}'" msgid "Smarty - An exception occured displaying template '%{template}'"
msgstr "" msgstr ""
"Smarty - Un erreur est survenue en affichant le modèle de page '%{template}'." "Smarty - Un erreur est survenue en affichant le modèle de page '%{template}'."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:337 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:373
msgid "Smarty - An exception occured fetching template '%{template}'" msgid "Smarty - An exception occured fetching template '%{template}'"
msgstr "Smarty - Un erreur est survenue en générant le modèle '%{template}'." msgstr "Smarty - Un erreur est survenue en générant le modèle '%{template}'."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:444 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:385
msgid "A fatal error occured."
msgstr "Une erreur fatale est survenue."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:386
msgid "A fatal error occured. If problem persist, please contact support."
msgstr ""
"Une erreur irrécupérable est survenue. Si le problème persiste, merci de "
"contacter le support."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:485
msgid "LStemplate : Template %{file} not found." msgid "LStemplate : Template %{file} not found."
msgstr "LStemplate : le template %{file} est introuvable." msgstr "LStemplate : le template %{file} est introuvable."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:447 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:488
msgid "" msgid ""
"LStemplate : Fail to execute trigger %{callable} on event %{event} : is not " "LStemplate : Fail to execute trigger %{callable} on event %{event} : is not "
"callable." "callable."
@ -623,7 +633,7 @@ msgstr ""
"LStemplate : Échec d'exécution du déclencheur %{callable} lors de événement " "LStemplate : Échec d'exécution du déclencheur %{callable} lors de événement "
"%{event} : il n'est pas un callable." "%{event} : il n'est pas un callable."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:450 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:491
msgid "" msgid ""
"LStemplate : Error during the execution of the trigger %{callable} on event " "LStemplate : Error during the execution of the trigger %{callable} on event "
"%{event}." "%{event}."
@ -789,81 +799,81 @@ msgstr ""
msgid "Clear" msgid "Clear"
msgstr "Nettoyer" msgstr "Nettoyer"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1299 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1307
msgid "Connection" msgid "Connection"
msgstr "Connexion" msgstr "Connexion"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1309 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1317
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1348 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1356
msgid "LDAP server" msgid "LDAP server"
msgstr "Serveur LDAP" msgstr "Serveur LDAP"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1319 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1327
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2464 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2478
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:630 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:669
msgid "Level" msgid "Level"
msgstr "Niveau" msgstr "Niveau"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1320 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1328
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1358 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1366
msgid "Identifier" msgid "Identifier"
msgstr "Identifiant" msgstr "Identifiant"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1321 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1329
msgid "Password" msgid "Password"
msgstr "Mot de passe" msgstr "Mot de passe"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1322 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1330
msgid "Connect" msgid "Connect"
msgstr "Se connecter" msgstr "Se connecter"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1323 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1331
msgid "Forgot your password ?" msgid "Forgot your password ?"
msgstr "Mot de passe perdu ?" msgstr "Mot de passe perdu ?"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1341 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1349
msgid "Recovery of your credentials" msgid "Recovery of your credentials"
msgstr "Récupération de votre mot de passe" msgstr "Récupération de votre mot de passe"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1360 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1368
msgid "Back" msgid "Back"
msgstr "Retour" msgstr "Retour"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1363 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1371
msgid "Please fill the identifier field to proceed recovery procedure" msgid "Please fill the identifier field to proceed recovery procedure"
msgstr "" msgstr ""
"Merci d'entrer votre identifiant pour poursuivre la procédure de récupération" "Merci d'entrer votre identifiant pour poursuivre la procédure de récupération"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1368 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1376
msgid "" msgid ""
"An email has been sent to %{mail}. Please follow the instructions on it." "An email has been sent to %{mail}. Please follow the instructions on it."
msgstr "" msgstr ""
"Un e-mail vient de vous être envoyé à l'adresse %{mail}. Merci de suivre les " "Un e-mail vient de vous être envoyé à l'adresse %{mail}. Merci de suivre les "
"indications qu'il contient." "indications qu'il contient."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1377 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1385
msgid "Your new password has been sent to %{mail}." msgid "Your new password has been sent to %{mail}."
msgstr "Votre nouveau mot de passe vous a été envoyé à l'adresse %{mail}." msgstr "Votre nouveau mot de passe vous a été envoyé à l'adresse %{mail}."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1522 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1536
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:146 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:146
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:384 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:423
msgid "Refresh" msgid "Refresh"
msgstr "Rafraîchir" msgstr "Rafraîchir"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1538 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1552
msgid "Language" msgid "Language"
msgstr "Langue" msgstr "Langue"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1560 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1574
msgid "Connected as" msgid "Connected as"
msgstr "Connecté en tant que" msgstr "Connecté en tant que"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2610 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2624
msgid "LSsession : The constant %{const} is not defined." msgid "LSsession : The constant %{const} is not defined."
msgstr "LSsession : La constante %{const} n'est pas définie." msgstr "LSsession : La constante %{const} n'est pas définie."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2613 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2627
msgid "" msgid ""
"LSsession : The %{addon} support is uncertain. Verify system compatibility " "LSsession : The %{addon} support is uncertain. Verify system compatibility "
"and the add-on configuration." "and the add-on configuration."
@ -871,52 +881,52 @@ msgstr ""
"LSsession : Le support %{addon} est incertain. Vérifiez la compatibilité du " "LSsession : Le support %{addon} est incertain. Vérifiez la compatibilité du "
"système et la configuration de l'add-on." "système et la configuration de l'add-on."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2616 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2630
msgid "" msgid ""
"LSsession : LDAP server's configuration data are invalid. Can't connect." "LSsession : LDAP server's configuration data are invalid. Can't connect."
msgstr "" msgstr ""
"LSsession : Les données de configuration du serveur LDAP sont invalide. " "LSsession : Les données de configuration du serveur LDAP sont invalide. "
"Impossible de s'y connecter." "Impossible de s'y connecter."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2619 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2633
msgid "LSsession : Failed to load LSobject type %{type} : unknon type." msgid "LSsession : Failed to load LSobject type %{type} : unknon type."
msgstr "" msgstr ""
"LSsession : Impossible de charger le type d'LSobject %{type} : type inconnu." "LSsession : Impossible de charger le type d'LSobject %{type} : type inconnu."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2622 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2636
msgid "LSsession : Failed to load LSclass %{class}." msgid "LSsession : Failed to load LSclass %{class}."
msgstr "LSsession : Impossible de charger la LSclass %{class}." msgstr "LSsession : Impossible de charger la LSclass %{class}."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2625 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2639
msgid "LSsession : Login or password incorrect." msgid "LSsession : Login or password incorrect."
msgstr "LSsession : Identifiant ou mot de passe incorrects." msgstr "LSsession : Identifiant ou mot de passe incorrects."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2628 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2642
msgid "LSsession : Impossible to identify you : Duplication of identities." msgid "LSsession : Impossible to identify you : Duplication of identities."
msgstr "LSsession : Impossible de vous identifier : Duplication d'identité." msgstr "LSsession : Impossible de vous identifier : Duplication d'identité."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2631 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2645
msgid "LSsession : Can't load class of authentification (%{class})." msgid "LSsession : Can't load class of authentification (%{class})."
msgstr "" msgstr ""
"LSsession : Impossible de charger la classe d'authentification (%{class})." "LSsession : Impossible de charger la classe d'authentification (%{class})."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2634 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2648
msgid "LSsession : Can't connect to LDAP server." msgid "LSsession : Can't connect to LDAP server."
msgstr "LSsession : Impossible de se connecter au serveur LDAP." msgstr "LSsession : Impossible de se connecter au serveur LDAP."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2637 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2651
msgid "LSsession : Impossible to authenticate you." msgid "LSsession : Impossible to authenticate you."
msgstr "LSsession : Impossible de vous identifier." msgstr "LSsession : Impossible de vous identifier."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2640 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2654
msgid "LSsession : Your are not authorized to do this action." msgid "LSsession : Your are not authorized to do this action."
msgstr "LSsession : Vous n'êtes pas autorisé à faire cette action." msgstr "LSsession : Vous n'êtes pas autorisé à faire cette action."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2643 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2657
msgid "LSsession : Some informations are missing to display this page." msgid "LSsession : Some informations are missing to display this page."
msgstr "LSsession : Des informations sont manquant pour afficher cette page." msgstr "LSsession : Des informations sont manquant pour afficher cette page."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2646 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2660
msgid "" msgid ""
"LSsession : The function of the custom action %{name} does not exists or is " "LSsession : The function of the custom action %{name} does not exists or is "
"not configured." "not configured."
@ -924,24 +934,24 @@ msgstr ""
"LSsearch : La fonction de l'action personnalisée %{name} n'existe pas ou " "LSsearch : La fonction de l'action personnalisée %{name} n'existe pas ou "
"n'est pas configurée." "n'est pas configurée."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2649 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2663
msgid "LSsession : Fail to retreive user's LDAP credentials from LSauth." msgid "LSsession : Fail to retreive user's LDAP credentials from LSauth."
msgstr "" msgstr ""
"LSsession : Erreur en récupérant les identifiants LDAP de l'utilisateur " "LSsession : Erreur en récupérant les identifiants LDAP de l'utilisateur "
"depuis LSauth." "depuis LSauth."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2652 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2666
msgid "" msgid ""
"LSsession : Fail to reconnect to LDAP server with user's LDAP credentials." "LSsession : Fail to reconnect to LDAP server with user's LDAP credentials."
msgstr "" msgstr ""
"LSsession : Impossible de se reconnecter au serveur LDAP avec les " "LSsession : Impossible de se reconnecter au serveur LDAP avec les "
"identifiants de l'utilisateur." "identifiants de l'utilisateur."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2655 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2669
msgid "LSsession : No import/export format define for this object type." msgid "LSsession : No import/export format define for this object type."
msgstr "LSsession : Aucun format d'entrée/sortie définie pour ce type d'objet." msgstr "LSsession : Aucun format d'entrée/sortie définie pour ce type d'objet."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2658 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2672
msgid "" msgid ""
"LSsession : Error during creation of list of levels. Contact administrators. " "LSsession : Error during creation of list of levels. Contact administrators. "
"(Code : %{code})" "(Code : %{code})"
@ -949,13 +959,13 @@ msgstr ""
"LSsession : Erreur durant la création de la liste des niveaux. Contacter les " "LSsession : Erreur durant la création de la liste des niveaux. Contacter les "
"administrateurs. (Code : %{type})" "administrateurs. (Code : %{type})"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2661 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2675
msgid "LSsession : The password recovery is disabled for this LDAP server." msgid "LSsession : The password recovery is disabled for this LDAP server."
msgstr "" msgstr ""
"LSsession : La récupération de mot de passe est désactivée pour ce serveur " "LSsession : La récupération de mot de passe est désactivée pour ce serveur "
"LDAP." "LDAP."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2664 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2678
msgid "" msgid ""
"LSsession : Some informations are missing to recover your password. Contact " "LSsession : Some informations are missing to recover your password. Contact "
"administrators." "administrators."
@ -963,7 +973,7 @@ msgstr ""
"LSsession : Des informations sont manques pour pouvoir récupérer votre mot " "LSsession : Des informations sont manques pour pouvoir récupérer votre mot "
"de passe. Contacter les administrateurs." "de passe. Contacter les administrateurs."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2667 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2681
msgid "" msgid ""
"LSsession : Error during password recovery. Contact administrators.(Step : " "LSsession : Error during password recovery. Contact administrators.(Step : "
"%{step})" "%{step})"
@ -971,26 +981,26 @@ msgstr ""
"LSsession : Erreur durant la récupération de votre mot de passe. Contacter " "LSsession : Erreur durant la récupération de votre mot de passe. Contacter "
"les administrateurs. (Etape : %{step})" "les administrateurs. (Etape : %{step})"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2670 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2684
msgid "" msgid ""
"LSsession : call function %{func} do not provided from LSaddon %{addon}." "LSsession : call function %{func} do not provided from LSaddon %{addon}."
msgstr "" msgstr ""
"LSsession : la fonction %{func} n'est pas fournie par le LSaddon %{addon}." "LSsession : la fonction %{func} n'est pas fournie par le LSaddon %{addon}."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2673 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2687
msgid "LSsession : problem during initialisation." msgid "LSsession : problem during initialisation."
msgstr "LSsession : Problème durant l'initialisation." msgstr "LSsession : Problème durant l'initialisation."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2676 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2690
msgid "LSsession : view function %{func} for LSaddon %{addon} doet not exist." msgid "LSsession : view function %{func} for LSaddon %{addon} doet not exist."
msgstr "" msgstr ""
"LSsession : la fonction de vue %{func} du LSaddon %{addon} n'existe pas." "LSsession : la fonction de vue %{func} du LSaddon %{addon} n'existe pas."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2679 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2693
msgid "LSsession : invalid related object's DN pass in parameter." msgid "LSsession : invalid related object's DN pass in parameter."
msgstr "LSsession : DN d'objet en relation incorrect dans les paramètres." msgstr "LSsession : DN d'objet en relation incorrect dans les paramètres."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2682 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2696
msgid "" msgid ""
"LSsession : the LSaddon %{addon} keep using old-style addon view URL. Please " "LSsession : the LSaddon %{addon} keep using old-style addon view URL. Please "
"upgrade it." "upgrade it."
@ -998,7 +1008,7 @@ msgstr ""
"LSsession : le LSaddon %{addon} utilise toujours l'ancien type d'URL de " "LSsession : le LSaddon %{addon} utilise toujours l'ancien type d'URL de "
"vues. Merci de le mettre à jour." "vues. Merci de le mettre à jour."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2685 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2699
msgid "" msgid ""
"LSsession : You have been redirect from an old-style URL %{url}. Please " "LSsession : You have been redirect from an old-style URL %{url}. Please "
"upgrade this link." "upgrade this link."
@ -1006,7 +1016,7 @@ msgstr ""
"LSsession : Vous avez été redirigé depuis une ancienne URL %{url}. Merci de " "LSsession : Vous avez été redirigé depuis une ancienne URL %{url}. Merci de "
"le mettre à jour ce lien." "le mettre à jour ce lien."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2688 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2702
msgid "" msgid ""
"LSsession : You still seen use LSsession :: redirect() in your custom code. " "LSsession : You still seen use LSsession :: redirect() in your custom code. "
"Please upgrade it and use LSurl :: redirect()." "Please upgrade it and use LSurl :: redirect()."
@ -1351,8 +1361,8 @@ msgstr "Attention"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSformElement_select_object.php:69 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSformElement_select_object.php:69
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSformElement_select_object.php:85 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSformElement_select_object.php:85
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsearchEntry.php:183 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsearchEntry.php:183
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:906 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:945
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1040 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1079
msgid "Delete" msgid "Delete"
msgstr "Supprimer" msgstr "Supprimer"
@ -1362,8 +1372,8 @@ msgid "No object."
msgstr "Aucun objet." msgstr "Aucun objet."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSrelation.php:267 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSrelation.php:267
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:371 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:410
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:845 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:884
msgid "New" msgid "New"
msgstr "Nouveau" msgstr "Nouveau"
@ -1531,14 +1541,14 @@ msgid "No field."
msgstr "Aucun champ." msgstr "Aucun champ."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSform.php:203 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSform.php:203
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:525 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:564
msgid "Do you really want to execute custom action %{title} on this search ?" msgid "Do you really want to execute custom action %{title} on this search ?"
msgstr "" msgstr ""
"Êtes-vous vraiment sûre de vouloir exécuter l'action personnalisée %{title} " "Êtes-vous vraiment sûre de vouloir exécuter l'action personnalisée %{title} "
"sur cette recherche ?" "sur cette recherche ?"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSform.php:209 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSform.php:209
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1207 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1246
msgid "" msgid ""
"Do you really want to execute custom action %{customAction} on " "Do you really want to execute custom action %{customAction} on "
"%{objectname} ?" "%{objectname} ?"
@ -1641,6 +1651,10 @@ msgstr "Impossible de déterminer l'URL demandée."
msgid "Fail to determine the requested URL (loop detected)." msgid "Fail to determine the requested URL (loop detected)."
msgstr "Impossible de déterminer l'URL demandée (boucle détectée)." msgstr "Impossible de déterminer l'URL demandée (boucle détectée)."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSurl.php:221
msgid "The requested page was not found."
msgstr "La page demandée est introuvable."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSattr_html_date.php:43 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSattr_html_date.php:43
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSattr_html_select_list.php:63 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSattr_html_select_list.php:63
msgid "Invalid value" msgid "Invalid value"
@ -1872,8 +1886,6 @@ msgid "The uploaded file size exceeds the limit accepted by the server."
msgstr "La taille du fichier envoyé dépasse la limite acceptée par le serveur." msgstr "La taille du fichier envoyé dépasse la limite acceptée par le serveur."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSformElement_image.php:136 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSformElement_image.php:136
#, fuzzy
#| msgid "The uploaded file size exceeds the limit accepted by the HTML form.)"
msgid "The uploaded file size exceeds the limit accepted by the HTML form." msgid "The uploaded file size exceeds the limit accepted by the HTML form."
msgstr "" msgstr ""
"La taille du fichier envoyé dépasse la limite acceptée par le formulaire " "La taille du fichier envoyé dépasse la limite acceptée par le formulaire "
@ -2035,12 +2047,12 @@ msgid "Unknown error : %{error}"
msgstr "Erreur inconnu : %{error}" msgstr "Erreur inconnu : %{error}"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsearchEntry.php:159 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsearchEntry.php:159
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1032 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1071
msgid "View" msgid "View"
msgstr "Voir" msgstr "Voir"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsearchEntry.php:175 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsearchEntry.php:175
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:898 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:937
msgid "Copy" msgid "Copy"
msgstr "Copier" msgstr "Copier"
@ -2070,71 +2082,71 @@ msgstr "Accueil"
msgid "You must provide pattern for global search." msgid "You must provide pattern for global search."
msgstr "Vous devez fournir un mot clé pour les recherches globales." msgstr "Vous devez fournir un mot clé pour les recherches globales."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:377 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:416
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:721 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:760
msgid "Import" msgid "Import"
msgstr "Importer" msgstr "Importer"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:389 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:428
msgid "Reset" msgid "Reset"
msgstr "Réinitialiser" msgstr "Réinitialiser"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:427 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:466
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:627 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:666
#: templates/default/global_search.tpl:7 #: templates/default/global_search.tpl:7
msgid "Search" msgid "Search"
msgstr "Rechercher" msgstr "Rechercher"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:428 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:467
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:628 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:667
msgid "Approximative search" msgid "Approximative search"
msgstr "Recherche approximative" msgstr "Recherche approximative"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:429 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:468
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:629 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:668
msgid "Recursive search" msgid "Recursive search"
msgstr "Recherche récursive" msgstr "Recherche récursive"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:506 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:545
msgid "" msgid ""
"The custom action %{title} have been successfully execute on this search." "The custom action %{title} have been successfully execute on this search."
msgstr "" msgstr ""
"L'action personnalisée %{title} a été correctement exécutée sur cette " "L'action personnalisée %{title} a été correctement exécutée sur cette "
"recherche." "recherche."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:804 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:843
msgid "Data entry form" msgid "Data entry form"
msgstr "Masque de saisie" msgstr "Masque de saisie"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:810 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:849
msgid "Object has been added." msgid "Object has been added."
msgstr "L'objet a été ajouté." msgstr "L'objet a été ajouté."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:937 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:976
msgid "My account" msgid "My account"
msgstr "Mon compte" msgstr "Mon compte"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:990 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1029
msgid "The object has been partially modified." msgid "The object has been partially modified."
msgstr "L'objet a été partiellement modifié." msgstr "L'objet a été partiellement modifié."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:993 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1032
msgid "The object has been modified successfully." msgid "The object has been modified successfully."
msgstr "L'objet a bien été modifié." msgstr "L'objet a bien été modifié."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1097 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1136
msgid "%{objectname} has been successfully deleted." msgid "%{objectname} has been successfully deleted."
msgstr "%{objectname} a bien été supprimé." msgstr "%{objectname} a bien été supprimé."
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1106 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1145
msgid "Deleting : %{objectname}" msgid "Deleting : %{objectname}"
msgstr "Suppression : %{objectname}" msgstr "Suppression : %{objectname}"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1107 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1146
msgid "Do you really want to delete <strong>%{displayName}</strong> ?" msgid "Do you really want to delete <strong>%{displayName}</strong> ?"
msgstr "Voulez-vous vraiment supprimer <strong>%{displayName}</strong> ?" msgstr "Voulez-vous vraiment supprimer <strong>%{displayName}</strong> ?"
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1181 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1220
msgid "" msgid ""
"The custom action %{customAction} have been successfully execute on " "The custom action %{customAction} have been successfully execute on "
"%{objectname}." "%{objectname}."
@ -2155,17 +2167,11 @@ msgstr "[pas une chaîne de caractères]"
msgid "Folder not found" msgid "Folder not found"
msgstr "Dossier introuvable" msgstr "Dossier introuvable"
#: templates/default/fatal_error.tpl:20
msgid "A fatal error occured. If problem persist, please contact support."
msgstr ""
"Une erreur irrécupérable est survenue. Si le problème persiste, merci de "
"contacter le support."
#: templates/default/LSaccessRightsMatrixView.tpl:17 #: templates/default/LSaccessRightsMatrixView.tpl:17
msgid "Attributes / Profiles" msgid "Attributes / Profiles"
msgstr "Attributs / Profils" msgstr "Attributs / Profils"
#: templates/default/fatal_error.tpl:24 #: templates/default/error.tpl:22
msgid "Details" msgid "Details"
msgstr "Détails" msgstr "Détails"
@ -2241,10 +2247,6 @@ msgstr "Relations / Profils"
msgid "Result" msgid "Result"
msgstr "Résultat" msgstr "Résultat"
#: templates/default/error_404.tpl:20
msgid "The requested page was not found."
msgstr "La page demandée est introuvable."
#: templates/default/LSaccessRightsMatrixView.tpl:48 #: templates/default/LSaccessRightsMatrixView.tpl:48
msgid "Their relations with other objects" msgid "Their relations with other objects"
msgstr "Leurs relations avec les autres objets" msgstr "Leurs relations avec les autres objets"

View file

@ -379,11 +379,11 @@ msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSconfirmBox.php:37 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSconfirmBox.php:37
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsmoothbox.php:39 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsmoothbox.php:39
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1359 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1367
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSform.php:68 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSform.php:68
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:529 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:568
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1109 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1148
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1213 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1252
msgid "Validate" msgid "Validate"
msgstr "" msgstr ""
@ -438,8 +438,8 @@ msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSformElement_select_object.php:68 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSformElement_select_object.php:68
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSformElement_supannLabeledValue.php:62 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSformElement_supannLabeledValue.php:62
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsearchEntry.php:167 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsearchEntry.php:167
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:890 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:929
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1048 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1087
msgid "Modify" msgid "Modify"
msgstr "" msgstr ""
@ -492,19 +492,19 @@ msgstr ""
msgid "Today." msgid "Today."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:94 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:93
msgid "LStemplate : compile directory is not writable (dir : %{dir})" msgid "LStemplate : compile directory is not writable (dir : %{dir})"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:113 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:112
msgid "LStemplate : Can't load Smarty 2 support file" msgid "LStemplate : Can't load Smarty 2 support file"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:120 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:119
msgid "LStemplate : Can't load Smarty 3 support file" msgid "LStemplate : Can't load Smarty 3 support file"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:124 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:123
msgid "LStemplate : Smarty version not recognized." msgid "LStemplate : Smarty version not recognized."
msgstr "" msgstr ""
@ -512,25 +512,33 @@ msgstr ""
msgid "LStemplate : Can't load Smarty." msgid "LStemplate : Can't load Smarty."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:317 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:353
msgid "Smarty - An exception occured displaying template '%{template}'" msgid "Smarty - An exception occured displaying template '%{template}'"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:337 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:373
msgid "Smarty - An exception occured fetching template '%{template}'" msgid "Smarty - An exception occured fetching template '%{template}'"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:444 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:385
msgid "A fatal error occured."
msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:386
msgid "A fatal error occured. If problem persist, please contact support."
msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:485
msgid "LStemplate : Template %{file} not found." msgid "LStemplate : Template %{file} not found."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:447 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:488
msgid "" msgid ""
"LStemplate : Fail to execute trigger %{callable} on event %{event} : is not " "LStemplate : Fail to execute trigger %{callable} on event %{event} : is not "
"callable." "callable."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:450 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LStemplate.php:491
msgid "" msgid ""
"LStemplate : Error during the execution of the trigger %{callable} on event " "LStemplate : Error during the execution of the trigger %{callable} on event "
"%{event}." "%{event}."
@ -659,195 +667,195 @@ msgstr ""
msgid "Clear" msgid "Clear"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1299 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1307
msgid "Connection" msgid "Connection"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1309 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1317
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1348 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1356
msgid "LDAP server" msgid "LDAP server"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1319 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1327
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2464 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2478
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:630 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:669
msgid "Level" msgid "Level"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1320 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1328
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1358 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1366
msgid "Identifier" msgid "Identifier"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1321 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1329
msgid "Password" msgid "Password"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1322 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1330
msgid "Connect" msgid "Connect"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1323 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1331
msgid "Forgot your password ?" msgid "Forgot your password ?"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1341 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1349
msgid "Recovery of your credentials" msgid "Recovery of your credentials"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1360 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1368
msgid "Back" msgid "Back"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1363 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1371
msgid "Please fill the identifier field to proceed recovery procedure" msgid "Please fill the identifier field to proceed recovery procedure"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1368 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1376
msgid "" msgid ""
"An email has been sent to %{mail}. Please follow the instructions on it." "An email has been sent to %{mail}. Please follow the instructions on it."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1377 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1385
msgid "Your new password has been sent to %{mail}." msgid "Your new password has been sent to %{mail}."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1522 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1536
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:146 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:146
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:384 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:423
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1538 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1552
msgid "Language" msgid "Language"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1560 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:1574
msgid "Connected as" msgid "Connected as"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2610 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2624
msgid "LSsession : The constant %{const} is not defined." msgid "LSsession : The constant %{const} is not defined."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2613 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2627
msgid "" msgid ""
"LSsession : The %{addon} support is uncertain. Verify system compatibility " "LSsession : The %{addon} support is uncertain. Verify system compatibility "
"and the add-on configuration." "and the add-on configuration."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2616 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2630
msgid "" msgid ""
"LSsession : LDAP server's configuration data are invalid. Can't connect." "LSsession : LDAP server's configuration data are invalid. Can't connect."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2619 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2633
msgid "LSsession : Failed to load LSobject type %{type} : unknon type." msgid "LSsession : Failed to load LSobject type %{type} : unknon type."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2622 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2636
msgid "LSsession : Failed to load LSclass %{class}." msgid "LSsession : Failed to load LSclass %{class}."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2625 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2639
msgid "LSsession : Login or password incorrect." msgid "LSsession : Login or password incorrect."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2628 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2642
msgid "LSsession : Impossible to identify you : Duplication of identities." msgid "LSsession : Impossible to identify you : Duplication of identities."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2631 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2645
msgid "LSsession : Can't load class of authentification (%{class})." msgid "LSsession : Can't load class of authentification (%{class})."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2634 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2648
msgid "LSsession : Can't connect to LDAP server." msgid "LSsession : Can't connect to LDAP server."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2637 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2651
msgid "LSsession : Impossible to authenticate you." msgid "LSsession : Impossible to authenticate you."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2640 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2654
msgid "LSsession : Your are not authorized to do this action." msgid "LSsession : Your are not authorized to do this action."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2643 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2657
msgid "LSsession : Some informations are missing to display this page." msgid "LSsession : Some informations are missing to display this page."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2646 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2660
msgid "" msgid ""
"LSsession : The function of the custom action %{name} does not exists or is " "LSsession : The function of the custom action %{name} does not exists or is "
"not configured." "not configured."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2649 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2663
msgid "LSsession : Fail to retreive user's LDAP credentials from LSauth." msgid "LSsession : Fail to retreive user's LDAP credentials from LSauth."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2652 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2666
msgid "" msgid ""
"LSsession : Fail to reconnect to LDAP server with user's LDAP credentials." "LSsession : Fail to reconnect to LDAP server with user's LDAP credentials."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2655 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2669
msgid "LSsession : No import/export format define for this object type." msgid "LSsession : No import/export format define for this object type."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2658 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2672
msgid "" msgid ""
"LSsession : Error during creation of list of levels. Contact administrators. " "LSsession : Error during creation of list of levels. Contact administrators. "
"(Code : %{code})" "(Code : %{code})"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2661 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2675
msgid "LSsession : The password recovery is disabled for this LDAP server." msgid "LSsession : The password recovery is disabled for this LDAP server."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2664 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2678
msgid "" msgid ""
"LSsession : Some informations are missing to recover your password. Contact " "LSsession : Some informations are missing to recover your password. Contact "
"administrators." "administrators."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2667 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2681
msgid "" msgid ""
"LSsession : Error during password recovery. Contact administrators.(Step : " "LSsession : Error during password recovery. Contact administrators.(Step : "
"%{step})" "%{step})"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2670 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2684
msgid "" msgid ""
"LSsession : call function %{func} do not provided from LSaddon %{addon}." "LSsession : call function %{func} do not provided from LSaddon %{addon}."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2673 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2687
msgid "LSsession : problem during initialisation." msgid "LSsession : problem during initialisation."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2676 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2690
msgid "LSsession : view function %{func} for LSaddon %{addon} doet not exist." msgid "LSsession : view function %{func} for LSaddon %{addon} doet not exist."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2679 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2693
msgid "LSsession : invalid related object's DN pass in parameter." msgid "LSsession : invalid related object's DN pass in parameter."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2682 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2696
msgid "" msgid ""
"LSsession : the LSaddon %{addon} keep using old-style addon view URL. Please " "LSsession : the LSaddon %{addon} keep using old-style addon view URL. Please "
"upgrade it." "upgrade it."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2685 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2699
msgid "" msgid ""
"LSsession : You have been redirect from an old-style URL %{url}. Please " "LSsession : You have been redirect from an old-style URL %{url}. Please "
"upgrade this link." "upgrade this link."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2688 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsession.php:2702
msgid "" msgid ""
"LSsession : You still seen use LSsession :: redirect() in your custom code. " "LSsession : You still seen use LSsession :: redirect() in your custom code. "
"Please upgrade it and use LSurl :: redirect()." "Please upgrade it and use LSurl :: redirect()."
@ -1129,8 +1137,8 @@ msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSformElement_select_object.php:69 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSformElement_select_object.php:69
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSformElement_select_object.php:85 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSformElement_select_object.php:85
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsearchEntry.php:183 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsearchEntry.php:183
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:906 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:945
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1040 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1079
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
@ -1140,8 +1148,8 @@ msgid "No object."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSrelation.php:267 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSrelation.php:267
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:371 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:410
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:845 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:884
msgid "New" msgid "New"
msgstr "" msgstr ""
@ -1279,12 +1287,12 @@ msgid "No field."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSform.php:203 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSform.php:203
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:525 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:564
msgid "Do you really want to execute custom action %{title} on this search ?" msgid "Do you really want to execute custom action %{title} on this search ?"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSform.php:209 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSform.php:209
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1207 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1246
msgid "" msgid ""
"Do you really want to execute custom action %{customAction} on " "Do you really want to execute custom action %{customAction} on "
"%{objectname} ?" "%{objectname} ?"
@ -1376,6 +1384,10 @@ msgstr ""
msgid "Fail to determine the requested URL (loop detected)." msgid "Fail to determine the requested URL (loop detected)."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSurl.php:221
msgid "The requested page was not found."
msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSattr_html_date.php:43 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSattr_html_date.php:43
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSattr_html_select_list.php:63 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSattr_html_select_list.php:63
msgid "Invalid value" msgid "Invalid value"
@ -1725,12 +1737,12 @@ msgid "Unknown error : %{error}"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsearchEntry.php:159 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsearchEntry.php:159
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1032 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1071
msgid "View" msgid "View"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsearchEntry.php:175 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/class/class.LSsearchEntry.php:175
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:898 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:937
msgid "Copy" msgid "Copy"
msgstr "" msgstr ""
@ -1756,69 +1768,69 @@ msgstr ""
msgid "You must provide pattern for global search." msgid "You must provide pattern for global search."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:377 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:416
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:721 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:760
msgid "Import" msgid "Import"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:389 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:428
msgid "Reset" msgid "Reset"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:427 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:466
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:627 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:666
#: templates/default/global_search.tpl:7 #: templates/default/global_search.tpl:7
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:428 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:467
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:628 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:667
msgid "Approximative search" msgid "Approximative search"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:429 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:468
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:629 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:668
msgid "Recursive search" msgid "Recursive search"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:506 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:545
msgid "" msgid ""
"The custom action %{title} have been successfully execute on this search." "The custom action %{title} have been successfully execute on this search."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:804 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:843
msgid "Data entry form" msgid "Data entry form"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:810 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:849
msgid "Object has been added." msgid "Object has been added."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:937 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:976
msgid "My account" msgid "My account"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:990 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1029
msgid "The object has been partially modified." msgid "The object has been partially modified."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:993 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1032
msgid "The object has been modified successfully." msgid "The object has been modified successfully."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1097 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1136
msgid "%{objectname} has been successfully deleted." msgid "%{objectname} has been successfully deleted."
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1106 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1145
msgid "Deleting : %{objectname}" msgid "Deleting : %{objectname}"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1107 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1146
msgid "Do you really want to delete <strong>%{displayName}</strong> ?" msgid "Do you really want to delete <strong>%{displayName}</strong> ?"
msgstr "" msgstr ""
#: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1181 #: /home/brenard/dev/ldapsaisie_clean3/public_html/includes/routes.php:1220
msgid "" msgid ""
"The custom action %{customAction} have been successfully execute on " "The custom action %{customAction} have been successfully execute on "
"%{objectname}." "%{objectname}."
@ -1837,15 +1849,11 @@ msgstr ""
msgid "Folder not found" msgid "Folder not found"
msgstr "" msgstr ""
#: templates/default/fatal_error.tpl:20
msgid "A fatal error occured. If problem persist, please contact support."
msgstr ""
#: templates/default/LSaccessRightsMatrixView.tpl:17 #: templates/default/LSaccessRightsMatrixView.tpl:17
msgid "Attributes / Profiles" msgid "Attributes / Profiles"
msgstr "" msgstr ""
#: templates/default/fatal_error.tpl:24 #: templates/default/error.tpl:22
msgid "Details" msgid "Details"
msgstr "" msgstr ""
@ -1921,10 +1929,6 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: templates/default/error_404.tpl:20
msgid "The requested page was not found."
msgstr ""
#: templates/default/LSaccessRightsMatrixView.tpl:48 #: templates/default/LSaccessRightsMatrixView.tpl:48
msgid "Their relations with other objects" msgid "Their relations with other objects"
msgstr "" msgstr ""

View file

@ -3,7 +3,7 @@
<html> <html>
<head> <head>
<meta http-equiv="content-type" content="text/html; charset={$LSencoding}"> <meta http-equiv="content-type" content="text/html; charset={$LSencoding}">
<title>LdapSaisie{if $pagetitle != ''} - {$pagetitle|escape:"htmlall"}{/if}</title> <title>LdapSaisie - {if isset($pagetitle) && $pagetitle}{$pagetitle|escape:"htmlall"}{else}{$error}{/if}</title>
<base href="{$public_root_url}/"/> <base href="{$public_root_url}/"/>
<link rel="icon" href="image/favicon" /> <link rel="icon" href="image/favicon" />
<link rel="stylesheet" type="text/css" href="{css name='base.css'}" title="Normal" /> <link rel="stylesheet" type="text/css" href="{css name='base.css'}" title="Normal" />
@ -14,13 +14,13 @@
{include file='ls:LSdefault.tpl'} {include file='ls:LSdefault.tpl'}
<div id="fatal_error"> <div id="error">
<h1>{tr msg="A fatal error occured. If problem persist, please contact support."}</h1> <h1>{$error}</h1>
{if $fatal_error} {if isset($details)}
<pre class='details'> <pre class='details'>
<em>{tr msg="Details"} :</em> <em>{tr msg="Details"} :</em>
{$fatal_error}</p> {$details}</p>
{/if} {/if}
</div> </div>

View file

@ -1,23 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset={$LSencoding}">
<title>LdapSaisie{if $pagetitle != ''} - {$pagetitle|escape:"htmlall"}{/if}</title>
<base href="{$public_root_url}/"/>
<link rel="icon" href="image/favicon" />
<link rel="stylesheet" type="text/css" href="{css name='base.css'}" title="Normal" />
<link rel="stylesheet" type="text/css" href="{css name='base_print.css'}" media='print' title="Normal" />
{include file='ls:LSsession_css.tpl'}
</head>
<body>
{include file='ls:LSdefault.tpl'}
<div id="fatal_error">
<h1>{tr msg="The requested page was not found."}</h1>
</div>
{include file='ls:LSsession_js.tpl'}
</body>
</html>