Skip to content
Snippets Groups Projects
Commit 65c9b0e0 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Trad: Traduction fiche LDAP

parent f58cabb5
No related branches found
No related tags found
No related merge requests found
# Dolibarr language file - en_US - ldap
DomainPassword=Password for domain
UserMustChangePassNextLogon=User must change its password to next connexion
LdapUacf_NORMAL_ACCOUNT=User account
LdapUacf_DONT_EXPIRE_PASSWORD=Password never expires
LdapUacf_ACCOUNTDISABLE=Account is disabled on this domain
LDAPInformationsForThisContact=Informations in LDAP database for this contact
LDAPInformationsForThisUser=Informations in LDAP database for this user
LDAPAttribute=Attribute
LDAPCard=LDAP card
\ No newline at end of file
...@@ -7,3 +7,4 @@ LdapUacf_ACCOUNTDISABLE=Le compte est d ...@@ -7,3 +7,4 @@ LdapUacf_ACCOUNTDISABLE=Le compte est d
LDAPInformationsForThisContact=Informations en base LDAP pour ce contact LDAPInformationsForThisContact=Informations en base LDAP pour ce contact
LDAPInformationsForThisUser=Informations en base LDAP pour cet utilisateur LDAPInformationsForThisUser=Informations en base LDAP pour cet utilisateur
LDAPAttribute=Attribut LDAPAttribute=Attribut
LDAPCard=Fiche LDAP
...@@ -36,10 +36,20 @@ function contact_prepare_head($contrat) ...@@ -36,10 +36,20 @@ function contact_prepare_head($contrat)
$head = array(); $head = array();
$head[$h][0] = DOL_URL_ROOT.'/contact/fiche.php?id='.$_GET["id"]; $head[$h][0] = DOL_URL_ROOT.'/contact/fiche.php?id='.$_GET["id"];
$head[$h][1] = $langs->trans("General"); $head[$h][1] = $langs->trans("Card");
$head[$h][2] = 'general'; $head[$h][2] = 'general';
$h++; $h++;
if ($conf->ldap->enabled && $conf->global->LDAP_CONTACT_ACTIVE)
{
$langs->load("ldap");
$head[$h][0] = DOL_URL_ROOT.'/contact/ldap.php?id='.$_GET["id"];
$head[$h][1] = $langs->trans("LDAPCard");
$head[$h][2] = 'ldap';
$h++;
}
$head[$h][0] = DOL_URL_ROOT.'/contact/perso.php?id='.$_GET["id"]; $head[$h][0] = DOL_URL_ROOT.'/contact/perso.php?id='.$_GET["id"];
$head[$h][1] = $langs->trans("PersonalInformations"); $head[$h][1] = $langs->trans("PersonalInformations");
$head[$h][2] = 'perso'; $head[$h][2] = 'perso';
...@@ -50,14 +60,6 @@ function contact_prepare_head($contrat) ...@@ -50,14 +60,6 @@ function contact_prepare_head($contrat)
$head[$h][2] = 'exportimport'; $head[$h][2] = 'exportimport';
$h++; $h++;
if ($conf->ldap->enabled && $conf->global->LDAP_CONTACT_ACTIVE)
{
$head[$h][0] = DOL_URL_ROOT.'/contact/ldap.php?id='.$_GET["id"];
$head[$h][1] = $langs->trans("LDAP");
$head[$h][2] = 'ldap';
$h++;
}
$head[$h][0] = DOL_URL_ROOT.'/contact/info.php?id='.$_GET["id"]; $head[$h][0] = DOL_URL_ROOT.'/contact/info.php?id='.$_GET["id"];
$head[$h][1] = $langs->trans("Info"); $head[$h][1] = $langs->trans("Info");
$head[$h][2] = 'info'; $head[$h][2] = 'info';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment