diff --git a/htdocs/admin/boxes.php b/htdocs/admin/boxes.php
index 4f6d313ffe3cdf1da6c4231c26dce51e55c61e2a..e284ce1fa816de44665af14ac4dd72d33516701b 100644
--- a/htdocs/admin/boxes.php
+++ b/htdocs/admin/boxes.php
@@ -184,7 +184,8 @@ if ($result)
         $box=new $module();
 
         print '<form action="boxes.php" method="POST">';
-        print '<tr '.$bc[$var].'><td>'.img_object("",$box->boximg).' '.$box->boxlabel.'</td><td>' . $obj->file . '</td>';
+        $logo=eregi_replace("^object_","",$box->boximg);
+        print '<tr '.$bc[$var].'><td>'.img_object("",$logo).' '.$box->boxlabel.'</td><td>' . $obj->file . '</td>';
 
         // Pour chaque position possible, on affiche un lien
         // d'activation si boite non deja active pour cette position
@@ -247,7 +248,8 @@ if ($result)
         include_once(DOL_DOCUMENT_ROOT."/includes/boxes/".$module.".php");
         $box=new $module();
 
-        print '<tr '.$bc[$var].'><td>'.img_object("",$box->boximg).' '.$box->boxlabel.'</td>';
+        $logo=eregi_replace("^object_","",$box->boximg);
+        print '<tr '.$bc[$var].'><td>'.img_object("",$logo).' '.$box->boxlabel.'</td>';
         print '<td>&nbsp;</td>';
         print '<td align="center">' . $pos_name[$obj->position] . '</td>';
         $hasnext=true;
diff --git a/htdocs/includes/boxes/box_boutique_livre.php b/htdocs/includes/boxes/box_boutique_livre.php
index 67b9c4f4a7122e5fbdd38bfdf9de09b94381bcb3..fc5fe936e3172eeebac4c99c300af830badf71e7 100644
--- a/htdocs/includes/boxes/box_boutique_livre.php
+++ b/htdocs/includes/boxes/box_boutique_livre.php
@@ -34,7 +34,7 @@ include_once(DOL_DOCUMENT_ROOT."/includes/boxes/modules_boxes.php");
 class box_boutique_livre extends ModeleBoxes {
 
     var $boxcode="lastbooks";
-    var $boximg="book";
+    var $boximg="object_book";
     var $boxlabel;
     var $depends = array("boutique");
 
@@ -61,7 +61,7 @@ class box_boutique_livre extends ModeleBoxes {
         global $user, $langs, $db;
         $langs->load("boxes");
 
-        $this->info_box_head = array('text' => "Les $max derniers ouvrages");
+        $this->info_box_head = array('text' => $langs->trans("BoxTitleLastBooks",$max));
     
         $sql = "SELECT l.ref, l.title, l.rowid";
         $sql .= " FROM ".MAIN_DB_PREFIX."livre as l ";
@@ -81,7 +81,7 @@ class box_boutique_livre extends ModeleBoxes {
                 $objp = $db->fetch_object($result);
 
                 $this->info_box_contents[$i][0] = array('align' => 'left',
-                'logo' => 'object_book',
+                'logo' => $this->boximg,
                 'text' => $objp->title,
                 'url' => DOL_URL_ROOT."/boutique/livre/fiche.php?id=".$objp->rowid);
 
diff --git a/htdocs/includes/boxes/box_clients.php b/htdocs/includes/boxes/box_clients.php
index 0595895fdfb2c7f8d24fbdafbcb67aaece465ba2..7605732cea10ffef589217a6c3530ae74507c2c3 100644
--- a/htdocs/includes/boxes/box_clients.php
+++ b/htdocs/includes/boxes/box_clients.php
@@ -33,7 +33,7 @@ include_once(DOL_DOCUMENT_ROOT."/includes/boxes/modules_boxes.php");
 class box_clients extends ModeleBoxes {
 
     var $boxcode="lastcustomers";
-    var $boximg="company";
+    var $boximg="object_company";
     var $boxlabel;
     var $depends = array("societe");
 
@@ -60,7 +60,7 @@ class box_clients extends ModeleBoxes {
         global $user, $langs, $db;
         $langs->load("boxes");
 
-        $this->info_box_head = array('text' => "Les $max derniers clients enregistr�s");
+        $this->info_box_head = array('text' => $langs->trans("BoxTitleLastCustomers",$max));
 
         $sql = "SELECT s.nom,s.idp";
         $sql .= " FROM ".MAIN_DB_PREFIX."societe as s WHERE s.client = 1";
@@ -84,7 +84,7 @@ class box_clients extends ModeleBoxes {
                 $objp = $db->fetch_object($result);
 
                 $this->info_box_contents[$i][0] = array('align' => 'left',
-                'logo' => 'object_company',
+                'logo' => $this->boximg,
                 'text' => stripslashes($objp->nom),
                 'url' => DOL_URL_ROOT."/comm/fiche.php?socid=".$objp->idp);
 
diff --git a/htdocs/includes/boxes/box_commandes.php b/htdocs/includes/boxes/box_commandes.php
index 136b7ac0f5883420fc46fbcb7212a8bef67507ae..4609ee6874512e3b6cfcdde975b01da27d2186cd 100644
--- a/htdocs/includes/boxes/box_commandes.php
+++ b/htdocs/includes/boxes/box_commandes.php
@@ -33,7 +33,7 @@ include_once(DOL_DOCUMENT_ROOT."/includes/boxes/modules_boxes.php");
 class box_commandes extends ModeleBoxes {
 
     var $boxcode="lastcustomerorders";
-    var $boximg="order";
+    var $boximg="object_order";
     var $boxlabel;
     var $depends = array("commercial");
 
@@ -63,7 +63,7 @@ class box_commandes extends ModeleBoxes {
         {
             $langs->load("boxes");
             
-            $this->info_box_head = array('text' => "Les $max derni�res commandes clients");
+            $this->info_box_head = array('text' => $langs->trans("BoxTitleLastCustomerOrders",$max));
 
             $sql = "SELECT s.nom,s.idp,p.ref,".$db->pdate("p.date_commande")." as dp,p.rowid";
             $sql .= " FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."commande as p WHERE p.fk_soc = s.idp";
@@ -87,7 +87,7 @@ class box_commandes extends ModeleBoxes {
                     $objp = $db->fetch_object($result);
 
                     $this->info_box_contents[$i][0] = array('align' => 'left',
-                    'logo' => 'object_order',
+                    'logo' => $this->boximg,
                     'text' => $objp->ref,
                     'url' => DOL_URL_ROOT."/commande/fiche.php?id=".$objp->rowid);
 
diff --git a/htdocs/includes/boxes/box_external_rss.php b/htdocs/includes/boxes/box_external_rss.php
index bc9df036c7c799b67018faa37af8ce1d15a6dbb4..af3681941585ea7a08e13b75085a358ab844d9e1 100644
--- a/htdocs/includes/boxes/box_external_rss.php
+++ b/htdocs/includes/boxes/box_external_rss.php
@@ -36,7 +36,7 @@ include_once(DOL_DOCUMENT_ROOT."/includes/boxes/modules_boxes.php");
 class box_external_rss extends ModeleBoxes {
 
     var $boxcode="lastrssinfos";
-    var $boximg="rss";
+    var $boximg="object_rss";
     var $boxlabel;
     var $depends = array();
 
@@ -64,7 +64,7 @@ class box_external_rss extends ModeleBoxes {
         $langs->load("boxes");
 
         for($site = 0; $site < 1; $site++) {
-            $this->info_box_head = array('text' => "Les $max derni�res infos du site " . @constant("EXTERNAL_RSS_TITLE_". $site));
+            $this->info_box_head = array('text' => $langs->trans("BoxTitleLastRssInfos",$max, @constant("EXTERNAL_RSS_TITLE_". $site)));
     
             $rss = fetch_rss( @constant("EXTERNAL_RSS_URLRSS_" . $site) );
             for($i = 0; $i < $max ; $i++){
@@ -75,7 +75,7 @@ class box_external_rss extends ModeleBoxes {
                 $title=ereg_replace("^\s+","",$title);                                  // Supprime espaces de d�but
                 $this->info_box_contents["$href"]="$title";
                 $this->info_box_contents[$i][0] = array('align' => 'left',
-                'logo' => 'object_rss',
+                'logo' => $this->boximg,
                 'text' => $title,
                 'url' => $href);
             }
diff --git a/htdocs/includes/boxes/box_factures.php b/htdocs/includes/boxes/box_factures.php
index 3c6884a894bfe5174fc145f71b15d51547f418c6..4de4715261c0b82a678384f98a9c54d73618ab83 100644
--- a/htdocs/includes/boxes/box_factures.php
+++ b/htdocs/includes/boxes/box_factures.php
@@ -33,7 +33,7 @@ include_once(DOL_DOCUMENT_ROOT."/includes/boxes/modules_boxes.php");
 class box_factures extends ModeleBoxes {
 
     var $boxcode="lastcustomerbills";
-    var $boximg="bill";
+    var $boximg="object_bill";
     var $boxlabel;
     var $depends = array("facture");
 
@@ -63,7 +63,7 @@ class box_factures extends ModeleBoxes {
         {
             $langs->load("boxes");
             
-            $this->info_box_head = array('text' => "Les $max derni�res factures clients enregistr�es");
+            $this->info_box_head = array('text' => $langs->trans("BoxTitleLastCustomerBills",$max));
 
             $sql = "SELECT s.nom,s.idp,f.facnumber,f.amount,".$db->pdate("f.datef")." as df,f.paye,f.rowid as facid";
             $sql .= " FROM ".MAIN_DB_PREFIX."societe as s,".MAIN_DB_PREFIX."facture as f WHERE f.fk_soc = s.idp";
@@ -87,7 +87,7 @@ class box_factures extends ModeleBoxes {
                     $objp = $db->fetch_object($result);
 
                     $this->info_box_contents[$i][0] = array('align' => 'left',
-                    'logo' => 'object_bill',
+                    'logo' => $this->boximg,
                     'text' => $objp->facnumber,
                     'url' => DOL_URL_ROOT."/compta/facture.php?facid=".$objp->facid);
 
diff --git a/htdocs/includes/boxes/box_factures_fourn.php b/htdocs/includes/boxes/box_factures_fourn.php
index 928ef52f502ab1285c9b005d36d520318b59dce4..30c8559395d83c2d56fbd7bb2635ce9031cc9f3d 100644
--- a/htdocs/includes/boxes/box_factures_fourn.php
+++ b/htdocs/includes/boxes/box_factures_fourn.php
@@ -34,7 +34,7 @@ include_once(DOL_DOCUMENT_ROOT."/includes/boxes/modules_boxes.php");
 class box_factures_fourn extends ModeleBoxes {
 
     var $boxcode="lastsupplierbills";
-    var $boximg="bill";
+    var $boximg="object_bill";
     var $boxlabel;
     var $depends = array("facture","fournisseur");
 
@@ -61,7 +61,7 @@ class box_factures_fourn extends ModeleBoxes {
         global $user, $langs, $db;
         $langs->load("boxes");
 
-        $this->info_box_head = array('text' => "Les $max derni�res factures fournisseurs enregistr�es");
+        $this->info_box_head = array('text' => $langs->trans("BoxTitleLastSupplierBills",$max));
 
         if ($user->rights->facture->lire)
         {
@@ -87,7 +87,7 @@ class box_factures_fourn extends ModeleBoxes {
                     $objp = $db->fetch_object($result);
 
                     $this->info_box_contents[$i][0] = array('align' => 'left',
-                    'logo' => 'object_bill',
+                    'logo' => $this->boximg,
                     'text' => $objp->facnumber,
                     'url' => DOL_URL_ROOT."/fourn/facture/fiche.php?facid=".$objp->facid);
 
diff --git a/htdocs/includes/boxes/box_factures_fourn_imp.php b/htdocs/includes/boxes/box_factures_fourn_imp.php
index 473edbeb0e3040009053ed7826ffd8a56730b893..315d5e7299cdf2e2fa54f12547da21bcf0fd37d0 100644
--- a/htdocs/includes/boxes/box_factures_fourn_imp.php
+++ b/htdocs/includes/boxes/box_factures_fourn_imp.php
@@ -33,7 +33,7 @@ include_once(DOL_DOCUMENT_ROOT."/includes/boxes/modules_boxes.php");
 class box_factures_fourn_imp extends ModeleBoxes {
 
     var $boxcode="oldestunpayedsupplierbills";
-    var $boximg="bill";
+    var $boximg="object_bill";
     var $boxlabel;
     var $depends = array("facture","fournisseur");
 
@@ -48,7 +48,7 @@ class box_factures_fourn_imp extends ModeleBoxes {
         global $langs;
         $langs->load("boxes");
 
-        $this->boxlabel=$langs->trans("BoxOldesUnpayedSupplierBills");
+        $this->boxlabel=$langs->trans("BoxOldestUnpayedSupplierBills");
     }
 
     /**
@@ -63,7 +63,7 @@ class box_factures_fourn_imp extends ModeleBoxes {
         {
             $langs->load("boxes");
             
-            $this->info_box_head = array('text' => "Les $max plus anciennes factures fournisseurs impay�es");
+            $this->info_box_head = array('text' => $langs->trans("BoxTitleOldestUnpayedSupplierBills",$max));
 
             $sql = "SELECT s.nom,s.idp,f.facnumber,f.amount,".$db->pdate("f.datef")." as df,f.paye,f.rowid as facid";
             $sql .= " FROM ".MAIN_DB_PREFIX."societe as s,".MAIN_DB_PREFIX."facture_fourn as f WHERE f.fk_soc = s.idp AND f.paye=0 AND fk_statut = 1";
@@ -86,7 +86,7 @@ class box_factures_fourn_imp extends ModeleBoxes {
                     $objp = $db->fetch_object($result);
 
                     $this->info_box_contents[$i][0] = array('align' => 'left',
-                    'logo' => 'object_product',
+                    'logo' => $this->boximg,
                     'text' => $objp->facnumber,
                     'url' => DOL_URL_ROOT."/fourn/facture/fiche.php?facid=".$objp->facid);
 
diff --git a/htdocs/includes/boxes/box_factures_imp.php b/htdocs/includes/boxes/box_factures_imp.php
index 0cc46045b3f0e4fe1f089d224f93281655db78e5..de95866e9dd4171a5a6c28d32c5299318fe9493e 100644
--- a/htdocs/includes/boxes/box_factures_imp.php
+++ b/htdocs/includes/boxes/box_factures_imp.php
@@ -33,7 +33,7 @@ include_once(DOL_DOCUMENT_ROOT."/includes/boxes/modules_boxes.php");
 class box_factures_imp extends ModeleBoxes {
 
     var $boxcode="oldestunpayedcustomerbills";
-    var $boximg="bill";
+    var $boximg="object_bill";
     var $boxlabel;
     var $depends = array("facture");
 
@@ -61,7 +61,7 @@ class box_factures_imp extends ModeleBoxes {
         global $user, $langs, $db;
         $langs->load("boxes");
 
-        $this->info_box_head = array('text' => "Les $max plus anciennes factures clients impay�es");
+        $this->info_box_head = array('text' => $langs->trans("BoxTitleOldestUnpayedCustomerBills",$max));
 
         if ($user->rights->facture->lire)
         {
@@ -86,7 +86,7 @@ class box_factures_imp extends ModeleBoxes {
                     $objp = $db->fetch_object($result);
 
                     $this->info_box_contents[$i][0] = array('align' => 'left',
-                    'logo' => 'object_bill',
+                    'logo' => $this->boximg,
                     'text' => $objp->facnumber,
                     'url' => DOL_URL_ROOT."/compta/facture.php?facid=".$objp->facid);
 
diff --git a/htdocs/includes/boxes/box_fournisseurs.php b/htdocs/includes/boxes/box_fournisseurs.php
index 32bba4e90ae7add7fe51ebefa8bb2c7ed33e82da..1f08667f2e8c510e97a11bdd1d85e729e60a8fca 100644
--- a/htdocs/includes/boxes/box_fournisseurs.php
+++ b/htdocs/includes/boxes/box_fournisseurs.php
@@ -32,7 +32,7 @@ include_once(DOL_DOCUMENT_ROOT."/includes/boxes/modules_boxes.php");
 class box_fournisseurs extends ModeleBoxes {
 
     var $boxcode="lastsuppliers";
-    var $boximg="company";
+    var $boximg="object_company";
     var $boxlabel;
     var $depends = array("fournisseur");
 
@@ -59,7 +59,7 @@ class box_fournisseurs extends ModeleBoxes {
         global $user, $langs, $db;
         $langs->load("boxes");
 
-        $this->info_box_head = array('text' => "Les $max5 derniers fournisseurs enregistr�s");
+        $this->info_box_head = array('text' => $langs->trans("BoxTitleLastSuppliers",$max));
 
         $sql = "SELECT s.nom,s.idp";
         $sql .= " FROM ".MAIN_DB_PREFIX."societe as s WHERE s.fournisseur = 1";
@@ -83,7 +83,7 @@ class box_fournisseurs extends ModeleBoxes {
                 $objp = $db->fetch_object($result);
 
                 $this->info_box_contents[$i][0] = array('align' => 'left',
-                'logo' => 'object_company',
+                'logo' => $this->boximg,
                 'text' => $objp->nom,
                 'url' => DOL_URL_ROOT."/comm/fiche.php?socid=".$objp->idp);
 
diff --git a/htdocs/includes/boxes/box_osc_client.php b/htdocs/includes/boxes/box_osc_client.php
index 436eb6fa347a8de142a9cf127dc6bd6623abf336..8c697012cd894ca7ea20741171d4298c2ebda00a 100644
--- a/htdocs/includes/boxes/box_osc_client.php
+++ b/htdocs/includes/boxes/box_osc_client.php
@@ -33,7 +33,7 @@ include_once(DOL_DOCUMENT_ROOT."/includes/boxes/modules_boxes.php");
 class box_osc_clients extends ModeleBoxes {
 
     var $boxcode="nbofcustomers";
-    var $boximg="company";
+    var $boximg="object_company";
     var $boxlabel;
     var $depends = array("boutique");
 
@@ -60,7 +60,7 @@ class box_osc_clients extends ModeleBoxes {
         global $user, $langs, $db;
         $langs->load("boxes");
 
-        $this->info_box_head = array('text' => "Nombre de client");
+        $this->info_box_head = array('text' => $langs->trans("BoxTitleNbOfCustomers",$max));
 
         $sql = "SELECT count(*) as cus FROM ".DB_NAME_OSC.".customers";
 
@@ -76,7 +76,7 @@ class box_osc_clients extends ModeleBoxes {
                 $objp = $db->fetch_object($result);
 
                 $this->info_box_contents[$i][0] = array('align' => 'center',
-                'logo' => 'object_product',
+                'logo' => $this->boximg,
                 'text' => $objp->cus,
                 'url' => DOL_URL_ROOT."/boutique/client/index.php");
                 $i++;
diff --git a/htdocs/includes/boxes/box_produits.php b/htdocs/includes/boxes/box_produits.php
index e7f251475ef51efe15a43b73912658593588e36e..b109b4fa502f474cd14f3ba29dabc8118f0bbfd5 100644
--- a/htdocs/includes/boxes/box_produits.php
+++ b/htdocs/includes/boxes/box_produits.php
@@ -33,7 +33,7 @@ include_once(DOL_DOCUMENT_ROOT."/includes/boxes/modules_boxes.php");
 class box_produits extends ModeleBoxes {
 
     var $boxcode="lastproducts";
-    var $boximg="product";
+    var $boximg="object_product";
     var $boxlabel;
     var $depends = array("produit");
     
@@ -61,7 +61,7 @@ class box_produits extends ModeleBoxes {
         global $user, $langs, $db;
         $langs->load("boxes");
 
-        $this->info_box_head = array('text' => "Les $max derniers produits/services enregistr�s");
+        $this->info_box_head = array('text' => $langs->trans("BoxTitleLastProducts",$max));
 
         if ($user->rights->produit->lire)
         {
diff --git a/htdocs/includes/boxes/box_propales.php b/htdocs/includes/boxes/box_propales.php
index b7d2ef1433e50fa6dcd4e3f45135211290c4144e..5b7e102ce3e0d0f69fa48740502d1cf2d1af907c 100644
--- a/htdocs/includes/boxes/box_propales.php
+++ b/htdocs/includes/boxes/box_propales.php
@@ -33,7 +33,7 @@ include_once(DOL_DOCUMENT_ROOT."/includes/boxes/modules_boxes.php");
 class box_propales extends ModeleBoxes {
 
     var $boxcode="lastpropals";
-    var $boximg="propal";
+    var $boximg="object_propal";
     var $boxlabel;
     var $depends = array("propale");
 
@@ -63,7 +63,7 @@ class box_propales extends ModeleBoxes {
         {
             $langs->load("boxes");
 
-            $this->info_box_head = array('text' => "Les $max derni�res propositions");
+            $this->info_box_head = array('text' => $langs->trans("BoxTitleLastPropals",$max));
 
             $sql = "SELECT s.nom,s.idp,p.ref,".$db->pdate("p.datep")." as dp,p.rowid";
             $sql .= " FROM ".MAIN_DB_PREFIX."societe as s,".MAIN_DB_PREFIX."propal as p WHERE p.fk_soc = s.idp";
@@ -87,7 +87,7 @@ class box_propales extends ModeleBoxes {
                     $objp = $db->fetch_object($result);
 
                     $this->info_box_contents[$i][0] = array('align' => 'left',
-                    'logo' => 'object_propal',
+                    'logo' => $this->boximg,
                     'text' => $objp->ref,
                     'url' => DOL_URL_ROOT."/comm/propal.php?propalid=".$objp->rowid);
 
diff --git a/htdocs/includes/boxes/box_prospect.php b/htdocs/includes/boxes/box_prospect.php
index 917d8ee672f95a044ace52967127dc72e2635e9b..da8e23f4b5e41624d45beb1ac696c51d394bd1fc 100644
--- a/htdocs/includes/boxes/box_prospect.php
+++ b/htdocs/includes/boxes/box_prospect.php
@@ -34,7 +34,7 @@ include_once(DOL_DOCUMENT_ROOT."/includes/boxes/modules_boxes.php");
 class box_prospect extends ModeleBoxes {
 
     var $boxcode="lastprospects";
-    var $boximg="company";
+    var $boximg="object_company";
     var $boxlabel;
     var $depends = array("commercial");
 
@@ -61,7 +61,7 @@ class box_prospect extends ModeleBoxes {
         global $user, $langs, $db;
         $langs->load("boxes");
 
-        $this->info_box_head = array('text' => "Les $max derniers prospects enregistr�s");
+        $this->info_box_head = array('text' => $langs->trans("BoxTitleLastProspects",$max));
 
         $sql = "SELECT s.nom,s.idp";
         $sql .= " FROM ".MAIN_DB_PREFIX."societe as s WHERE s.client = 2";
@@ -85,7 +85,7 @@ class box_prospect extends ModeleBoxes {
                 $objp = $db->fetch_object($result);
 
                 $this->info_box_contents[$i][0] = array('align' => 'left',
-                'logo' => 'object_company',
+                'logo' => $this->boximg,
                 'text' => stripslashes($objp->nom),
                 'url' => DOL_URL_ROOT."/comm/prospect/fiche.php?id=".$objp->idp);
 
diff --git a/htdocs/includes/boxes/box_services_vendus.php b/htdocs/includes/boxes/box_services_vendus.php
index 8a3a74c5085c8710872909a203cde2e16905b32d..aa2d96617dd62741feaf8934c49f0a94ef8fd3f7 100644
--- a/htdocs/includes/boxes/box_services_vendus.php
+++ b/htdocs/includes/boxes/box_services_vendus.php
@@ -33,7 +33,7 @@ include_once(DOL_DOCUMENT_ROOT."/includes/boxes/modules_boxes.php");
 class box_services_vendus extends ModeleBoxes {
 
     var $boxcode="lastproductsincontract";
-    var $boximg="product";
+    var $boximg="object_product";
     var $boxlabel;
     var $depends = array("produit");
 
@@ -60,7 +60,7 @@ class box_services_vendus extends ModeleBoxes {
         global $user, $langs, $db;
         $langs->load("boxes");
 
-        $this->info_box_head = array('text' => "Les $max derniers produits/services contract�s");
+        $this->info_box_head = array('text' => $langs->trans("BoxLastProductsInContract",$max));
 
         $sql  = "SELECT s.nom, s.idp, p.label, p.fk_product_type, c.rowid";
         $sql .= " FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."contrat as c, ".MAIN_DB_PREFIX."product as p";
diff --git a/htdocs/langs/en_US/boxes.lang b/htdocs/langs/en_US/boxes.lang
index 8c1842f405b1d2c4268b948fd188fcb3d8ec79e2..38672e2381731ea8d1b5090829fafd737c7cfa9c 100644
--- a/htdocs/langs/en_US/boxes.lang
+++ b/htdocs/langs/en_US/boxes.lang
@@ -5,9 +5,24 @@ BoxLastProductsInContract=Last contracted products/services
 BoxLastSupplierBills=Last supplier bills
 BoxLastCustomerBills=Last customer bills
 BoxOldestUnpayedCustomerBills=Oldest unpayed customer bills
-BoxOldesUnpayedSupplierBills=Oldest unpayed supplier bills
+BoxOldestUnpayedSupplierBills=Oldest unpayed supplier bills
 BoxLastProposals=Last commercial proposals
 BoxLastProspects=Last prospects
 BoxLastCustomers=Last customers
 BoxLastCustomerOrders=Last customer orders
 BoxLastSuppliers=Last suppliers
+BoxLastBooks=Last books
+BoxTitleLastBooks=Last %s recorded books
+BoxTitleNbOfCustomers=Nombre de client
+BoxTitleLastRssInfos=Last %s news from %s
+BoxTitleLastProducts=Last %s recorded products/services
+BoxTitleLastCustomerOrders=Last %s customer orders
+BoxTitleLastSuppliers=Last %s recorded suppliers
+BoxTitleLastCustomers=Last %s recorded customers
+BoxTitleLastPropals=Last %s recorded proposals
+BoxTitleLastCustomerBills=Last %s customer bills
+BoxTitleLastSupplierBills=Les %s supplier bills
+BoxTitleLastProspects=Last %s recorded prospects
+BoxTitleLastProductsInContract=Last %s derniers produits/services contract�s
+BoxTitleOldestUnpayedCustomerBills=Oldest %s unpayed customer bills
+BoxTitleOldestUnpayedSupplierBills=Oldest %s unpayed supplier bills
diff --git a/htdocs/langs/fr_FR/boxes.lang b/htdocs/langs/fr_FR/boxes.lang
index 5332313bfad8cfd9869a97cb3a88f3ff6c711dbc..e46743bcdf855241b66e24eb06b4197b6a54a120 100644
--- a/htdocs/langs/fr_FR/boxes.lang
+++ b/htdocs/langs/fr_FR/boxes.lang
@@ -5,9 +5,24 @@ BoxLastProductsInContract=Derniers produits/services contract
 BoxLastSupplierBills=Derni�res factures fournisseur
 BoxLastCustomerBills=Derni�res factures client
 BoxOldestUnpayedCustomerBills=Plus anciennes factures client impay�es
-BoxOldesUnpayedSupplierBills=Plus anciennes factures fournisseur impay�es
+BoxOldestUnpayedSupplierBills=Plus anciennes factures fournisseur impay�es
 BoxLastProposals=Derni�res propositions commerciales
 BoxLastProspects=Derniers prospects
 BoxLastCustomers=Derniers clients
 BoxLastCustomerOrders=Derni�res commandes
 BoxLastSuppliers=Derniers fournisseurs
+BoxLastBooks=Derniers livres
+BoxTitleLastBooks=Les %s derniers ouvrages enregistr�s
+BoxTitleNbOfCustomers=Nombre de client
+BoxTitleLastRssInfos=Les %s derni�res infos de %s
+BoxTitleLastProducts=Les %s derniers produits/services enregistr�s
+BoxTitleLastCustomerOrders=Les %s derni�res commandes clients
+BoxTitleLastSuppliers=Les %s derniers fournisseurs enregistr�s
+BoxTitleLastCustomers=Les %s derniers clients enregistr�s
+BoxTitleLastPropals=Les %s derni�res propositions enregistr�s
+BoxTitleLastCustomerBills=Les %s derni�res factures clients enregistr�es
+BoxTitleLastSupplierBills=Les %s derni�res factures fournisseurs enregistr�es
+BoxTitleLastProspects=Les %s derniers prospects enregistr�s
+BoxTitleLastProductsInContract=Les %s derniers produits/services contract�s
+BoxTitleOldestUnpayedCustomerBills=Les %s plus anciennes factures clients impay�es
+BoxTitleOldestUnpayedSupplierBills=Les %s plus anciennes factures fournisseurs impay�es