Trad: Et encore de la traduction
This commit is contained in:
parent
9fe8b8217a
commit
4d3e302f17
@ -22,26 +22,29 @@
|
|||||||
|
|
||||||
require("../main.inc.php");
|
require("../main.inc.php");
|
||||||
|
|
||||||
function llxHeader($head = "", $urlp = "") {
|
function llxHeader($head = "", $urlp = "")
|
||||||
|
{
|
||||||
global $langs, $user, $conf;
|
global $langs, $user, $conf;
|
||||||
|
|
||||||
$langs->load("propal");
|
$langs->load("companies");
|
||||||
|
$langs->load("commercial");
|
||||||
|
|
||||||
top_menu($head);
|
top_menu($head);
|
||||||
|
|
||||||
$menu = new Menu();
|
$menu = new Menu();
|
||||||
|
|
||||||
$menu->add(DOL_URL_ROOT."/contact/index.php", "Contacts");
|
$menu->add(DOL_URL_ROOT."/contact/index.php", $langs->trans("Contacts"));
|
||||||
$menu->add_submenu(DOL_URL_ROOT."/contact/fiche.php?action=create", "Nouveau Contact");
|
$menu->add_submenu(DOL_URL_ROOT."/contact/fiche.php?action=create", $langs->trans("NewContact"));
|
||||||
|
|
||||||
$menu->add(DOL_URL_ROOT."/contact/index.php?userid=$user->id", "Mes contacts");
|
$menu->add(DOL_URL_ROOT."/contact/index.php?userid=$user->id", $langs->trans("MyContacts"));
|
||||||
|
|
||||||
$menu->add(DOL_URL_ROOT."/contact/index.php?view=recent", "Contacts récents");
|
$menu->add(DOL_URL_ROOT."/contact/index.php?view=recent", $langs->trans("LastContacts"));
|
||||||
|
|
||||||
$menu->add(DOL_URL_ROOT."/contact/index.php?view=phone", "Téléphones");
|
$menu->add(DOL_URL_ROOT."/contact/index.php?view=phone", $langs->trans("Phones"));
|
||||||
|
|
||||||
$menu->add(DOL_URL_ROOT."/contact/index.php?view=mail", "Emails");
|
$menu->add(DOL_URL_ROOT."/contact/index.php?view=mail", $langs->trans("EMails"));
|
||||||
|
|
||||||
left_menu($menu->liste);
|
left_menu($menu->liste);
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|||||||
@ -65,6 +65,10 @@ ListOfContacts=List of contacts
|
|||||||
ListOfCompanies=List of companies
|
ListOfCompanies=List of companies
|
||||||
ShowCompany=Show company
|
ShowCompany=Show company
|
||||||
ShowContact=Show contact
|
ShowContact=Show contact
|
||||||
|
NewContact=New contact
|
||||||
|
LastContacts=Last contacts
|
||||||
|
MyContacts=My contacts
|
||||||
|
Phones=Phones
|
||||||
Capital=Capital
|
Capital=Capital
|
||||||
EditCompany=Edit company
|
EditCompany=Edit company
|
||||||
ThisUserIsNot=This user is not a prospect, customer nor supplier
|
ThisUserIsNot=This user is not a prospect, customer nor supplier
|
||||||
|
|||||||
@ -65,6 +65,10 @@ ListOfContacts=Liste des contacts
|
|||||||
ListOfCompanies=Liste des sociétés
|
ListOfCompanies=Liste des sociétés
|
||||||
ShowCompany=Afficher société
|
ShowCompany=Afficher société
|
||||||
ShowContact=Afficher contact
|
ShowContact=Afficher contact
|
||||||
|
NewContact=Nouveau contact
|
||||||
|
LastContacts=Derniers contacts
|
||||||
|
MyContacts=Mes contacts
|
||||||
|
Phones=Téléphones
|
||||||
Capital=Capital
|
Capital=Capital
|
||||||
EditCompany=Modification société
|
EditCompany=Modification société
|
||||||
ThisUserIsNot=Cet utilisateur n'est ni un prospect, ni un client, ni un fournisseur
|
ThisUserIsNot=Cet utilisateur n'est ni un prospect, ni un client, ni un fournisseur
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user