';
print '';
@@ -528,7 +527,7 @@ if ($_socid > 0)
*
*/
print '';
- print '| Actions effectuées | ';
+ print '| '.$langs->trans("ActionsDone").' | ';
print '';
print '| ';
diff --git a/htdocs/compta/fiche.php b/htdocs/compta/fiche.php
index 2f6521d42f8..8e7dd606757 100644
--- a/htdocs/compta/fiche.php
+++ b/htdocs/compta/fiche.php
@@ -371,7 +371,7 @@ if ($socid > 0)
print ' | | Prénom Nom | ';
print 'Poste | Tél | ';
print "Fax | Email | ";
- print "id."&action=create\">".$langs->trans("Add")." | ";
+ print "id."&action=create\">".$langs->trans("AddContact")." | ";
$sql = "SELECT p.idp, p.name, p.firstname, p.poste, p.phone, p.fax, p.email, p.note FROM ".MAIN_DB_PREFIX."socpeople as p WHERE p.fk_soc = $societe->id ORDER by p.datec";
$result = $db->query($sql);
@@ -410,7 +410,7 @@ if ($socid > 0)
*
*/
print '';
- print '| Actions effectuées | ';
+ print '| '.$langs->trans("ActionsDone").' | ';
print '';
print '| ';
diff --git a/htdocs/fourn/fiche.php b/htdocs/fourn/fiche.php
index 37efcbb1ce0..09b2a3b3c3f 100644
--- a/htdocs/fourn/fiche.php
+++ b/htdocs/fourn/fiche.php
@@ -24,7 +24,12 @@
require("./pre.inc.php");
require("../contact.class.php");
+$langs->load("bills");
+$langs->load("companies");
+
+
llxHeader();
+
$socid = $_GET["socid"];
/*
* Sécurité accés client
@@ -150,12 +155,9 @@ if ( $societe->fetch($socid) )
/*
* Boutons Actions
*/
- $langs->load("bills");
- $langs->load("companies");
print '';
@@ -171,7 +173,7 @@ if ( $societe->fetch($socid) )
print ' | | '.$langs->trans("FirstName").' '.$langs->trans("LastName").' | ';
print 'Poste | '.$langs->trans("Tel").' | ';
print "".$langs->trans("Fax")." | ".$langs->trans("EMail")." | ";
- print "Ajouter | ";
+ print "".$langs->trans("AddContact")." | ";
$sql = "SELECT p.idp, p.name, p.firstname, p.poste, p.phone, p.fax, p.email, p.note";
$sql .= " FROM ".MAIN_DB_PREFIX."socpeople as p WHERE p.fk_soc = $societe->id ORDER by p.datec";
diff --git a/htdocs/langs/en_US/main.lang b/htdocs/langs/en_US/main.lang
index ed5649387da..23ad0b319a1 100644
--- a/htdocs/langs/en_US/main.lang
+++ b/htdocs/langs/en_US/main.lang
@@ -8,7 +8,11 @@ Home=Home
Help=Help
Activate=Activate
Activated=Activated
+Disable=Disable
+Disabled=Disabled
Add=Add
+AddActionToDo=Add action to do
+AddActionDone=Add action done
Delete=Delete
Remove=Remove
Resiliate=Resiliate
@@ -72,4 +76,6 @@ List=List
Statistics=Statistics
Status=Status
Ref=Ref
-Comments=Comments
\ No newline at end of file
+Comments=Comments
+ActionsDone=Actions Done
+ActionsToDo=Actions To Do
\ No newline at end of file
diff --git a/htdocs/langs/fr_FR/main.lang b/htdocs/langs/fr_FR/main.lang
index 8eb3af18678..cad4e267cb0 100644
--- a/htdocs/langs/fr_FR/main.lang
+++ b/htdocs/langs/fr_FR/main.lang
@@ -11,6 +11,8 @@ Activated=Activ
Disable=Désactiver
Disabled=Désactivé
Add=Ajouter
+AddActionToDo=Ajouter action à faire
+AddActionDone=Ajouter action faite
Delete=Supprimer
Remove=Enlever
Resiliate=Résilier
@@ -78,10 +80,5 @@ Statistics=Statistiques
Status=Statut
Ref=Réf
Comments=Commentaires
-ModuleFamilyCrm=Gestion client (CRM)
-ModuleFamilyProducts=Gestion produits
-ModuleFamilyHr=Ressources humaines
-ModuleFamilyProjects=Projets/Travail collaboratif
-ModuleFamilyOther=Autre
-ModuleFamilyTechnic=Modules techniques, interfaces
-ModuleFamilyFinancial=Modules financiers (Compta/trésorerie)
+ActionsDone=Actions effectuées
+ActionsToDo=Actions à faire
\ No newline at end of file
diff --git a/htdocs/societe/notify/fiche.php b/htdocs/societe/notify/fiche.php
index 5ccc14351ca..d2d699b8d18 100644
--- a/htdocs/societe/notify/fiche.php
+++ b/htdocs/societe/notify/fiche.php
@@ -118,8 +118,10 @@ if ( $soc->fetch($soc->id) )
$head[$h][0] = DOL_URL_ROOT.'/societe/notify/fiche.php?socid='.$soc->id;
$head[$h][1] = 'Notifications';
-
- dolibarr_fiche_head($head, $h);
+ $hselected=$h;
+ $h++;
+
+ dolibarr_fiche_head($head, $hselected, $soc->nom);
/*
*
|