diff --git a/htdocs/index.php b/htdocs/index.php index 22d683bf3b1..00c8b5e1373 100644 --- a/htdocs/index.php +++ b/htdocs/index.php @@ -99,6 +99,7 @@ print "\n"; * Tableau de bord d'états Dolibarr (statistiques) * Non affiché pour un utilisateur externe */ +$langs->load("other"); if ($user->societe_id == 0) { print '
'; diff --git a/htdocs/societe/info.php b/htdocs/societe/info.php index 5c19356cb8b..a0a0552db14 100644 --- a/htdocs/societe/info.php +++ b/htdocs/societe/info.php @@ -30,6 +30,7 @@ require("./pre.inc.php"); require_once (DOL_DOCUMENT_ROOT."/societe.class.php"); $langs->load("companies"); +$langs->load("other"); llxHeader(); diff --git a/htdocs/societe/notify/fiche.php b/htdocs/societe/notify/fiche.php index b1b9508b8df..ac47ca9dfef 100644 --- a/htdocs/societe/notify/fiche.php +++ b/htdocs/societe/notify/fiche.php @@ -127,6 +127,7 @@ if ( $soc->fetch($soc->id) ) } if ($conf->compta->enabled) { + $langs->load("compta"); $head[$h][0] = DOL_URL_ROOT.'/compta/fiche.php?socid='.$soc->id; $head[$h][1] = $langs->trans("Accountancy"); $h++;