2008-02-05 17:11:21 +01:00
< ? php
/*******************************************************************************
* Copyright ( C ) 2007 Easter - eggs
* http :// ldapsaisie . labs . libre - entreprise . org
*
* Author : See AUTHORS file in top - level directory .
*
* This program is free software ; you can redistribute it and / or
* modify it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program ; if not , write to the Free Software
* Foundation , Inc . , 59 Temple Place - Suite 330 , Boston , MA 02111 - 1307 , USA .
******************************************************************************/
$GLOBALS [ 'LSerror_code' ] = array (
'-1' => array (
'msg' => _ ( " Erreur inconnue! " ),
'level' => 'c'
),
2008-05-15 14:49:03 +02:00
0 => array (
'msg' => " % { msg} " ,
'level' => 'c'
),
2008-02-05 17:11:21 +01:00
// LSldap
1 => array (
'msg' => _ ( " LSldap : Erreur durant la connexion au serveur LDAP (% { msg}). " ),
'level' => 'c'
),
2 => array (
'msg' => _ ( " LSldap : Erreur durant la recherche LDAP (% { msg}). " ),
'level' => 'c'
),
3 => array (
'msg' => _ ( " LSldap : Type d'objet inconnu. " ),
'level' => 'c'
),
4 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSldap : Erreur durant la récupération de l'entrée Ldap. " ),
2008-02-05 17:11:21 +01:00
'level' => 'c'
),
5 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSldap : Erreur durant la mise à jour de l'entrée Ldap (DN : % { dn}). " ),
2008-02-05 17:11:21 +01:00
'level' => 'c'
),
2008-05-15 14:49:03 +02:00
6 => array (
'msg' => _ ( " LSldap : Erreur durant la suppression des attributs vides. " ),
'level' => 'w'
),
2008-07-29 16:23:47 +02:00
7 => array (
'msg' => _ ( " LSldap : Erreur durant le changement du DN de l'objet. " ),
'level' => 'w'
),
2008-02-05 17:11:21 +01:00
// LSldapObject
21 => array (
'msg' => _ ( " LSldapObject : Type d'objet inconnu. " ),
'level' => 'c'
),
22 => array (
'msg' => _ ( " LSldapObject : Formulaire de mise jour inconnu par l'objet % { msg}. " ),
'level' => 'c'
),
23 => array (
'msg' => _ ( " LSldapObject : Aucun formulaire n'existe dans l'objet % { msg}. " ),
'level' => 'c'
),
24 => array (
'msg' => _ ( " LSldapObject : La fonction % { func} pour valider l'attribut % { attr} de l'objet % { obj} est inconnue. " ),
'level' => 'c'
),
25 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSldapObject : Des données de configuration sont manquant pour la validation de l'attribut % { attr} de l'objet % { obj}. " ),
2008-02-05 17:11:21 +01:00
'level' => 'c'
),
26 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSldapObject : Erreur de configuration : L'objet % { obj} ne possède pas d'attribut % { attr}. " ),
2008-02-05 17:11:21 +01:00
'level' => 'c'
),
27 => array (
2008-09-09 17:48:07 +02:00
'msg' => _ ( " LSldapObject : La fonction % { func} devant être executée avant la modification n'existe pas. " ),
2008-02-05 17:11:21 +01:00
'level' => 'c'
),
28 => array (
2008-09-09 17:48:07 +02:00
'msg' => _ ( " LSldapObject : L'execution de la fonction % { func} devant être executée avant la modification a échouée. " ),
2008-02-05 17:11:21 +01:00
'level' => 'c'
),
29 => array (
2008-09-09 17:48:07 +02:00
'msg' => _ ( " LSldapObject : La fonction % { func} devant être executée après la modification n'existe pas. " ),
2008-02-05 17:11:21 +01:00
'level' => 'c'
),
30 => array (
2008-09-09 17:48:07 +02:00
'msg' => _ ( " LSldapObject : L'execution de la fonction % { func} devant être executée après la modification a échouée. " ),
2008-02-05 17:11:21 +01:00
'level' => 'c'
),
31 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSldapObject : Il manque des informations de configuration du type d'objet % { obj} pour la création du nouveau DN. " ),
2008-02-05 17:11:21 +01:00
'level' => 'c'
),
32 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSldapObject : L'attribut % { attr} de l'objet n'est pas encore définis. Il est impossible de generer un nouveau DN. " ),
2008-02-05 17:11:21 +01:00
'level' => 'c'
),
33 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSldapObject : Sans DN, l'objet n'a put être modifié. " ),
2008-02-05 17:11:21 +01:00
'level' => 'c'
),
2008-02-08 18:39:24 +01:00
34 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSldapObject : L'attribut % { attr_depend} dépendant de l'attribut % { attr} n'existe pas. " ),
2008-02-08 18:39:24 +01:00
'level' => 'w'
),
2008-02-12 18:59:44 +01:00
35 => array (
'msg' => _ ( " LSldapObject : Erreur durant la suppression de % { objectname}. " ),
'level' => 'c'
),
2008-07-29 15:45:02 +02:00
36 => array (
'msg' => _ ( " LSldapObject : Erreur durant les actions avant renomage. " ),
'level' => 'c'
),
37 => array (
'msg' => _ ( " LSldapObject : Erreur durant les actions après renomage. " ),
'level' => 'c'
),
2008-08-06 19:04:03 +02:00
38 => array (
'msg' => _ ( " LSldapObject : Erreur durant les actions avant suppression. " ),
'level' => 'c'
),
39 => array (
'msg' => _ ( " LSldapObject : Erreur durant les actions après suppresion. " ),
'level' => 'c'
),
2008-09-09 17:48:07 +02:00
301 => array (
2008-08-06 19:04:03 +02:00
'msg' => _ ( " LSldapObject : Erreur durant les actions après la création. L'objet est pour autant créé. " ),
'level' => 'c'
),
2008-09-09 17:48:07 +02:00
302 => array (
'msg' => _ ( " LSldapObject : La fonction % { fonction} devant être éxecutée après la création de l'objet n'existe pas. " ),
'level' => 'c'
),
303 => array (
'msg' => _ ( " LSldapObject : Erreur durant l'exection de la fonction % { fonction} devant être éxecutée après la création de l'objet. " ),
'level' => 'c'
),
304 => array (
'msg' => _ ( " LSldapObject : La fonction % { fonction} devant être éxecutée après la suppression de l'objet n'existe pas. " ),
'level' => 'c'
),
305 => array (
'msg' => _ ( " LSldapObject : Erreur durant l'exection de la fonction % { fonction} devant être éxecutée après la suppression de l'objet. " ),
'level' => 'c'
),
2008-02-05 17:11:21 +01:00
2008-07-29 15:45:02 +02:00
// LSattribute
2008-02-05 17:11:21 +01:00
41 => array (
'msg' => _ ( " LSattribute : Attribut % { attr} : Type d'attribut (ldap // html) inconnu (ldap = % { ldap} | html = % { html}). " ),
'level' => 'c'
),
42 => array (
'msg' => _ ( " LSattribute : La fonction % { func} pour afficher l'attribut % { attr} est inconnue. " ),
'level' => 'c'
),
43 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSattribute : La règle % { rule} pour valider l'attribut % { attr} est inconnue. " ),
2008-02-05 17:11:21 +01:00
'level' => 'c'
),
44 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSattribute : Les données de configuration pour vérifié l'attribut % { attr} sont incorrects. " ),
2008-02-05 17:11:21 +01:00
'level' => 'c'
),
45 => array (
'msg' => _ ( " LSattribute : La fonction % { func} pour sauver l'attribut % { attr} est inconnue. " ),
'level' => 'c'
),
46 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSattribute : La valeur de l'attribut % { attr} ne peut pas être générée. " ),
2008-02-05 17:11:21 +01:00
'level' => 'c'
),
2008-02-08 18:39:24 +01:00
47 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSattribute : La valeur de l'attribut % { attr} n'a pas put être générée. " ),
2008-02-05 17:11:21 +01:00
'level' => 'c'
),
2008-02-08 18:39:24 +01:00
48 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSattribute : La génération de l'attribut % { attr} n'a pas retourné une valeur correcte. " ),
2008-02-05 17:11:21 +01:00
'level' => 'c'
),
// LSattr_html
101 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSattr_html : La fonction addToForm() du type html de l'attribut % { attr} n'est pas définie. " ),
2008-02-05 17:11:21 +01:00
'level' => 'c'
),
102 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSattr_html_select_list : Des données de configuration sont manquante pour la génération de la liste deroulante de l'attribut % { attr}. " ),
2008-02-05 17:11:21 +01:00
'level' => 'c'
),
103 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSattr_html_% { type} : Les données multiples ne sont pas gérés pour ce type d'attribut. " ),
2008-02-05 17:11:21 +01:00
'level' => 'c'
),
2008-02-08 18:39:24 +01:00
// LSform
201 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSform : Erreur durant la recupération des valeurs du formulaire. " ),
2008-02-08 18:39:24 +01:00
'level' => 'c'
),
202 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSform : Erreur durant la récupération de la valeur du formulaire du champ '% { element}'. " ),
2008-02-08 18:39:24 +01:00
'level' => 'c'
),
203 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSform : Les données du champ % { element} ne sont pas valides. " ),
2008-02-08 18:39:24 +01:00
'level' => 'c'
),
204 => array (
'msg' => _ ( " LSform : Le champ % { element} n'existe pas. " ),
'level' => 'c'
),
205 => array (
'msg' => _ ( " LSfom : Type de champ inconnu (% { type}). " ),
'level' => 'c'
),
206 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSform : Erreur durant la création de l'élement '% { element}'. " ),
2008-02-08 18:39:24 +01:00
'level' => 'c'
),
207 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSform : Aucune valeur de rentrée pour le champs '% { element}'. " ),
2008-02-08 18:39:24 +01:00
'level' => 'c'
),
2008-02-05 17:11:21 +01:00
2008-10-07 17:06:40 +02:00
801 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSformRule : Aucune regex n'a été fournis pour la validation des données. " ),
2008-02-08 18:39:24 +01:00
'level' => 'w'
),
2008-02-05 17:11:21 +01:00
// functions
901 => array (
'msg' => _ ( " Functions 'getFData' : La methode % { meth} de l'objet % { obj} n'existe pas. " ),
'level' => 'c'
),
2008-02-08 18:39:24 +01:00
// LSsession
1001 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSsession : La constante % { const} n'est pas définie. " ),
2008-02-08 18:39:24 +01:00
'level' => 'c'
),
1002 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSsession : Le support % { addon} n'est pas assuré. Vérifier la compatibilité du système et la configuration de l'addon " ),
2008-02-08 18:39:24 +01:00
'level' => 'c'
),
1003 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSsession : Données de configuration du serveur LDAP invalide. Impossible d'établir une connexion. " ),
2008-02-08 18:39:24 +01:00
'level' => 'c'
),
1004 => array (
'msg' => _ ( " LSsession : Impossible de charger l'objets de type % { type} : type inconnu. " ),
'level' => 'c'
),
1005 => array (
'msg' => _ ( " LSsession : Impossible d'effecture l'authentification : Type d'objet d'authentification inconnu (% { type}). " ),
'level' => 'c'
),
1006 => array (
'msg' => _ ( " LSsession : Identifiant ou mot de passe incorrect. " ),
'level' => 'c'
),
1007 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSsession : Impossible de vous identifier : Duplication d'authentité. " ),
2008-02-08 18:39:24 +01:00
'level' => 'c'
),
1008 => array (
'msg' => _ ( " LSsession : Impossible d'inclure le moteur de rendu Smarty. " ),
'level' => 'c'
),
1009 => array (
'msg' => _ ( " LSsession : Impossible de se connecter au Serveur LDAP. " ),
'level' => 'c'
),
1010 => array (
'msg' => _ ( " LSsession : Impossible de charger la classe des objets d'authentification. " ),
'level' => 'c'
),
1011 => array (
2008-06-21 18:16:15 +02:00
'msg' => _ ( " LSsession : Vous n'êtes pas authorisé à effectuer cette action. " ),
2008-02-08 18:39:24 +01:00
'level' => 'c'
2008-02-12 18:59:44 +01:00
),
1012 => array (
'msg' => _ ( " LSsession : Des informations sont manquantes pour l'affichage de cette page. " ),
'level' => 'c'
2008-02-26 18:40:05 +01:00
),
1013 => array (
'msg' => _ ( " LSrelations : La fonction de listage pour la relation % { relation} est inconnu. " ),
'level' => 'c'
),
1014 => array (
2008-06-05 15:21:18 +02:00
'msg' => _ ( " LSrelations : La fonction de mise à jour pour la relation % { relation} est inconnu. " ),
2008-02-26 18:40:05 +01:00
'level' => 'c'
),
1015 => array (
'msg' => _ ( " LSrelations : Une erreur s'est produite durant la mise a jour de la relation % { relation}. " ),
'level' => 'c'
2008-04-25 15:48:12 +02:00
),
1016 => array (
'msg' => _ ( " LSrelations : L'objet % { LSobject} de la relation % { relation} est inconnu. " ),
'level' => 'w'
),
1017 => array (
'msg' => _ ( " LSsession : Impossible de créer correctement la liste des niveaux. Vérifier la configuration. " ),
'level' => 'c'
2008-06-05 15:21:18 +02:00
),
1018 => array (
'msg' => _ ( " LSsession : La récupération de mot de passe est désactivée pour ce serveur LDAP. " ),
'level' => 'c'
),
1019 => array (
'msg' => _ ( " LSsession : Des informations sont manquantes pour la récupération de votre mot de passe. Contactez l'administrateur du système. " ),
'level' => 'c'
),
1020 => array (
'msg' => _ ( " LSsession : Erreur durant la récupération de votre mot de passe. Contactez l'administrateur du système. " ),
'level' => 'c'
2008-10-08 15:24:18 +02:00
),
1021 => array (
'msg' => _ ( " LSrelation : Des param<61> tres sont manquants dans l'invocation des m<> thodes de manipulations de relations standarts (M<> thode : % { meth}). " ),
'level' => 'c'
2008-02-08 18:39:24 +01:00
)
2008-02-05 17:11:21 +01:00
);
?>