From f67e398142d2ba7c9cb27dbc433ae0b11ac4742c Mon Sep 17 00:00:00 2001 From: Benjamin Renard Date: Thu, 12 Mar 2009 18:01:31 +0000 Subject: [PATCH] =?UTF-8?q?-=20Corrections=20de=20probl=C3=A8me=20de=20tra?= =?UTF-8?q?duction=20-=20D=C3=A9but=20de=20traduction=20en=20fran=C3=A7ais?= =?UTF-8?q?=20-=20LSsession=20:=20D=C3=A9sactivation=20du=20cache=20de=20S?= =?UTF-8?q?marty=20lorsque=20le=20mode=20debug=20est=20=09activ=C3=A9.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../config.LSobjects.LSeecompany.php | 4 +- .../LSobjects/config.LSobjects.LSeegroup.php | 4 +- .../LSobjects/config.LSobjects.LSeepeople.php | 10 +- trunk/conf/config.inc.php | 15 +- trunk/includes/class/class.LSattribute.php | 2 +- trunk/includes/class/class.LSform.php | 2 +- trunk/includes/class/class.LSformElement.php | 2 +- .../class/class.LSformElement_password.php | 2 +- .../class.LSformElement_select_object.php | 2 +- trunk/includes/class/class.LSsession.php | 12 +- trunk/includes/functions.php | 2 +- .../l10n/en_US.UTF8/LC_MESSAGES/ldapsaisie.mo | Bin 1739 -> 0 bytes .../lang/fr_FR.UTF8/LC_MESSAGES/ldapsaisie.mo | Bin 0 -> 10505 bytes .../lang/fr_FR.UTF8/LC_MESSAGES/ldapsaisie.po | 998 +++++++++++++++ trunk/lang/generate_ldapsaisie.pot.sh | 7 + trunk/lang/ldapsaisie.pot | 1073 +++++++++++++++++ trunk/view.php | 6 +- 17 files changed, 2115 insertions(+), 26 deletions(-) delete mode 100644 trunk/l10n/en_US.UTF8/LC_MESSAGES/ldapsaisie.mo create mode 100644 trunk/lang/fr_FR.UTF8/LC_MESSAGES/ldapsaisie.mo create mode 100644 trunk/lang/fr_FR.UTF8/LC_MESSAGES/ldapsaisie.po create mode 100644 trunk/lang/generate_ldapsaisie.pot.sh create mode 100644 trunk/lang/ldapsaisie.pot diff --git a/trunk/conf/LSobjects/config.LSobjects.LSeecompany.php b/trunk/conf/LSobjects/config.LSobjects.LSeecompany.php index 3758a398..a8e4bb76 100644 --- a/trunk/conf/LSobjects/config.LSobjects.LSeecompany.php +++ b/trunk/conf/LSobjects/config.LSobjects.LSeecompany.php @@ -29,7 +29,7 @@ $GLOBALS['LSobjects']['LSeecompany'] = array ( 'orderby' => 'displayName', // possible cases : 'displayName' ou 'subDn' 'container_dn' => 'ou=companies', 'display_name_format' => '%{ou}', - 'label' => _('Sociétés'), + 'label' => _('Company'), 'attrs' => array ( @@ -75,7 +75,7 @@ $GLOBALS['LSobjects']['LSeecompany'] = array ( /* ----------- start -----------*/ 'lsGodfatherDn' => array ( - 'label' => _('Father'), + 'label' => _('Accountable(s)'), 'ldap_type' => 'ascii', 'html_type' => 'select_object', 'html_options' => array( diff --git a/trunk/conf/LSobjects/config.LSobjects.LSeegroup.php b/trunk/conf/LSobjects/config.LSobjects.LSeegroup.php index 65138303..a5807d0e 100644 --- a/trunk/conf/LSobjects/config.LSobjects.LSeegroup.php +++ b/trunk/conf/LSobjects/config.LSobjects.LSeegroup.php @@ -73,7 +73,7 @@ $GLOBALS['LSobjects']['LSeegroup'] = array ( /* ----------- start -----------*/ 'gidNumber' => array ( - 'label' => _('Id'), + 'label' => _('Identifier'), 'ldap_type' => 'numeric', 'html_type' => 'text', 'required' => 1, @@ -151,7 +151,7 @@ $GLOBALS['LSobjects']['LSeegroup'] = array ( /* ----------- start -----------*/ 'lsGodfatherDn' => array ( - 'label' => _('Father(s)'), + 'label' => _('Accountable(s)'), 'ldap_type' => 'ascii', 'html_type' => 'select_object', 'html_options' => array ( diff --git a/trunk/conf/LSobjects/config.LSobjects.LSeepeople.php b/trunk/conf/LSobjects/config.LSobjects.LSeepeople.php index a8e302dd..86594fb6 100644 --- a/trunk/conf/LSobjects/config.LSobjects.LSeepeople.php +++ b/trunk/conf/LSobjects/config.LSobjects.LSeepeople.php @@ -72,7 +72,7 @@ $GLOBALS['LSobjects']['LSeepeople'] = array ( // Layout 'layout' => array ( 'Civilite' => array( - 'label' => 'Civility', + 'label' => _('Civility'), 'img' => 1, 'args' => array ( 'uid', @@ -164,14 +164,14 @@ $GLOBALS['LSobjects']['LSeepeople'] = array ( /* ----------- start -----------*/ 'uidNumber' => array ( - 'label' => _('Identifier (number)'), + 'label' => _('Numeric identifier'), 'ldap_type' => 'numeric', 'html_type' => 'text', 'required' => 1, 'generate_function' => 'generate_uidNumber', 'check_data' => array ( 'numeric' => array( - 'msg' => _("The unique identifier must be an integer.") + 'msg' => _("The numeric identifier must be an integer.") ), ), 'validation' => array ( @@ -353,7 +353,7 @@ $GLOBALS['LSobjects']['LSeepeople'] = array ( /* ----------- start -----------*/ 'homeDirectory' => array ( - 'label' => _('Self Directory'), + 'label' => _('Home Directory'), 'ldap_type' => 'ascii', 'html_type' => 'text', 'required' => 1, @@ -580,7 +580,7 @@ $GLOBALS['LSobjects']['LSeepeople'] = array ( /* ----------- start -----------*/ 'lsGodfatherDn' => array ( - 'label' => _('Father(s)'), + 'label' => _('Accountable(s)'), 'ldap_type' => 'ascii', 'html_type' => 'select_object', 'html_options' => array ( diff --git a/trunk/conf/config.inc.php b/trunk/conf/config.inc.php index 9d4cd558..251a02fc 100644 --- a/trunk/conf/config.inc.php +++ b/trunk/conf/config.inc.php @@ -20,6 +20,15 @@ ******************************************************************************/ + +// Définitions des locales +define('LS_TEXT_DOMAIN', 'ldapsaisie'); +define('LS_LOCALE', 'fr_FR.UTF8'); + +setlocale(LC_ALL, LS_LOCALE); +bindtextdomain(LS_TEXT_DOMAIN, 'lang'); +textdomain(LS_TEXT_DOMAIN); + // Configuration LDAP Saisie : $GLOBALS['LSconfig'] = array( 'NetLDAP2' => '/usr/share/php/Net/LDAP2.php', @@ -182,12 +191,6 @@ define('NB_LSOBJECT_LIST_SELECT',11); define('MAX_SEND_FILE_SIZE',2000000); -// Définitions des locales -$textdomain = 'ldapsaisie'; -bindtextdomain($textdomain, '/var/www/ldapsaisie/trunk/l10n'); -textdomain($textdomain); -setlocale(LC_ALL, $GLOBALS['LSconfig']['lang']); - // Définitions des dossiers d'inclusions define('LS_CONF_DIR','conf/'); define('LS_OBJECTS_DIR', LS_CONF_DIR . 'LSobjects/'); diff --git a/trunk/includes/class/class.LSattribute.php b/trunk/includes/class/class.LSattribute.php index 45694b1a..1264ffdf 100644 --- a/trunk/includes/class/class.LSattribute.php +++ b/trunk/includes/class/class.LSattribute.php @@ -244,7 +244,7 @@ class LSattribute { return; } if(!isset($rule_infos['msg'])) - $rule_infos['msg']=getFData(_('La valeur du champs %{label} est invalide.'),$this -> config['label']); + $rule_infos['msg']=getFData(_('The value of field %{label} is invalid.'),$this -> config['label']); if(!isset($rule_infos['params'])) $rule_infos['params']=NULL; $form -> addRule($this -> name,$rule,array('msg' => $rule_infos['msg'], 'params' => $rule_infos['params'])); diff --git a/trunk/includes/class/class.LSform.php b/trunk/includes/class/class.LSform.php index abd6f628..e0c32780 100644 --- a/trunk/includes/class/class.LSform.php +++ b/trunk/includes/class/class.LSform.php @@ -110,7 +110,7 @@ class LSform { if (is_array($GLOBALS['LSobjects'][$LSform_object['type']]['LSform']['layout'])) { $GLOBALS['Smarty'] -> assign('LSform_layout',$GLOBALS['LSobjects'][$LSform_object['type']]['LSform']['layout']); - $GLOBALS['Smarty'] -> assign('LSform_layout_nofield_label',_('Aucun champ.')); + $GLOBALS['Smarty'] -> assign('LSform_layout_nofield_label',_('No field.')); } $fields = array(); diff --git a/trunk/includes/class/class.LSformElement.php b/trunk/includes/class/class.LSformElement.php index b865a02c..684d2f52 100644 --- a/trunk/includes/class/class.LSformElement.php +++ b/trunk/includes/class/class.LSformElement.php @@ -278,7 +278,7 @@ class LSformElement { 'value' => '', 'values' => $this -> values, 'attr_name' => $this -> name, - 'noValueTxt' => _('No value set'), + 'noValueTxt' => _('No set value'), 'fieldTemplate' => $this -> fieldTemplate ) ) diff --git a/trunk/includes/class/class.LSformElement_password.php b/trunk/includes/class/class.LSformElement_password.php index 94ded64f..b0fedfc3 100644 --- a/trunk/includes/class/class.LSformElement_password.php +++ b/trunk/includes/class/class.LSformElement_password.php @@ -115,7 +115,7 @@ class LSformElement_password extends LSformElement { 'LSformElement_password', array( 'generate' => _('Generate a password.'), - 'verify' => _('Check equality with stored password.'), + 'verify' => _('Compare with stored password.'), 'view' => _('Display password.'), 'hide' => _('Hide password.'), 'mail' => _("The password will be sent by mail if changed. Click to disable automatic notification."), diff --git a/trunk/includes/class/class.LSformElement_select_object.php b/trunk/includes/class/class.LSformElement_select_object.php index dd273537..022bcd83 100644 --- a/trunk/includes/class/class.LSformElement_select_object.php +++ b/trunk/includes/class/class.LSformElement_select_object.php @@ -69,7 +69,7 @@ class LSformElement_select_object extends LSformElement { 'addBtn' => _('Modify'), 'deleteBtns' => _('Delete'), 'multiple' => (($this -> params['multiple'])?1:0), - 'noValueLabel' => _('No value set'), + 'noValueLabel' => _('No set value'), 'noResultLabel' => _('No result') ) ); diff --git a/trunk/includes/class/class.LSsession.php b/trunk/includes/class/class.LSsession.php index f1e3411b..860b36bd 100644 --- a/trunk/includes/class/class.LSsession.php +++ b/trunk/includes/class/class.LSsession.php @@ -116,6 +116,14 @@ class LSsession { $GLOBALS['Smarty'] -> template_dir = LS_TEMPLATES_DIR; $GLOBALS['Smarty'] -> compile_dir = LS_TMP_DIR; + if ($GLOBALS['LSdebug']['active']) { + $GLOBALS['Smarty'] -> caching = 0; + // cache files are always regenerated + $GLOBALS['Smarty'] -> force_compile = TRUE; + // recompile template if it is changed + $GLOBALS['Smarty'] -> compile_check = TRUE; + } + $GLOBALS['Smarty'] -> assign('LS_CSS_DIR',LS_CSS_DIR); $GLOBALS['Smarty'] -> assign('LS_IMAGES_DIR',LS_IMAGES_DIR); @@ -858,7 +866,7 @@ class LSsession { $GLOBALS['Smarty'] -> assign('loginform_ldapservers_name',$ldapservers_name); $GLOBALS['Smarty'] -> assign('loginform_ldapservers_index',$ldapservers_index); - $GLOBALS['Smarty'] -> assign('loginform_label_level',_('Niveau')); + $GLOBALS['Smarty'] -> assign('loginform_label_level',_('Level')); $GLOBALS['Smarty'] -> assign('loginform_label_user',_('Identifier')); $GLOBALS['Smarty'] -> assign('loginform_label_pwd',_('Password')); $GLOBALS['Smarty'] -> assign('loginform_label_submit',_('Connect')); @@ -898,7 +906,7 @@ class LSsession { $GLOBALS['Smarty'] -> assign('recoverpasswordform_ldapservers_index',$ldapservers_index); $GLOBALS['Smarty'] -> assign('recoverpasswordform_label_user',_('Identifier')); - $GLOBALS['Smarty'] -> assign('recoverpasswordform_label_submit',_('Valid')); + $GLOBALS['Smarty'] -> assign('recoverpasswordform_label_submit',_('Validate')); $GLOBALS['Smarty'] -> assign('recoverpasswordform_label_back',_('Back')); $recoverpassword_msg = _('Please fill the identifier field to proceed recovery procedure'); diff --git a/trunk/includes/functions.php b/trunk/includes/functions.php index 9b5ce7dc..97ea0844 100644 --- a/trunk/includes/functions.php +++ b/trunk/includes/functions.php @@ -168,7 +168,7 @@ function loadDir($dir,$regexpr='^.*\.php$') { } } else { - die(_('Unknown folder ('.$dir.').')); + die(_('Folder not found').' : '.$dir); } return true; } diff --git a/trunk/l10n/en_US.UTF8/LC_MESSAGES/ldapsaisie.mo b/trunk/l10n/en_US.UTF8/LC_MESSAGES/ldapsaisie.mo deleted file mode 100644 index f10f2139a990bf45262510618b2a2aeb635366b8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1739 zcmZ{kKWrRD6vhV#kR1O)2oNCzlMrMAT61g3vAqODVxNP>U3~a1C=DWWyU*(hyEB`a zSsM${P*XsGKtf6fQY6Z>R1pOgDX1yv=_o1ky}dg-m@x9(Z)fJs%zJO%=Rb}e`bMBV zkNzV1@8~b1fB67@&<;N+#FO9=@M-V__!#&)coaMfJ_=r(jMu>v7+(cXgS+5M;El=n zXOPeN6Xbn=gM9Zt;N#%&hsNWR6E1;#-v{6l_!0OB_$~M>cmq5R-U1&6e+9pS@4ta; zcNLTDe-83F+mrDZAg_N7J^_9Q;!pgDpI5-2K+eY<@D%tLcmzC(P3-pzAfI;%JPgi) z&wvXPz7Mkf$6yTV$@qJa{rLgp{M`a^wD<+&lyh#LL+3k?lEybcAe_C%dE&bdp&vuX z*5(YLX?*Te=$sdBEp+yU@8z6vV_&(k@0@>eK6B(fNs3CP3$eVV%1YW%p>q|ib|hBF zr%qQvTO&HoQSGEQsWqmilamQAE;?IRBrAs{U8zE>nLw^`6xco^ncA{cCL__EQ6V@z zs)Ky>GyeQsni=vzR?5q5Rp^XnMR!nSs*;Hu?&8#J#*VI0m|iSYzO$T+Xf2CAggpXFB&X0T?KQPFh&_pVKG#`vq0W6Y zw25r>*N4%vqb3p2iVBp-xpsRYisL9gE8~SEZokov+ie&|8?=q1tT|ve7t44qnV;Bo zl@HO-DdP)Nk4xkQGS^h8jocukTqe)q0r=xxf+e|#^4!lNZSS9YC6*c~IuIqMoFS?BSPx>Rmg<}4^N*rK8k!!11dL^NDKW7TLc z4QjNJ%v2Jnwehh~a3hX@G)x!w^m0Fw6=y5i{0Cr_poI88fyqf)Q|yX9B(Y;%CdNWw zh465!h=X&ihSj<#q){a*^MDri%73Z|4#L?0 diff --git a/trunk/lang/fr_FR.UTF8/LC_MESSAGES/ldapsaisie.mo b/trunk/lang/fr_FR.UTF8/LC_MESSAGES/ldapsaisie.mo new file mode 100644 index 0000000000000000000000000000000000000000..0196c9f1444c814a0ce814200fe089482ce6b6e2 GIT binary patch literal 10505 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, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: LdapSaisie\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-03-12 18:48+0100\n" +"PO-Revision-Date: 2009-03-12 18:51+0100\n" +"Last-Translator: Benjamin Renard \n" +"Language-Team: LdapSaisie \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: French\n" +"X-Poedit-Country: FRANCE\n" +"X-Poedit-SourceCharset: utf-8\n" + +#: select.php:186 +#: includes/class/class.LSsession.php:1067 +#: view.php:245 +msgid "Refresh" +msgstr "Rafraîchir" + +#: select.php:290 +#: view.php:372 +msgid "Search" +msgstr "Rechercher" + +#: select.php:294 +#: view.php:376 +msgid "Recursive search" +msgstr "Recherche récurssive" + +#: select.php:295 +#: view.php:377 +msgid "Approximative search" +msgstr "Recherche approximative" + +#: select.php:297 +#: view.php:379 +msgid "This search didn't get any result." +msgstr "Cette recherche n'a retournée aucun résultat" + +#: remove.php:35 +#: remove.php:46 +msgid "Deleting" +msgstr "Suppression" + +#: remove.php:37 +msgid "has been deleted successfully" +msgstr "a bien été supprimé" + +#: remove.php:47 +#: includes/class/class.LSrelation.php:38 +#: includes/class/class.LSform.php:146 +msgid "Do you really want to delete" +msgstr "Voulez-vous vraiement supprimer" + +#: remove.php:49 +#: includes/class/class.LSsession.php:910 +#: includes/class/class.LSconfirmBox.php:37 +#: includes/class/class.LSsmoothbox.php:39 +#: includes/class/class.LSform.php:63 +msgid "Validate" +msgstr "Valider" + +#: create.php:50 +msgid "Object has been added." +msgstr "L'objet a été ajouté." + +#: create.php:89 +#: view.php:220 +#: view.php:235 +msgid "New" +msgstr "Nouveau" + +#: modify.php:48 +#: includes/class/class.LSrelation.php:82 +#: includes/class/class.LSformElement_select_object.php:69 +#: view.php:43 +#: view.php:292 +#: view.php:381 +msgid "Modify" +msgstr "Modifier" + +#: modify.php:54 +msgid "The object has been partially modified." +msgstr "L'objet a été partiellement modifié." + +#: modify.php:57 +msgid "The object has been modified successfully." +msgstr "L'objet a bien été modifié." + +#: modify.php:98 +#: view.php:285 +msgid "View" +msgstr "Voir" + +#: modify.php:105 +#: includes/class/class.LSrelation.php:40 +#: includes/class/class.LSformElement_select_object.php:70 +#: includes/class/class.LSformElement_select_object.php:82 +#: includes/class/class.LSform.php:148 +#: view.php:59 +#: view.php:308 +msgid "Delete" +msgstr "Supprimer" + +#: index.php:28 +msgid "Home" +msgstr "Accueil" + +#: includes/functions.php:139 +msgid "Function 'getFData' : The method %{meth} of the object %{obj} doesn't exist." +msgstr "Fonction getFData : La méthode %{meth} de l'objet %{obj} n'existe pas." + +#: includes/functions.php:171 +msgid "Folder not found" +msgstr "Dossier introuvable" + +#: includes/addons/LSaddons.posix.php:27 +msgid "POSIX Support : The constant %{const} is not defined." +msgstr "" + +#: includes/addons/LSaddons.posix.php:31 +msgid "POSIX Support : Unable to load LSaddons::FTP." +msgstr "" + +#: includes/addons/LSaddons.posix.php:36 +msgid "POSIX : The attribute %{dependency} is missing. Unable to forge the attribute %{attr}." +msgstr "" + +#: includes/addons/LSaddons.maildir.php:27 +msgid "MAILDIR Support : Unable to load LSaddons::FTP." +msgstr "" + +#: includes/addons/LSaddons.maildir.php:30 +msgid "MAILDIR Support : The constant %{const} is not defined." +msgstr "" + +#: includes/addons/LSaddons.maildir.php:35 +msgid "MAILDIR : Error while creating maildir on the remote server." +msgstr "" + +#: includes/addons/LSaddons.maildir.php:38 +msgid "MAILDIR : Error while deleting the maildir on the remote server." +msgstr "" + +#: includes/addons/LSaddons.maildir.php:41 +msgid "MAILDIR : Error while renaming the maildir on the remote server." +msgstr "" + +#: includes/addons/LSaddons.maildir.php:44 +msgid "MAILDIR : Error while recovering remote path of the maildir." +msgstr "" + +#: includes/addons/LSaddons.samba.php:27 +msgid "SAMBA Support : Unable to load smHash class." +msgstr "" + +#: includes/addons/LSaddons.samba.php:30 +msgid "SAMBA Support : The constant %{const} is not defined." +msgstr "" + +#: includes/addons/LSaddons.samba.php:34 +msgid "SAMBA Support : The constants LS_SAMBA_SID_BASE_USER and LS_SAMBA_SID_BASE_GROUP ne doivent pas avoir la même parité pour l'unicité des sambaSID." +msgstr "" + +#: includes/addons/LSaddons.samba.php:39 +msgid "SAMBA Support : The attribute%{dependency} is missing. Unable to forge the attribute %{attr}." +msgstr "" + +#: includes/addons/LSaddons.mail.php:27 +msgid "MAIL Support : Pear::MAIL is missing." +msgstr "" + +#: includes/addons/LSaddons.mail.php:32 +msgid "MAIL Error : %{msg}" +msgstr "" + +#: includes/addons/LSaddons.mail.php:36 +msgid "MAIL : Error while sending your email" +msgstr "" + +#: includes/addons/LSaddons.supann.php:27 +msgid "SUPANN Support : The constant %{const} is not defined." +msgstr "" + +#: includes/addons/LSaddons.supann.php:32 +msgid "SUPANN Support : The attribute %{dependency} is missing. Unable to forge the attribute %{attr}." +msgstr "" + +#: includes/addons/LSaddons.ftp.php:27 +msgid "FTP Support : Pear::Net_FTP is missing." +msgstr "" + +#: includes/addons/LSaddons.ftp.php:31 +msgid "FTP Support : The constant %{const} is not defined." +msgstr "" + +#: includes/addons/LSaddons.ftp.php:37 +msgid "Net_FTP Error : %{msg}" +msgstr "" + +#: includes/addons/LSaddons.ftp.php:41 +msgid "FTP Support : Unable to connect to FTP Server (Step : %{etape})." +msgstr "" + +#: includes/addons/LSaddons.ftp.php:44 +msgid "FTP Support : Unable to make directory %{dir} on the remote server." +msgstr "" + +#: includes/addons/LSaddons.ftp.php:47 +msgid "FTP Support :Unable to delete directory %{dir} on the remote server." +msgstr "" + +#: includes/addons/LSaddons.ftp.php:50 +msgid "FTP Support : Unable to modify rights on the directory %{dir} on the remote server." +msgstr "" + +#: includes/addons/LSaddons.ftp.php:53 +msgid "FTP Support : Unable to rename folder from %{old} to %{new} on the remote server." +msgstr "" + +#: includes/class/class.LSsession.php:850 +msgid "Connection" +msgstr "Connexion" + +#: includes/class/class.LSsession.php:860 +#: includes/class/class.LSsession.php:899 +msgid "LDAP server" +msgstr "Serveur LDAP" + +#: includes/class/class.LSsession.php:870 +#: includes/class/class.LSsession.php:1695 +msgid "Level" +msgstr "Niveau" + +#: includes/class/class.LSsession.php:871 +#: includes/class/class.LSsession.php:909 +#: conf/LSobjects/config.LSobjects.LSeegroup.php:76 +#: conf/LSobjects/config.LSobjects.LSeepeople.php:125 +msgid "Identifier" +msgstr "Identifiant" + +#: includes/class/class.LSsession.php:872 +#: conf/LSobjects/config.LSobjects.LSeepeople.php:450 +msgid "Password" +msgstr "Mot de passe" + +#: includes/class/class.LSsession.php:873 +msgid "Connect" +msgstr "Se connecter" + +#: includes/class/class.LSsession.php:874 +msgid "Forgot your password ?" +msgstr "Mot de passe perdu ?" + +#: includes/class/class.LSsession.php:892 +msgid "Recovery of your credentials" +msgstr "Récupération de votre mot de passe" + +#: includes/class/class.LSsession.php:911 +msgid "Back" +msgstr "Retour" + +#: includes/class/class.LSsession.php:913 +msgid "Please fill the identifier field to proceed recovery procedure" +msgstr "Merci d'entrer votre identifiant pour poursuivre la procédure de récupération" + +#: includes/class/class.LSsession.php:917 +msgid "An email has been sent to %{mail}. Please follow the instructions on it." +msgstr "Un e-mail vient de vous être envoyé à l'adresse %{mail}. Merci de suivre les indications qu'il contient." + +#: includes/class/class.LSsession.php:925 +msgid "Your new password has been sent to %{mail}. " +msgstr "Votre nouveau mot de passe vous a été envoyé à l'adresse %{mail}." + +#: includes/class/class.LSsession.php:1102 +msgid "Connected as" +msgstr "Connecté en tant que" + +#: includes/class/class.LSsession.php:1332 +#: view.php:72 +msgid "My account" +msgstr "Mon compte" + +#: includes/class/class.LSsession.php:1823 +msgid "LSsession : The constant %{const} is not defined." +msgstr "LSsession : La constante %{const} n'est pas définie." + +#: includes/class/class.LSsession.php:1826 +msgid "LSsession : The %{addon} support is uncertain. Verify system compatibility and the add-on configuration." +msgstr "" + +#: includes/class/class.LSsession.php:1829 +msgid "LSsession : LDAP server's configuration data are invalid. Impossible d'établir une connexion." +msgstr "" + +#: includes/class/class.LSsession.php:1832 +msgid "LSsession : Failed to load LSobject type %{type} : unknon type." +msgstr "" + +#: includes/class/class.LSsession.php:1839 +msgid "LSsession : Login or password incorrect." +msgstr "" + +#: includes/class/class.LSsession.php:1842 +msgid "LSsession : Impossible to identify you : Duplication of identities." +msgstr "" + +#: includes/class/class.LSsession.php:1845 +msgid "LSsession : Can't load Smarty template engine." +msgstr "" + +#: includes/class/class.LSsession.php:1848 +msgid "LSsession : Can't connect to LDAP server." +msgstr "" + +#: includes/class/class.LSsession.php:1851 +msgid "LSsession : Impossible to load authentification objects's class." +msgstr "" + +#: includes/class/class.LSsession.php:1854 +msgid "LSsession : Your are not authorized to do this action." +msgstr "" + +#: includes/class/class.LSsession.php:1857 +msgid "LSsession : Some informations are missing to display this page." +msgstr "" + +#: includes/class/class.LSsession.php:1861 +msgid "LSsession : Error during creation of list of levels. Contact administrators. (Code : %{code})" +msgstr "" + +#: includes/class/class.LSsession.php:1864 +msgid "LSsession : The password recovery is disabled for this LDAP server." +msgstr "" + +#: includes/class/class.LSsession.php:1867 +msgid "LSsession : Some informations are missing to recover your password. Contact administrators." +msgstr "" + +#: includes/class/class.LSsession.php:1870 +msgid "LSsession : Error during password recovery. Contact administrators.(Step : %{step})" +msgstr "" + +#: includes/class/class.LSsession.php:1874 +msgid "LSsession : problem during initialisation." +msgstr "" + +#: includes/class/class.LSsession.php:1880 +msgid "LSrelations : The listing function for the relation %{relation} is unknow." +msgstr "" + +#: includes/class/class.LSsession.php:1883 +msgid "LSrelations : The update function of the relation %{relation} is unknow." +msgstr "" + +#: includes/class/class.LSsession.php:1886 +msgid "LSrelations : Error during relation update of the relation %{relation}." +msgstr "" + +#: includes/class/class.LSsession.php:1889 +msgid "LSrelations : Object type %{LSobject} unknow (Relation : %{relation})." +msgstr "" + +#: includes/class/class.LSsession.php:1892 +msgid "LSrelation : Some parameters are missing in the invocation of the methods of handling relations standard (Methode : %{meth})." +msgstr "" + +#: includes/class/class.LSattribute.php:247 +msgid "The value of field %{label} is invalid." +msgstr "La valeur du champ %{label} est incorrecte." + +#: includes/class/class.LSattribute.php:690 +msgid "LSattribute : Attribute %{attr} : LDAP or HTML types unknow (LDAP = %{ldap} & HTML = %{html})." +msgstr "" + +#: includes/class/class.LSattribute.php:693 +msgid "LSattribute : The function %{func} to display the attribute %{attr} is unknow." +msgstr "" + +#: includes/class/class.LSattribute.php:696 +msgid "LSattribute : The rule %{rule} to validate the attribute %{attr} is unknow." +msgstr "" + +#: includes/class/class.LSattribute.php:699 +msgid "LSattribute : Configuration data to verify the attribute %{attr} are incorrect." +msgstr "" + +#: includes/class/class.LSattribute.php:702 +msgid "LSattribute : The function %{func} to save the attribute %{attr} is unknow." +msgstr "" + +#: includes/class/class.LSattribute.php:705 +msgid "LSattribute : The value of the attribute %{attr} can't be generated." +msgstr "" + +#: includes/class/class.LSattribute.php:708 +msgid "LSattribute : Generation of the attribute %{attr} failed." +msgstr "" + +#: includes/class/class.LSattribute.php:711 +msgid "LSattribute : Generation of the attribute %{attr} did not return a correct value." +msgstr "" + +#: includes/class/class.LSattribute.php:714 +msgid "LSattribute : The attr_%{type} of the attribute %{name} is not yet defined." +msgstr "" + +#: includes/class/class.LSconfirmBox.php:35 +msgid "Confirmation" +msgstr "Confirmation" + +#: includes/class/class.LSconfirmBox.php:36 +msgid "You confirm your choice ?" +msgstr "Confirmez-vous votre choix ?" + +#: includes/class/class.LSconfirmBox.php:38 +msgid "Cancel" +msgstr "Annuler" + +#: includes/class/class.LSformElement_textarea.php:50 +msgid "Clear" +msgstr "Nottoyer" + +#: includes/class/class.LSformElement_url.php:50 +msgid "Display this website." +msgstr "Afficher le site internet." + +#: includes/class/class.LSformElement_url.php:51 +msgid "Add this website to my bookmarks." +msgstr "Ajouter ce site internet à mes favoris." + +#: includes/class/class.LSformElement_ssh_key.php:57 +msgid "Display the full key." +msgstr "Affichier la clé en entier." + +#: includes/class/class.LSformElement_ssh_key.php:79 +msgid "Unknown type" +msgstr "Type inconnu" + +#: includes/class/class.LSrelation.php:39 +msgid "Warning" +msgstr "Attention" + +#: includes/class/class.LSrelation.php:67 +#: includes/class/class.LSrelation.php:198 +msgid "No object." +msgstr "Aucun objet." + +#: includes/class/class.LSattr_html.php:113 +msgid "LSattr_html : The method addToForm() of the HTML type of the attribute %{attr} is not defined." +msgstr "" + +#: includes/class/class.LSattr_html.php:117 +msgid "LSattr_html_%{type} : Multiple data are not supported for this field type." +msgstr "" + +#: includes/class/class.LSformElement_rss.php:49 +msgid "Display RSS stack." +msgstr "Afficher la file RSS." + +#: includes/class/class.LSformElement_maildir.php:69 +msgid "Concurrent creation or modification of the maildir by many users is enabled. Click to disable." +msgstr "" + +#: includes/class/class.LSformElement_maildir.php:70 +msgid "Click to enable concurrent creation/modification of the maildir by many users at the same time." +msgstr "" + +#: includes/class/class.LSformElement_maildir.php:143 +msgid "The mailbox has been stored in the database." +msgstr "" + +#: includes/class/class.LSformElement_maildir.php:153 +msgid "The mailbox has been deleted." +msgstr "La boîte mail a été supprimée." + +#: includes/class/class.LSformElement_maildir.php:161 +msgid "The mailbox has been moved." +msgstr "La boîte mail a été déplacée." + +#: includes/class/class.LSformElement_maildir.php:168 +msgid "The mailbox has been created." +msgstr "La boîte mail a été créée." + +#: includes/class/class.LSerror.php:100 +msgid "Errors" +msgstr "Erreurs" + +#: includes/class/class.LSerror.php:103 +msgid "Stop" +msgstr "Stop" + +#: includes/class/class.LSerror.php:162 +msgid "Unknown error!" +msgstr "Erreur inconnu !" + +#: includes/class/class.LSformElement_xmpp.php:50 +msgid "Chat with this person." +msgstr "Discuter avec cette personne." + +#: includes/class/class.LSsmoothbox.php:38 +msgid "Are you sure to want to close this window and lose all changes ?" +msgstr "Êtes-vous sûre de vouloir femer cette fenêtre et de perdre tous vos changements ?" + +#: includes/class/class.LSformElement_text.php:56 +msgid "Generate the value" +msgstr "Générer une valeur" + +#: includes/class/class.LSldap.php:402 +msgid "LSldap : Error during the LDAP server connection (%{msg})." +msgstr "LSldap : Erreur durant la connexion au serveur LDAP (%{msg})." + +#: includes/class/class.LSldap.php:405 +msgid "LSldap : Error during the LDAP search (%{msg})." +msgstr "LSldap : Erreur pendant la recherche LDAP (%{msg})." + +#: includes/class/class.LSldap.php:408 +msgid "LSldap : Object type unknown." +msgstr "LSldap : Type d'objet inconnu." + +#: includes/class/class.LSldap.php:411 +msgid "LSldap : Error while fetching the LDAP entry." +msgstr "LSldap : Erreur durant la récupération de l'entrée LDAP." + +#: includes/class/class.LSldap.php:414 +msgid "LSldap : Error while changing the LDAP entry (DN : %{dn})." +msgstr "LSldap : Erreur durant la modification de l'entrée LDAP (DN : %{dn})." + +#: includes/class/class.LSldap.php:417 +msgid "LSldap : Error while deleting empty attributes." +msgstr "LSldap : Erreur durant la suppression des attributs vides." + +#: includes/class/class.LSldap.php:420 +msgid "LSldap : Error while changing the DN of the object." +msgstr "LSldap : Erreur pendant la modification du DN de l'objet." + +#: includes/class/class.LSformElement_mailQuota.php:80 +msgid "Incorrect value" +msgstr "Valeur incorrecte" + +#: includes/class/class.LSformElement_select_object.php:72 +#: includes/class/class.LSformElement.php:281 +msgid "No set value" +msgstr "Aucune valeur définie" + +#: includes/class/class.LSformElement_select_object.php:73 +msgid "No result" +msgstr "Aucun résultat" + +#: includes/class/class.LSformElement_select_object.php:80 +msgid "Fast Add" +msgstr "Ajout rapide" + +#: includes/class/class.LSformElement_select_object.php:81 +msgid "Display advanced search and selection panel." +msgstr "Afficher la fenêtre de recherche et de sélection étendue." + +#: includes/class/class.LSformElement_mail.php:51 +msgid "Send a mail from here." +msgstr "Envoyer un mail depuis l'interface." + +#: includes/class/class.LSformElement_password.php:117 +msgid "Generate a password." +msgstr "Générer un mot de passe." + +#: includes/class/class.LSformElement_password.php:118 +msgid "Compare with stored password." +msgstr "Comparer avec le mot de passe stocké." + +#: includes/class/class.LSformElement_password.php:119 +msgid "Display password." +msgstr "Affiché le mot de passe." + +#: includes/class/class.LSformElement_password.php:120 +msgid "Hide password." +msgstr "Cacher le mot de passe." + +#: includes/class/class.LSformElement_password.php:121 +msgid "The password will be sent by mail if changed. Click to disable automatic notification." +msgstr "Le mot de passe sera envoyé par e-mail en cas de modification. Cliquer pour désactiver la notification." + +#: includes/class/class.LSformElement_password.php:122 +msgid "The password will not be sent if changed. Click to enable automatic notification." +msgstr "Le mot de passe ne sera pas envoyé en cas de modification. Cliquer pour activer la notification automatique." + +#: includes/class/class.LSformElement_password.php:123 +msgid "Modify the mail sent to notice the user" +msgstr "Modifier mail de notification de l'utilisateur" + +#: includes/class/class.LSformElement_password.php:180 +msgid "Notice mail sent." +msgstr "Le mail de notification a été envoyé." + +#: includes/class/class.LSmail.php:61 +msgid "Email" +msgstr "E-mail" + +#: includes/class/class.LSmail.php:62 +msgid "Title" +msgstr "Titre" + +#: includes/class/class.LSmail.php:63 +msgid "Message" +msgstr "Message" + +#: includes/class/class.LSmail.php:75 +msgid "Your message has been sent successfully." +msgstr "Votre message a bien été envoyé." + +#: includes/class/class.LSformElement_boolean.php:52 +msgid "Reset the choice." +msgstr "Réinitialiser le choix." + +#: includes/class/class.LSformElement_boolean.php:60 +msgid "Yes" +msgstr "Oui" + +#: includes/class/class.LSformElement_boolean.php:61 +msgid "No" +msgstr "Non" + +#: includes/class/class.LSformRule.php:57 +msgid "LSformRule_%{type} : Parameter %{param} is not found." +msgstr "" + +#: includes/class/class.LSattr_html_select_object.php:199 +msgid "LSattr_html_select_object : LSobject type is undefined (attribute : %{attr})." +msgstr "" + +#: includes/class/class.LSformRule_regex.php:65 +msgid "LSformRule_regex : Regex has not been configured to validate data." +msgstr "" + +#: includes/class/class.LSformElement_image.php:53 +msgid "Click to enlarge." +msgstr "Cliquer pour agrandir." + +#: includes/class/class.LSformElement_image.php:54 +msgid "Click to delete the picture." +msgstr "Cliquer pour supprimer cette photo." + +#: includes/class/class.LSattr_ldap_password.php:162 +msgid "LSattr_ldap_password : Encoding type %{type} is not supported. This password will be stored in clear text." +msgstr "" + +#: includes/class/class.LSformElement_date.php:141 +msgid "Select in a calendar." +msgstr "Choisir dans un calendrier." + +#: includes/class/class.LSformElement_date.php:142 +msgid "Now." +msgstr "Maintenant." + +#: includes/class/class.LSattr_html_select_list.php:146 +msgid "LSattr_html_select_list : Configuration data are missing to generate the select list of the attribute %{attr}." +msgstr "" + +#: includes/class/class.LSldapObject.php:429 +msgid "The attribute %{attr} is not valid." +msgstr "L'attribut %{attr} n'est pas valide." + +#: includes/class/class.LSldapObject.php:1852 +msgid "LSldapObject : Object type unknown." +msgstr "LSldapObject : Type d'objet inconnu." + +#: includes/class/class.LSldapObject.php:1855 +msgid "LSldapObject : Update form is not defined for the object %{obj}." +msgstr "" + +#: includes/class/class.LSldapObject.php:1858 +msgid "LSldapObject : No form exists for the object %{obj}." +msgstr "" + +#: includes/class/class.LSldapObject.php:1861 +msgid "LSldapObject : The function %{func} to validate the attribute %{attr} the object %{obj} is unknow." +msgstr "" + +#: includes/class/class.LSldapObject.php:1864 +msgid "LSldapObject : Configuration data are missing to validate the attribute %{attr} of the object %{obj}." +msgstr "" + +#: includes/class/class.LSldapObject.php:1868 +msgid "LSldapObject : The function %{func} to be executed on the object event %{event} doesn't exist." +msgstr "" + +#: includes/class/class.LSldapObject.php:1871 +msgid "LSldapObject : The %{func} execution on the object event %{event} failed." +msgstr "" + +#: includes/class/class.LSldapObject.php:1875 +msgid "LSldapObject : Class %{class}, which method %{meth} to be executed on the object event %{event}, doesn't exist." +msgstr "" + +#: includes/class/class.LSldapObject.php:1878 +msgid "LSldapObject : Method %{meth} within %{class} class to be executed on object event %{event}, deoesn't exist." +msgstr "" + +#: includes/class/class.LSldapObject.php:1881 +msgid "LSldapObject : Error while executin %{meth} method within %{class} class, to be executed on object event %{event}." +msgstr "" + +#: includes/class/class.LSldapObject.php:1885 +msgid "LSldapObject : Some configuration data of the object type %{obj} are missing to generate the DN of the new object." +msgstr "" + +#: includes/class/class.LSldapObject.php:1888 +msgid "LSldapObject : The attibute %{attr} of the object is not yet defined. Impossible to generate DN." +msgstr "" + +#: includes/class/class.LSldapObject.php:1891 +msgid "LSldapObject : Without DN, the object could not be changed." +msgstr "" + +#: includes/class/class.LSldapObject.php:1894 +msgid "LSldapObject : The attribute %{attr_depend} depending on the attribute %{attr} doesn't exist." +msgstr "" + +#: includes/class/class.LSldapObject.php:1897 +msgid "LSldapObject : Error during deleting the object %{objectname}." +msgstr "" + +#: includes/class/class.LSldapObject.php:1901 +msgid "LSldapObject : Error during actions to be executed before renaming the objet." +msgstr "" + +#: includes/class/class.LSldapObject.php:1904 +msgid "LSldapObject : Error during actions to be executed after renaming the objet." +msgstr "" + +#: includes/class/class.LSldapObject.php:1908 +msgid "LSldapObject : Error during actions to be executed before deleting the objet." +msgstr "" + +#: includes/class/class.LSldapObject.php:1911 +msgid "LSldapObject : Error during actions to be executed after deleting the objet." +msgstr "" + +#: includes/class/class.LSldapObject.php:1915 +msgid "LSldapObject : Error during the actions to be executed before creating the object." +msgstr "" + +#: includes/class/class.LSldapObject.php:1918 +msgid "LSldapObject : Error during the actions to be executed after creating the object. It was created anyway." +msgstr "" + +#: includes/class/class.LSldapObject.php:1922 +msgid "LSldapObject : The function %{func} to be generated before creating the object doesn't exist." +msgstr "" + +#: includes/class/class.LSldapObject.php:1925 +msgid "LSldapObject : Error during the execution of the function %{func} to be generated after deleting the object." +msgstr "" + +#: includes/class/class.LSldapObject.php:1928 +msgid "LSldapObject : The function %{func} to be generated after deleting the object doesn't exist." +msgstr "" + +#: includes/class/class.LSldapObject.php:1931 +msgid "LSldapObject : Error during the execution of the function %{func} to be generated after creating the object." +msgstr "" + +#: includes/class/class.LSldapObject.php:1935 +msgid "LSldapObject : %{func} function, to be executed on object event %{event}, doesn't exist." +msgstr "" + +#: includes/class/class.LSldapObject.php:1938 +msgid "LSldapObject : Error during the execution of %{func} function on object event %{event}." +msgstr "" + +#: includes/class/class.LSldapObject.php:1942 +msgid "LSldapObject : %{meth} method, to be executed on object event %{event}, doesn't exist." +msgstr "" + +#: includes/class/class.LSldapObject.php:1945 +msgid "LSldapObject : Error during execution of %{meth} method on object event %{event}." +msgstr "" + +#: includes/class/class.LSform.php:93 +msgid "Add a field to add another values." +msgstr "Ajouter une autre valeur à ce champ." + +#: includes/class/class.LSform.php:94 +msgid "Delete this field." +msgstr "Supprimer cette valeur." + +#: includes/class/class.LSform.php:113 +#: includes/class/class.LSform.php:180 +msgid "No field." +msgstr "Aucun champ." + +#: includes/class/class.LSform.php:147 +msgid "Caution" +msgstr "Attention" + +#: includes/class/class.LSform.php:201 +msgid "%{label} attribute data is not valid." +msgstr "Les données de l'attribut %{label} sont incorrectes." + +#: includes/class/class.LSform.php:275 +msgid "Mandatory field" +msgstr "Champ obligatoire" + +#: includes/class/class.LSform.php:567 +msgid "LSform : Error during the recovery of the values of the form." +msgstr "" + +#: includes/class/class.LSform.php:570 +msgid "LSform : Error durring the recovery of the value of the field '%{element}'." +msgstr "" + +#: includes/class/class.LSform.php:577 +msgid "LSform : The field %{element} doesn't exist." +msgstr "" + +#: includes/class/class.LSform.php:580 +msgid "LSfom : Field type unknow (%{type})." +msgstr "" + +#: includes/class/class.LSform.php:583 +msgid "LSform : Error during the creation of the element '%{element}'." +msgstr "" + +#: includes/class/class.LSformElement_select.php:52 +msgid "Reset selection." +msgstr "Réinitiliser la sélection." + +#: view.php:51 +#: view.php:300 +msgid "Copy" +msgstr "Copier" + +#: view.php:380 +msgid "Actions" +msgstr "Actions" + +#: conf/LSobjects/config.LSobjects.LSeecompany.php:32 +#: conf/config.inc.php:131 +msgid "Company" +msgstr "Société" + +#: conf/LSobjects/config.LSobjects.LSeecompany.php:38 +#: conf/LSobjects/config.LSobjects.LSeegroup.php:46 +msgid "Name" +msgstr "Nom" + +#: conf/LSobjects/config.LSobjects.LSeecompany.php:59 +#: conf/LSobjects/config.LSobjects.LSeegroup.php:135 +#: conf/LSobjects/config.LSobjects.LSeepeople.php:430 +msgid "Description" +msgstr "Description" + +#: conf/LSobjects/config.LSobjects.LSeecompany.php:78 +#: conf/LSobjects/config.LSobjects.LSeegroup.php:154 +#: conf/LSobjects/config.LSobjects.LSeepeople.php:583 +msgid "Accountable(s)" +msgstr "Responsable(s)" + +#: conf/LSobjects/config.LSobjects.LSeecompany.php:91 +#: conf/LSobjects/config.LSobjects.LSeegroup.php:167 +msgid "One or several of these users don't exist." +msgstr "Un ou plusieurs utilisateurs n'existent pas." + +#: conf/LSobjects/config.LSobjects.LSeegroup.php:41 +msgid "Groups" +msgstr "Groupes" + +#: conf/LSobjects/config.LSobjects.LSeegroup.php:52 +msgid "Name must contain alphanumeric values only." +msgstr "Le nom doit contenir uniquement des valeurs alpha-numériques." + +#: conf/LSobjects/config.LSobjects.LSeegroup.php:100 +msgid "Members" +msgstr "Members" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:49 +msgid "Users" +msgstr "Utilisateurs" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:54 +msgid "Belongs to groups ..." +msgstr "Appartient aux groupes ..." + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:55 +msgid "Doesn't belong to any group." +msgstr "N'appartient à aucun groupe." + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:75 +#: conf/LSobjects/config.LSobjects.LSeepeople.php:402 +msgid "Civility" +msgstr "Civilité" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:138 +msgid "Identifier must contain alphanumeric values, dots (.) and dashes (-) only." +msgstr "L'identifiant doit contenir uniquement des valeurs alpha-numériques, avec eventuellement des points (.) et des tirets (-)." + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:146 +msgid "This identifier is already used." +msgstr "Cet identifiant est déjà utilisé." + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:167 +msgid "Numeric identifier" +msgstr "Identifiant numérique" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:174 +msgid "The numeric identifier must be an integer." +msgstr "L'identifiant numérique doit forcement être un entier." + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:181 +msgid "This uid is already used." +msgstr "Cet uid est déjà utilisé." + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:196 +msgid "First Name" +msgstr "Prénom" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:203 +msgid "The first name must contain alphanumeric values only." +msgstr "Le prénom doit contenir uniquement des caractères alpha-numérique." + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:223 +msgid "Last Name" +msgstr "Nom" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:243 +msgid "Full Name" +msgstr "Nom complet" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:269 +msgid "Main group" +msgstr "Groupe principal" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:296 +msgid "This group doesn't exist." +msgstr "Ce groupe n'existe pas." + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:317 +msgid "Command shell" +msgstr "Interpréteur de commande" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:318 +msgid "Allow user to connect a POSIX system." +msgstr "Autorisie l'utilisateur à se connecter aux systèmes POSIX." + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:340 +msgid "Samba Identifier" +msgstr "Identifiant Samba" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:356 +msgid "Home Directory" +msgstr "Dossier personnel" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:370 +msgid "E-mail address" +msgstr "Adresse e-mail" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:382 +msgid "Given email address is invalid." +msgstr "L'adresse mail saisie est invalide." + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:505 +msgid "Password recovery hash" +msgstr "Hash de récupération de mot de passe" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:521 +msgid "Samba Password (LM)" +msgstr "Mot de passe Samba (LM)" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:534 +msgid "Samba Password (NT)" +msgstr "Mot de passe Samba (NT)" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:547 +msgid "Picture" +msgstr "Image" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:554 +msgid "Picture size is not valid." +msgstr "La taille de l'image est invalide." + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:560 +msgid "File size is not valid." +msgstr "La taille du fichier est invalide." + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:566 +msgid "File type is not valid." +msgstr "Le type de fichier est invalide." + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:596 +msgid "One or several users don't exist." +msgstr "Un ou plusieurs utilisateurs n'existent pas." + diff --git a/trunk/lang/generate_ldapsaisie.pot.sh b/trunk/lang/generate_ldapsaisie.pot.sh new file mode 100644 index 00000000..451a964c --- /dev/null +++ b/trunk/lang/generate_ldapsaisie.pot.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +cd ../ + +rm -fr tmp/* + +xgettext --from-code utf-8 -o lang/ldapsaisie.pot $( find -name "*.php" ) diff --git a/trunk/lang/ldapsaisie.pot b/trunk/lang/ldapsaisie.pot new file mode 100644 index 00000000..a44c5a74 --- /dev/null +++ b/trunk/lang/ldapsaisie.pot @@ -0,0 +1,1073 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-03-12 18:48+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: select.php:186 includes/class/class.LSsession.php:1067 view.php:245 +msgid "Refresh" +msgstr "" + +#: select.php:290 view.php:372 +msgid "Search" +msgstr "" + +#: select.php:294 view.php:376 +msgid "Recursive search" +msgstr "" + +#: select.php:295 view.php:377 +msgid "Approximative search" +msgstr "" + +#: select.php:297 view.php:379 +msgid "This search didn't get any result." +msgstr "" + +#: remove.php:35 remove.php:46 +msgid "Deleting" +msgstr "" + +#: remove.php:37 +msgid "has been deleted successfully" +msgstr "" + +#: remove.php:47 includes/class/class.LSrelation.php:38 +#: includes/class/class.LSform.php:146 +msgid "Do you really want to delete" +msgstr "" + +#: remove.php:49 includes/class/class.LSsession.php:910 +#: includes/class/class.LSconfirmBox.php:37 +#: includes/class/class.LSsmoothbox.php:39 includes/class/class.LSform.php:63 +msgid "Validate" +msgstr "" + +#: create.php:50 +msgid "Object has been added." +msgstr "" + +#: create.php:89 view.php:220 view.php:235 +msgid "New" +msgstr "" + +#: modify.php:48 includes/class/class.LSrelation.php:82 +#: includes/class/class.LSformElement_select_object.php:69 view.php:43 +#: view.php:292 view.php:381 +msgid "Modify" +msgstr "" + +#: modify.php:54 +msgid "The object has been partially modified." +msgstr "" + +#: modify.php:57 +msgid "The object has been modified successfully." +msgstr "" + +#: modify.php:98 view.php:285 +msgid "View" +msgstr "" + +#: modify.php:105 includes/class/class.LSrelation.php:40 +#: includes/class/class.LSformElement_select_object.php:70 +#: includes/class/class.LSformElement_select_object.php:82 +#: includes/class/class.LSform.php:148 view.php:59 view.php:308 +msgid "Delete" +msgstr "" + +#: index.php:28 +msgid "Home" +msgstr "" + +#: includes/functions.php:139 +msgid "" +"Function 'getFData' : The method %{meth} of the object %{obj} doesn't exist." +msgstr "" + +#: includes/functions.php:171 +msgid "Folder not found" +msgstr "" + +#: includes/addons/LSaddons.posix.php:27 +msgid "POSIX Support : The constant %{const} is not defined." +msgstr "" + +#: includes/addons/LSaddons.posix.php:31 +msgid "POSIX Support : Unable to load LSaddons::FTP." +msgstr "" + +#: includes/addons/LSaddons.posix.php:36 +msgid "" +"POSIX : The attribute %{dependency} is missing. Unable to forge the " +"attribute %{attr}." +msgstr "" + +#: includes/addons/LSaddons.maildir.php:27 +msgid "MAILDIR Support : Unable to load LSaddons::FTP." +msgstr "" + +#: includes/addons/LSaddons.maildir.php:30 +msgid "MAILDIR Support : The constant %{const} is not defined." +msgstr "" + +#: includes/addons/LSaddons.maildir.php:35 +msgid "MAILDIR : Error while creating maildir on the remote server." +msgstr "" + +#: includes/addons/LSaddons.maildir.php:38 +msgid "MAILDIR : Error while deleting the maildir on the remote server." +msgstr "" + +#: includes/addons/LSaddons.maildir.php:41 +msgid "MAILDIR : Error while renaming the maildir on the remote server." +msgstr "" + +#: includes/addons/LSaddons.maildir.php:44 +msgid "MAILDIR : Error while recovering remote path of the maildir." +msgstr "" + +#: includes/addons/LSaddons.samba.php:27 +msgid "SAMBA Support : Unable to load smHash class." +msgstr "" + +#: includes/addons/LSaddons.samba.php:30 +msgid "SAMBA Support : The constant %{const} is not defined." +msgstr "" + +#: includes/addons/LSaddons.samba.php:34 +msgid "" +"SAMBA Support : The constants LS_SAMBA_SID_BASE_USER and " +"LS_SAMBA_SID_BASE_GROUP ne doivent pas avoir la même parité pour l'unicité " +"des sambaSID." +msgstr "" + +#: includes/addons/LSaddons.samba.php:39 +msgid "" +"SAMBA Support : The attribute%{dependency} is missing. Unable to forge the " +"attribute %{attr}." +msgstr "" + +#: includes/addons/LSaddons.mail.php:27 +msgid "MAIL Support : Pear::MAIL is missing." +msgstr "" + +#: includes/addons/LSaddons.mail.php:32 +msgid "MAIL Error : %{msg}" +msgstr "" + +#: includes/addons/LSaddons.mail.php:36 +msgid "MAIL : Error while sending your email" +msgstr "" + +#: includes/addons/LSaddons.supann.php:27 +msgid "SUPANN Support : The constant %{const} is not defined." +msgstr "" + +#: includes/addons/LSaddons.supann.php:32 +msgid "" +"SUPANN Support : The attribute %{dependency} is missing. Unable to forge the " +"attribute %{attr}." +msgstr "" + +#: includes/addons/LSaddons.ftp.php:27 +msgid "FTP Support : Pear::Net_FTP is missing." +msgstr "" + +#: includes/addons/LSaddons.ftp.php:31 +msgid "FTP Support : The constant %{const} is not defined." +msgstr "" + +#: includes/addons/LSaddons.ftp.php:37 +msgid "Net_FTP Error : %{msg}" +msgstr "" + +#: includes/addons/LSaddons.ftp.php:41 +msgid "FTP Support : Unable to connect to FTP Server (Step : %{etape})." +msgstr "" + +#: includes/addons/LSaddons.ftp.php:44 +msgid "FTP Support : Unable to make directory %{dir} on the remote server." +msgstr "" + +#: includes/addons/LSaddons.ftp.php:47 +msgid "FTP Support :Unable to delete directory %{dir} on the remote server." +msgstr "" + +#: includes/addons/LSaddons.ftp.php:50 +msgid "" +"FTP Support : Unable to modify rights on the directory %{dir} on the remote " +"server." +msgstr "" + +#: includes/addons/LSaddons.ftp.php:53 +msgid "" +"FTP Support : Unable to rename folder from %{old} to %{new} on the remote " +"server." +msgstr "" + +#: includes/class/class.LSsession.php:850 +msgid "Connection" +msgstr "" + +#: includes/class/class.LSsession.php:860 +#: includes/class/class.LSsession.php:899 +msgid "LDAP server" +msgstr "" + +#: includes/class/class.LSsession.php:870 +#: includes/class/class.LSsession.php:1695 +msgid "Level" +msgstr "" + +#: includes/class/class.LSsession.php:871 +#: includes/class/class.LSsession.php:909 +#: conf/LSobjects/config.LSobjects.LSeegroup.php:76 +#: conf/LSobjects/config.LSobjects.LSeepeople.php:125 +msgid "Identifier" +msgstr "" + +#: includes/class/class.LSsession.php:872 +#: conf/LSobjects/config.LSobjects.LSeepeople.php:450 +msgid "Password" +msgstr "" + +#: includes/class/class.LSsession.php:873 +msgid "Connect" +msgstr "" + +#: includes/class/class.LSsession.php:874 +msgid "Forgot your password ?" +msgstr "" + +#: includes/class/class.LSsession.php:892 +msgid "Recovery of your credentials" +msgstr "" + +#: includes/class/class.LSsession.php:911 +msgid "Back" +msgstr "" + +#: includes/class/class.LSsession.php:913 +msgid "Please fill the identifier field to proceed recovery procedure" +msgstr "" + +#: includes/class/class.LSsession.php:917 +msgid "" +"An email has been sent to %{mail}. Please follow the instructions on it." +msgstr "" + +#: includes/class/class.LSsession.php:925 +msgid "Your new password has been sent to %{mail}. " +msgstr "" + +#: includes/class/class.LSsession.php:1102 +msgid "Connected as" +msgstr "" + +#: includes/class/class.LSsession.php:1332 view.php:72 +msgid "My account" +msgstr "" + +#: includes/class/class.LSsession.php:1823 +msgid "LSsession : The constant %{const} is not defined." +msgstr "" + +#: includes/class/class.LSsession.php:1826 +msgid "" +"LSsession : The %{addon} support is uncertain. Verify system compatibility " +"and the add-on configuration." +msgstr "" + +#: includes/class/class.LSsession.php:1829 +msgid "" +"LSsession : LDAP server's configuration data are invalid. Impossible " +"d'établir une connexion." +msgstr "" + +#: includes/class/class.LSsession.php:1832 +msgid "LSsession : Failed to load LSobject type %{type} : unknon type." +msgstr "" + +#: includes/class/class.LSsession.php:1839 +msgid "LSsession : Login or password incorrect." +msgstr "" + +#: includes/class/class.LSsession.php:1842 +msgid "LSsession : Impossible to identify you : Duplication of identities." +msgstr "" + +#: includes/class/class.LSsession.php:1845 +msgid "LSsession : Can't load Smarty template engine." +msgstr "" + +#: includes/class/class.LSsession.php:1848 +msgid "LSsession : Can't connect to LDAP server." +msgstr "" + +#: includes/class/class.LSsession.php:1851 +msgid "LSsession : Impossible to load authentification objects's class." +msgstr "" + +#: includes/class/class.LSsession.php:1854 +msgid "LSsession : Your are not authorized to do this action." +msgstr "" + +#: includes/class/class.LSsession.php:1857 +msgid "LSsession : Some informations are missing to display this page." +msgstr "" + +#: includes/class/class.LSsession.php:1861 +msgid "" +"LSsession : Error during creation of list of levels. Contact administrators. " +"(Code : %{code})" +msgstr "" + +#: includes/class/class.LSsession.php:1864 +msgid "LSsession : The password recovery is disabled for this LDAP server." +msgstr "" + +#: includes/class/class.LSsession.php:1867 +msgid "" +"LSsession : Some informations are missing to recover your password. Contact " +"administrators." +msgstr "" + +#: includes/class/class.LSsession.php:1870 +msgid "" +"LSsession : Error during password recovery. Contact administrators.(Step : %" +"{step})" +msgstr "" + +#: includes/class/class.LSsession.php:1874 +msgid "LSsession : problem during initialisation." +msgstr "" + +#: includes/class/class.LSsession.php:1880 +msgid "" +"LSrelations : The listing function for the relation %{relation} is unknow." +msgstr "" + +#: includes/class/class.LSsession.php:1883 +msgid "" +"LSrelations : The update function of the relation %{relation} is unknow." +msgstr "" + +#: includes/class/class.LSsession.php:1886 +msgid "LSrelations : Error during relation update of the relation %{relation}." +msgstr "" + +#: includes/class/class.LSsession.php:1889 +msgid "LSrelations : Object type %{LSobject} unknow (Relation : %{relation})." +msgstr "" + +#: includes/class/class.LSsession.php:1892 +msgid "" +"LSrelation : Some parameters are missing in the invocation of the methods of " +"handling relations standard (Methode : %{meth})." +msgstr "" + +#: includes/class/class.LSattribute.php:247 +msgid "The value of field %{label} is invalid." +msgstr "" + +#: includes/class/class.LSattribute.php:690 +msgid "" +"LSattribute : Attribute %{attr} : LDAP or HTML types unknow (LDAP = %{ldap} " +"& HTML = %{html})." +msgstr "" + +#: includes/class/class.LSattribute.php:693 +msgid "" +"LSattribute : The function %{func} to display the attribute %{attr} is " +"unknow." +msgstr "" + +#: includes/class/class.LSattribute.php:696 +msgid "" +"LSattribute : The rule %{rule} to validate the attribute %{attr} is unknow." +msgstr "" + +#: includes/class/class.LSattribute.php:699 +msgid "" +"LSattribute : Configuration data to verify the attribute %{attr} are " +"incorrect." +msgstr "" + +#: includes/class/class.LSattribute.php:702 +msgid "" +"LSattribute : The function %{func} to save the attribute %{attr} is unknow." +msgstr "" + +#: includes/class/class.LSattribute.php:705 +msgid "LSattribute : The value of the attribute %{attr} can't be generated." +msgstr "" + +#: includes/class/class.LSattribute.php:708 +msgid "LSattribute : Generation of the attribute %{attr} failed." +msgstr "" + +#: includes/class/class.LSattribute.php:711 +msgid "" +"LSattribute : Generation of the attribute %{attr} did not return a correct " +"value." +msgstr "" + +#: includes/class/class.LSattribute.php:714 +msgid "" +"LSattribute : The attr_%{type} of the attribute %{name} is not yet defined." +msgstr "" + +#: includes/class/class.LSconfirmBox.php:35 +msgid "Confirmation" +msgstr "" + +#: includes/class/class.LSconfirmBox.php:36 +msgid "You confirm your choice ?" +msgstr "" + +#: includes/class/class.LSconfirmBox.php:38 +msgid "Cancel" +msgstr "" + +#: includes/class/class.LSformElement_textarea.php:50 +msgid "Clear" +msgstr "" + +#: includes/class/class.LSformElement_url.php:50 +msgid "Display this website." +msgstr "" + +#: includes/class/class.LSformElement_url.php:51 +msgid "Add this website to my bookmarks." +msgstr "" + +#: includes/class/class.LSformElement_ssh_key.php:57 +msgid "Display the full key." +msgstr "" + +#: includes/class/class.LSformElement_ssh_key.php:79 +msgid "Unknown type" +msgstr "" + +#: includes/class/class.LSrelation.php:39 +msgid "Warning" +msgstr "" + +#: includes/class/class.LSrelation.php:67 +#: includes/class/class.LSrelation.php:198 +msgid "No object." +msgstr "" + +#: includes/class/class.LSattr_html.php:113 +msgid "" +"LSattr_html : The method addToForm() of the HTML type of the attribute %" +"{attr} is not defined." +msgstr "" + +#: includes/class/class.LSattr_html.php:117 +msgid "" +"LSattr_html_%{type} : Multiple data are not supported for this field type." +msgstr "" + +#: includes/class/class.LSformElement_rss.php:49 +msgid "Display RSS stack." +msgstr "" + +#: includes/class/class.LSformElement_maildir.php:69 +msgid "" +"Concurrent creation or modification of the maildir by many users is enabled. " +"Click to disable." +msgstr "" + +#: includes/class/class.LSformElement_maildir.php:70 +msgid "" +"Click to enable concurrent creation/modification of the maildir by many " +"users at the same time." +msgstr "" + +#: includes/class/class.LSformElement_maildir.php:143 +msgid "The mailbox has been stored in the database." +msgstr "" + +#: includes/class/class.LSformElement_maildir.php:153 +msgid "The mailbox has been deleted." +msgstr "" + +#: includes/class/class.LSformElement_maildir.php:161 +msgid "The mailbox has been moved." +msgstr "" + +#: includes/class/class.LSformElement_maildir.php:168 +msgid "The mailbox has been created." +msgstr "" + +#: includes/class/class.LSerror.php:100 +msgid "Errors" +msgstr "" + +#: includes/class/class.LSerror.php:103 +msgid "Stop" +msgstr "" + +#: includes/class/class.LSerror.php:162 +msgid "Unknown error!" +msgstr "" + +#: includes/class/class.LSformElement_xmpp.php:50 +msgid "Chat with this person." +msgstr "" + +#: includes/class/class.LSsmoothbox.php:38 +msgid "Are you sure to want to close this window and lose all changes ?" +msgstr "" + +#: includes/class/class.LSformElement_text.php:56 +msgid "Generate the value" +msgstr "" + +#: includes/class/class.LSldap.php:402 +msgid "LSldap : Error during the LDAP server connection (%{msg})." +msgstr "" + +#: includes/class/class.LSldap.php:405 +msgid "LSldap : Error during the LDAP search (%{msg})." +msgstr "" + +#: includes/class/class.LSldap.php:408 +msgid "LSldap : Object type unknown." +msgstr "" + +#: includes/class/class.LSldap.php:411 +msgid "LSldap : Error while fetching the LDAP entry." +msgstr "" + +#: includes/class/class.LSldap.php:414 +msgid "LSldap : Error while changing the LDAP entry (DN : %{dn})." +msgstr "" + +#: includes/class/class.LSldap.php:417 +msgid "LSldap : Error while deleting empty attributes." +msgstr "" + +#: includes/class/class.LSldap.php:420 +msgid "LSldap : Error while changing the DN of the object." +msgstr "" + +#: includes/class/class.LSformElement_mailQuota.php:80 +msgid "Incorrect value" +msgstr "" + +#: includes/class/class.LSformElement_select_object.php:72 +#: includes/class/class.LSformElement.php:281 +msgid "No set value" +msgstr "" + +#: includes/class/class.LSformElement_select_object.php:73 +msgid "No result" +msgstr "" + +#: includes/class/class.LSformElement_select_object.php:80 +msgid "Fast Add" +msgstr "" + +#: includes/class/class.LSformElement_select_object.php:81 +msgid "Display advanced search and selection panel." +msgstr "" + +#: includes/class/class.LSformElement_mail.php:51 +msgid "Send a mail from here." +msgstr "" + +#: includes/class/class.LSformElement_password.php:117 +msgid "Generate a password." +msgstr "" + +#: includes/class/class.LSformElement_password.php:118 +msgid "Compare with stored password." +msgstr "" + +#: includes/class/class.LSformElement_password.php:119 +msgid "Display password." +msgstr "" + +#: includes/class/class.LSformElement_password.php:120 +msgid "Hide password." +msgstr "" + +#: includes/class/class.LSformElement_password.php:121 +msgid "" +"The password will be sent by mail if changed. Click to disable automatic " +"notification." +msgstr "" + +#: includes/class/class.LSformElement_password.php:122 +msgid "" +"The password will not be sent if changed. Click to enable automatic " +"notification." +msgstr "" + +#: includes/class/class.LSformElement_password.php:123 +msgid "Modify the mail sent to notice the user" +msgstr "" + +#: includes/class/class.LSformElement_password.php:180 +msgid "Notice mail sent." +msgstr "" + +#: includes/class/class.LSmail.php:61 +msgid "Email" +msgstr "" + +#: includes/class/class.LSmail.php:62 +msgid "Title" +msgstr "" + +#: includes/class/class.LSmail.php:63 +msgid "Message" +msgstr "" + +#: includes/class/class.LSmail.php:75 +msgid "Your message has been sent successfully." +msgstr "" + +#: includes/class/class.LSformElement_boolean.php:52 +msgid "Reset the choice." +msgstr "" + +#: includes/class/class.LSformElement_boolean.php:60 +msgid "Yes" +msgstr "" + +#: includes/class/class.LSformElement_boolean.php:61 +msgid "No" +msgstr "" + +#: includes/class/class.LSformRule.php:57 +msgid "LSformRule_%{type} : Parameter %{param} is not found." +msgstr "" + +#: includes/class/class.LSattr_html_select_object.php:199 +msgid "" +"LSattr_html_select_object : LSobject type is undefined (attribute : %{attr})." +msgstr "" + +#: includes/class/class.LSformRule_regex.php:65 +msgid "LSformRule_regex : Regex has not been configured to validate data." +msgstr "" + +#: includes/class/class.LSformElement_image.php:53 +msgid "Click to enlarge." +msgstr "" + +#: includes/class/class.LSformElement_image.php:54 +msgid "Click to delete the picture." +msgstr "" + +#: includes/class/class.LSattr_ldap_password.php:162 +msgid "" +"LSattr_ldap_password : Encoding type %{type} is not supported. This password " +"will be stored in clear text." +msgstr "" + +#: includes/class/class.LSformElement_date.php:141 +msgid "Select in a calendar." +msgstr "" + +#: includes/class/class.LSformElement_date.php:142 +msgid "Now." +msgstr "" + +#: includes/class/class.LSattr_html_select_list.php:146 +msgid "" +"LSattr_html_select_list : Configuration data are missing to generate the " +"select list of the attribute %{attr}." +msgstr "" + +#: includes/class/class.LSldapObject.php:429 +msgid "The attribute %{attr} is not valid." +msgstr "" + +#: includes/class/class.LSldapObject.php:1852 +msgid "LSldapObject : Object type unknown." +msgstr "" + +#: includes/class/class.LSldapObject.php:1855 +msgid "LSldapObject : Update form is not defined for the object %{obj}." +msgstr "" + +#: includes/class/class.LSldapObject.php:1858 +msgid "LSldapObject : No form exists for the object %{obj}." +msgstr "" + +#: includes/class/class.LSldapObject.php:1861 +msgid "" +"LSldapObject : The function %{func} to validate the attribute %{attr} the " +"object %{obj} is unknow." +msgstr "" + +#: includes/class/class.LSldapObject.php:1864 +msgid "" +"LSldapObject : Configuration data are missing to validate the attribute %" +"{attr} of the object %{obj}." +msgstr "" + +#: includes/class/class.LSldapObject.php:1868 +msgid "" +"LSldapObject : The function %{func} to be executed on the object event %" +"{event} doesn't exist." +msgstr "" + +#: includes/class/class.LSldapObject.php:1871 +msgid "" +"LSldapObject : The %{func} execution on the object event %{event} failed." +msgstr "" + +#: includes/class/class.LSldapObject.php:1875 +msgid "" +"LSldapObject : Class %{class}, which method %{meth} to be executed on the " +"object event %{event}, doesn't exist." +msgstr "" + +#: includes/class/class.LSldapObject.php:1878 +msgid "" +"LSldapObject : Method %{meth} within %{class} class to be executed on object " +"event %{event}, deoesn't exist." +msgstr "" + +#: includes/class/class.LSldapObject.php:1881 +msgid "" +"LSldapObject : Error while executin %{meth} method within %{class} class, to " +"be executed on object event %{event}." +msgstr "" + +#: includes/class/class.LSldapObject.php:1885 +msgid "" +"LSldapObject : Some configuration data of the object type %{obj} are missing " +"to generate the DN of the new object." +msgstr "" + +#: includes/class/class.LSldapObject.php:1888 +msgid "" +"LSldapObject : The attibute %{attr} of the object is not yet defined. " +"Impossible to generate DN." +msgstr "" + +#: includes/class/class.LSldapObject.php:1891 +msgid "LSldapObject : Without DN, the object could not be changed." +msgstr "" + +#: includes/class/class.LSldapObject.php:1894 +msgid "" +"LSldapObject : The attribute %{attr_depend} depending on the attribute %" +"{attr} doesn't exist." +msgstr "" + +#: includes/class/class.LSldapObject.php:1897 +msgid "LSldapObject : Error during deleting the object %{objectname}." +msgstr "" + +#: includes/class/class.LSldapObject.php:1901 +msgid "" +"LSldapObject : Error during actions to be executed before renaming the objet." +msgstr "" + +#: includes/class/class.LSldapObject.php:1904 +msgid "" +"LSldapObject : Error during actions to be executed after renaming the objet." +msgstr "" + +#: includes/class/class.LSldapObject.php:1908 +msgid "" +"LSldapObject : Error during actions to be executed before deleting the objet." +msgstr "" + +#: includes/class/class.LSldapObject.php:1911 +msgid "" +"LSldapObject : Error during actions to be executed after deleting the objet." +msgstr "" + +#: includes/class/class.LSldapObject.php:1915 +msgid "" +"LSldapObject : Error during the actions to be executed before creating the " +"object." +msgstr "" + +#: includes/class/class.LSldapObject.php:1918 +msgid "" +"LSldapObject : Error during the actions to be executed after creating the " +"object. It was created anyway." +msgstr "" + +#: includes/class/class.LSldapObject.php:1922 +msgid "" +"LSldapObject : The function %{func} to be generated before creating the " +"object doesn't exist." +msgstr "" + +#: includes/class/class.LSldapObject.php:1925 +msgid "" +"LSldapObject : Error during the execution of the function %{func} to be " +"generated after deleting the object." +msgstr "" + +#: includes/class/class.LSldapObject.php:1928 +msgid "" +"LSldapObject : The function %{func} to be generated after deleting the " +"object doesn't exist." +msgstr "" + +#: includes/class/class.LSldapObject.php:1931 +msgid "" +"LSldapObject : Error during the execution of the function %{func} to be " +"generated after creating the object." +msgstr "" + +#: includes/class/class.LSldapObject.php:1935 +msgid "" +"LSldapObject : %{func} function, to be executed on object event %{event}, " +"doesn't exist." +msgstr "" + +#: includes/class/class.LSldapObject.php:1938 +msgid "" +"LSldapObject : Error during the execution of %{func} function on object " +"event %{event}." +msgstr "" + +#: includes/class/class.LSldapObject.php:1942 +msgid "" +"LSldapObject : %{meth} method, to be executed on object event %{event}, " +"doesn't exist." +msgstr "" + +#: includes/class/class.LSldapObject.php:1945 +msgid "" +"LSldapObject : Error during execution of %{meth} method on object event %" +"{event}." +msgstr "" + +#: includes/class/class.LSform.php:93 +msgid "Add a field to add another values." +msgstr "" + +#: includes/class/class.LSform.php:94 +msgid "Delete this field." +msgstr "" + +#: includes/class/class.LSform.php:113 includes/class/class.LSform.php:180 +msgid "No field." +msgstr "" + +#: includes/class/class.LSform.php:147 +msgid "Caution" +msgstr "" + +#: includes/class/class.LSform.php:201 +msgid "%{label} attribute data is not valid." +msgstr "" + +#: includes/class/class.LSform.php:275 +msgid "Mandatory field" +msgstr "" + +#: includes/class/class.LSform.php:567 +msgid "LSform : Error during the recovery of the values of the form." +msgstr "" + +#: includes/class/class.LSform.php:570 +msgid "" +"LSform : Error durring the recovery of the value of the field '%{element}'." +msgstr "" + +#: includes/class/class.LSform.php:577 +msgid "LSform : The field %{element} doesn't exist." +msgstr "" + +#: includes/class/class.LSform.php:580 +msgid "LSfom : Field type unknow (%{type})." +msgstr "" + +#: includes/class/class.LSform.php:583 +msgid "LSform : Error during the creation of the element '%{element}'." +msgstr "" + +#: includes/class/class.LSformElement_select.php:52 +msgid "Reset selection." +msgstr "" + +#: view.php:51 view.php:300 +msgid "Copy" +msgstr "" + +#: view.php:380 +msgid "Actions" +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeecompany.php:32 conf/config.inc.php:131 +msgid "Company" +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeecompany.php:38 +#: conf/LSobjects/config.LSobjects.LSeegroup.php:46 +msgid "Name" +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeecompany.php:59 +#: conf/LSobjects/config.LSobjects.LSeegroup.php:135 +#: conf/LSobjects/config.LSobjects.LSeepeople.php:430 +msgid "Description" +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeecompany.php:78 +#: conf/LSobjects/config.LSobjects.LSeegroup.php:154 +#: conf/LSobjects/config.LSobjects.LSeepeople.php:583 +msgid "Accountable(s)" +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeecompany.php:91 +#: conf/LSobjects/config.LSobjects.LSeegroup.php:167 +msgid "One or several of these users don't exist." +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeegroup.php:41 +msgid "Groups" +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeegroup.php:52 +msgid "Name must contain alphanumeric values only." +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeegroup.php:100 +msgid "Members" +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:49 +msgid "Users" +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:54 +msgid "Belongs to groups ..." +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:55 +msgid "Doesn't belong to any group." +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:75 +#: conf/LSobjects/config.LSobjects.LSeepeople.php:402 +msgid "Civility" +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:138 +msgid "" +"Identifier must contain alphanumeric values, dots (.) and dashes (-) only." +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:146 +msgid "This identifier is already used." +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:167 +msgid "Numeric identifier" +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:174 +msgid "The numeric identifier must be an integer." +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:181 +msgid "This uid is already used." +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:196 +msgid "First Name" +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:203 +msgid "The first name must contain alphanumeric values only." +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:223 +msgid "Last Name" +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:243 +msgid "Full Name" +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:269 +msgid "Main group" +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:296 +msgid "This group doesn't exist." +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:317 +msgid "Command shell" +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:318 +msgid "Allow user to connect a POSIX system." +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:340 +msgid "Samba Identifier" +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:356 +msgid "Home Directory" +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:370 +msgid "E-mail address" +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:382 +msgid "Given email address is invalid." +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:505 +msgid "Password recovery hash" +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:521 +msgid "Samba Password (LM)" +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:534 +msgid "Samba Password (NT)" +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:547 +msgid "Picture" +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:554 +msgid "Picture size is not valid." +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:560 +msgid "File size is not valid." +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:566 +msgid "File type is not valid." +msgstr "" + +#: conf/LSobjects/config.LSobjects.LSeepeople.php:596 +msgid "One or several users don't exist." +msgstr "" diff --git a/trunk/view.php b/trunk/view.php index bb6fe79d..94c30f09 100644 --- a/trunk/view.php +++ b/trunk/view.php @@ -369,14 +369,14 @@ if(LSsession :: startLSsession()) { $GLOBALS['Smarty']->assign('LSview_search',array( 'action' => $_SERVER['PHP_SELF'], - 'submit' => _('Rechercher'), + 'submit' => _('Search'), 'LSobject' => $LSobject )); $GLOBALS['Smarty']->assign('LSview_search_recur_label',_('Recursive search')); - $GLOBALS['Smarty']->assign('LSview_search_approx_label',_('Aproximative search')); + $GLOBALS['Smarty']->assign('LSview_search_approx_label',_('Approximative search')); - $GLOBALS['Smarty']->assign('LSobject_list_without_result_label',_("This search doesn't give any result.")); + $GLOBALS['Smarty']->assign('LSobject_list_without_result_label',_("This search didn't get any result.")); $GLOBALS['Smarty']->assign('_Actions',_('Actions')); $GLOBALS['Smarty']->assign('_Modifier',_('Modify')); $GLOBALS['Smarty']->assign('LSobject_list',$searchData['objectList']);