diff --git a/htdocs/accountancy/bookkeeping/card.php b/htdocs/accountancy/bookkeeping/card.php
index e06ddb75b223268697868ac2c3c234d0caeb870e..86aca8b8af4430fdbd59078bf1804c14ddab5fc8 100644
--- a/htdocs/accountancy/bookkeeping/card.php
+++ b/htdocs/accountancy/bookkeeping/card.php
@@ -213,7 +213,7 @@ if ($action == 'create') {
             $conf->global->ACCOUNTING_MISCELLANEOUS_JOURNAL => $conf->global->ACCOUNTING_MISCELLANEOUS_JOURNAL,
             $conf->global->ACCOUNTING_EXPENSEREPORT_JOURNAL => $conf->global->ACCOUNTING_EXPENSEREPORT_JOURNAL
     );
-    
+
     $sql = 'SELECT DISTINCT accountancy_journal FROM '.MAIN_DB_PREFIX.'bank_account WHERE clos=0';
     $resql=$db->query($sql);
     if (!$resql) {
diff --git a/htdocs/accountancy/class/accountingaccount.class.php b/htdocs/accountancy/class/accountingaccount.class.php
index 9277bcd9a70e01bdb082c0b5be3296c0caf25839..856306c33048fb3e33e8a7722b54018524d51596 100644
--- a/htdocs/accountancy/class/accountingaccount.class.php
+++ b/htdocs/accountancy/class/accountingaccount.class.php
@@ -30,6 +30,11 @@
  */
 class AccountingAccount extends CommonObject
 {
+	var $db;
+	var $error;
+	var $errors;
+
+	var $id;
 	var $rowid;
 
 	var $datec; // Creation date
diff --git a/htdocs/accountancy/class/html.formventilation.class.php b/htdocs/accountancy/class/html.formventilation.class.php
index a1f01e5116bbbe7744cca4020c7885c0e65004d1..9c5a34f643d4a3181f031e25b0110959a28f5517 100644
--- a/htdocs/accountancy/class/html.formventilation.class.php
+++ b/htdocs/accountancy/class/html.formventilation.class.php
@@ -37,8 +37,7 @@ class FormVentilation extends Form
      *
      * @param		DoliDB		$db      Database handler
      */
-	public function __construct($db)
-    {
+	public function __construct($db) {
         $this->db = $db;
     }
 
@@ -49,8 +48,7 @@ class FormVentilation extends Form
 	 *	@param	string	$selectedkey	Value
 	 *	@return	string					HTML edit field
 	 */
-	function select_bookkeeping_importkey($htmlname = 'importkey', $selectedkey='')
-	{
+	function select_bookkeeping_importkey($htmlname = 'importkey', $selectedkey = '') {
 		$sql  = 'SELECT DISTINCT import_key from ' . MAIN_DB_PREFIX . 'accounting_bookkeeping';
 		$sql .= ' ORDER BY import_key DESC';
 
@@ -98,10 +96,11 @@ class FormVentilation extends Form
      *
 	 *	@return	string					String with HTML select
 	 */
-	function select_account($selectid, $htmlname = 'account', $showempty = 0, $event = array(), $select_in = 0, $select_out = 0, $aabase = '')
-	{
+	function select_account($selectid, $htmlname = 'account', $showempty = 0, $event = array(), $select_in = 0, $select_out = 0, $aabase = '') {
 		global $conf;
 
+		require_once DOL_DOCUMENT_ROOT.'/core/lib/accounting.lib.php';
+		
 		$out = '';
 
 		$sql = "SELECT DISTINCT aa.account_number, aa.label, aa.rowid, aa.fk_pcg_version";
@@ -128,10 +127,14 @@ class FormVentilation extends Form
 					$obj = $this->db->fetch_object($resql);
 					$label = length_accountg($obj->account_number) . ' - ' . $obj->label;
 					$label = dol_trunc($label, $trunclength);
-					if ($select_in == 0 )  $select_value_in =  $obj->rowid;
-					if ($select_in == 1 )  $select_value_in =  $obj->account_number;
-					if ($select_out == 0 ) $select_value_out = $obj->rowid;
-					if ($select_out == 1 ) $select_value_out = $obj->account_number;
+					if ($select_in == 0)
+						$select_value_in = $obj->rowid;
+					if ($select_in == 1)
+						$select_value_in = $obj->account_number;
+					if ($select_out == 0)
+						$select_value_out = $obj->rowid;
+					if ($select_out == 1)
+						$select_value_out = $obj->account_number;
 					// Remember guy's we store in database llx_facturedet the rowid of accounting_account and not the account_number
 					// Because same account_number can be share between different accounting_system and do have the same meaning
 					if (($selectid != '') && $selectid == $select_value_in) {
@@ -164,8 +167,7 @@ class FormVentilation extends Form
      *
 	 *	@return	string					String with HTML select
 	 */
-	function select_pcgtype($selectid, $htmlname = 'pcg_type', $showempty = 0, $event = array())
-	{
+	function select_pcgtype($selectid, $htmlname = 'pcg_type', $showempty = 0, $event = array()) {
 		global $conf;
 
 		$out = '';
@@ -220,8 +222,7 @@ class FormVentilation extends Form
      *
 	 *	@return	string					String with HTML select
 	 */
-	function select_pcgsubtype($selectid, $htmlname = 'pcg_subtype', $showempty = 0, $event = array())
-	{
+	function select_pcgsubtype($selectid, $htmlname = 'pcg_subtype', $showempty = 0, $event = array()) {
 		global $conf;
 
 		$out = '';
diff --git a/htdocs/accountancy/customer/lines.php b/htdocs/accountancy/customer/lines.php
index 4c2b8ee7686480ceff9e5d08fddb71f73c23753a..3c899fcdd8530bf29d587b935cd7ef57b19420bd 100644
--- a/htdocs/accountancy/customer/lines.php
+++ b/htdocs/accountancy/customer/lines.php
@@ -238,7 +238,7 @@ if ($result) {
 	print '<td class="liste_titre"><input type="text" class="flat" size="15" name="search_label" value="' . $search_label . '"></td>';
 	print '<td class="liste_titre"><input type="text" class="flat" size="15" name="search_desc" value="' . $search_desc . '"></td>';
 	print '<td class="liste_titre" align="center"><input type="text" class="flat" size="8" name="search_amount" value="' . $search_amount. '"></td>';
-	print '<td class="liste_titre" align="center">%<input type="text" class="flat" size="5" name="search_vat" value="' . $search_vat . '"></td>';
+	print '<td class="liste_titre" align="center"><input type="text" class="flat" size="5" name="search_vat" value="' . $search_vat . '">%</td>';
 	print '<td class="liste_titre" align="center"><input type="text" class="flat" size="15" name="search_account" value="' . $search_account . '"></td>';
 	print '<td class="liste_titre" colspan="2">&nbsp;</td>';
 	print '<td class="liste_titre" align="center"><input type="image" class="liste_titre" name="button_search" src="'.img_picto($langs->trans("Search"),'search.png','','',1).'" value="'.dol_escape_htmltag($langs->trans("Search")).'" title="'.dol_escape_htmltag($langs->trans("Search")).'">';
diff --git a/htdocs/accountancy/customer/list.php b/htdocs/accountancy/customer/list.php
index 7c025c8a893d92554f27dd45bde56b4f26a67b89..cf47c0e4fcea56b844e7a5e8d9809921e37e3ef4 100644
--- a/htdocs/accountancy/customer/list.php
+++ b/htdocs/accountancy/customer/list.php
@@ -1,6 +1,6 @@
 <?php
 /* Copyright (C) 2013-2014 Olivier Geffroy      <jeff@jeffinfo.com>
- * Copyright (C) 2013-2015 Alexandre Spangaro	<aspangaro.dolibarr@gmail.com>
+ * Copyright (C) 2013-2016 Alexandre Spangaro	<aspangaro.dolibarr@gmail.com>
  * Copyright (C) 2014-2015 Ari Elbaz (elarifr)	<github@accedinfo.com>
  * Copyright (C) 2013-2014 Florian Henry		<florian.henry@open-concept.pro>
  * Copyright (C) 2014	   Juanjo Menent		<jmenent@2byte.es>
@@ -149,7 +149,7 @@ if ($action == 'ventil' && !empty($btn_ventil)) {
 			
 			dol_syslog("/accountancy/customer/list.php sql=" . $sql, LOG_DEBUG);
 			if ($db->query($sql)) {
-				print '<div><font color="green">' . $langs->trans("Lineofinvoice") . ' ' . $monId . ' ' . $langs->trans("VentilatedinAccount") . ' : ' . $monCompte . '</font></div>';
+				print '<div><font color="green">' . $langs->trans("Lineofinvoice") . ' ' . $monId . ' - ' . $langs->trans("VentilatedinAccount") . ' : ' . $monCompte . '</font></div>';
 			} else {
 				print '<div><font color="red">' . $langs->trans("ErrorDB") . ' : ' . $langs->trans("Lineofinvoice") . ' ' . $monId . ' ' . $langs->trans("NotVentilatedinAccount") . ' : ' . $monCompte . '<br/> <pre>' . $sql . '</pre></font></div>';
 			}
@@ -228,6 +228,9 @@ if ($result) {
 	
 	print_barre_liste($langs->trans("InvoiceLines"), $page, $_SERVER["PHP_SELF"], "", $sortfield, $sortorder, '', $num_lines);
 	print '<br><b>' . $langs->trans("DescVentilTodoCustomer") . '</b></br>';
+	print_liste_field_titre($langs->trans("Date"), $_SERVER["PHP_SELF"], "f.datef", "", $param, '', $sortfield, $sortorder);
+	print '&nbsp;&nbsp;';
+	print_liste_field_titre($langs->trans("RowId"), $_SERVER["PHP_SELF"], "l.rowid", "", $param, '', $sortfield, $sortorder);
 
 	print '<form action="' . $_SERVER["PHP_SELF"] . '" method="post">' . "\n";
 	print '<input type="hidden" name="action" value="ventil">';
@@ -254,7 +257,7 @@ if ($result) {
 	print '<td class="liste_titre"><input type="text" class="flat" size="20" name="search_label" value="' . $search_label . '"></td>';
 	print '<td class="liste_titre"><input type="text" class="flat" size="20" name="search_desc" value="' . $search_desc . '"></td>';
 	print '<td class="liste_titre" align="right"><input type="text" class="flat" size="10" name="search_amount" value="' . $search_amount . '"></td>';
-	print '<td class="liste_titre" align="center"><input type="text" class="flat" size="5" name="search_vat" value="' . $search_vat . '"></td>';
+	print '<td class="liste_titre" align="center"><input type="text" class="flat" size="5" name="search_vat" value="' . $search_vat . '">%</td>';
 	print '<td align="right" class="liste_titre" colspan="4">';
 	print '<input type="image" class="liste_titre" src="' . img_picto($langs->trans("Search"), 'search.png', '', '', 1) . '" name="button_search" value="' . dol_escape_htmltag($langs->trans("Search")) . '" title="' . dol_escape_htmltag($langs->trans("Search")) . '">';
 	print '&nbsp;';
diff --git a/htdocs/accountancy/journal/bankjournal.php b/htdocs/accountancy/journal/bankjournal.php
index 520800f99dda4e6445855696e6e1933403f408bc..b86b7776e7ca6f53ff284bd8c6d1823041406921 100644
--- a/htdocs/accountancy/journal/bankjournal.php
+++ b/htdocs/accountancy/journal/bankjournal.php
@@ -4,7 +4,7 @@
  * Copyright (C) 2011		Juanjo Menent		<jmenent@2byte.es>
  * Copyright (C) 2012		Regis Houssin		<regis@dolibarr.fr>
  * Copyright (C) 2013		Christophe Battarel	<christophe.battarel@altairis.fr>
- * Copyright (C) 2013-2015  Alexandre Spangaro	<aspangaro.dolibarr@gmail.com>
+ * Copyright (C) 2013-2016  Alexandre Spangaro	<aspangaro.dolibarr@gmail.com>
  * Copyright (C) 2013-2014  Florian Henry		<florian.henry@open-concept.pro>
  * Copyright (C) 2013-2014  Olivier Geffroy		<jeff@jeffinfo.com>
  *
@@ -571,7 +571,7 @@ else
 
 	llxHeader('', $langs->trans("FinanceJournal"));
 
-	$nom = $langs->trans("FinanceJournal" . ' - ' . $journal);
+	$nom = $langs->trans("FinanceJournal") . ' - ' . $journal;
 	$builddate = time();
 	$description = $langs->trans("DescFinanceJournal") . '<br>';
 	$period = $form->select_date($date_start, 'date_start', 0, 0, 0, '', 1, 0, 1) . ' - ' . $form->select_date($date_end, 'date_end', 0, 0, 0, '', 1, 0, 1);
diff --git a/htdocs/accountancy/journal/sellsjournal.php b/htdocs/accountancy/journal/sellsjournal.php
index b22ac7ff4c5e4010aeefdf8d76a118c4a1438452..1c7ef749e3317b1a9e53b786c671cc253397311f 100644
--- a/htdocs/accountancy/journal/sellsjournal.php
+++ b/htdocs/accountancy/journal/sellsjournal.php
@@ -531,6 +531,7 @@ if ($action == 'export_csv')
 
 	print "</table>";
 
+	// End of page
 	llxFooter();
 }
 
diff --git a/htdocs/accountancy/supplier/lines.php b/htdocs/accountancy/supplier/lines.php
index 6c2dc69c22ca229e883e7f5399b1187b3c45bbfc..e77c98aae3d8f00e72a531a5d242dc929d930c8e 100644
--- a/htdocs/accountancy/supplier/lines.php
+++ b/htdocs/accountancy/supplier/lines.php
@@ -1,6 +1,6 @@
 <?php
 /* Copyright (C) 2013-2014 Olivier Geffroy		<jeff@jeffinfo.com>
- * Copyright (C) 2013-2015 Alexandre Spangaro	<aspangaro.dolibarr@gmail.com>
+ * Copyright (C) 2013-2016 Alexandre Spangaro	<aspangaro.dolibarr@gmail.com>
  * Copyright (C) 2014-2015 Ari Elbaz (elarifr)	<github@accedinfo.com>  
  * Copyright (C) 2013-2014 Florian Henry		<florian.henry@open-concept.pro>
  * Copyright (C) 2014	   Juanjo Menent		<jmenent@2byte.es>
@@ -225,7 +225,7 @@ if ($result) {
 	print '<td class="liste_titre"><input type="text" class="flat" size="15" name="search_label" value="' . $search_label . '"></td>';
 	print '<td class="liste_titre"><input type="text" class="flat" size="15" name="search_desc" value="' . $search_desc . '"></td>';
 	print '<td class="liste_titre" align="center"><input type="text" class="flat" size="8" name="search_amount" value="' . $search_amount . '"></td>';
-	print '<td class="liste_titre" align="center">%<input type="text" class="flat" size="5" name="search_vat" value="' . $search_vat . '"></td>';
+	print '<td class="liste_titre" align="center"><input type="text" class="flat" size="5" name="search_vat" value="' . $search_vat . '">%</td>';
 	print '<td class="liste_titre" align="center"><input type="text" class="flat" size="15" name="search_account" value="' . $search_account . '"></td>';
 	print '<td class="liste_titre" colspan="2">&nbsp;</td>';
   print '<td class="liste_titre" align="center"><input type="image" class="liste_titre" name="button_search" src="'.img_picto($langs->trans("Search"),'search.png','','',1).'" value="'.dol_escape_htmltag($langs->trans("Search")).'" title="'.dol_escape_htmltag($langs->trans("Search")).'">';
diff --git a/htdocs/accountancy/supplier/list.php b/htdocs/accountancy/supplier/list.php
index 33322fd52c46eb8dcc5749ea5147ae394d69f5a8..bb57fa0999f3c41a200629aa643b0e98e2232905 100644
--- a/htdocs/accountancy/supplier/list.php
+++ b/htdocs/accountancy/supplier/list.php
@@ -1,6 +1,6 @@
 <?php
 /* Copyright (C) 2013-2014	Olivier Geffroy			<jeff@jeffinfo.com>
- * Copyright (C) 2013-2015	Alexandre Spangaro		<aspangaro.dolibarr@gmail.com>
+ * Copyright (C) 2013-2016	Alexandre Spangaro		<aspangaro.dolibarr@gmail.com>
  * Copyright (C) 2014-2015	Ari Elbaz (elarifr)		<github@accedinfo.com>
  * Copyright (C) 2013-2014	Florian Henry			<florian.henry@open-concept.pro>
  * Copyright (C) 2014		Juanjo Menent			<jmenent@2byte.es>s
@@ -168,7 +168,6 @@ if ($action == 'ventil' && !empty($btn_ventil)) {
 
 /*
  * Supplier Invoice Lines
- *
  */
 
 if (! empty($conf->global->ACCOUNTING_LIMIT_LIST_VENTILATION)) {
@@ -252,11 +251,11 @@ if ($result) {
 	
 	print '<tr class="liste_titre">';
 	print '<td class="liste_titre"><input type="text" class="flat" size="10" name="search_invoice" value="' . $search_invoice . '"></td>';
-	print '<td class="liste_titre">%<input type="text" class="flat" size="15" name="search_ref" value="' . $search_ref . '"></td>';
+	print '<td class="liste_titre"><input type="text" class="flat" size="15" name="search_ref" value="' . $search_ref . '"></td>';
 	print '<td class="liste_titre"><input type="text" class="flat" size="20" name="search_label" value="' . $search_label . '"></td>';
 	print '<td class="liste_titre"><input type="text" class="flat" size="20" name="search_desc" value="' . $search_desc . '"></td>';
 	print '<td class="liste_titre" align="right"><input type="text" class="flat" size="10" name="search_amount" value="' . $search_amount . '"></td>';
-	print '<td class="liste_titre" align="center">%<input type="text" class="flat" size="5" name="search_vat" value="' . $search_vat . '"></td>';
+	print '<td class="liste_titre" align="center"><input type="text" class="flat" size="5" name="search_vat" value="' . $search_vat . '">%</td>';
 	print '<td class="liste_titre" align="center">&nbsp;</td>';
 	print '<td class="liste_titre">&nbsp;</td>';
 	print '<td align="right" colspan="2" class="liste_titre">';
diff --git a/htdocs/admin/dict.php b/htdocs/admin/dict.php
index cdba648cac99506b9e5157d1d02988e32a1869bb..17033845f8c3f29fa5fddad7b31c1e7de708f3c8 100644
--- a/htdocs/admin/dict.php
+++ b/htdocs/admin/dict.php
@@ -37,7 +37,7 @@ require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php';
 require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
 require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
-if (! empty($conf->accounting->enabled)) require_once DOL_DOCUMENT_ROOT . '/core/lib/accounting.lib.php';
+require_once DOL_DOCUMENT_ROOT.'/core/lib/accounting.lib.php';
 if (! empty($conf->accounting->enabled)) require_once DOL_DOCUMENT_ROOT . '/accountancy/class/html.formventilation.class.php';
 
 $langs->load("errors");
diff --git a/htdocs/comm/mailing/cibles.php b/htdocs/comm/mailing/cibles.php
index 250a155ad57443e73efb2745d3e29cffcd9e8dea..d3aa3557c89dbb54f3ece662197f8d37fd023438 100644
--- a/htdocs/comm/mailing/cibles.php
+++ b/htdocs/comm/mailing/cibles.php
@@ -484,24 +484,24 @@ if ($object->fetch($id) >= 0)
                     if ($obj->source_type == 'member')
                     {
                         include_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
-                        $m=new Adherent($db);
-						$m->fetch($obj->source_id);
-                        print $m->getNomUrl(2);
+                        $objectstatic=new Adherent($db);
+						$objectstatic->fetch($obj->source_id);
+                        print $objectstatic->getNomUrl(2);
                     }
                     else if ($obj->source_type == 'user')
                     {
                         include_once DOL_DOCUMENT_ROOT.'/user/class/user.class.php';
-                        $m=new User($db);
-						$m->fetch($obj->source_id);
-                        $m->id=$obj->source_id;
-                        print $m->getNomUrl(2);
+                        $objectstatic=new User($db);
+						$objectstatic->fetch($obj->source_id);
+                        $objectstatic->id=$obj->source_id;
+                        print $objectstatic->getNomUrl(2);
                     }
                     else if ($obj->source_type == 'thirdparty')
                     {
                         include_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
-                        $m=new Societe($db);
-						$m->fetch($obj->source_id);
-                        print $m->getNomUrl(2);
+                        $objectstatic=new Societe($db);
+						$objectstatic->fetch($obj->source_id);
+                        print $objectstatic->getNomUrl(2);
                     }
                     else
                     {
diff --git a/htdocs/commande/list.php b/htdocs/commande/list.php
index ec03e023e7adaacd41aeff54201cd6eabe621694..8e5e73fd6fcb0f4a9aa13c2320c11fb595658f79 100644
--- a/htdocs/commande/list.php
+++ b/htdocs/commande/list.php
@@ -422,6 +422,7 @@ if ($resql)
                 $notshippable=0;
                 $warning = 0;
                 $text_info='';
+                $text_warning='';
                 $nbprod=0;
                 
                 $numlines = count($generic_commande->lines); // Loop on each line of order
diff --git a/htdocs/commande/orderstoinvoice.php b/htdocs/commande/orderstoinvoice.php
index 4d9b6bb53f56eb1ec643c0fcf5d06d45619c59df..79f18ad26ab388631bed8b8f1708d40bf16965c8 100644
--- a/htdocs/commande/orderstoinvoice.php
+++ b/htdocs/commande/orderstoinvoice.php
@@ -300,7 +300,8 @@ if (($action == 'create' || $action == 'add') && !$error)
 												$lines[$i]->rowid,
 												$fk_parent_line,
 												$lines[$i]->fk_fournprice,
-												$lines[$i]->pa_ht
+												$lines[$i]->pa_ht,
+												$lines[$i]->label
 										);
 										if ($result > 0)
 										{
@@ -396,9 +397,9 @@ if ($action == 'create' && !$error)
 	print '<input type="hidden" name="origin" value="'.GETPOST('origin').'">';
 	print '<input type="hidden" name="originid" value="'.GETPOST('originid').'">';
 	print '<input type="hidden" name="autocloseorders" value="'.GETPOST('autocloseorders').'">';
-	
+
 	dol_fiche_head();
-	
+
 	print '<table class="border" width="100%">';
 
 	// Ref
@@ -501,15 +502,15 @@ if ($action == 'create' && !$error)
 	}
 
 	dol_fiche_end();
-	
+
 	// Button "Create Draft"
 	print '<div class="center"><input type="submit" class="button" name="bouton" value="'.$langs->trans('CreateDraft').'" /></div>';
 	print "</form>\n";
 
 	print '</td></tr>';
 	print "</table>\n";
-	
-	
+
+
 }
 
 // Mode liste
diff --git a/htdocs/compta/bank/card.php b/htdocs/compta/bank/card.php
index 08ab509448a633164381de5b8483bde1e56007c0..cccf16f04678d0a651887804edbf2772b692e32f 100644
--- a/htdocs/compta/bank/card.php
+++ b/htdocs/compta/bank/card.php
@@ -33,7 +33,7 @@ require_once DOL_DOCUMENT_ROOT . '/core/class/html.formcompany.class.php';
 require_once DOL_DOCUMENT_ROOT . '/core/class/html.formbank.class.php';
 require_once DOL_DOCUMENT_ROOT . '/compta/bank/class/account.class.php';
 require_once DOL_DOCUMENT_ROOT . '/core/class/extrafields.class.php';
-if (! empty($conf->accounting->enabled)) require_once DOL_DOCUMENT_ROOT.'/core/lib/accounting.lib.php';
+require_once DOL_DOCUMENT_ROOT . '/core/lib/accounting.lib.php';
 if (! empty($conf->accounting->enabled)) require_once DOL_DOCUMENT_ROOT.'/accountancy/class/html.formventilation.class.php';
 
 $langs->load("banks");
diff --git a/htdocs/contrat/card.php b/htdocs/contrat/card.php
index a1a1d1cc69ae3ddc90a04f80ed6eaf2981782bee..37ec345295bba493616b6776820e9f9312a61ced 100644
--- a/htdocs/contrat/card.php
+++ b/htdocs/contrat/card.php
@@ -6,7 +6,7 @@
  * Copyright (C) 2010-2015	Juanjo Menent			<jmenent@2byte.es>
  * Copyright (C) 2013       Christophe Battarel     <christophe.battarel@altairis.fr>
  * Copyright (C) 2013-2014  Florian Henry		  	<florian.henry@open-concept.pro>
- * Copyright (C) 2014		Ferran Marcet		  	<fmarcet@2byte.es>
+ * Copyright (C) 2014-2016	Ferran Marcet		  	<fmarcet@2byte.es>
  * Copyright (C) 2014       Marcos García           <marcosgdf@gmail.com>
  * Copyright (C) 2015       Jean-François Ferry		<jfefe@aternatik.fr>
  *
@@ -1718,9 +1718,11 @@ else
                     {
                         $tmpaction='activateline';
                         if ($objp->statut == 4) $tmpaction='unactivateline';
-                        print '<a href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&amp;ligne='.$object->lines[$cursorline-1]->id.'&amp;action='.$tmpaction.'">';
-                        print img_edit();
-                        print '</a>';
+						if (($tmpaction=='activateline' && $user->rights->contrat->activer) || ($tmpaction=='unactivateline' && $user->rights->contrat->unactiver)) {
+							print '<a href="' . $_SERVER["PHP_SELF"] . '?id=' . $object->id . '&amp;ligne=' . $object->lines[$cursorline - 1]->id . '&amp;action=' . $tmpaction . '">';
+							print img_edit();
+							print '</a>';
+						}
                     }
                 }
                 print '</td>';
diff --git a/htdocs/core/class/link.class.php b/htdocs/core/class/link.class.php
index 2a58876cdd7ae75f6f2eb0e3768e604d640bff85..62bcf9d22c56ad7a0081602c142f4c345c7f785b 100644
--- a/htdocs/core/class/link.class.php
+++ b/htdocs/core/class/link.class.php
@@ -275,9 +275,9 @@ class Link extends CommonObject
     /**
      *  Return nb of links
      *
-     *  @param  DoliDb  $db    Database handler
-     *  @param  string  $objecttype type of the associated object in dolibarr
-     *  @param  int     $objectid   id of the associated object in dolibarr
+     *  @param  DoliDb  $db         Database handler
+     *  @param  string  $objecttype Type of the associated object in dolibarr
+     *  @param  int     $objectid   Id of the associated object in dolibarr
      *  @return int                 Nb of links, -1 if error
      **/
     public static function count($db, $objecttype, $objectid)
diff --git a/htdocs/core/menus/standard/eldy.lib.php b/htdocs/core/menus/standard/eldy.lib.php
index 6263b1b709de66de1e64e762f5da8143e3a87f7b..baa73c532f84631fcf3320ad1a98b9a82d9bd5e9 100644
--- a/htdocs/core/menus/standard/eldy.lib.php
+++ b/htdocs/core/menus/standard/eldy.lib.php
@@ -936,33 +936,92 @@ function print_left_eldy_menu($db,$menu_array_before,$menu_array_after,&$tabMenu
 			{
 				$langs->load("accountancy");
 
-				$newmenu->add("/accountancy/customer/index.php?leftmenu=ventil_customer",$langs->trans("CustomersVentilation"),0,$user->rights->accounting->ventilation->read, '', $mainmenu, 'ventil_customer');
-				if (empty($leftmenu) || $leftmenu=="ventil_customer") $newmenu->add("/accountancy/customer/list.php",$langs->trans("ToDispatch"),1,$user->rights->accounting->ventilation->dispatch);
-				if (empty($leftmenu) || $leftmenu=="ventil_customer") $newmenu->add("/accountancy/customer/lines.php",$langs->trans("Dispatched"),1,$user->rights->accounting->ventilation->read);
+				$permtoshowmenu=(! empty($conf->accounting->enabled) || $user->rights->accounting->ventilation->read || $user->rights->accounting->ventilation->dispatch || $user->rights->compta->resultat->lire);
+				$newmenu->add("/accountancy/customer/index.php?leftmenu=accountancy",$langs->trans("MenuAccountancy"), 0, $permtoshowmenu, '', $mainmenu, 'accountancy');
+
+				// Dispatch
+				$newmenu->add("/accountancy/customer/index.php?leftmenu=dispatch_customer&amp;mainmenu=accountancy",$langs->trans("CustomersVentilation"),1,$user->rights->accounting->ventilation->read, '', $mainmenu, 'dispatch_customer');
+					if (empty($leftmenu) || $leftmenu=="dispatch_customer") $newmenu->add("/accountancy/customer/list.php",$langs->trans("ToDispatch"),2,$user->rights->accounting->ventilation->dispatch);
+					if (empty($leftmenu) || $leftmenu=="dispatch_customer") $newmenu->add("/accountancy/customer/lines.php",$langs->trans("Dispatched"),2,$user->rights->accounting->ventilation->read);
 
 				if (! empty($conf->supplier_invoice->enabled))
 				{
-					$newmenu->add("/accountancy/supplier/index.php?leftmenu=ventil_supplier",$langs->trans("SuppliersVentilation"),0,$user->rights->accounting->ventilation->read, '', $mainmenu, 'ventil_supplier');
-					if (empty($leftmenu) || $leftmenu=="ventil_supplier") $newmenu->add("/accountancy/supplier/list.php",$langs->trans("ToDispatch"),1,$user->rights->accounting->ventilation->dispatch);
-					if (empty($leftmenu) || $leftmenu=="ventil_supplier") $newmenu->add("/accountancy/supplier/lines.php",$langs->trans("Dispatched"),1,$user->rights->accounting->ventilation->read);
+					$newmenu->add("/accountancy/supplier/index.php?leftmenu=dispatch_supplier&amp;mainmenu=accountancy",$langs->trans("SuppliersVentilation"),1,$user->rights->accounting->ventilation->read, '', $mainmenu, 'dispatch_supplier');
+						if (empty($leftmenu) || $leftmenu=="dispatch_supplier") $newmenu->add("/accountancy/supplier/list.php",$langs->trans("ToDispatch"),2,$user->rights->accounting->ventilation->dispatch);
+						if (empty($leftmenu) || $leftmenu=="dispatch_supplier") $newmenu->add("/accountancy/supplier/lines.php",$langs->trans("Dispatched"),2,$user->rights->accounting->ventilation->read);
+				}
+
+				// Journals
+				if(! empty($conf->accounting->enabled) && ! empty($user->rights->accounting->comptarapport->lire) && $mainmenu == 'accountancy')
+				{
+					$newmenu->add('',$langs->trans("Journaux"),1,$user->rights->accounting->comptarapport->lire);
+
+					$sql = "SELECT rowid, label, accountancy_journal";
+					$sql.= " FROM ".MAIN_DB_PREFIX."bank_account";
+					$sql.= " WHERE entity = ".$conf->entity;
+					$sql.= " AND clos = 0";
+					$sql.= " ORDER BY label";
+
+					$resql = $db->query($sql);
+					if ($resql)
+					{
+						$numr = $db->num_rows($resql);
+						$i = 0;
+
+						if ($numr > 0)
+						while ($i < $numr)
+						{
+							$objp = $db->fetch_object($resql);
+							$newmenu->add('/accountancy/journal/bankjournal.php?id_account='.$objp->rowid,$langs->trans("Journal").' - '.$objp->label,2,$user->rights->accounting->comptarapport->lire);
+							$i++;
+						}
+					}
+					else dol_print_error($db);
+					$db->free($resql);
+
+					// Add other journal
+					$newmenu->add("/accountancy/journal/sellsjournal.php?leftmenu=journal",$langs->trans("SellsJournal"),2,$user->rights->accounting->comptarapport->lire);
+					$newmenu->add("/accountancy/journal/purchasesjournal.php?leftmenu=journal",$langs->trans("PurchasesJournal"),2,$user->rights->accounting->comptarapport->lire);
 				}
+
+				// General Ledger
+				$newmenu->add("/accountancy/bookkeeping/list.php?leftmenu=bookkeeping",$langs->trans("Bookkeeping"),1,$user->rights->accounting->mouvements->lire, '', $mainmenu, 'bookkeeping');
+				if (empty($leftmenu) || preg_match('/bookkeeping/',$leftmenu)) $newmenu->add("/accountancy/bookkeeping/listbyyear.php",$langs->trans("ByYear"),2,$user->rights->accounting->mouvements->lire);
+				if (empty($leftmenu) || preg_match('/bookkeeping/',$leftmenu)) $newmenu->add("/accountancy/bookkeeping/balancebymonth.php",$langs->trans("AccountBalanceByMonth"),2,$user->rights->accounting->mouvements->lire);
+
+				// Reports
+				$langs->load("compta");
+
+				$newmenu->add("/compta/resultat/index.php?leftmenu=report&amp;mainmenu=accountancy",$langs->trans("Reportings"),1,$user->rights->accounting->comptarapport->lire, '', $mainmenu, 'ca');
+
+				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/resultat/index.php?leftmenu=report",$langs->trans("ReportInOut"),2,$user->rights->accounting->comptarapport->lire);
+				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/resultat/clientfourn.php?leftmenu=report",$langs->trans("ByCompanies"),3,$user->rights->accounting->comptarapport->lire);
+				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/stats/index.php?leftmenu=report",$langs->trans("ReportTurnover"),2,$user->rights->accounting->comptarapport->lire);
+				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/stats/casoc.php?leftmenu=report",$langs->trans("ByCompanies"),3,$user->rights->accounting->comptarapport->lire);
+				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/stats/cabyuser.php?leftmenu=report",$langs->trans("ByUsers"),3,$user->rights->accounting->comptarapport->lire);
+				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/stats/cabyprodserv.php?leftmenu=report", $langs->trans("ByProductsAndServices"),3,$user->rights->accounting->comptarapport->lire);
+
+				// Admin
+				$langs->load("admin");
+			    $newmenu->add("/accountancy/admin/fiscalyear.php?mainmenu=accountancy", $langs->trans("Fiscalyear"),1,$user->rights->accounting->fiscalyear, '', $mainmenu, 'fiscalyear');
+				$newmenu->add("/accountancy/admin/account.php?mainmenu=accountancy", $langs->trans("Chartofaccounts"),1,$user->rights->accounting->chartofaccount, '', $mainmenu, 'chartofaccount');
 			}
 
-			// Rapports
-			if (! empty($conf->comptabilite->enabled) || ! empty($conf->accounting->enabled))
+			// Comptabilite
+			if (! empty($conf->comptabilite->enabled))
 			{
 				$langs->load("compta");
 
 				// Bilan, resultats
-				$newmenu->add("/compta/resultat/index.php?leftmenu=report&amp;mainmenu=accountancy",$langs->trans("Reportings"),0,$user->rights->compta->resultat->lire||$user->rights->accounting->comptarapport->lire, '', $mainmenu, 'ca');
+				$newmenu->add("/compta/resultat/index.php?leftmenu=report&amp;mainmenu=accountancy",$langs->trans("Reportings"),0,$user->rights->compta->resultat->lire, '', $mainmenu, 'ca');
 
-				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/resultat/index.php?leftmenu=report",$langs->trans("ReportInOut"),1,$user->rights->compta->resultat->lire||$user->rights->accounting->comptarapport->lire);
-				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/resultat/clientfourn.php?leftmenu=report",$langs->trans("ByCompanies"),2,$user->rights->compta->resultat->lire||$user->rights->accounting->comptarapport->lire);
+				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/resultat/index.php?leftmenu=report",$langs->trans("ReportInOut"),1,$user->rights->compta->resultat->lire);
+				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/resultat/clientfourn.php?leftmenu=report",$langs->trans("ByCompanies"),2,$user->rights->compta->resultat->lire);
 				/* On verra ca avec module compabilite expert
 				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/resultat/compteres.php?leftmenu=report","Compte de resultat",2,$user->rights->compta->resultat->lire);
 				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/resultat/bilan.php?leftmenu=report","Bilan",2,$user->rights->compta->resultat->lire);
 				*/
-				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/stats/index.php?leftmenu=report",$langs->trans("ReportTurnover"),1,$user->rights->compta->resultat->lire||$user->rights->accounting->comptarapport->lire);
+				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/stats/index.php?leftmenu=report",$langs->trans("ReportTurnover"),1,$user->rights->compta->resultat->lire);
 
 				/*
 				 if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/stats/cumul.php?leftmenu=report","Cumule",2,$user->rights->compta->resultat->lire);
@@ -971,74 +1030,14 @@ function print_left_eldy_menu($db,$menu_array_before,$menu_array_after,&$tabMenu
 				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/stats/comp.php?leftmenu=report","Transforme",2,$user->rights->compta->resultat->lire);
 				}
 				*/
-				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/stats/casoc.php?leftmenu=report",$langs->trans("ByCompanies"),2,$user->rights->compta->resultat->lire||$user->rights->accounting->comptarapport->lire);
-				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/stats/cabyuser.php?leftmenu=report",$langs->trans("ByUsers"),2,$user->rights->compta->resultat->lire||$user->rights->accounting->comptarapport->lire);
-				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/stats/cabyprodserv.php?leftmenu=report", $langs->trans("ByProductsAndServices"),2,$user->rights->compta->resultat->lire||$user->rights->accounting->comptarapport->lire);
-
-				if (! empty($conf->comptabilite->enabled))
-				{
-					// Journaux
-					//if ($leftmenu=="ca") $newmenu->add("/compta/journaux/index.php?leftmenu=ca",$langs->trans("Journaux"),1,$user->rights->compta->resultat->lire||$user->rights->accounting->comptarapport->lire);
-					//journaux
-					if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/journal/sellsjournal.php?leftmenu=report",$langs->trans("SellsJournal"),1,$user->rights->compta->resultat->lire);
-					if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/journal/purchasesjournal.php?leftmenu=report",$langs->trans("PurchasesJournal"),1,$user->rights->compta->resultat->lire);
-				}
-
-				// Report expert
-				if (! empty($conf->accounting->enabled))
-				{
-					$langs->load("accountancy");
-
-					// Grand livre
-					$newmenu->add("/accountancy/bookkeeping/list.php?leftmenu=bookkeeping",$langs->trans("Bookkeeping"),0,$user->rights->accounting->mouvements->lire, '', $mainmenu, 'bookkeeping');
-					if (empty($leftmenu) || preg_match('/bookkeeping/',$leftmenu)) $newmenu->add("/accountancy/bookkeeping/listbyyear.php",$langs->trans("ByYear"),1,$user->rights->accounting->mouvements->lire);
-					if (empty($leftmenu) || preg_match('/bookkeeping/',$leftmenu)) $newmenu->add("/accountancy/bookkeeping/balancebymonth.php",$langs->trans("AccountBalanceByMonth"),1,$user->rights->accounting->mouvements->lire);
-
-					// Accountancy journals
-					if (! empty($conf->accounting->enabled) && !empty($user->rights->accounting->mouvements->lire) && $mainmenu == 'accountancy')
-					{
-						$newmenu->add('/accountancy/journal/index.php?leftmenu=journal',$langs->trans("Journaux"),0,$user->rights->banque->lire);
-
-						if ($leftmenu == 'journal')
-						{
-							$sql = "SELECT rowid, label, accountancy_journal";
-							$sql.= " FROM ".MAIN_DB_PREFIX."bank_account";
-							$sql.= " WHERE entity = ".$conf->entity;
-							$sql.= " AND clos = 0";
-							$sql.= " ORDER BY label";
-
-							$resql = $db->query($sql);
-							if ($resql)
-							{
-								$numr = $db->num_rows($resql);
-								$i = 0;
-
-								if ($numr > 0)
-
-								while ($i < $numr)
-								{
-									$objp = $db->fetch_object($resql);
-									$newmenu->add('/accountancy/journal/bankjournal.php?id_account='.$objp->rowid,$langs->trans("Journal").' - '.$objp->label,1,$user->rights->accounting->comptarapport->lire);
-									$i++;
-								}
-							}
-							else dol_print_error($db);
-							$db->free($resql);
-
-							// Add other journal
-							$newmenu->add("/accountancy/journal/sellsjournal.php?leftmenu=journal",$langs->trans("SellsJournal"),1,$user->rights->accounting->comptarapport->lire);
-							$newmenu->add("/accountancy/journal/purchasesjournal.php?leftmenu=journal",$langs->trans("PurchasesJournal"),1,$user->rights->accounting->comptarapport->lire);
-						}
-					}
-				}
-			}
-
-			// Setup
-			if (! empty($conf->accounting->enabled))
-			{
-				$langs->load("admin");
-			    // $newmenu->add("/accountancy/admin/fiscalyear.php?mainmenu=accountancy", $langs->trans("Fiscalyear"),0,$user->rights->accounting->fiscalyear, '', $mainmenu, 'fiscalyear');
-				$newmenu->add("/accountancy/admin/account.php?mainmenu=accountancy", $langs->trans("Chartofaccounts"),0,$user->rights->accounting->chartofaccount, '', $mainmenu, 'chartofaccount');
+				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/stats/casoc.php?leftmenu=report",$langs->trans("ByCompanies"),2,$user->rights->compta->resultat->lire);
+				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/stats/cabyuser.php?leftmenu=report",$langs->trans("ByUsers"),2,$user->rights->compta->resultat->lire);
+				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/stats/cabyprodserv.php?leftmenu=report", $langs->trans("ByProductsAndServices"),2,$user->rights->compta->resultat->lire);
+
+				// Journaux
+				//if ($leftmenu=="ca") $newmenu->add("/compta/journaux/index.php?leftmenu=ca",$langs->trans("Journaux"),1,$user->rights->compta->resultat->lire||$user->rights->accounting->comptarapport->lire);
+				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/journal/sellsjournal.php?leftmenu=report",$langs->trans("SellsJournal"),1,$user->rights->compta->resultat->lire);
+				if (empty($leftmenu) || preg_match('/report/',$leftmenu)) $newmenu->add("/compta/journal/purchasesjournal.php?leftmenu=report",$langs->trans("PurchasesJournal"),1,$user->rights->compta->resultat->lire);
 			}
 		}
 
diff --git a/htdocs/core/modules/modECM.class.php b/htdocs/core/modules/modECM.class.php
index b185e2962f25090000968dcd2dc3b3ebf009027b..1aa5008032d8eeaa45d930d42b919801d43f408e 100644
--- a/htdocs/core/modules/modECM.class.php
+++ b/htdocs/core/modules/modECM.class.php
@@ -175,7 +175,7 @@ class modECM extends DolibarrModules
 							  'langs'=>'ecm',
 							  'position'=>103,
 							  'perms'=>'$user->rights->ecm->read || $user->rights->ecm->upload',
-							  'enabled'=>'$user->rights->ecm->read || $user->rights->ecm->upload',
+							  'enabled'=>'($user->rights->ecm->read || $user->rights->ecm->upload) && ! empty($conf->global->ECM_AUTO_TREE_ENABLED)',
 							  'target'=>'',
 							  'user'=>2);			// 0=Menu for internal users, 1=external users, 2=both
 		$r++;
diff --git a/htdocs/core/modules/modProduct.class.php b/htdocs/core/modules/modProduct.class.php
index 295e348dc988f76cb51f4dd63896358a9f12adaa..7616e6a36dd87b1b2b7a2a5a20dfd473f419a9ff 100644
--- a/htdocs/core/modules/modProduct.class.php
+++ b/htdocs/core/modules/modProduct.class.php
@@ -44,7 +44,7 @@ class modProduct extends DolibarrModules
 	 */
 	function __construct($db)
 	{
-		global $conf;
+		global $conf, $mysoc;
 
 		$this->db = $db;
 		$this->numero = 50;
@@ -148,55 +148,20 @@ class modProduct extends DolibarrModules
 		$this->export_label[$r]="Products";	// Translation key (used only if key ExportDataset_xxx_z not found)
 		$this->export_permission[$r]=array(array("produit","export"));
 		$this->export_fields_array[$r]=array('p.rowid'=>"Id",'p.ref'=>"Ref",'p.label'=>"Label",'p.description'=>"Description",'p.url'=>"PublicUrl",'p.accountancy_code_sell'=>"ProductAccountancySellCode",'p.accountancy_code_buy'=>"ProductAccountancyBuyCode",'p.note'=>"Note",'p.length'=>"Length",'p.surface'=>"Surface",'p.volume'=>"Volume",'p.weight'=>"Weight",'p.customcode'=>'CustomCode','p.price_base_type'=>"PriceBase",'p.price'=>"UnitPriceHT",'p.price_ttc'=>"UnitPriceTTC",'p.tva_tx'=>'VATRate','p.tosell'=>"OnSell",'p.tobuy'=>"OnBuy",'p.datec'=>'DateCreation','p.tms'=>'DateModification');
+		if ($mysoc->useNPR()) $this->export_fields_array[$r]['p.recuperableonly']='NPR';
 		if (! empty($conf->stock->enabled)) $this->export_fields_array[$r]=array_merge($this->export_fields_array[$r],array('p.stock'=>'Stock','p.pmp'=>'PMPValue'));
 		if (! empty($conf->barcode->enabled)) $this->export_fields_array[$r]=array_merge($this->export_fields_array[$r],array('p.barcode'=>'BarCode'));
 		if (! empty($conf->fournisseur->enabled)) $this->export_fields_array[$r]=array_merge($this->export_fields_array[$r],array('s.nom'=>'Supplier','pf.ref_fourn'=>'SupplierRef','pf.unitprice'=>'SuppliersPrices'));
 		$this->export_TypeFields_array[$r]=array('p.ref'=>"Text",'p.label'=>"Text",'p.description'=>"Text",'p.url'=>"Text",'p.accountancy_code_sell'=>"Text",'p.accountancy_code_buy'=>"Text",'p.note'=>"Text",'p.length'=>"Numeric",'p.surface'=>"Numeric",'p.volume'=>"Numeric",'p.weight'=>"Numeric",'p.customcode'=>'Text','p.price_base_type'=>"Text",'p.price'=>"Numeric",'p.price_ttc'=>"Numeric",'p.tva_tx'=>'Numeric','p.tosell'=>"Boolean",'p.tobuy'=>"Boolean",'p.datec'=>'Date','p.tms'=>'Date');
-		if (! empty($conf->stock->enabled)) $this->export_TypeFields_array[$r]=array_merge($this->export_TypeFields_array[$r],array('p.pmp'=>'Numeric'));
+		if (! empty($conf->stock->enabled)) $this->export_TypeFields_array[$r]=array_merge($this->export_TypeFields_array[$r],array('p.stock'=>'Numeric','p.pmp'=>'Numeric'));
 		if (! empty($conf->barcode->enabled)) $this->export_TypeFields_array[$r]=array_merge($this->export_TypeFields_array[$r],array('p.barcode'=>'Text'));
 		if (! empty($conf->fournisseur->enabled)) $this->export_TypeFields_array[$r]=array_merge($this->export_TypeFields_array[$r],array('s.nom'=>'Text','pf.ref_fourn'=>'Text','pf.unitprice'=>'Numeric'));
 		$this->export_entities_array[$r]=array('p.rowid'=>"product",'p.ref'=>"product",'p.label'=>"product",'p.description'=>"product",'p.url'=>"product",'p.accountancy_code_sell'=>'product','p.accountancy_code_sell'=>'product','p.note'=>"product",'p.length'=>"product",'p.surface'=>"product",'p.volume'=>"product",'p.weight'=>"product",'p.customcode'=>'product','p.price_base_type'=>"product",'p.price'=>"product",'p.price_ttc'=>"product",'p.tva_tx'=>"product",'p.tosell'=>"product",'p.tobuy'=>"product",'p.datec'=>"product",'p.tms'=>"product");
 		if (! empty($conf->stock->enabled)) $this->export_entities_array[$r]=array_merge($this->export_entities_array[$r],array('p.stock'=>'product','p.pmp'=>'product'));
 		if (! empty($conf->barcode->enabled)) $this->export_entities_array[$r]=array_merge($this->export_entities_array[$r],array('p.barcode'=>'product'));
 		if (! empty($conf->fournisseur->enabled)) $this->export_entities_array[$r]=array_merge($this->export_entities_array[$r],array('s.nom'=>'product','pf.ref_fourn'=>'product','pf.unitprice'=>'product'));
-		// Add extra fields
-		$sql="SELECT name, label, type FROM ".MAIN_DB_PREFIX."extrafields WHERE elementtype = 'product' AND entity IN (0, ".$conf->entity.')';
-		$resql=$this->db->query($sql);
-		if ($resql)    // This can fail when class is used on old database (during migration for example)
-		{
-		    while ($obj=$this->db->fetch_object($resql))
-		    {
-		        $fieldname='extra.'.$obj->name;
-		        $fieldlabel=ucfirst($obj->label);
-				$typeFilter="Text";
-				switch($obj->type)
-				{
-					case 'int':
-					case 'double':
-					case 'price':
-						$typeFilter="Numeric";
-						break;
-					case 'date':
-					case 'datetime':
-						$typeFilter="Date";
-						break;
-					case 'boolean':
-						$typeFilter="Boolean";
-						break;
-					case 'sellist':
-						$tmp='';
-						$tmpparam=unserialize($obj->param);	// $tmp ay be array 'options' => array 'c_currencies:code_iso:code_iso' => null
-						if ($tmpparam['options'] && is_array($tmpparam['options'])) $tmp=array_shift(array_keys($tmpparam['options']));
-						if (preg_match('/[a-z0-9_]+:[a-z0-9_]+:[a-z0-9_]+/', $tmp)) $typeFilter="List:".$tmp;
-						break;
-				}
-		        $this->export_fields_array[$r][$fieldname]=$fieldlabel;
-				$this->export_TypeFields_array[$r][$fieldname]=$typeFilter;
-		        $this->export_entities_array[$r][$fieldname]='product';
-		    }
-		}
-		// End add extra fields
-
+		$keyforselect='product'; $keyforelement='product'; $keyforaliasextra='extra';
+		include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
 		$this->export_sql_start[$r]='SELECT DISTINCT ';
 		$this->export_sql_end[$r]  =' FROM '.MAIN_DB_PREFIX.'product as p';
 		$this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'product_extrafields as extra ON p.rowid = extra.fk_object';
@@ -216,12 +181,14 @@ class modProduct extends DolibarrModules
 				'pr.price_min'=>"MinPriceLevelUnitPriceHT",'pr.price_min_ttc'=>"MinPriceLevelUnitPriceTTC",
 				'pr.tva_tx'=>'PriceLevelVATRate',
 				'pr.date_price'=>'DateCreation');
+			if ($mysoc->useNPR()) $this->export_fields_array[$r]['pr.recuperableonly']='NPR';
 			//$this->export_TypeFields_array[$r]=array('p.ref'=>"Text",'p.label'=>"Text",'p.description'=>"Text",'p.url'=>"Text",'p.accountancy_code_sell'=>"Text",'p.accountancy_code_buy'=>"Text",'p.note'=>"Text",'p.length'=>"Numeric",'p.surface'=>"Numeric",'p.volume'=>"Numeric",'p.weight'=>"Numeric",'p.customcode'=>'Text','p.price_base_type'=>"Text",'p.price'=>"Numeric",'p.price_ttc'=>"Numeric",'p.tva_tx'=>'Numeric','p.tosell'=>"Boolean",'p.tobuy'=>"Boolean",'p.datec'=>'Date','p.tms'=>'Date');
 			$this->export_entities_array[$r]=array('p.rowid'=>"product",'p.ref'=>"product",
 				'pr.price_base_type'=>"product",'pr.price_level'=>"product",'pr.price'=>"product",
 				'pr.price_ttc'=>"product",
 				'pr.price_min'=>"product",'pr.price_min_ttc'=>"product",
 				'pr.tva_tx'=>'product',
+			    'pr.recuperableonly'=>'product',
 				'pr.date_price'=>"product");
 			$this->export_sql_start[$r]='SELECT DISTINCT ';
 			$this->export_sql_end[$r]  =' FROM '.MAIN_DB_PREFIX.'product as p';
@@ -244,6 +211,7 @@ class modProduct extends DolibarrModules
 		$this->import_tables_creator_array[$r]=array('p'=>'fk_user_author');	// Fields to store import user id
 		$this->import_fields_array[$r]=array('p.ref'=>"Ref*",'p.label'=>"Label*",'p.description'=>"Description",'p.url'=>"PublicUrl",'p.accountancy_code_sell'=>"ProductAccountancySellCode",'p.accountancy_code_buy'=>"ProductAccountancyBuyCode",'p.note'=>"Note",'p.length'=>"Length",'p.surface'=>"Surface",'p.volume'=>"Volume",'p.weight'=>"Weight",'p.duration'=>"Duration",'p.customcode'=>'CustomCode','p.price'=>"SellingPriceHT",'p.price_ttc'=>"SellingPriceTTC",'p.tva_tx'=>'VAT','p.tosell'=>"OnSell*",'p.tobuy'=>"OnBuy*",'p.fk_product_type'=>"Type*",'p.finished'=>'Nature','p.datec'=>'DateCreation*');
 		if (! empty($conf->barcode->enabled)) $this->import_fields_array[$r]=array_merge($this->import_fields_array[$r],array('p.barcode'=>'BarCode'));
+		if ($mysoc->useNPR()) $this->import_fields_array[$r]=array_merge($this->import_fields_array[$r],array('p.recuperableonly'=>'NPR'));
 		// Add extra fields
 		$import_extrafield_sample=array();
 		$sql="SELECT name, label, fieldrequired FROM ".MAIN_DB_PREFIX."extrafields WHERE elementtype = 'product' AND entity IN (0, ".$conf->entity.')';
@@ -260,8 +228,8 @@ class modProduct extends DolibarrModules
 		}
 		// End add extra fields
 		$this->import_fieldshidden_array[$r]=array('extra.fk_object'=>'lastrowid-'.MAIN_DB_PREFIX.'product');    // aliastable.field => ('user->id' or 'lastrowid-'.tableparent)
-		$this->import_regex_array[$r]=array('p.ref'=>'[^ ]','p.tosell'=>'^[0|1]$','p.tobuy'=>'^[0|1]$','p.fk_product_type'=>'^[0|1]$','p.datec'=>'^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]$');
-		$import_sample=array('p.ref'=>"PREF123456",'p.label'=>"My product",'p.description'=>"This is a description example for record",'p.note'=>"Some note",'p.price'=>"100",'p.price_ttc'=>"110",'p.tva_tx'=>'10','p.tosell'=>"0 or 1",'p.tobuy'=>"0 or 1",'p.fk_product_type'=>"0 for product/1 for service",'p.finished'=>'','p.duration'=>"1y",'p.datec'=>'2008-12-31');
+		$this->import_regex_array[$r]=array('p.ref'=>'[^ ]','p.tosell'=>'^[0|1]$','p.tobuy'=>'^[0|1]$','p.fk_product_type'=>'^[0|1]$','p.datec'=>'^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]$','p.recuperableonly'=>'^[0|1]$');
+		$import_sample=array('p.ref'=>"PREF123456",'p.label'=>"My product",'p.description'=>"This is a description example for record",'p.note'=>"Some note",'p.price'=>"100",'p.price_ttc'=>"110",'p.tva_tx'=>'10','p.tosell'=>"0 or 1",'p.tobuy'=>"0 or 1",'p.fk_product_type'=>"0 for product/1 for service",'p.finished'=>'','p.duration'=>"1y",'p.datec'=>'2008-12-31','p.recuperableonly'=>'0 or 1');
 		$this->import_examplevalues_array[$r]=array_merge($import_sample,$import_extrafield_sample);
 
 		if (! empty($conf->fournisseur->enabled))
@@ -309,12 +277,14 @@ class modProduct extends DolibarrModules
 				'pr.price_min'=>"MinPriceLevelUnitPriceHT",'pr.price_min_ttc'=>"MinPriceLevelUnitPriceTTC",
 				'pr.tva_tx'=>'PriceLevelVATRate',
 				'pr.date_price'=>'DateCreation*');
-			$this->import_regex_array[$r]=array('pr.datec'=>'^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]$');
+			if ($mysoc->useNPR()) $this->import_fields_array[$r]=array_merge($this->import_fields_array[$r],array('pr.recuperableonly'=>'NPR'));
+			$this->import_regex_array[$r]=array('pr.datec'=>'^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]$','pr.recuperableonly'=>'^[0|1]$');
 			$this->import_examplevalues_array[$r]=array('pr.fk_product'=>"1",
 				'pr.price_base_type'=>"HT",'pr.price_level'=>"1",
 				'pr.price'=>"100",'pr.price_ttc'=>"110",
 				'pr.price_min'=>"100",'pr.price_min_ttc'=>"110",
-				'pr.tva_tx'=>'19.6',
+				'pr.tva_tx'=>'20',
+			    'pr.recuperableonly'=>'0',
 				'pr.date_price'=>'2013-04-10');
 		}
 
diff --git a/htdocs/expedition/list.php b/htdocs/expedition/list.php
index ff16d70ed3345b6d81503e04324a5e3c273e9230..4d1764ad0cf43635a5d41a12cf62f5837a69358a 100644
--- a/htdocs/expedition/list.php
+++ b/htdocs/expedition/list.php
@@ -30,6 +30,7 @@ $langs->load("sendings");
 $langs->load("deliveries");
 $langs->load('companies');
 
+$socid=GETPOST('socid','int');
 // Security check
 $expeditionid = GETPOST('id','int');
 if ($user->societe_id) $socid=$user->societe_id;
diff --git a/htdocs/expensereport/class/expensereport.class.php b/htdocs/expensereport/class/expensereport.class.php
index 7de87b8bb478d41d4c1cc49cd8339cfafafbad7f..2a281bda595f3a1cfd2ae72794a481439c6c15a7 100644
--- a/htdocs/expensereport/class/expensereport.class.php
+++ b/htdocs/expensereport/class/expensereport.class.php
@@ -370,7 +370,7 @@ class ExpenseReport extends CommonObject
     function set_paid($id, $fuser)
     {
         $sql = "UPDATE ".MAIN_DB_PREFIX."expensereport";
-        $sql.= " SET fk_statut = 6";
+        $sql.= " SET fk_statut = 6, paid=1";
         $sql.= " WHERE rowid = ".$id." AND fk_statut = 5";
 
         dol_syslog(get_class($this)."::set_paid sql=".$sql, LOG_DEBUG);
diff --git a/htdocs/imports/import.php b/htdocs/imports/import.php
index 9e729fb36ac967c8383f942e4699120e173bbbfc..c6fe3094b68607bb27c8373261486235bcb89a66 100644
--- a/htdocs/imports/import.php
+++ b/htdocs/imports/import.php
@@ -836,6 +836,7 @@ if ($step == 4 && $datatoimport)
 	print '</td><td width="50%">';
 
 	// List of targets fields
+	$height=24;
 	$i = 0;
 	$var=true;
 	$mandatoryfieldshavesource=true;
@@ -843,7 +844,7 @@ if ($step == 4 && $datatoimport)
 	foreach($fieldstarget as $code=>$label)
 	{
 		$var=!$var;
-		print '<tr '.$bc[$var].' height="20">';
+		print '<tr '.$bc[$var].' height="'.$height.'">';
 
 		$i++;
 
@@ -1704,13 +1705,15 @@ function show_elem($fieldssource,$pos,$key,$var,$nostyle='')
 {
 	global $langs,$bc;
 
+	$height='24';
+	
 	print "\n\n<!-- Box ".$pos." start -->\n";
 	print '<div class="box" style="padding: 0px 0px 0px 0px;" id="boxto_'.$pos.'">'."\n";
 
 	print '<table summary="boxtable'.$pos.'" width="100%" class="nobordernopadding">'."\n";
 	if ($pos && $pos > count($fieldssource))	// No fields
 	{
-		print '<tr '.($nostyle?'':$bc[$var]).' height="20">';
+		print '<tr '.($nostyle?'':$bc[$var]).' height="'.$height.'">';
 		print '<td class="nocellnopadding" width="16" style="font-weight: normal">';
 		print img_picto(($pos>0?$langs->trans("MoveField",$pos):''),'uparrow','class="boxhandle" style="cursor:move;"');
 		print '</td>';
@@ -1721,7 +1724,7 @@ function show_elem($fieldssource,$pos,$key,$var,$nostyle='')
 	}
 	elseif ($key == 'none')	// Empty line
 	{
-		print '<tr '.($nostyle?'':$bc[$var]).' height="20">';
+		print '<tr '.($nostyle?'':$bc[$var]).' height="'.$height.'">';
 		print '<td class="nocellnopadding" width="16" style="font-weight: normal">';
 		print '&nbsp;';
 		print '</td>';
@@ -1732,7 +1735,7 @@ function show_elem($fieldssource,$pos,$key,$var,$nostyle='')
 	}
 	else	// Print field of source file
 	{
-		print '<tr '.($nostyle?'':$bc[$var]).' height="20">';
+		print '<tr '.($nostyle?'':$bc[$var]).' height="'.$height.'">';
 		print '<td class="nocellnopadding" width="16" style="font-weight: normal">';
 		// The image must have the class 'boxhandle' beause it's value used in DOM draggable objects to define the area used to catch the full object
 		print img_picto($langs->trans("MoveField",$pos),'uparrow','class="boxhandle" style="cursor:move;"');
diff --git a/htdocs/index.php b/htdocs/index.php
index 54b818954d47fd7b2b432810d66ad8b7c9968b4d..d876b718ce8a7d8ed137668a0a581a44eb46c22a 100644
--- a/htdocs/index.php
+++ b/htdocs/index.php
@@ -321,7 +321,7 @@ print '<table class="noborder" width="100%">'."\n";
 print '<tr class="liste_titre">';
 print '<th class="liste_titre" colspan="2">'.$langs->trans("DolibarrWorkBoard").'</th>';
 print '<th class="liste_titre" align="right">'.$langs->trans("Number").'</th>';
-print '<th class="liste_titre" align="right">'.$langs->trans("Late").'</th>';
+print '<th class="liste_titre" align="right">'.$form->textwithpicto($langs->trans("Late"),$langs->trans("LateDesc")).'</th>';
 print '<th class="liste_titre">&nbsp;</th>';
 //print '<th class="liste_titre" width="20">&nbsp;</th>';
 if ($showweather) print '<th class="liste_titre hideonsmartphone" width="80">&nbsp;</th>';
diff --git a/htdocs/langs/ar_SA/accountancy.lang b/htdocs/langs/ar_SA/accountancy.lang
index 5ee7e8de9f54f863782f095d33e3d4f43b2e78d2..35ceeb6d475f2b7b2176363a503febf2d300d0b7 100644
--- a/htdocs/langs/ar_SA/accountancy.lang
+++ b/htdocs/langs/ar_SA/accountancy.lang
@@ -1,173 +1,174 @@
 # Dolibarr language file - en_US - Accounting Expert
-ACCOUNTING_EXPORT_SEPARATORCSV=Column separator for export file
-ACCOUNTING_EXPORT_DATE=Date format for export file
-ACCOUNTING_EXPORT_PIECE=Export the number of piece
-ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Export with global account
-ACCOUNTING_EXPORT_LABEL=Export the label
-ACCOUNTING_EXPORT_AMOUNT=Export the amount
-ACCOUNTING_EXPORT_DEVISE=Export the devise
-Selectformat=Select the format for the file
-ACCOUNTING_EXPORT_PREFIX_SPEC=Specify the prefix for the file name
-
-Accounting=Accounting
-Globalparameters=Global parameters
-Menuaccount=Accounting accounts
-Menuthirdpartyaccount=Thirdparty accounts
-MenuTools=Tools
-
-ConfigAccountingExpert=Configuration of the module accounting expert
-Journaux=Journals
-JournalFinancial=Financial journals
-Exports=Exports
-Export=Export
-Modelcsv=Model of export
-OptionsDeactivatedForThisExportModel=For this export model, options are deactivated
-Selectmodelcsv=Select a model of export
-Modelcsv_normal=Classic export
-Modelcsv_CEGID=Export towards CEGID Expert
-BackToChartofaccounts=Return chart of accounts
-Back=Return
-
-Definechartofaccounts=Define a chart of accounts
-Selectchartofaccounts=Select a chart of accounts
-Addanaccount=Add an accounting account
-AccountAccounting=Accounting account
-AccountAccountingSuggest=Accounting account suggest
-Ventilation=Breakdown
-
-CustomersVentilation=Breakdown customers
-SuppliersVentilation=Breakdown suppliers
-TradeMargin=Trade margin
-Reports=Reports
-ByCustomerInvoice=By invoices customers
-NewAccount=New accounting account
-Create=Create
-CreateMvts=Create movement
-UpdateAccount=Modification of an accounting account
-UpdateMvts=Modification of a movement
-WriteBookKeeping=Record accounts in general ledger
-Bookkeeping=General ledger
-AccountBalanceByMonth=Account balance by month
-
-AccountingVentilation=Breakdown accounting
-AccountingVentilationSupplier=Breakdown accounting supplier
-AccountingVentilationCustomer=Breakdown accounting customer
-
-CAHTF=Total purchase supplier before tax
-InvoiceLines=Lines of invoice to be ventilated
-InvoiceLinesDone=Ventilated lines of invoice
-IntoAccount=Ventilate in the accounting account
-
-Ventilate=Ventilate
-VentilationAuto=Automatic breakdown
-
-Processing=Processing
-EndProcessing=The end of processing
-AnyLineVentilate=Any lines to ventilate
-SelectedLines=Selected lines
-Lineofinvoice=Line of invoice
-VentilatedinAccount=Ventilated successfully in the accounting account
-NotVentilatedinAccount=Not ventilated in the accounting account
-
-ACCOUNTING_SEPARATORCSV=Column separator in export file
-
-ACCOUNTING_LIMIT_LIST_VENTILATION=Number of elements to be breakdown shown by page (maximum recommended : 50)
-ACCOUNTING_LIST_SORT_VENTILATION_TODO=Begin the sorting of the breakdown pages "Has to breakdown" by the most recent elements
-ACCOUNTING_LIST_SORT_VENTILATION_DONE=Begin the sorting of the breakdown pages "Breakdown" by the most recent elements
-
-AccountLength=Length of the accounting accounts shown in Dolibarr
-AccountLengthDesc=Function allowing to feign a length of accounting account by replacing spaces by the zero figure. This function touches only the display, it does not modify the accounting accounts registered in Dolibarr. For the export, this function is necessary to be compatible with certain software.
-ACCOUNTING_LENGTH_DESCRIPTION=Length for displaying product & services description in listings (Best = 50)
-ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=Length for displaying product & services account description form in listings (Best = 50)
-ACCOUNTING_LENGTH_GACCOUNT=Length of the general accounts
-ACCOUNTING_LENGTH_AACCOUNT=Length of the third party accounts
-
-ACCOUNTING_SELL_JOURNAL=Sell journal
-ACCOUNTING_PURCHASE_JOURNAL=Purchase journal
-ACCOUNTING_MISCELLANEOUS_JOURNAL=Miscellaneous journal
-ACCOUNTING_EXPENSEREPORT_JOURNAL=Expense report journal
-ACCOUNTING_SOCIAL_JOURNAL=Social journal
-
-ACCOUNTING_ACCOUNT_TRANSFER_CASH=Account of transfer
-ACCOUNTING_ACCOUNT_SUSPENSE=Account of wait
-
-ACCOUNTING_PRODUCT_BUY_ACCOUNT=Accounting account by default for bought products (if not defined in the product sheet)
-ACCOUNTING_PRODUCT_SOLD_ACCOUNT=Accounting account by default for the sold products (if not defined in the product sheet)
-ACCOUNTING_SERVICE_BUY_ACCOUNT=Accounting account by default for the bought services (if not defined in the service sheet)
-ACCOUNTING_SERVICE_SOLD_ACCOUNT=Accounting account by default for the sold services (if not defined in the service sheet)
-
-Doctype=Type of document
-Docdate=Date
-Docref=Reference
-Numerocompte=Account
-Code_tiers=Thirdparty
-Labelcompte=Label account
+ACCOUNTING_EXPORT_SEPARATORCSV=فاصل العمود لملف التصدير
+ACCOUNTING_EXPORT_DATE=تنسيق التاريخ لملف التصدير
+ACCOUNTING_EXPORT_PIECE=تصدير عدد القطعة
+ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=تصدير مع الحساب العام
+ACCOUNTING_EXPORT_LABEL=تصدير التسمية
+ACCOUNTING_EXPORT_AMOUNT=تصدير الكمية
+ACCOUNTING_EXPORT_DEVISE=تصدير التوصية
+Selectformat=حدد تنسيق للملف
+ACCOUNTING_EXPORT_PREFIX_SPEC=تحديد بادئة لاسم الملف
+
+Accounting=محاسبة
+Globalparameters=المعايير العالمية
+Menuaccount=حسابات المحاسبة
+Menuthirdpartyaccount=حسابات الأطراف الثالثة
+MenuTools=أدوات
+
+ConfigAccountingExpert=إعدادات وحدة الخبير المحاسبي
+Journaux=دفاتر اليومية
+JournalFinancial=دفاتر اليومية المالية
+Exports=صادرات
+Export=تصدير
+Modelcsv=نموذج التصدير
+OptionsDeactivatedForThisExportModel=تم الغاء الخيارات لنموذج التصدير هذا
+Selectmodelcsv=تحديد نموذج للتصدير
+Modelcsv_normal=تصدير كلاسيكي
+Modelcsv_CEGID=تصدير CEGID Expert
+BackToChartofaccounts=العودة لشجرة الحسابات
+
+Definechartofaccounts=تعريف شجرة الحسابات
+Selectchartofaccounts=اختر شجرة الحسابات
+Addanaccount=إضافة حساب محاسبي
+AccountAccounting=حساب محاسبي
+AccountAccountingSuggest=اقتراح حساب محاسبي
+Ventilation=تحليل
+
+CustomersVentilation=تصنيف العملاء
+SuppliersVentilation=تصنيف الموردين
+TradeMargin=هامش تجاري
+Reports=تقارير
+ByCustomerInvoice=بفواتير العملاء
+NewAccount=حساب محاسبي جديد
+Create=إنشاء
+CreateMvts=إنشاء حركة
+UpdateAccount=تعديل الحساب المحاسبي
+UpdateMvts=تعديل حركة
+WriteBookKeeping=سجل الحسابات في دفتر الأستاذ العام
+Bookkeeping=دفتر الأستاذ العام
+AccountBalanceByMonth=رصيد الحساب خلال الشهر
+
+AccountingVentilation=المحاسبة التحليلية 
+AccountingVentilationSupplier=المحاسبة التحليلية للمورد
+AccountingVentilationCustomer=المحاسبة التحليلية للعميل
+
+CAHTF=إجمالي شراء المورد قبل الضريبة
+InvoiceLines=خطوط الفاتورة الجاهزة للإعلان
+InvoiceLinesDone=خطوط الفاتورة المعلنة
+IntoAccount=الإعلان في الحساب المحاسبي
+
+Ventilate=أعلن عن
+VentilationAuto=إحلال تلقائي
+
+Processing=معالجة
+EndProcessing=نهاية المعالجة
+AnyLineVentilate=أي خطوط للإعلان
+SelectedLines=الخطوط المحددة
+Lineofinvoice=خط الفاتورة
+VentilatedinAccount=المعلن عنها في الحساب المحاسبي
+NotVentilatedinAccount=لم يتم الاعلان عنها في الحساب المحاسبي
+
+ACCOUNTING_SEPARATORCSV=فاصل عمود في ملف التصدير
+
+ACCOUNTING_LIMIT_LIST_VENTILATION=عدد العناصر الظاهرة في الصفحة ليتم احلالها (العدد الأقصى الموصى به : 50)
+ACCOUNTING_LIST_SORT_VENTILATION_TODO=بدء الفرز للصفحات المحللة "يجب ان تحل" بناء على احدث العناصر
+ACCOUNTING_LIST_SORT_VENTILATION_DONE=بدء الفرز للصفحات المحللة "إحلال" بناء على أحدث العناصر
+
+AccountLength=طول الحسابات المحاسبية الظاهرة في Dollibar
+AccountLengthDesc=وظيفة تسمح باختلاق طول الحساب المحاسبي وذلك باستبدال المسافات بأصفار. هذه الوظيفة تقوم بتعديل الظهور، ولا تقوم بتعديل الحسابات المحاسبية المسجلة في النظام. للتصدير، يجب أن تكون هذه الوظيفة متطابقة مع بعض التطبيقات المتوفرة.
+ACCOUNTING_LENGTH_DESCRIPTION=الطول المستخدم لعرض وصف المنتجات والخدمات في القوائم. (المفضل = 50)
+ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=الطول المستخدم لعرض وصف نماذج المنتجات والخدمات في القوائم. (المفضل = 50)
+ACCOUNTING_LENGTH_GACCOUNT=طول الحسابات العامة
+ACCOUNTING_LENGTH_AACCOUNT=طول حسابات الطرف ثالث
+
+ACCOUNTING_SELL_JOURNAL=دفتر البيع اليومي
+ACCOUNTING_PURCHASE_JOURNAL=دفتر الشراء اليومي
+ACCOUNTING_MISCELLANEOUS_JOURNAL=دفتر المتفرقات اليومي
+ACCOUNTING_EXPENSEREPORT_JOURNAL=دفتر تقرير المصروف اليومي
+ACCOUNTING_SOCIAL_JOURNAL=دفتر اليومية الاجتماعي
+
+ACCOUNTING_ACCOUNT_TRANSFER_CASH=حساب التحويلات
+ACCOUNTING_ACCOUNT_SUSPENSE=حساب الإنتظار
+
+ACCOUNTING_PRODUCT_BUY_ACCOUNT=الحساب المحاسبي الافتراضي للمنتجات المشتراة (اذا لم يكن معرف في ورقة المنتج)
+ACCOUNTING_PRODUCT_SOLD_ACCOUNT=الحساب المحاسبي الافتراضي للمنتجات المباعة(اذا لم يكن معرف في ورقة المنتج)
+ACCOUNTING_SERVICE_BUY_ACCOUNT=الحساب المحاسبي الافتراضي للخدمات المشتراة (اذا لم يكن معرف في ورقة الخدمة)
+ACCOUNTING_SERVICE_SOLD_ACCOUNT=الحساب المحاسبي الافتراضي للخدمات المباعة(اذا لم يكن معرف في ورقة الخدمة)
+
+Doctype=نوع الوثيقة
+Docdate=التاريخ
+Docref=مرجع
+Numerocompte=حساب
+Code_tiers=الطرف الثالث
+Labelcompte=حساب التسمية
 Sens=Sens
-Codejournal=Journal
+Codejournal=دفتر اليومية
 
-DelBookKeeping=Delete the records of the general ledger
+DelBookKeeping=حذف السجلات من دفتر الأستاذ العام
 
-DescSellsJournal=Sells journal
-DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
-FinanceJournal=Finance journal
-DescFinanceJournal=Finance journal including all the types of payments by bank account
+DescSellsJournal=دفتر المبيعات اليومية
+DescPurchasesJournal=دفتر المشتريات اليومية
+FinanceJournal=دفتر المالية اليومي
+DescFinanceJournal=دفتر المالية اليومي المتضمن لجميع الدفعات عن طريق الحساب المصرفي
 
-CashPayment=Cash Payment
+CashPayment=دفعة نقدية
 
-SupplierInvoicePayment=Payment of invoice supplier
-CustomerInvoicePayment=Payment of invoice customer
+SupplierInvoicePayment=دفعة فاتورة المورد
+CustomerInvoicePayment=دفعة فاتورة العميل
 
-ThirdPartyAccount=Thirdparty account
+ThirdPartyAccount=حساب طرف ثالث
 
-NewAccountingMvt=New movement
-NumMvts=Number of movement
-ListeMvts=List of the movement
-ErrorDebitCredit=Debit and Credit cannot have a value at the same time
+NewAccountingMvt=حركة جديدة
+NumMvts=رقم الحركة
+ListeMvts=قائمة الحركة
+ErrorDebitCredit=الدائن والمدين لا يمكن أن يكون لهم قيمة في الوقت نفسه
 
-ReportThirdParty=List thirdparty account
-DescThirdPartyReport=Consult here the list of the thirdparty customers and the suppliers and their accounting accounts
+ReportThirdParty=قائمة حساب الطرف الثالث
+DescThirdPartyReport=استشر هنا قائمة للعملاء والموردين وحساباتهم المحاسبية
 
-ListAccounts=List of the accounting accounts
+ListAccounts=قائمة الحسابات المحاسبية
 
-Pcgversion=Version of the plan
-Pcgtype=Class of account
-Pcgsubtype=Under class of account
-Accountparent=Root of the account
+Pcgversion=نسخة من الخطة
+Pcgtype=فئة الحساب
+Pcgsubtype=تحت فئة الحساب
+Accountparent=أصل الحساب
 
-DescVentilCustomer=Consult here the annual breakdown accounting of your invoices customers
-TotalVente=Total turnover before tax
-TotalMarge=Total sales margin
-DescVentilDoneCustomer=Consult here the list of the lines of invoices customers and their accounting account
-DescVentilTodoCustomer=Ventilate your lines of customer invoice with an accounting account
-ChangeAccount=Change the accounting account for lines selected by the account:
+DescVentilCustomer=استشر هنا الإحلال السنوي المحاسبي لفواتير العملاء
+TotalVente=المبيعات الإجمالية قبل الضريبة
+TotalMarge=إجمالي هامش المبيعات
+DescVentilDoneCustomer=استشر هنا لائحة خطوط الفواتير للعملاء وحساب المحاسبية
+DescVentilTodoCustomer=إعلان الخطوط الخاصة بك من فاتورة العميل مع حساب المحاسبة
+ChangeAccount=تغيير حساب المحاسبية للخطوط التي اختارها الحساب:
 Vide=-
-DescVentilSupplier=Consult here the annual breakdown accounting of your invoices suppliers
-DescVentilTodoSupplier=Ventilate your lines of invoice supplier with an accounting account
-DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier and their accounting account
+DescVentilSupplier=استشر هنا الإحلال السنوي المحاسبي لفواتير الموردين
+DescVentilTodoSupplier=أعلان الخطوط الخاصة بك من فاتورة المورد مع حساب المحاسبة
+DescVentilDoneSupplier=استشر هنا لائحة خطوط فواتير الموردين وحساب المحاسبية
 
-ValidateHistory=Validate Automatically
+ValidateHistory=تحقق تلقائيا
 
-ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
-FicheVentilation=Breakdown card
-GeneralLedgerIsWritten=Operations are written in the general ledger
+ErrorAccountancyCodeIsAlreadyUse=خطأ، لا يمكنك حذف هذا الحساب المحاسبي لأنه مستخدم
+MvtNotCorrectlyBalanced=الحركة غير متوازنة\nالدائن =%s\nالمدين =%s
+FicheVentilation=بطاقة الإحلال
+GeneralLedgerIsWritten=العمليات مسجلة في دفتر الاستاذ العام
 
 ##Export Journal Feature
-ExportFormat=Format of Export
-Prefixname=Prefix of export File
-Separate=Export separator
-Textframe=Frame of text value
-Headercol=Colname in header of file
-Fieldname=Name of Field
-Headername=Name in header
-Type=Type of fields
-Param=Additionnal parameters
-EnabledProduct=In Product
-EnabledTiers=In Tiers
-EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+ExportFormat=نسق التصدير
+Prefixname=بادئة تصدير الملف
+Separate=فاصل التصدير
+Textframe=إطار من قيمة النص
+Headercol=ااسم العمود في رأس الملف
+Fieldname=اسم الحقل
+Headername=الاسم في العنوان
+Type=نوع الحقول
+Param=المعايير الإضافية
+EnabledProduct=في المنتج
+EnabledTiers=In third party
+EnabledVat=في ضريبة القيمة المضافة
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/ar_SA/admin.lang b/htdocs/langs/ar_SA/admin.lang
index 9cb4be25ad0c195cda120f2c7dbf9706569b0f0c..1be8e2a5b5187d467a706b2314bdb2f89c1cb6c4 100644
--- a/htdocs/langs/ar_SA/admin.lang
+++ b/htdocs/langs/ar_SA/admin.lang
@@ -1,68 +1,68 @@
 # Dolibarr language file - Source file is en_US - admin
 Foundation=أساس
-Version=النسخة
-VersionProgram=نسخة البرنامج
+Version=الإصدار
+VersionProgram=إصدار البرنامج
 VersionLastInstall=تثبيت الإصدار الأولي
 VersionLastUpgrade=آخر تحديث لهذه النسخة
 VersionExperimental=تجريبية
 VersionDevelopment=تطويرية
-VersionUnknown=غير معروفة
+VersionUnknown=غير معروف
 VersionRecommanded=موصى بها
-FileCheck=Files Integrity
-FilesMissing=Missing Files
-FilesUpdated=Updated Files
-FileCheckDolibarr=Check Dolibarr Files Integrity
-XmlNotFound=Xml File of Dolibarr Integrity Not Found
-SessionId=رمز المرحلة
-SessionSaveHandler=معالج لحفظ المراحل
-SessionSavePath=مرحلة التخزين المحلية
-PurgeSessions=إزالة المراحل
-ConfirmPurgeSessions=Do you really want to purge all sessions ? This will disconnect every user (except yourself).
-NoSessionListWithThisHandler=معالج حفظ المرحلة المهيأ في لغة البي إتش بي لا يسمح بسرد كل المراحل التي تعمل
-LockNewSessions=قم بإقفال الإتصالات الجديدة
-ConfirmLockNewSessions=هل أنت متأكد من أنك تريد تقييد أي اتصال جديدة من دوليبار لنفسك. <b>%s</b> المستخدم الوحيد الذي سيتمكن من الإتصال بعد هذه العملية.
+FileCheck=النزاهة ملفات
+FilesMissing=الملفات المفقودة
+FilesUpdated=الملفات التي تم تحديثها
+FileCheckDolibarr=تحقق Dolibarr ملفات النزاهة
+XmlNotFound=ملف XML من Dolibarr النزاهة لم يتم العثور على
+SessionId=Session ID
+SessionSaveHandler=معالج لحفظ الجلسات
+SessionSavePath=جلسة التخزين المحلية
+PurgeSessions=إزالة الجلسات
+ConfirmPurgeSessions=هل تريد حقا إنهاء جميع الجلسات؟ ستقوم بايقاف كل المستخدمين (باستثناء نفسك).
+NoSessionListWithThisHandler=معالج حفظ الجلسة المهيأ في لغة البي إتش بي لا يسمح بسرد كل الجلسات التي تعمل
+LockNewSessions=إقفال الإتصالات الجديدة
+ConfirmLockNewSessions=هل أنت متأكد من أنك تريد تقييد أي اتصال جديد من دوليبار لنفسك. <b>%s</b> المستخدم الوحيد الذي سيتمكن من الإتصال بعد هذه العملية.
 UnlockNewSessions=إزالة قفل الإتصال
-YourSession=المرحلة الخاصة بك
-Sessions=مرحلة المستخدمين
+YourSession=الجلسة الخاصة بك
+Sessions=جلسة المستخدمين
 WebUserGroup=خادم الويب المستخدم / المجموعة
-NoSessionFound=يبدو أن البي إتش بي الخاص بك لا يسمح بسرد كل المراحل النشطة. الدليل  (<b>%s</b>) المستخدم لحفظ المراحل قد يكون محمي (على سبيل المثال, محمي من قبل نظام الحماية الخاص ببرنامج التشغيل او لغة البي إتش بي.)
+NoSessionFound=يبدو أن البي إتش بي الخاص بك لا يسمح بسرد كل الجلسات النشطة. الدليل  (<b>%s</b>) المستخدم لحفظ المراحل قد يكون محمي (على سبيل المثال, محمي من قبل نظام الحماية الخاص ببرنامج التشغيل او لغة البي إتش بي.)
 HTMLCharset=الترميزات الخاصة بصفحة الإتش تي إم إل
 DBStoringCharset=الترميز الخاص بقاعدة البيانات لتخزين المعلومات
 DBSortingCharset=الترميز الخاص بقاعدة البيانات لتخزين المعلومات
 WarningModuleNotActive=يجب أن يكون النموذج <b>%s</b> مفعل
 WarningOnlyPermissionOfActivatedModules=فقط التصاريح المتعلقة بالنماذج المنشطة تظهر هنا. يمكنك تفعيل نماذج أخرى في الصفحة الرئيسية-> لإعداد ت-> صفحة النماذج
-DolibarrSetup=تركيب أو تطوير دوليبار
+DolibarrSetup=تركيب أو تحديث دوليبار
 DolibarrUser=مستخدم دوليبار
 InternalUser=مستخدم داخلي
 ExternalUser=مستخدم خارجي
 InternalUsers=مستخدمين داخليين
 ExternalUsers=مستخدمين خارجيين
-GlobalSetup=الإعداد الكلية
+GlobalSetup=الإعداد العام
 GUISetup=العرض
 SetupArea=منطقة الإعداد
 FormToTestFileUploadForm=نموذج لاختبار تحميل ملف (وفقا لبرنامج الإعداد)
 IfModuleEnabled=ملاحظة : نعم فعالة فقط في حال كان النموذج <b>%s</b> مفعل
-RemoveLock=قم بحذف الملف <b>%s</b> إذا كان موجوداً لتمكن اداة التحديث
-RestoreLock=قم بإستعادة الملف <b>%s</b> مع إذن القراءة فقط, وذلك لعرض أي استخدام خاص ب أداة التحديث
+RemoveLock=قم بحذف الملف <b>%s</b> إذا كان موجوداً لتمكين اداة التحديث
+RestoreLock=قم بإستعادة الملف <b>%s</b> مع إذن القراءة فقط, وذلك لعرض أي استخدام خاص بأداة التحديث
 SecuritySetup=الإعداد الأمني
 ErrorModuleRequirePHPVersion=خطأ ، هذا النموذج يتطلب نسخة بي إتش بي %s أو أعلى
 ErrorModuleRequireDolibarrVersion=خطأ ، هذا النموذج يتطلب نسخة دوليبار %s أو أعلى
 ErrorDecimalLargerThanAreForbidden=خطأ, برنامج دوليبار <b>%s</b> الحالي لا يدعم دقة أعلى من الحالية
-DictionarySetup=Dictionary setup
-Dictionary=Dictionaries
-Chartofaccounts=Chart of accounts
-Fiscalyear=Fiscal years
+DictionarySetup=إعداد القاموس
+Dictionary=قواميس
+Chartofaccounts=جدول الحسابات
+Fiscalyear=السنوات المالية
 ErrorReservedTypeSystemSystemAuto=القيمة 'system' و 'systemauto' لهذا النوع محفوظ. يمكنك إستخدام 'user' كقيمة لإضافة السجل الخاص بك
-ErrorCodeCantContainZero=لا يمكن إستخدام القيمة 0 لهذا الكود
-DisableJavascript=Disable JavaScript and Ajax functions (Recommended for blind person or text browsers)
+ErrorCodeCantContainZero=الكود لا يمكن أن يحتوي على القيمة 0
+DisableJavascript=تعطيل جافا سكريبت واياكس وظائف (مستحسن للأعمى شخص أو النص المتصفحات)
 ConfirmAjax=إستخدم تأكيد أجاكس المنبثق
-UseSearchToSelectCompanyTooltip=Also if you have a large number of third parties (> 100 000), you can increase speed by setting constant COMPANY_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
-UseSearchToSelectCompany=Use autocompletion fields to choose third parties instead of using a list box.
+UseSearchToSelectCompanyTooltip=أيضا إذا كان لديك عدد كبير من الأحزاب الثالثة (> 100 000)، يمكنك زيادة السرعة عن طريق وضع COMPANY_DONOTSEARCH_ANYWHERE ثابت إلى 1 في الإعداد، <أخرى. وبعد ذلك البحث أن يقتصر على بداية السلسلة.
+UseSearchToSelectCompany=استخدم حقول تكملة لاختيار أطراف ثالثة بدلا من استخدام مربع القائمة.
 ActivityStateToSelectCompany= أضف فلتر كخيار لعرض/إخفاء الجهات الأخرى التي تقوم بنشاط حالياً أو توقفت عنه
-UseSearchToSelectContactTooltip=Also if you have a large number of third parties (> 100 000), you can increase speed by setting constant CONTACT_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
-UseSearchToSelectContact=Use autocompletion fields to choose contact (instead of using a list box).
-DelaiedFullListToSelectCompany=Wait you press a key before loading content of thirdparties combo list (This may increase performance if you have a large number of thirdparties)
-DelaiedFullListToSelectContact=Wait you press a key before loading content of contact combo list (This may increase performance if you have a large number of contact)
+UseSearchToSelectContactTooltip=أيضا إذا كان لديك عدد كبير من الأحزاب الثالثة (> 100 000)، يمكنك زيادة السرعة عن طريق وضع CONTACT_DONOTSEARCH_ANYWHERE ثابت إلى 1 في الإعداد، <أخرى. وبعد ذلك البحث أن يقتصر على بداية السلسلة.
+UseSearchToSelectContact=استخدام حقول تكملة لاختيار الاتصال (بدلا من استخدام مربع قائمة).
+DelaiedFullListToSelectCompany=الانتظار تضغط على مفتاح قبل تحميل المحتوى من قائمة التحرير والسرد thirdparties (وهذا قد يزيد من الأداء إذا كان لديك عدد كبير من thirdparties)
+DelaiedFullListToSelectContact=الانتظار تضغط على مفتاح قبل تحميل المحتوى من قائمة التحرير والسرد الاتصال (وهذا قد يزيد من الأداء إذا كان لديك عدد كبير من الاتصال)
 SearchFilter=فلاتر خيارات البحث
 NumberOfKeyToSearch=عدد الحروف لبدء البحث: %s
 ViewFullDateActions=أظهر التواريخ الكاملة للأحداث في الصفحة الثالثة
@@ -74,18 +74,18 @@ ShowPreview=آظهر المعاينة
 PreviewNotAvailable=المعاينة غير متاحة
 ThemeCurrentlyActive=الثيم النشط حالياً
 CurrentTimeZone=حسب توقيت خادم البي إتش بي
-MySQLTimeZone=TimeZone MySql (database)
-TZHasNoEffect=Dates are stored and returned by database server as if they were kept as submited string. The timezone has effect only when using UNIX_TIMESTAMP function (that should not be used by Dolibarr, so database TZ should have no effect, even if changed after data was entered).
+MySQLTimeZone=والوقت مسقل (قاعدة بيانات)
+TZHasNoEffect=يتم تخزين التمور وعاد من قبل خادم قاعدة البيانات كما لو أنها بقيت كسلسلة مرسلة. التوقيت له تأثير فقط عند استخدام UNIX_TIMESTAMP وظيفة (وهذا لا ينبغي أن تستخدم من قبل Dolibarr، لذلك يجب أن يكون TZ قاعدة بيانات أي تأثير، حتى لو تغيرت بعد أن تم إدخال البيانات).
 Space=فراغ
 Table=جدول
 Fields=حقول
 Index=الفهرس
 Mask=القناع
-NextValue=قيمة التالية
+NextValue=القيمة التالية
 NextValueForInvoices=القيمة التالية (الفواتير)
 NextValueForCreditNotes=القيمة التالية (ملاحظات دائن)
-NextValueForDeposit=Next value (deposit)
-NextValueForReplacements=Next value (replacements)
+NextValueForDeposit=القيمة التالية (وديعة)
+NextValueForReplacements=القيمة التالية (استبدال)
 MustBeLowerThanPHPLimit=ملاحظة : البي إتش بي الخاص بك يحد من حجم الملفات المرفوعة <b>%s</b> %s, مهما كان الحجم المدخل
 NoMaxSizeByPHPLimit=ملاحظة : لم يتم وضح حد في إعدادات الـ PHP الخاص بك
 MaxSizeForUploadedFiles=الحجم الأقصى لتحميل الملفات (0 لمنع أي تحميل)
@@ -112,9 +112,9 @@ OtherOptions=الخيارات الأخرى
 OtherSetup=الإعدادات الأخرى
 CurrentValueSeparatorDecimal=الفاصلة العشرية
 CurrentValueSeparatorThousand=ألفاصلة الألفية
-Destination=Destination
-IdModule=Module ID
-IdPermissions=Permissions ID
+Destination=المقصد
+IdModule=ID حدة
+IdPermissions=ضوابط ID
 Modules=النموذج
 ModulesCommon=النماذج الرئيسية
 ModulesOther=نماذج أخرى
@@ -124,9 +124,9 @@ ParameterInDolibarr=الوحدة %s
 LanguageParameter=وحدة اللغة %s
 LanguageBrowserParameter=الوحدة %s
 LocalisationDolibarrParameters=الوحدات المحلية
-ClientTZ=Client Time Zone (user)
-ClientHour=Client time (user)
-OSTZ=Server OS Time Zone
+ClientTZ=المنطقة الزمنية للعميل (المستخدم)
+ClientHour=وقت العميل (المستخدم)
+OSTZ=OS المنطقة الزمنية الخادم
 PHPTZ=المنطقة الزمنية خادم PHP
 PHPServerOffsetWithGreenwich=عرض وزنية جرينتش لخادم لغة الـ PHP (ثانية)
 ClientOffsetWithGreenwich=عرض وزنية الجرينتش للعميل / المتصفح (ثانية)
@@ -135,13 +135,13 @@ CurrentHour=PHP خادم ساعة
 CompanyTZ=المنطقة الزمنية لشركة من الشركات الرئيسية)
 CompanyHour=ساعة وشركة من الشركات الرئيسية)
 CurrentSessionTimeOut=إنتها مدة التصفح الحالية
-YouCanEditPHPTZ=To set a different PHP timezone (not required), you can try to add a file .htacces with a line like this "SetEnv TZ Europe/Paris"
+YouCanEditPHPTZ=لضبط توقيت PHP مختلفة (غير مطلوب)، يمكنك محاولة إضافة .htacces الملف مع مثل هذا الخط "ابق ضاغطا TZ أوروبا / باريس"
 OSEnv=بيئة نظام التشغيل
 Box=مربع
 Boxes=مربعات
 MaxNbOfLinesForBoxes=الحد الأقصى لعدد الخطوط في المربعات
 PositionByDefault=الطلبية الإفتراضية
-Position=Position
+Position=الوضع
 MenusDesc=يمكن لرؤساء القوائم تعريف المحتوى لعمودين من القوائم (عمود افقي وعمود عمودي).
 MenusEditorDesc=محرر القوائم يسمح لك بتعريف مدخلات شخصية في القوائم. استخدامها بعناية لتجنب التأثير على برنامج دوليبار وجعله غير مستقر بالإضافة إلى جعل روابط القوائم غير متاحة. <br> بعض النماذج تظيف خانات في القوائم (في القائمة <b>الكل</b> في معظم الحالات). إذا أزلت بعض هذه القيود عن طريق الخطأ ، يمكنك ان تستعيدها وتعطيل وتمكين النموذج.
 MenuForUsers=قائمة للمستخدمين
@@ -149,14 +149,14 @@ LangFile=ملف لانج
 System=النظام
 SystemInfo=نظام المعلومات
 SystemToolsArea=منظقة أدوات نظام
-SystemToolsAreaDesc=هذه المنقة توفر مميزات إدارية. استخدام القائمة لاختيار الخصائص التي تبحث عنها.
+SystemToolsAreaDesc=هذه المنطقة توفر مميزات إدارية. استخدم القائمة لاختيار الخصائص التي تبحث عنها.
 Purge=أحذف
-PurgeAreaDesc=تسمح لك هذه الصفحة بحذف كل الملفات التي بنيت أو تم تخزينها بواسطة دوليبار (الملفات المؤقتة ، أو كافة الملفات في المجلد <b>%s</b>) استخدام هذه الميزة ليست ضرورية. هذه الخدمة مقدمة للمستخدمين الذين يستخدمون برنامج دوليبار على خادم لا يوف لهم صلاحيات حذف الملفات التي أنشئت من قبل خادم الويب.
+PurgeAreaDesc=تسمح لك هذه الصفحة بحذف كل الملفات التي بنيت أو تم تخزينها بواسطة دوليبار (الملفات المؤقتة ، أو كافة الملفات في المجلد <b>%s</b>) استخدام هذه الميزة ليست ضرورية. هذه الخدمة مقدمة للمستخدمين الذين يستخدمون برنامج دوليبار على خادم لا يوفر لهم صلاحيات حذف الملفات التي أنشئت من قبل خادم الويب.
 PurgeDeleteLogFile=قم بحذف ملفات السجلات <b>%s</b> المعرفة لنموذج النظام (لا يوجد خطر على المعلومات)
 PurgeDeleteTemporaryFiles=قم بحذف جميع الملفات المؤقتة (لا يوجد خطر على البيانات)
 PurgeDeleteAllFilesInDocumentsDir=حذف كل الملفات في المجلد <b>%s</b> الملفات المؤقتة ، بل أيضا ملفات استرجاع قاعدة البيانات, الملفات الملحقة بعناصر (أطراف ثالثة أو خارجية ، فواتير...) وتم تحمليها في نموذج إي سي إم, سيتم حذفها
 PurgeRunNow=إحذف الآن
-PurgeNothingToDelete=لم يتم حذف مجلد او ملف
+PurgeNothingToDelete=لا يوجد دليل أو مجلد للحذف
 PurgeNDirectoriesDeleted=<b>%s</b> ملفات او مجلدات حذفت
 PurgeAuditEvents=احذف جميع الأحداث المتعلقة بالأمان
 ConfirmPurgeAuditEvents=هل أنت متأكد من حذف جميع الأحداث الأمنية؟ جميع سجلات الأمن سيتم حذفها ولن يتم حذف أي بيانات أخرى.
@@ -203,14 +203,14 @@ FeatureDisabledInDemo=الميزة معلطة في العرض التجريبي
 Rights=الصلاحيات
 BoxesDesc=المربعات هي المناطق التي تُظهر بعض المعلومات في بعض الصفحات. يمكنك اختيار إظهار أو إخفائها بإختيار الصفحات المطلوبة و الضغط على 'تنشيط', او بالضغط على الزر الآخر لتعطيلها.
 OnlyActiveElementsAreShown=فقط العناصر من <a href="%s">النماذج المفعلة </a> سوف تظهر.
-ModulesDesc=Dolibarr تحديد الوحدات التي تم تمكين وظيفة في مجال البرمجيات. وتتطلب بعض وحدات الأذونات ، يجب ان تمنح للمستخدمين ، وبعد أن تمكن وحدة.
+ModulesDesc=نماذج دوليبار تحدد اي الوظائف سيتم تفعيلها في البرنامج. بعض النماذج تتطلب بعض التصاريح يجب عليك اعطائها للمستخدمين، بعد تفعيل النموذج. اضغط على زر on/off في عمود الحالة لتفعيل النموذج/الميزة
 ModulesInterfaceDesc=فإن التفاعل بين وحدات Dolibarr يسمح لك بإضافة السمات الخارجية تعتمد على البرمجيات والنظم والخدمات.
 ModulesSpecialDesc=وحدات خاصة أو محددة جدا ونادرا ما تستخدم وحدات.
 ModulesJobDesc=توفير وحدات تجارية بسيطة ومحددة سلفا من Dolibarr الإعداد لأعمال معين.
 ModulesMarketPlaceDesc=يمكنك العثور على مزيد من وحدات للتحميل على مواقع الإنترنت الخارجية على شبكة الانترنت...
 ModulesMarketPlaces=مزيد من وحدات...
 DoliStoreDesc=DoliStore ، في السوق الرسمي لتخطيط موارد المؤسسات وحدات Dolibarr / خارجي إدارة علاقات العملاء
-DoliPartnersDesc=List with some companies that can provide/develop on-demand modules or features (Note: any Open Source company knowning PHP language can provide you specific development)
+DoliPartnersDesc=قائمة مع بعض الشركات التي يمكن أن توفر / تطوير بناء على الطلب وحدات أو ميزات (ملاحظة: أي شركة المصدر المفتوح knowning لغة PHP يمكن أن توفر لك إنمائية محددة)
 WebSiteDesc=مزودي موقع ويب يمكنك البحث للعثور على المزيد من وحدات...
 URL=رابط
 BoxesAvailable=صناديق متاحة
@@ -222,13 +222,13 @@ AutomaticIfJavascriptDisabled=تلقائيا إذا تم تعطيل جافاسك
 AvailableOnlyIfJavascriptNotDisabled=متاحا إلا إذا كان جافا سكريبت غير المعوقين
 AvailableOnlyIfJavascriptAndAjaxNotDisabled=متاحا إلا إذا كان جافا سكريبت غير المعوقين
 Required=مطلوب
-UsedOnlyWithTypeOption=Used by some agenda option only
+UsedOnlyWithTypeOption=المستخدمة من قبل بعض خيار جدول فقط
 Security=الأمن
 Passwords=كلمة السر
 DoNotStoreClearPassword=لا تخزن كلمات السر في قاعدة بيانات واضحة في
 MainDbPasswordFileConfEncrypted=كلمة السر في قاعدة بيانات مشفرة conf.php
-InstrucToEncodePass=To have password encoded into the <b>conf.php</b> file, replace the line <br><b>$dolibarr_main_db_pass="...";</b><br>by<br><b>$dolibarr_main_db_pass="crypted:%s";</b>
-InstrucToClearPass=To have password decoded (clear) into the <b>conf.php</b> file, replace the line <br><b>$dolibarr_main_db_pass="crypted:...";</b><br>by<br><b>$dolibarr_main_db_pass="%s";</b>
+InstrucToEncodePass=لديك كلمة السر المشفرة في ملف <b>conf.php،</b> استبدال الخط <br> <b>$ dolibarr_main_db_pass = "..."؛</b> <br> بواسطة <br> <b>$ dolibarr_main_db_pass = "crypted:٪ ليالي".</b>
+InstrucToClearPass=لديك كلمة مرور فك الشفرة (واضح) في ملف <b>conf.php،</b> استبدال الخط <br> <b>$ dolibarr_main_db_pass = "crypted: ...".</b> <br> بواسطة <br> <b>$ dolibarr_main_db_pass = "%s".</b>
 ProtectAndEncryptPdfFiles=حماية الملفات ولدت الشعبي (لا recommandd ، تقتحم الجماهيري الشعبي وتوليد)
 ProtectAndEncryptPdfFilesDesc=حماية وجود وثيقة من وثائق وتبقي الشعبي توفيرها لقراءة وطباعة أي متصفح الشعبي. ومع ذلك ، وتحريرها ونسخها وليس من الممكن بعد الآن. علما أن استخدام هذه الميزة تجعل بناء عالمي لا يعمل المتراكمة الشعبي (مثل الفواتير غير المدفوعة).
 Feature=ميزة
@@ -237,15 +237,15 @@ DolibarrProjectLeader=المشروع
 Developpers=مطوري / المساهمين
 OtherDeveloppers=غيرها من مطوري / المساهمين
 OfficialWebSite=Dolibarr الدولي الموقع الرسمي
-OfficialWebSiteLocal=Local web site (%s)
-OfficialWiki=Dolibarr يكي
+OfficialWebSiteLocal=موقع على شبكة الإنترنت المحلي (٪ ق)
+OfficialWiki=وثائق Dolibarr على ويكي
 OfficialDemo=Dolibarr الانترنت التجريبي
 OfficialMarketPlace=المسؤول عن وحدات السوق الخارجية / أدونس
-OfficialWebHostingService=Referenced web hosting services (Cloud hosting)
-ReferencedPreferredPartners=Preferred Partners
-OtherResources=Autres ressources
-ForDocumentationSeeWiki=For user's or developer's documentation (Doc, FAQs...),<br>take a look at the Dolibarr Wiki:<br><b><a href="%s" target=للمستخدم أو للتطوير وثائق (مستدات ،...)، أسئلة وأجوبة <br> إلقاء نظرة على ويكي Dolibarr : <br> <a href="%s" target="_blank"><b>ق ٪</b></a>
-ForAnswersSeeForum=For any other questions/help, you can use the Dolibarr forum:<br><b><a href="%s" target=عن أي أسئلة أخرى / مساعدة ، يمكنك استخدام Dolibarr المنتدى : <br> <a href="%s" target="_blank"><b>ق ٪</b></a>
+OfficialWebHostingService=المشار خدمات استضافة المواقع (سحابة استضافة)
+ReferencedPreferredPartners=الشركاء المفضلين
+OtherResources=RESSOURCES AUTRES
+ForDocumentationSeeWiki=للمستخدم أو وثائق المطور (الوثيقة، أسئلة وأجوبة ...)، <br> نلقي نظرة على Dolibarr يكي: <br> <b><a href="%s" target="_blank">%s</a></b>
+ForAnswersSeeForum=عن أي أسئلة أخرى / مساعدة، يمكنك استخدام المنتدى Dolibarr: <br> <b><a href="%s" target="_blank">%s</a></b>
 HelpCenterDesc1=هذا المجال يمكن أن تساعدك في الحصول على مساعدة لتقديم خدمات الدعم على Dolibarr.
 HelpCenterDesc2=جزء من هذه الخدمة متوفرة باللغة <b>الانكليزية فقط.</b>
 CurrentTopMenuHandler=مناول الحالية الأعلى
@@ -263,9 +263,9 @@ MAIN_MAIL_SMTP_SERVER_NotAvailableOnLinuxLike=بروتوكول نقل البري
 MAIN_MAIL_EMAIL_FROM=مرسل البريد الإلكتروني للرسائل البريد الإلكتروني تلقائيا (افتراضيا في php.ini : <b>٪)</b>
 MAIN_MAIL_ERRORS_TO=أرسلت مرسل البريد الإلكتروني المستخدمة في رسائل البريد الإلكتروني عائدات خطأ
 MAIN_MAIL_AUTOCOPY_TO= إرسال منهجية خفية الكربون نسخة من جميع رسائل البريد الإلكتروني المرسلة إلى
-MAIN_MAIL_AUTOCOPY_PROPOSAL_TO= Send systematically a hidden carbon-copy of proposals sent by email to
-MAIN_MAIL_AUTOCOPY_ORDER_TO= Send systematically a hidden carbon-copy of orders sent by email to
-MAIN_MAIL_AUTOCOPY_INVOICE_TO= Send systematically a hidden carbon-copy of invoice sent by emails to
+MAIN_MAIL_AUTOCOPY_PROPOSAL_TO= إرسال منهجية مخفي الكربون نسخة من المقترحات المرسلة عن طريق البريد الإلكتروني
+MAIN_MAIL_AUTOCOPY_ORDER_TO= إرسال منهجية مخفي الكربون نسخة من أوامر أرسلت عن طريق البريد الإلكتروني
+MAIN_MAIL_AUTOCOPY_INVOICE_TO= إرسال منهجية مخفي الكربون نسخة من الفاتورة عن طريق رسائل البريد الإلكتروني لإرسالها
 MAIN_DISABLE_ALL_MAILS=تعطيل جميع رسائل البريد الإلكتروني الإرسال (لأغراض الاختبار أو تجريبية)
 MAIN_MAIL_SENDMODE=طريقة استخدام لإرسال رسائل البريد الإلكتروني
 MAIN_MAIL_SMTPS_ID=إذا الهوية SMTP التوثيق اللازم
@@ -275,70 +275,70 @@ MAIN_DISABLE_ALL_SMS=تعطيل كافة sendings SMS (لأغراض الاختب
 MAIN_SMS_SENDMODE=طريقة استخدامه لإرسال الرسائل القصيرة SMS
 MAIN_MAIL_SMS_FROM=رقم الهاتف المرسل الافتراضي لإرسال الرسائل القصيرة
 FeatureNotAvailableOnLinux=ميزة لا تتوفر على مثل أنظمة يونكس. sendmail برنامج الاختبار الخاص بك محليا.
-SubmitTranslationENUS=If translation for this language is not complete or you find errors, you can correct this by editing files into directory <b>langs/%s</b> and submit modified files on dolibarr.org/forum or for developers on github.com/Dolibarr/dolibarr.
-SubmitTranslation=If translation for this language is not complete or you find errors, you can correct this by editing files into directory <b>langs/%s</b> and submit your change to www.transifex.com/dolibarr-association/dolibarr/
+SubmitTranslationENUS=إذا ترجمة لهذه اللغة ليست كاملة أو تجد الأخطاء، يمكنك تصحيح هذا عن طريق تحرير الملفات إلى دليل <b>LANGS /%s</b> وتقديم الملفات التي تم تعديلها على dolibarr.org/forum أو للمطورين على github.com/Dolibarr/dolibarr.
+SubmitTranslation=إذا ترجمة لهذه اللغة ليست كاملة أو تجد الأخطاء، يمكنك تصحيح هذا عن طريق تحرير الملفات إلى دليل <b>LANGS /%s</b> وتقديم التغيير إلى www.transifex.com/dolibarr-association/dolibarr/~~V
 ModuleSetup=إعداد وحدة
 ModulesSetup=نمائط الإعداد
 ModuleFamilyBase=نظام
-ModuleFamilyCrm=Ressource العملاء إدارة (إدارة علاقات العملاء)
-ModuleFamilyProducts=Products Management (PM)
-ModuleFamilyHr=Human Resource Management (HR)
+ModuleFamilyCrm=إدارة علاقات العملاء (CRM)
+ModuleFamilyProducts=إدارة المنتجات (PM)
+ModuleFamilyHr=إدارة الموارد البشرية (HR)
 ModuleFamilyProjects=مشاريع / العمل التعاوني
 ModuleFamilyOther=أخرى
-ModuleFamilyTechnic=Multi بين وحدات وأدوات
+ModuleFamilyTechnic=أدوات وحدات متعددة
 ModuleFamilyExperimental=نماذج تجريبية
 ModuleFamilyFinancial=الوحدات المالية (المحاسبة / الخزانة)
 ModuleFamilyECM=إدارة المحتوى في المؤسسة
-ModuleFamilyPortal=Web sites and other frontal application
-ModuleFamilyInterface=Interfaces with external systems
+ModuleFamilyPortal=المواقع على شبكة الإنترنت وتطبيق مباشر الآخرين
+ModuleFamilyInterface=واجهات مع الأنظمة الخارجية
 MenuHandlers=قائمة مناولي
 MenuAdmin=قائمة تحرير
-DoNotUseInProduction=Do not use in production
+DoNotUseInProduction=لا تستخدمها مع المنتج
 ThisIsProcessToFollow=هذا هو الإعداد لهذه العملية :
-ThisIsAlternativeProcessToFollow=This is an alternative setup to process:
-StepNb=الخطوة ق ٪
-FindPackageFromWebSite=العثور على الحزمة التي توفر ميزة تريد (على سبيل المثال على موقع الويب ق ٪).
-DownloadPackageFromWebSite=Download package (for example from official web site %s).
-UnpackPackageInDolibarrRoot=Unpack package file into Dolibarr server directory dedicated to external modules: <b>%s</b>
+ThisIsAlternativeProcessToFollow=هذا هو الإعداد بديل للعملية:
+StepNb=الخطوة %s
+FindPackageFromWebSite=العثور على الحزمة التي توفر ميزة تريد (على سبيل المثال على موقع الويب %s).
+DownloadPackageFromWebSite=تحميل الحزمة (على سبيل المثال من الموقع الرسمي على الإنترنت%s).
+UnpackPackageInDolibarrRoot=ملف حزمة فك إلى Dolibarr دليل خادم مخصص لوحدات <b>الخارجية:%s</b>
 SetupIsReadyForUse=الانتهاء من تركيب وDolibarr على استعداد لاستخدام هذا العنصر الجديد.
-NotExistsDirect=The alternative root directory is not defined.<br>
-InfDirAlt=Since version 3 it is possible to define an alternative root directory.This allows you to store, same place, plug-ins and custom templates.<br>Just create a directory at the root of Dolibarr (eg: custom).<br>
-InfDirExample=<br>Then declare it in the file conf.php<br> $dolibarr_main_url_root_alt='http://myserver/custom'<br>$dolibarr_main_document_root_alt='/path/of/dolibarr/htdocs/custom'<br>*These lines are commented with "#", to uncomment only remove the character.
-YouCanSubmitFile=For this step, you can send package using this tool: Select module file
+NotExistsDirect=لم يتم تعريف الدليل الجذر بديل. <br>
+InfDirAlt=منذ الإصدار 3 من الممكن تعريف directory.This الجذر بديلة يسمح لك لتخزين ونفس المكان، والمكونات الإضافية والقوالب المخصصة. <br> مجرد إنشاء دليل على جذر Dolibarr (على سبيل المثال: مخصص). <br>
+InfDirExample=<br> ثم نعلن ذلك في conf.php ملف <br> $ dolibarr_main_url_root_alt = 'HTTP: // MYSERVER / مخصص " <br> $ dolibarr_main_document_root_alt = '/ مسار / لعام / dolibarr / htdocs / مخصص " <br> * وعلق هذه الخطوط مع "#"، إلى غير تعليق فقط إزالة الطابع.
+YouCanSubmitFile=لهذه الخطوة، يمكنك إرسال حزمة باستخدام هذه الأداة: اختر ملف الوحدة النمطية
 CurrentVersion=Dolibarr النسخة الحالية
 CallUpdatePage=الذهاب إلى صفحة التحديثات وdatas هيكل قاعدة البيانات : ٪ s.
 LastStableVersion=آخر نسخة مستقرة
-UpdateServerOffline=Update server offline
+UpdateServerOffline=خادم التحديث متواجد حاليا
 GenericMaskCodes=يمكنك إدخال أي قناع الترقيم. في هذا القناع ، وبعد ويمكن استخدام العلامات : <br> <b>(000000)</b> يطابق عدد الذي سيكون على كل يزداد ٪ s. كما تدخل العديد من أصفار على النحو المنشود طول المضادة. المضاد وسيتم الانتهاء من اصفار من اليسار من أجل الحصول على أكبر عدد اصفار كما القناع. <br> <b>000000 +000) (نفس</b> السابقة ولكن يقابل المقابلة لعدد للحق من علامة + يطبق اعتبارا من أول ٪ s. <br> <b>000000 @ (س)</b> نفس السابقة ولكن المضاد هو إعادة الصفر عندما يتم التوصل إلى الشهر خ خ ما بين 1 و 12). إذا كان هذا الخيار هو المستخدمة وس 2 أو أعلى ، ثم تسلسل (ذ ذ م م)) ((سنة أو ملم)) (مطلوب أيضا. <br> <b>(ب)</b> اليوم (01 الى 31). <br> <b>() ملم</b> في الشهر (01 الى 12). <br> <b>(كذا)</b> ، <b>(سنة))</b> أو <b>(ذ</b> السنة أكثر من 2 أو 4 أو 1 الأرقام. <br>
-GenericMaskCodes2=<b>{cccc}</b> the client code on n characters<br><b>{cccc000}</b> the client code on n characters is followed by a counter dedicated for customer. This counter dedicated to customer is reset at same time than global counter.<br><b>{tttt}</b> The code of thirdparty type on n characters (see dictionary-thirdparty types).<br>
+GenericMaskCodes2=<b>{CCCC}</b> رمز العميل على أحرف ن <br> <b>{cccc000}</b> يتبع رمز العميل على الأحرف التي كتبها ن عداد مخصصة للعملاء. تتم إعادة تعيين هذا العداد مخصصة للعملاء في الوقت نفسه من عداد العالمية. <br> <b>{TTTT} رمز</b> من نوع مرشحين عن على أحرف ن (انظر أنواع-القاموس مرشحين عن). <br>
 GenericMaskCodes3=جميع الشخصيات الاخرى في قناع سوف تظل سليمة. <br> المساحات غير مسموح بها. <br>
-GenericMaskCodes4a=<u>ومثال على 99th ق ٪ من طرف ثالث TheCompany عمله 2007-01-31 :</u> <br>
-GenericMaskCodes4b=<u>ومثال على طرف ثالث على خلق 2007-03-01 :</u> <br>
+GenericMaskCodes4a=<u>ومثال على 99th %s من طرف ثالث TheCompany عمله 2007-01-31 :</u> <br>
+GenericMaskCodes4b=<u>ومثال على طرف ثالث على إنشاء 2007-03-01 :</u> <br>
 GenericMaskCodes4c=<u>Example on product created on 2007-03-01:</u><br>
 GenericMaskCodes5=<b>ABC{yy}{mm}-{000000}</b> will give <b>ABC0701-000099</b><br><b>{0000+100@1}-ZZZ/{dd}/XXX</b> will give <b>0199-ZZZ/31/XXX</b>
 GenericNumRefModelDesc=العودة للتخصيص وفقا لعدد محدد القناع.
-ServerAvailableOnIPOrPort=الخدمة متاحة في معالجة <b>٪ ق ق ٪</b> على الميناء
-ServerNotAvailableOnIPOrPort=الخدمة غير متاحة في التصدي <b>٪ ق ق ٪</b> على الميناء
+ServerAvailableOnIPOrPort=الخدمة متاحة في معالجة <b>٪ ق %s</b> على الميناء
+ServerNotAvailableOnIPOrPort=الخدمة غير متاحة في التصدي <b>٪ ق %s</b> على الميناء
 DoTestServerAvailability=اختبار خدمة التوصيل
 DoTestSend=ارسال الاختبار
 DoTestSendHTML=اختبار ارسال هتمل
-ErrorCantUseRazIfNoYearInMask=Error, can't use option @ to reset counter each year if sequence {yy} or {yyyy} is not in mask.
+ErrorCantUseRazIfNoYearInMask=خطأ، لا يمكن استخدام الخيار @ لإعادة تعيين عداد سنويا إذا تسلسل {} أو {yyyy إنهاء س س س س} ليس في قناع.
 ErrorCantUseRazInStartedYearIfNoYearMonthInMask=خطأ ، لا يمكن للمستخدم الخيار في حال تسلسل @ (ذ ذ م م)) ((سنة أو ملم)) (لا تخفي.
 UMask=معلمة جديدة UMask صورة يونيكس / لينكس / بي إس دي نظام الملفات.
 UMaskExplanation=تسمح لك هذه المعلمة لتحديد الاذونات التي حددها تقصير من الملفات التي أنشأتها Dolibarr على الخادم (خلال تحميلها على سبيل المثال). <br> يجب أن يكون ثمانية القيمة (على سبيل المثال ، 0666 وسائل القراءة والكتابة للجميع). <br> م شمال شرق paramètre سرت sous الامم المتحدة لتقييم الأداء ويندوز serveur.
 SeeWikiForAllTeam=إلقاء نظرة على صفحة ويكي قائمة كاملة لجميع الجهات الفاعلة والمنظمة
 UseACacheDelay= التخزين المؤقت للتأخير في الرد على الصادرات ثانية (0 فارغة أو لا مخبأ)
 DisableLinkToHelpCenter=الاختباء وصلة <b>"هل تحتاج إلى مساعدة أو دعم"</b> على صفحة تسجيل الدخول
-DisableLinkToHelp=Hide link to online help "<b>%s</b>"
+DisableLinkToHelp=إخفاء تصل إلى التعليمات الفورية <b>"٪ ق"</b>
 AddCRIfTooLong=ليس هناك التفاف تلقائي ، حتى إذا خرج من خط صفحة على وثائق لفترة طويلة جدا ، يجب إضافة حرف إرجاع نفسك في ناحية النص.
 ModuleDisabled=نميطة المعوقين
-ModuleDisabledSoNoEvent=نميطة المعوقين بغية خلق حالة أبدا
+ModuleDisabledSoNoEvent=نميطة المعوقين بغية إنشاء حالة أبدا
 ConfirmPurge=هل أنت متأكد من ذلك لتنفيذ تطهير؟ <br> وهذا من شأنه بالتأكيد حذف جميع بيانات ملفك بأي حال من الأحوال لترميمها (صورة إدارة المحتوى في المؤسسة ، والملفات المرفقة...).
 MinLength=الحد الأدني لمدة
 LanguageFilesCachedIntoShmopSharedMemory=لانغ لتحميل الملفات. في الذاكرة المشتركة
 ExamplesWithCurrentSetup=أمثلة مع تشغيل الإعداد الحالي
 ListOfDirectories=قائمة الدلائل المفتوحة قوالب
-ListOfDirectoriesForModelGenODT=List of directories containing templates files with OpenDocument format.<br><br>Put here full path of directories.<br>Add a carriage return between eah directory.<br>To add a directory of the GED module, add here <b>DOL_DATA_ROOT/ecm/yourdirectoryname</b>.<br><br>Files in those directories must end with <b>.odt</b> or <b>.ods</b>.
+ListOfDirectoriesForModelGenODT=قائمة الدلائل التي تحتوي على قوالب ملفات مع شكل المفتوحة. <br><br> ضع هنا المسار الكامل من الدلائل. <br> إضافة إرجاع بين الدليل ايه. <br> لإضافة دليل وحدة GED، أضيف هنا <b>DOL_DATA_ROOT / ECM / yourdirectoryname.</b> <br><br> الملفات في هذه الدلائل يجب أن ينتهي <b>.odt</b> أو <b>.ods.</b>
 NumberOfModelFilesFound=Number of ODT/ODS templates files found in those directories
 ExampleOfDirectoriesForModelGen=أمثلة على بناء الجملة : <br> ج : mydir \\ <br> / الوطن / mydir <br> DOL_DATA_ROOT / إدارة المحتوى في المؤسسة / ecmdir
 FollowingSubstitutionKeysCanBeUsed=<br> لمعرفة كيفية إنشاء قوالب المستند ODT، قبل تخزينها في تلك الدلائل، وقراءة وثائق ويكي:
@@ -352,30 +352,30 @@ ThemeDir=جلود دليل
 ConnectionTimeout=بمناسبه المهلة
 ResponseTimeout=استجابة مهلة
 SmsTestMessage=رسالة اختبار من __PHONEFROM__ إلى __PHONETO__
-ModuleMustBeEnabledFirst=Module <b>%s</b> must be enabled first if you need this feature.
+ModuleMustBeEnabledFirst=يجب تمكين <b>وحدة%s</b> أولا إذا كنت تحتاج هذه الميزة.
 SecurityToken=المفتاح لعناوين المواقع الآمنة
 NoSmsEngine=لا مدير مرسل الرسائل القصيرة المتاحة. لم يتم تثبيت SMS المرسل مع مدير التوزيع الافتراضي (لأنها تعتمد على مورد خارجي)، ولكن يمكنك أن تجد بعض على http://www.dolistore.com
 PDF=PDF
 PDFDesc=يمكنك تعيين كل الخيارات العالمية المتصلة جيل PDF
 PDFAddressForging=قواعد لتشكيل مربعات العناوين
 HideAnyVATInformationOnPDF=إخفاء كل المعلومات المتعلقة ضريبة القيمة المضافة على إنشاء قوات الدفاع الشعبي
-HideDescOnPDF=Hide products description on generated PDF
-HideRefOnPDF=Hide products ref. on generated PDF
-HideDetailsOnPDF=Hide products lines details on generated PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+HideDescOnPDF=إخفاء وصف المنتجات على لدت PDF
+HideRefOnPDF=المنتجات الجلدية المرجع. ولدت في PDF
+HideDetailsOnPDF=إخفاء خطوط المنتجات تفاصيل عن لدت PDF
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=المكتبة
 UrlGenerationParameters=المعلمات لتأمين عناوين المواقع
 SecurityTokenIsUnique=استخدام معلمة securekey فريدة لكل URL
 EnterRefToBuildUrl=أدخل مرجع لكائن %s
 GetSecuredUrl=الحصول على عنوان محسوب
-ButtonHideUnauthorized=Hide buttons for unauthorized actions instead of showing disabled buttons
-OldVATRates=Old VAT rate
-NewVATRates=New VAT rate
-PriceBaseTypeToChange=Modify on prices with base reference value defined on
-MassConvert=Launch mass convert
+ButtonHideUnauthorized=إخفاء أزرار لإجراءات غير مصرح بها بدلا من إظهار أزرار ذوي الاحتياجات الخاصة
+OldVATRates=معدل ضريبة القيمة المضافة القديم
+NewVATRates=معدل ضريبة القيمة المضافة الجديد
+PriceBaseTypeToChange=تعديل على الأسعار مع القيمة المرجعية قاعدة المعرفة على
+MassConvert=إطلاق تحويل الشامل
 String=سلسلة
-TextLong=Long text
-Int=Integer
+TextLong=نص طويل
+Int=عدد صحيح
 Float=Float
 DateAndTime=Date and hour
 Unique=Unique
@@ -388,17 +388,17 @@ ExtrafieldSelectList = Select from table
 ExtrafieldSeparator=Separator
 ExtrafieldCheckBox=Checkbox
 ExtrafieldRadio=Radio button
-ExtrafieldCheckBoxFromList= Checkbox from table
-ExtrafieldLink=Link to an object
+ExtrafieldCheckBoxFromList= مربع من الجدول
+ExtrafieldLink=رابط إلى كائن
 ExtrafieldParamHelpselect=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...<br><br>In order to have the list depending on another :<br>1,value1|parent_list_code:parent_key<br>2,value2|parent_list_code:parent_key
 ExtrafieldParamHelpcheckbox=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
 ExtrafieldParamHelpradio=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
-ExtrafieldParamHelpsellist=Parameters list comes from a table<br>Syntax : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntaxt  extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
-ExtrafieldParamHelpchkbxlst=Parameters list comes from a table<br>Syntax : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntaxt  extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
-ExtrafieldParamHelplink=Parameters must be ObjectName:Classpath<br>Syntax : ObjectName:Classpath<br>Example : Societe:societe/class/societe.class.php
+ExtrafieldParamHelpsellist=قائمة المعلمات يأتي من الجدول <br> بناء الجملة: TABLE_NAME: label_field: id_field :: مرشح <br> مثال: c_typent: libelle: معرف :: مرشح <br><br> مرشح يمكن أن يكون اختبار بسيط (على سبيل المثال النشطة = 1) لعرض قيمة النشطة فقط <br> يمكنك أيضا استخدام $ $ ID في تصفية ساحرة هي هوية الحالي الكائن الحالي <br> للقيام SELECT في استخدام فلتر $ SEL $ <br> إذا كنت ترغب في تصفية على extrafields استخدام syntaxt extra.fieldcode = ... (حيث رمز الحقل هو رمز من extrafield) <br><br> من أجل الحصول على لائحة تبعا آخر: <br> c_typent: libelle: الرقم: parent_list_code | parent_column: فلتر
+ExtrafieldParamHelpchkbxlst=قائمة المعلمات يأتي من الجدول <br> بناء الجملة: TABLE_NAME: label_field: id_field :: مرشح <br> مثال: c_typent: libelle: معرف :: مرشح <br><br> مرشح يمكن أن يكون اختبار بسيط (على سبيل المثال النشطة = 1) لعرض قيمة النشطة فقط <br> يمكنك أيضا استخدام $ $ ID في تصفية ساحرة هي هوية الحالي الكائن الحالي <br> للقيام SELECT في استخدام فلتر $ SEL $ <br> إذا كنت ترغب في تصفية على extrafields استخدام syntaxt extra.fieldcode = ... (حيث رمز الحقل هو رمز من extrafield) <br><br> من أجل الحصول على لائحة تبعا آخر: <br> c_typent: libelle: الرقم: parent_list_code | parent_column: فلتر
+ExtrafieldParamHelplink=يجب أن يكون المعلمات ObjectName: CLASSPATH <br> بناء الجملة: ObjectName: CLASSPATH <br> مثال: سوسيتيه: سوسيتيه / فئة / societe.class.php
 LibraryToBuildPDF=Library used to build PDF
 WarningUsingFPDF=Warning: Your <b>conf.php</b> contains directive <b>dolibarr_pdf_force_fpdf=1</b>. This means you use the FPDF library to generate PDF files. This library is old and does not support a lot of features (Unicode, image transparency, cyrillic, arab and asiatic languages, ...), so you may experience errors during PDF generation.<br>To solve this and have a full support of PDF generation, please download <a href="http://www.tcpdf.org/" target="_blank">TCPDF library</a>, then comment or remove the line <b>$dolibarr_pdf_force_fpdf=1</b>, and add instead <b>$dolibarr_lib_TCPDF_PATH='path_to_TCPDF_dir'</b>
-LocalTaxDesc=Some countries apply 2 or 3 taxes on each invoice line. If this is the case, choose type for second and third tax and its rate. Possible type are:<br>1 : local tax apply on products and services without vat (localtax is calculated on amount without tax)<br>2 : local tax apply on products and services including vat (localtax is calculated on amount + main tax)<br>3 : local tax apply on products without vat (localtax is calculated on amount without tax)<br>4 : local tax apply on products including vat (localtax is calculated on amount + main vat)<br>5 : local tax apply on services without vat (localtax is calculated on amount without tax)<br>6 : local tax apply on services including vat (localtax is calculated on amount + tax)
+LocalTaxDesc=بعض البلدان تطبق 2 أو 3 الضرائب على كل خط الفاتورة. إذا كان هذا هو الحال، واختيار نوع لضريبة الثانية والثالثة ومعدل. نوع ممكن هي: <br> 1: يتم تطبيق الضرائب المحلية على المنتجات والخدمات دون الضريبة على القيمة المضافة (يحسب localtax على كمية بدون ضريبة) <br> 2: الضرائب المحلية تنطبق على المنتجات والخدمات بما في ذلك ضريبة القيمة المضافة (يحسب localtax على كمية + ضريبة الرئيسي) <br> 3: تطبيق الضرائب المحلية على المنتجات بدون ضريبة القيمة المضافة (يحسب localtax على كمية بدون ضريبة) <br> 4: الضرائب المحلية تنطبق على المنتجات بما في ذلك ضريبة القيمة المضافة (يحسب localtax على كمية + ضريبة القيمة المضافة الرئيسية) <br> 5: تطبق الضرائب المحلية على الخدمات دون الضريبة على القيمة المضافة (يحسب localtax على كمية بدون ضريبة) <br> 6: الضرائب المحلية تنطبق على الخدمات بما في ذلك ضريبة القيمة المضافة (يحسب localtax على كمية + الضريبة)
 SMS=SMS
 LinkToTestClickToDial=Enter a phone number to call to show a link to test the ClickToDial url for user <strong>%s</strong>
 RefreshPhoneLink=Refresh link
@@ -406,16 +406,17 @@ LinkToTest=Clickable link generated for user <strong>%s</strong> (click phone nu
 KeepEmptyToUseDefault=Keep empty to use default value
 DefaultLink=Default link
 ValueOverwrittenByUserSetup=Warning, this value may be overwritten by user specific setup (each user can set his own clicktodial url)
-ExternalModule=External module - Installed into directory %s
-BarcodeInitForThirdparties=Mass barcode init for thirdparties
-BarcodeInitForProductsOrServices=Mass barcode init or reset for products or services
-CurrentlyNWithoutBarCode=Currently, you have <strong>%s</strong> records on <strong>%s</strong> %s without barcode defined.
-InitEmptyBarCode=Init value for next %s empty records
-EraseAllCurrentBarCode=Erase all current barcode values
-ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode values ?
-AllBarcodeReset=All barcode values have been removed
-NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
-NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+ExternalModule=الوحدة الخارجية - المثبتة في الدليل %s
+BarcodeInitForThirdparties=الحرف الأول الباركود الشامل لthirdparties
+BarcodeInitForProductsOrServices=الحرف الأول الباركود الشامل أو إعادة للمنتجات أو الخدمات
+CurrentlyNWithoutBarCode=حاليا، لديك <strong>السجلات٪ s <strong>على٪</strong></strong> <strong>ق٪</strong> الصورة دون الباركود محددة.
+InitEmptyBarCode=قيمة الحرف الأول للسجلات فارغة الصورة٪ المقبلة
+EraseAllCurrentBarCode=محو كل القيم الباركود الحالية
+ConfirmEraseAllCurrentBarCode=هل أنت متأكد أنك تريد محو كل القيم الباركود الحالية؟
+AllBarcodeReset=وقد أزيلت كل القيم الباركود
+NoBarcodeNumberingTemplateDefined=تمكين أي قالب الترقيم الباركود في الإعداد وحدة الباركود.
+NoRecordWithoutBarcodeDefined=لا يوجد سجل مع عدم وجود قيمة الباركود محددة.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=& مجموعات المستخدمين
@@ -457,8 +458,8 @@ Module55Desc=Barcodes إدارة
 Module56Name=الخدمات الهاتفية
 Module56Desc=تكامل الخدمات الهاتفية
 Module57Name=أوامر دائمة
-Module57Desc=Standing orders and withdrawal management. Also includes generation of SEPA file for european countries.
-Module58Name=ClickToDial
+Module57Desc=يقف أوامر وإدارة الانسحاب. ويشمل أيضا جيل من ملف المصلحة للبلدان الأوروبية.
+Module58Name=انقر للاتصال
 Module58Desc=ClickToDial التكامل
 Module59Name=Bookmark4u
 Module59Desc=إضافة مهمة لتوليد Bookmark4u الحساب من حساب Dolibarr
@@ -488,87 +489,87 @@ Module320Name=تغذية RSS
 Module320Desc=إضافة تغذية RSS داخل الشاشة صفحة Dolibarr
 Module330Name=العناوين
 Module330Desc=العناوين إدارة
-Module400Name=Projects/Opportunities/Leads
-Module400Desc=Management of projects, opportunities or leads. You can then assign any element (invoice, order, proposal, intervention, ...) to a project and get a transversal view from the project view.
+Module400Name=المشاريع / الفرص / يؤدي
+Module400Desc=إدارة المشاريع والفرص أو الخيوط. ثم يمكنك تعيين أي عنصر (الفاتورة، النظام، اقتراح، والتدخل، ...) لمشروع والحصول على عرض مستعرضة من وجهة نظر المشروع.
 Module410Name=Webcalendar
-Module410Desc=Webcalendar التكامل
-Module500Name=Special expenses
-Module500Desc=Management of special expenses (taxes, social or fiscal taxes, dividends)
-Module510Name=Salaries
-Module510Desc=Management of employees salaries and payments
-Module520Name=Loan
-Module520Desc=Management of loans
+Module410Desc=التكامل Webcalendar
+Module500Name=المصروفات الخاصة
+Module500Desc=إدارة المصروفات الخاصة (الضرائب، الضرائب الاجتماعية أو المالية وتوزيعات الأرباح)
+Module510Name=الرواتب
+Module510Desc=إدارة رواتب الموظفين والمدفوعات
+Module520Name=قرض
+Module520Desc=إدارة القروض
 Module600Name=الإخطارات
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=التبرعات
 Module700Desc=التبرعات إدارة
-Module770Name=Expense reports
-Module770Desc=Management and claim expense reports (transportation, meal, ...)
-Module1120Name=Supplier commercial proposal
-Module1120Desc=Request supplier commercial proposal and prices
+Module770Name=تقارير المصاريف
+Module770Desc=إدارة والمطالبة تقارير المصاريف (النقل، وجبة، ...)
+Module1120Name=اقتراح التجاري المورد
+Module1120Desc=اقتراح تجاري طلب المورد والأسعار
 Module1200Name=فرس النبي
 Module1200Desc=فرس النبي التكامل
 Module1400Name=المحاسبة
 Module1400Desc=المحاسبة الإدارية (ضعف الأحزاب)
-Module1520Name=Document Generation
-Module1520Desc=Mass mail document generation
-Module1780Name=Tags/Categories
-Module1780Desc=Create tags/category (products, customers, suppliers, contacts or members)
-Module2000Name=Fckeditor
+Module1520Name=الجيل ثيقة
+Module1520Desc=الجيل ثيقة الإلكتروني الشامل
+Module1780Name=الكلمات / فئات
+Module1780Desc=إنشاء العلامات / فئة (المنتجات والعملاء والموردين والاتصالات أو أفراد)
+Module2000Name=WYSIWYG المحرر
 Module2000Desc=سوغ محرر
-Module2200Name=Dynamic Prices
-Module2200Desc=Enable the usage of math expressions for prices
+Module2200Name=الأسعار الديناميكية
+Module2200Desc=تمكين استخدام تعبيرات الرياضيات للأسعار
 Module2300Name=Cron
-Module2300Desc=Scheduled job management
+Module2300Desc=إدارة مهمة مجدولة
 Module2400Name=جدول الأعمال
 Module2400Desc=الأعمال / الإدارة المهام وجدول الأعمال
 Module2500Name=إدارة المحتوى الإلكتروني
 Module2500Desc=حفظ وتبادل الوثائق
-Module2600Name=API/Web services (SOAP server)
-Module2600Desc=Enable the Dolibarr SOAP server providing API services
-Module2610Name=API/Web services (REST server)
-Module2610Desc=Enable the Dolibarr REST server providing API services
-Module2660Name=Call WebServices (SOAP client)
-Module2660Desc=Enable the Dolibarr web services client (Can be used to push data/requests to external servers. Supplier orders supported only for the moment)
+Module2600Name=خدمات API / ويب (خادم SOAP)
+Module2600Desc=تمكين الخدمات API Dolibarr الخادم SOAP توفير
+Module2610Name=خدمات API / ويب (خادم REST)
+Module2610Desc=تمكين الخادم تقديم الخدمات API Dolibarr REST
+Module2660Name=WebServices الدعوة (العميل SOAP)
+Module2660Desc=تمكين Dolibarr عميل خدمات الويب (يمكن أن تستخدم لدفع البيانات / الطلبات إلى ملقمات الخارجية. أوامر مورد معتمد فقط في الوقت الحالي)
 Module2700Name=غرفتر
 Module2700Desc=استخدام خدمة غرفتر على الانترنت (www.gravatar.com) لإظهار الصورة من المستخدمين / أعضاء (وجدت مع رسائل البريد الإلكتروني الخاصة بهم). في حاجة الى الوصول الى شبكة الانترنت
-Module2800Desc=FTP Client
+Module2800Desc=عميل FTP
 Module2900Name=GeoIPMaxmind
 Module2900Desc=GeoIP التحويلات Maxmind القدرات
-Module3100Name=Skype
-Module3100Desc=Add a Skype button into card of users / third parties / contacts / members
+Module3100Name=سكايب
+Module3100Desc=إضافة زر سكايب إلى بطاقة من المستخدمين / الغير / اتصالات / أعضاء
 Module4000Name=HRM
-Module4000Desc=Human resources management
+Module4000Desc=إدارة الموارد البشرية
 Module5000Name=شركة متعددة
 Module5000Desc=يسمح لك لإدارة الشركات المتعددة
-Module6000Name=Workflow
-Module6000Desc=Workflow management
-Module20000Name=Leave Requests management
-Module20000Desc=Declare and follow employees leaves requests
-Module39000Name=Product lot
-Module39000Desc=Lot or serial number, eat-by and sell-by date management on products
+Module6000Name=سير العمل
+Module6000Desc=إدارة سير العمل
+Module20000Name=ترك إدارة الطلبات
+Module20000Desc=أعلن وتابع الموظفين يترك طلبات
+Module39000Name=الكثير المنتج
+Module39000Desc=الكثير أو الرقم التسلسلي، وتناول الطعام عن طريق وبيع عن طريق إدارة التسجيل على المنتجات
 Module50000Name=PayBox
 Module50000Desc=وحدة لتقديم على صفحة الدفع عبر الإنترنت عن طريق بطاقة الائتمان مع PayBox
 Module50100Name=نقطة البيع
 Module50100Desc=نقطة بيع وحدة
 Module50200Name=باي بال
 Module50200Desc=وحدة لتقديم على صفحة الدفع عبر الإنترنت عن طريق بطاقة الائتمان مع بايبال
-Module50400Name=Accounting (advanced)
-Module50400Desc=Accounting management (double parties)
+Module50400Name=المحاسبة (متقدم)
+Module50400Desc=المحاسبة الإدارية (الأحزاب مزدوجة)
 Module54000Name=PrintIPP
-Module54000Desc=Direct print (without opening the documents) using Cups IPP interface (Printer must be visible from server, and CUPS must be installe on server).
-Module55000Name=Poll, Survey or Vote
-Module55000Desc=Module to make online polls, surveys or votes (like Doodle, Studs, Rdvz, ...)
-Module59000Name=Margins
-Module59000Desc=Module to manage margins
-Module60000Name=Commissions
-Module60000Desc=Module to manage commissions
+Module54000Desc=(يجب أن تكون الطابعة مرئية من الخادم، ويجب أن تكون الكؤوس تركيبها على الخادم) الطباعة مباشرة (دون فتح المستندات) باستخدام واجهة الكؤوس IPP.
+Module55000Name=استطلاع للرأي، أو مسح التصويت
+Module55000Desc=وحدة لجعل استطلاعات الرأي عبر الإنترنت، والدراسات الاستقصائية أو الأصوات (مثل خربش، الأزرار، Rdvz، ...)
+Module59000Name=هوامش
+Module59000Desc=وحدة لإدارة الهوامش
+Module60000Name=العمولات
+Module60000Desc=وحدة لإدارة اللجان
 Permission11=قراءة الفواتير
-Permission12=خلق الفواتير
+Permission12=إنشاء / تعديل فواتير العملاء
 Permission13=تعديل الفواتير
 Permission14=التحقق من صحة الفواتير
 Permission15=ارسال الفواتير عن طريق البريد الإلكتروني
-Permission16=خلق دفع الفواتير
+Permission16=إنشاء مدفوعات الفواتير العملاء
 Permission19=حذف الفواتير
 Permission21=قراءة مقترحات تجارية
 Permission22=إنشاء / تعديل مقترحات تجارية
@@ -582,7 +583,7 @@ Permission32=إنشاء / تعديل المنتجات
 Permission34=حذف المنتجات
 Permission36=انظر / إدارة المنتجات المخفية
 Permission38=منتجات التصدير
-Permission41=Read projects and tasks (shared project and projects i'm contact for). Can also enter time consumed on assigned tasks (timesheet)
+Permission41=مشاريع القراءة والمهام (مشروع مشترك ومشاريع انا اتصال ل). كما يمكن أن يدخل الوقت المستهلك في المهام الموكلة (الجدول الزمني)
 Permission42=إنشاء / تعديل مشاريع تعديل مهام بلدي المشاريع
 Permission44=حذف مشاريع
 Permission61=قراءة التدخلات
@@ -592,8 +593,8 @@ Permission67=تصدير التدخلات
 Permission71=قراءة الأعضاء
 Permission72=إنشاء / تعديل أعضاء
 Permission74=حذف أعضاء
-Permission75=Setup types of membership
-Permission76=تصدير datas
+Permission75=أنواع الإعداد للعضوية
+Permission76=تصدير البيانات
 Permission78=قراءة الاشتراكات
 Permission79=إنشاء / تعديل والاشتراكات
 Permission81=قراءة أوامر العملاء
@@ -603,20 +604,20 @@ Permission86=إرسال أوامر العملاء
 Permission87=وثيقة أوامر العملاء
 Permission88=إلغاء أوامر العملاء
 Permission89=حذف أوامر العملاء
-Permission91=Read social or fiscal taxes and vat
-Permission92=Create/modify social or fiscal taxes and vat
-Permission93=Delete social or fiscal taxes and vat
-Permission94=Export social or fiscal taxes
+Permission91=قراءة الضرائب الاجتماعية أو المالية والضريبة على القيمة المضافة
+Permission92=إنشاء / تعديل الضرائب الاجتماعية أو المالية والضريبة على القيمة المضافة
+Permission93=حذف الضرائب الاجتماعية أو المالية والضريبة على القيمة المضافة
+Permission94=تصدير الاجتماعي أو المالية الضرائب
 Permission95=قراءة تقارير
 Permission101=قراءة الإرسال
 Permission102=إنشاء / تعديل الإرسال
 Permission104=صحة الإرسال
-Permission106=Export sendings
+Permission106=sendings التصدير
 Permission109=حذف الإرسال
 Permission111=قراءة الحسابات المالية
 Permission112=إنشاء / تعديل أو حذف ، وقارن المعاملات
-Permission113=Setup financial accounts (create, manage categories)
-Permission114=Reconciliate transactions
+Permission113=الحسابات المالية الإعداد (إنشاء وإدارة فئات)
+Permission114=مصالحة بين المعاملات
 Permission115=صفقات التصدير وكشوفات الحساب
 Permission116=التحويلات بين الحسابات
 Permission117=إدارة ارسال الشيكات
@@ -624,35 +625,35 @@ Permission121=قراءة الغير مرتبطة المستخدم
 Permission122=إنشاء / تغيير الغير مرتبطة المستخدم
 Permission125=حذف الغير مرتبطة المستخدم
 Permission126=الصادرات الغير
-Permission141=Read all projects and tasks (also private projects i am not contact for)
-Permission142=Create/modify all projects and tasks (also private projects i am not contact for)
-Permission144=Delete all projects and tasks (also private projects i am not contact for)
+Permission141=قراءة جميع المشاريع والمهام (أيضا مشاريع خاصة وأنا لا اتصال لل)
+Permission142=إنشاء / تعديل كافة المشاريع والمهام (أيضا مشاريع خاصة وأنا لا اتصال لل)
+Permission144=حذف جميع المشاريع والمهام (أيضا مشاريع خاصة وأنا لا اتصال لل)
 Permission146=قراءة موفري
 Permission147=قراءة احصائيات
 Permission151=قراءة أوامر دائمة
 Permission152=إعداد أوامر دائمة
 Permission153=قراءة أوامر دائمة إيصالات
 Permission154=الائتمان / ورفض أوامر دائمة ايصالات
-Permission161=Read contracts/subscriptions
-Permission162=Create/modify contracts/subscriptions
-Permission163=Activate a service/subscription of a contract
-Permission164=Disable a service/subscription of a contract
-Permission165=Delete contracts/subscriptions
-Permission171=Read trips and expenses (yours and your subordinates)
-Permission172=Create/modify trips and expenses
-Permission173=Delete trips and expenses
-Permission174=Read all trips and expenses
-Permission178=Export trips and expenses
+Permission161=قراءة العقود / الاشتراكات
+Permission162=إنشاء / تعديل العقود / الاشتراكات
+Permission163=تفعيل خدمة / الاشتراك عقد
+Permission164=تعطيل خدمة / الاشتراك عقد
+Permission165=حذف العقود / الاشتراكات
+Permission171=قراءة الرحلات والنفقات (لك والمرؤوسين لديك)
+Permission172=إنشاء / تعديل الرحلات والمصاريف
+Permission173=حذف الرحلات والمصاريف
+Permission174=قراءة جميع الرحلات والمصاريف
+Permission178=رحلات ونفقات التصدير
 Permission180=قراءة الموردين
 Permission181=قراءة مورد أوامر
 Permission182=إنشاء / تغيير المورد أوامر
 Permission183=صحة أوامر المورد
 Permission184=الموافقة على أوامر المورد
-Permission185=Order or cancel supplier orders
+Permission185=النظام أو إلغاء الأوامر المورد
 Permission186=تلقي أوامر المورد
 Permission187=وثيقة أوامر المورد
 Permission188=المورد إلغاء أوامر
-Permission192=خلق خطوط
+Permission192=إنشاء خطوط
 Permission193=إلغاء خطوط
 Permission194=قراءة خطوط باندوتز
 Permission202=إنشاء خط المشترك الرقمي غير المتماثل وصلات
@@ -665,20 +666,20 @@ Permission212=من أجل خطوط
 Permission213=تفعيل خط
 Permission214=إعداد الهاتف
 Permission215=الإعداد موفري
-Permission221=قراءة emailings
-Permission222=إنشاء / تعديل emailings (الموضوع والمستفيدين...)
-Permission223=صحة emailings (يسمح بارسال)
-Permission229=حذف emailings
-Permission237=View recipients and info
-Permission238=Manually send mailings
-Permission239=Delete mailings after validation or sent
+Permission221=قراءة الرسائل
+Permission222=إنشاء / تعديل الرسائل (الموضوع، المتلقين ...)
+Permission223=التحقق من صحة الرسائل (يسمح بإرسال)
+Permission229=حذف الرسائل
+Permission237=عرض المتلقين والمعلومات
+Permission238=إرسال الرسائل يدويا
+Permission239=حذف الرسائل بعد التحقق من صحة أو إرسالها
 Permission241=قراءة الفئات
 Permission242=إنشاء / تعديل الفئات
 Permission243=حذف فئات
 Permission244=انظر محتويات الخفية الفئات
 Permission251=قراءة أخرى للمستخدمين والمجموعات
 PermissionAdvanced251=قراءة المستخدمين الآخرين
-Permission252=إنشاء / تغيير المستخدمين الآخرين والجماعات ولكم permisssions
+Permission252=قراءة أذونات المستخدمين الآخرين
 Permission253=تغيير كلمة مرور المستخدمين الآخرين
 PermissionAdvanced253=إنشاء / تعديل المستخدمين خارجي / داخلي وأذونات
 Permission254=حذف أو تعطيل المستخدمين الآخرين
@@ -699,7 +700,7 @@ Permission300=شريط قراءة المدونات
 Permission301=إنشاء / تغيير شريط الرموز
 Permission302=حذف شريط الرموز
 Permission311=قراءة الخدمات
-Permission312=Assign service/subscription to contract
+Permission312=تعيين خدمة / الاشتراك في التعاقد
 Permission331=قراءة العناوين
 Permission332=إنشاء / تغيير العناوين
 Permission333=حذف العناوين
@@ -716,15 +717,15 @@ Permission401=قراءة خصومات
 Permission402=إنشاء / تعديل الخصومات
 Permission403=تحقق من الخصومات
 Permission404=حذف خصومات
-Permission510=Read Salaries
-Permission512=Create/modify salaries
-Permission514=Delete salaries
-Permission517=Export salaries
-Permission520=Read Loans
-Permission522=Create/modify loans
-Permission524=Delete loans
-Permission525=Access loan calculator
-Permission527=Export loans
+Permission510=قراءة الرواتب
+Permission512=إنشاء / تعديل الرواتب
+Permission514=حذف الرواتب
+Permission517=رواتب التصدير
+Permission520=قراءة القروض
+Permission522=إنشاء / تعديل القروض
+Permission524=حذف القروض
+Permission525=قرض الوصول آلة حاسبة
+Permission527=قروض التصدير
 Permission531=قراءة الخدمات
 Permission532=إنشاء / تعديل الخدمات
 Permission534=حذف خدمات
@@ -733,16 +734,16 @@ Permission538=تصدير الخدمات
 Permission701=قراءة التبرعات
 Permission702=إنشاء / تعديل والهبات
 Permission703=حذف التبرعات
-Permission771=Read expense reports (yours and your subordinates)
-Permission772=Create/modify expense reports
-Permission773=Delete expense reports
-Permission774=Read all expense reports (even for user not subordinates)
-Permission775=Approve expense reports
-Permission776=Pay expense reports
-Permission779=Export expense reports
+Permission771=قراءة التقارير حساب (لك والمرؤوسين لديك)
+Permission772=إنشاء / تعديل التقارير حساب
+Permission773=حذف تقارير المصاريف
+Permission774=قراءة جميع التقارير حساب (حتى للمستخدم لا المرؤوسين)
+Permission775=الموافقة على التقارير حساب
+Permission776=دفع نفقة تقارير
+Permission779=تقارير حساب التصدير
 Permission1001=قراءة مخزونات
-Permission1002=Create/modify warehouses
-Permission1003=Delete warehouses
+Permission1002=إنشاء / تعديل المستودعات
+Permission1003=حذف المستودعات
 Permission1004=قراءة تحركات الأسهم
 Permission1005=إنشاء / تعديل تحركات الأسهم
 Permission1101=قراءة تسليم أوامر
@@ -751,35 +752,35 @@ Permission1104=تحقق من توصيل الأوامر
 Permission1109=حذف تسليم أوامر
 Permission1181=قراءة الموردين
 Permission1182=قراءة مورد أوامر
-Permission1183=خلق مورد أوامر
+Permission1183=إنشاء مورد أوامر
 Permission1184=صحة أوامر المورد
 Permission1185=الموافقة على أوامر المورد
 Permission1186=من أجل المورد أوامر
 Permission1187=باستلام المورد أوامر
 Permission1188=وثيقة أوامر المورد
-Permission1190=Approve (second approval) supplier orders
+Permission1190=الموافقة (موافقة الثانية) أوامر المورد
 Permission1201=ونتيجة للحصول على التصدير
 Permission1202=إنشاء / تعديل للتصدير
 Permission1231=قراءة فواتير الموردين
-Permission1232=خلق فواتير الموردين
+Permission1232=إنشاء فواتير الموردين
 Permission1233=التحقق من فواتير الموردين
 Permission1234=حذف فواتير الموردين
 Permission1235=إرسال فواتير المورد عن طريق البريد الإلكتروني
 Permission1236=تصدير فواتير الموردين والصفات والمدفوعات
-Permission1237=Export supplier orders and their details
+Permission1237=أوامر المورد التصدير وتفاصيلها
 Permission1251=ادارة الدمار الواردات الخارجية البيانات في قاعدة البيانات (بيانات تحميل)
 Permission1321=تصدير العملاء والفواتير والمدفوعات والصفات
 Permission1421=التصدير طلبات الزبائن وصفاته
-Permission20001=Read leave requests (yours and your subordinates)
-Permission20002=Create/modify your leave requests
-Permission20003=Delete leave requests
-Permission20004=Read all leave requests (even user not subordinates)
-Permission20005=Create/modify leave requests for everybody
-Permission20006=Admin leave requests (setup and update balance)
-Permission23001=Read Scheduled job
-Permission23002=Create/update Scheduled job
-Permission23003=Delete Scheduled job
-Permission23004=Execute Scheduled job
+Permission20001=قراءة طلبات الإجازة (لك والمرؤوسين لديك)
+Permission20002=إنشاء / تعديل طلبات الإجازات الخاصة بك
+Permission20003=حذف طلبات الإجازة
+Permission20004=قراءة جميع طلبات الإجازة (حتى المستخدم لا المرؤوسين)
+Permission20005=إنشاء / تعديل طلبات الإجازة للجميع
+Permission20006=طلبات الإجازة المشرف (إعداد وتحديث التوازن)
+Permission23001=قراءة مهمة مجدولة
+Permission23002=إنشاء / تحديث المجدولة وظيفة
+Permission23003=حذف مهمة مجدولة
+Permission23004=تنفيذ مهمة مجدولة
 Permission2401=قراءة الأعمال (أو أحداث المهام) مرتبطة حسابه
 Permission2402=إنشاء / تعديل أو حذف الإجراءات (الأحداث أو المهام) مرتبطة حسابه
 Permission2403=قراءة الأعمال (أو أحداث المهام) آخرين
@@ -790,50 +791,50 @@ Permission2501=قراءة وثائق
 Permission2502=تقديم وثائق أو حذف
 Permission2503=تقديم وثائق أو حذف
 Permission2515=إعداد وثائق وأدلة
-Permission2801=Use FTP client in read mode (browse and download only)
-Permission2802=Use FTP client in write mode (delete or upload files)
-Permission50101=Use Point of sales
+Permission2801=استخدام عميل FTP في وضع القراءة (تصفح وتحميل فقط)
+Permission2802=العميل استخدام بروتوكول نقل الملفات في وضع الكتابة (حذف أو تحميل الملفات)
+Permission50101=استخدام نقاط البيع
 Permission50201=قراءة المعاملات
 Permission50202=استيراد المعاملات
-Permission54001=Print
-Permission55001=Read polls
-Permission55002=Create/modify polls
-Permission59001=Read commercial margins
-Permission59002=Define commercial margins
-Permission59003=Read every user margin
-DictionaryCompanyType=Thirdparties type
-DictionaryCompanyJuridicalType=Juridical kinds of thirdparties
-DictionaryProspectLevel=Prospect potential level
-DictionaryCanton=State/Province
-DictionaryRegion=Regions
-DictionaryCountry=Countries
-DictionaryCurrency=Currencies
-DictionaryCivility=Civility title
-DictionaryActions=Type of agenda events
-DictionarySocialContributions=Social or fiscal taxes types
-DictionaryVAT=VAT Rates or Sales Tax Rates
-DictionaryRevenueStamp=Amount of revenue stamps
-DictionaryPaymentConditions=Payment terms
-DictionaryPaymentModes=Payment modes
-DictionaryTypeContact=Contact/Address types
-DictionaryEcotaxe=Ecotax (WEEE)
-DictionaryPaperFormat=Paper formats
-DictionaryFees=Type of fees
-DictionarySendingMethods=Shipping methods
-DictionaryStaff=Staff
-DictionaryAvailability=Delivery delay
-DictionaryOrderMethods=Ordering methods
-DictionarySource=Origin of proposals/orders
-DictionaryAccountancyplan=Chart of accounts
-DictionaryAccountancysystem=Models for chart of accounts
-DictionaryEMailTemplates=Emails templates
-DictionaryUnits=Units
-DictionaryProspectStatus=Prospection status
-DictionaryHolidayTypes=Type of leaves
-DictionaryOpportunityStatus=Opportunity status for project/lead
+Permission54001=طباعة
+Permission55001=قراءة استطلاعات الرأي
+Permission55002=إنشاء / تعديل استطلاعات الرأي
+Permission59001=قراءة الهوامش التجارية
+Permission59002=تحديد هوامش التجارية
+Permission59003=قراءة كل الهامش المستخدم
+DictionaryCompanyType=نوع Thirdparties
+DictionaryCompanyJuridicalType=أنواع القانونية للthirdparties
+DictionaryProspectLevel=احتمال المستوى المحتمل
+DictionaryCanton=الدولة / مقاطعة
+DictionaryRegion=المناطق
+DictionaryCountry=الدول
+DictionaryCurrency=العملات
+DictionaryCivility=عنوان الكياسة
+DictionaryActions=نوع من الأحداث جدول الأعمال
+DictionarySocialContributions=الضرائب الاجتماعية أو المالية أنواع
+DictionaryVAT=أسعار الضريبة على القيمة المضافة أو ضريبة المبيعات الاسعار
+DictionaryRevenueStamp=كمية من طوابع الواردات
+DictionaryPaymentConditions=شروط الدفع
+DictionaryPaymentModes=وسائل الدفع
+DictionaryTypeContact=الاتصال / أنواع العناوين
+DictionaryEcotaxe=ضرائب بيئية (WEEE)
+DictionaryPaperFormat=تنسيقات ورقة
+DictionaryFees=نوع من الرسوم
+DictionarySendingMethods=وسائل النقل البحري
+DictionaryStaff=العاملين
+DictionaryAvailability=تأخير تسليم
+DictionaryOrderMethods=طرق ترتيب
+DictionarySource=أصل مقترحات / أوامر
+DictionaryAccountancyplan=جدول الحسابات
+DictionaryAccountancysystem=نماذج للتخطيط للحسابات
+DictionaryEMailTemplates=رسائل البريد الإلكتروني قوالب
+DictionaryUnits=الوحدات
+DictionaryProspectStatus=حالة التنقيب
+DictionaryHolidayTypes=نوع من الأوراق
+DictionaryOpportunityStatus=الوضع فرصة للمشروع / الرصاص
 SetupSaved=الإعداد المحفوظة
 BackToModuleList=العودة إلى قائمة الوحدات
-BackToDictionaryList=Back to dictionaries list
+BackToDictionaryList=العودة إلى قائمة القواميس
 VATReceivedOnly=سعر خاص لا تحمل
 VATManagement=إدارة الضريبة على القيمة المضافة
 VATIsUsedDesc=معدل ضريبة القيمة المضافة بشكل افتراضي عند إنشاء الآفاق ، والفواتير ، وما يتبع أوامر النشطة القياسية للمادة : <br> إذا كان البائع هو تعرض لضريبة القيمة المضافة ، وضريبة القيمة المضافة بعد ذلك تلقائيا= 0. نهاية المادة. <br> إذا كان (بيع وشراء= بلد في البلد) ، فإن ضريبة القيمة المضافة بشكل افتراضي= ضريبة القيمة المضافة من بيع المنتج في البلد. نهاية المادة. <br> إذا كان البائع والمشتري في الجماعة الأوروبية ، وبيعت البضاعة الجديدة بعد أن وسائل النقل (السيارات ، والسفن ، والطائرات) ، الافتراضي= 0 ضريبة القيمة المضافة (ضريبة القيمة المضافة وينبغي أن تدفع من قبل المشتري في customoffice بلاده وليس على البائع . نهاية المادة. <br> إذا كان البائع والمشتري في الجماعة الأوروبية والسلع التي تباع عن طريق وسائل أخرى جديدة بدلا من وسائل النقل ، فإن ضريبة القيمة المضافة بشكل افتراضي= ضريبة القيمة المضافة للمنتجات المباعة. نهاية المادة. <br> وإلا فإن ضريبة القيمة المضافة المقترحة الافتراضي= 1. نهاية المادة.
@@ -841,43 +842,43 @@ VATIsNotUsedDesc=افتراضي المقترحة 0 ضريبة القيمة ال
 VATIsUsedExampleFR=في فرنسا ، فإن ذلك يعني وجود منظمات أو شركات حقيقية في النظام المالي (المبسطة حقيقية أو طبيعية حقيقية). نظام ضريبة القيمة المضافة هي التي أعلنت.
 VATIsNotUsedExampleFR=في فرنسا ، فإن ذلك يعني أن الجمعيات غير المعلنة ضريبة القيمة المضافة أو شركات أو مؤسسات المهن الحرة التي اختارت المشاريع الصغيرة النظام الضريبي (ضريبة القيمة المضافة في الانتخاب) ، ودفع ضريبة القيمة المضافة في الانتخاب دون أي إعلان من ضريبة القيمة المضافة. هذا الخيار سيتم عرض المرجعي "غير الضريبة على القيمة المضافة المطبقة -- الفن - 293B من المجموعة الاستشارية لاندونيسيا" على الفواتير.
 ##### Local Taxes #####
-LTRate=Rate
-LocalTax1IsNotUsed=Do not use second tax
-LocalTax1IsUsedDesc=Use a second type of tax (other than VAT)
-LocalTax1IsNotUsedDesc=Do not use other type of tax (other than VAT)
-LocalTax1Management=Second type of tax
+LTRate=معدل
+LocalTax1IsNotUsed=لا تستخدم الضريبة الثانية
+LocalTax1IsUsedDesc=استخدام النوع الثاني من الضرائب (باستثناء ضريبة القيمة المضافة)
+LocalTax1IsNotUsedDesc=لا تستخدم أي نوع آخر من الضرائب (باستثناء ضريبة القيمة المضافة)
+LocalTax1Management=النوع الثاني من الضرائب
 LocalTax1IsUsedExample=
 LocalTax1IsNotUsedExample=
-LocalTax2IsNotUsed=Do not use third tax
-LocalTax2IsUsedDesc=Use a third type of tax (other than VAT)
-LocalTax2IsNotUsedDesc=Do not use other type of tax (other than VAT)
-LocalTax2Management=Third type of tax
+LocalTax2IsNotUsed=لا تستخدم الضرائب الثالثة
+LocalTax2IsUsedDesc=استخدام نوع ثالث من الضرائب (باستثناء ضريبة القيمة المضافة)
+LocalTax2IsNotUsedDesc=لا تستخدم أي نوع آخر من الضرائب (باستثناء ضريبة القيمة المضافة)
+LocalTax2Management=النوع الثالث من الضريبة
 LocalTax2IsUsedExample=
 LocalTax2IsNotUsedExample=
 LocalTax1ManagementES= إدارة الطاقة المتجددة
-LocalTax1IsUsedDescES= معدل الطاقة المتجددة بشكل افتراضي عند احتمالات خلق ، والفواتير ، وأوامر الخ اتباع القاعدة نشط القياسية : <br> إذا لم تعرض الشركة المصرية للاتصالات لمشتري الطاقة المتجددة ، الطاقة المتجددة بشكل افتراضي = 0. نهاية الحكم. <br> في حال التعرض للمشتري بعد ذلك الطاقة المتجددة الطاقة المتجددة بشكل افتراضي. نهاية الحكم. <br>
+LocalTax1IsUsedDescES= معدل الطاقة المتجددة بشكل افتراضي عند احتمالات إنشاء ، والفواتير ، وأوامر الخ اتباع القاعدة نشط القياسية : <br> إذا لم تعرض الشركة المصرية للاتصالات لمشتري الطاقة المتجددة ، الطاقة المتجددة بشكل افتراضي = 0. نهاية الحكم. <br> في حال التعرض للمشتري بعد ذلك الطاقة المتجددة الطاقة المتجددة بشكل افتراضي. نهاية الحكم. <br>
 LocalTax1IsNotUsedDescES= افتراضيا الطاقة المتجددة المقترحة هي 0. نهاية الحكم.
 LocalTax1IsUsedExampleES= في اسبانيا هم من المهنيين تخضع لبعض المقاطع المحددة للشركة التعليم الصوتي التفاعلي الاسبانية.
 LocalTax1IsNotUsedExampleES= في اسبانيا هم المهنية والجمعيات وتخضع لقطاعات معينة من شركة التعليم الصوتي التفاعلي الاسبانية.
 LocalTax2ManagementES= IRPF الإدارة
-LocalTax2IsUsedDescES= معدل الطاقة المتجددة بشكل افتراضي عند احتمالات خلق ، والفواتير ، وأوامر الخ اتباع القاعدة نشط القياسية : <br> إذا لم يتم التعرض للبائع IRPF ، ثم IRPF افتراضيا = 0. نهاية الحكم. <br> في حال التعرض للبائع IRPF ثم IRPF افتراضيا. نهاية الحكم. <br>
+LocalTax2IsUsedDescES= معدل الطاقة المتجددة بشكل افتراضي عند احتمالات إنشاء ، والفواتير ، وأوامر الخ اتباع القاعدة نشط القياسية : <br> إذا لم يتم التعرض للبائع IRPF ، ثم IRPF افتراضيا = 0. نهاية الحكم. <br> في حال التعرض للبائع IRPF ثم IRPF افتراضيا. نهاية الحكم. <br>
 LocalTax2IsNotUsedDescES= افتراضيا IRPF المقترحة هي 0. نهاية الحكم.
 LocalTax2IsUsedExampleES= في اسبانيا ، لحسابهم الخاص والمهنيين المستقلين الذين يقدمون الخدمات والشركات الذين اختاروا النظام الضريبي من وحدات.
 LocalTax2IsNotUsedExampleES= في اسبانيا هم bussines لا تخضع لنظام ضريبي وحدات.
-CalcLocaltax=Reports on local taxes
-CalcLocaltax1=Sales - Purchases
-CalcLocaltax1Desc=Local Taxes reports are calculated with the difference between localtaxes sales and localtaxes purchases
-CalcLocaltax2=Purchases
-CalcLocaltax2Desc=Local Taxes reports are the total of localtaxes purchases
-CalcLocaltax3=Sales
-CalcLocaltax3Desc=Local Taxes reports are the total of localtaxes sales
+CalcLocaltax=تقارير عن الضرائب المحلية
+CalcLocaltax1=مبيعات - مشتريات
+CalcLocaltax1Desc=وتحسب تقارير الضرائب المحلية مع الفرق بين localtaxes المبيعات والمشتريات localtaxes
+CalcLocaltax2=مشتريات
+CalcLocaltax2Desc=تقارير الضرائب المحلية هي مجموعه localtaxes المشتريات
+CalcLocaltax3=مبيعات
+CalcLocaltax3Desc=تقارير الضرائب المحلية هي مجموعه localtaxes المبيعات
 LabelUsedByDefault=العلامة التي يستخدمها التقصير إذا لم يمكن العثور على ترجمة للقانون
 LabelOnDocuments=علامة على وثائق
 NbOfDays=ملاحظة : من الأيام
 AtEndOfMonth=في نهاية الشهر
 Offset=ويقابل
 AlwaysActive=حركة دائمة
-UpdateRequired=Your system needs to be updated. To do this, click on <a href=النظام يحتاج إلى تحديث. للقيام بذلك ، انقر فوق <a href="%s">تحديث الآن.</a>
+UpdateRequired=يحتاج إلى تحديث النظام الخاص بك. للقيام بذلك، انقر على <a href="%s">تحديث الآن.</a>
 Upgrade=ترقية
 MenuUpgrade=ترقية / توسيع
 AddExtensionThemeModuleOrOther=إضافة التمديد) الموضوع ، وحدة ،...)
@@ -895,7 +896,7 @@ PhpConf=Conf
 PhpWebLink=Php ربط الشبكة
 Pear=الكمثرى
 PearPackages=الكمثرى الحزم
-Browser=Browser
+Browser=المتصفح
 Server=الخادم
 Database=قاعدة بيانات
 DatabaseServer=قاعدة بيانات المضيف
@@ -930,8 +931,8 @@ DefaultMenuSmartphoneManager=الهاتف الذكي القائمة مدير
 Skin=موضوع الجلد
 DefaultSkin=موضوع التقصير الجلد
 MaxSizeList=الحد الأقصى لطول قائمة
-DefaultMaxSizeList=Default max length for lists
-DefaultMaxSizeShortList=Default max length for short lists (ie in customer card)
+DefaultMaxSizeList=افتراضي الطول الاقصى للقوائم
+DefaultMaxSizeShortList=طول الأقصى الافتراضي للقوائم قصيرة (أي في بطاقة العميل)
 MessageOfDay=رسالة اليوم
 MessageLogin=ادخل صفحة الرسالة
 PermanentLeftSearchForm=دائم البحث عن شكل القائمة اليمنى
@@ -947,14 +948,14 @@ CompanyZip=الرمز البريدي
 CompanyTown=مدينة
 CompanyCountry=قطر
 CompanyCurrency=العملة الرئيسية
-CompanyObject=Object of the company
-Logo=Logo
+CompanyObject=وجوه من الشركة
+Logo=شعار
 DoNotShow=لا تظهر
 DoNotSuggestPaymentMode=لا توحي
 NoActiveBankAccountDefined=لا يعرف في حساب مصرفي نشط
-OwnerOfBankAccount=صاحب الحساب المصرفي ق ٪
+OwnerOfBankAccount=صاحب الحساب المصرفي %s
 BankModuleNotActive=الحسابات المصرفية وحدة لا يمكن
-ShowBugTrackLink=Show link "<strong>%s</strong>"
+ShowBugTrackLink=مشاهدة الرابط <strong>"%s"</strong>
 ShowWorkBoard=وتظهر "طاولة العمل" على الصفحة الرئيسية
 Alerts=تنبيهات
 Delays=التأخير
@@ -963,6 +964,7 @@ DelaysBeforeWarning=محذرا من التأخير قبل
 DelaysOfToleranceBeforeWarning=محذرا من التأخير قبل التسامح
 DelaysOfToleranceDesc=تتيح لك هذه الشاشة لتحديد التأخير قبل السماح تنبيه يقال على الشاشة مع picto ٪ ق لكل عنصر في وقت متأخر.
 Delays_MAIN_DELAY_ACTIONS_TODO=تأخير التسامح (أيام) قبل اتخاذ إجراءات في حالة تأهب على المخطط لم تتحقق
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=تأخير التسامح (أيام) قبل تنبيه على أوامر لم
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=التسامح التأخير (في أيام) قبل التنبيه على أوامر الموردين لم تتم معالجة حتى الآن
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=التسامح التأخير (في يوم) في حالة تأهب على المقترحات المعروضة ليقفل
@@ -974,7 +976,7 @@ Delays_MAIN_DELAY_CUSTOMER_BILLS_UNPAYED=تأخير التسامح (في يوم)
 Delays_MAIN_DELAY_TRANSACTIONS_TO_CONCILIATE=تأخير التسامح (في يوم) في حالة تأهب قبل يوم في انتظار التسوية المصرفية
 Delays_MAIN_DELAY_MEMBERS=تأخير التسامح (في يوم) في حالة تأهب قبل يوم تأخير رسوم العضوية
 Delays_MAIN_DELAY_CHEQUES_TO_DEPOSIT=تأخير التسامح (في يوم) في حالة تأهب قبل لإيداع الشيكات للقيام
-Delays_MAIN_DELAY_EXPENSEREPORTS=Tolerance delay (in days) before alert for expense reports to approve
+Delays_MAIN_DELAY_EXPENSEREPORTS=تأخير التسامح (بالأيام) قبل حالة تأهب لتقارير النفقات الموافقة
 SetupDescription1=جميع البارامترات المتاحة في مجال الإعداد تسمح لك قبل البدء في الإعداد Dolibarr استخدامه.
 SetupDescription2=2 إن أهم الخطوات هي الإعداد 2 أول من غادر في إعداد القائمة ، وهذا يعني الشركة / المؤسسة صفحة إعداد صفحة إعداد وحدات :
 SetupDescription3=البارامترات في <b>إعداد</b> القائمة <b>--> الشركة / المؤسسة</b> المطلوب لأن مدخلات تستخدم المعلومات عن Dolibarr عرض وتعديل السلوك Dolibarr (على سبيل المثال لخصائص تتعلق بلدكم).
@@ -983,15 +985,15 @@ SetupDescription5=القيود الأخرى القائمة في إدارة اخ
 EventsSetup=الإعداد للمناسبات الجذوع
 LogEvents=مراجعة الحسابات الأحداث الأمنية
 Audit=المراجعة
-InfoDolibarr=Infos Dolibarr
-InfoBrowser=Infos Browser
-InfoOS=Infos OS
-InfoWebServer=Infos web server
-InfoDatabase=Infos database
-InfoPHP=Infos PHP
-InfoPerf=Infos performances
-BrowserName=Browser name
-BrowserOS=Browser OS
+InfoDolibarr=معلومات Dolibarr
+InfoBrowser=بقية المقال متصفح
+InfoOS=بقية المقال OS
+InfoWebServer=معلومات  خادم الويب
+InfoDatabase=معلومات قاعدة بيانات
+InfoPHP=بقية المقال PHP
+InfoPerf=بقية المقال العروض
+BrowserName=اسم المتصفح
+BrowserOS=متصفح OS
 ListEvents=مراجعة الأحداث
 ListOfSecurityEvents=قائمة الأحداث الأمنية Dolibarr
 SecurityEventsPurged=تطهير الاحداث الامنية
@@ -1002,10 +1004,10 @@ SystemAreaForAdminOnly=هذا المجال المتاح لمدير المستخ
 CompanyFundationDesc=تعديل على هذه الصفحة كل المعلومات المعروفة للشركة أو مؤسسة تحتاج لإدارة
 DisplayDesc=يمكنك ان تختار كل معلمة إلى Dolibarr هنا الشكل والمظهر
 AvailableModules=تتوفر وحدات
-DeprecatedModules=Deprecated modules
+DeprecatedModules=وحدات مستنكر
 ToActivateModule=لتفعيل وحدات ، على الإعداد منطقة الصفحة الرئيسية&gt; الإعداد -> الوحدات).
 SessionTimeOut=للمرة الخمسين
-SessionExplanation=تضمن هذا العدد أن الدورة لن ينتهي قبل هذا التأخير. PHP sessoin ولكن الإدارة لا الكفالة التي دائما تنتهي الدورة بعد هذا التأخير : ويحدث هذا إذا كان نظام لتنظيف مخبأ الدورة الجارية. <br> ملاحظة : مع أي نظام الداخلي PHP عملية تنظيف كل دورة حوالي <b>٪ ق / ق ٪</b> فقط ولكن وصول وصول أدلى به خلال دورات أخرى.
+SessionExplanation=تضمن هذا العدد أن الدورة لن ينتهي قبل هذا التأخير. PHP sessoin ولكن الإدارة لا الكفالة التي دائما تنتهي الدورة بعد هذا التأخير : ويحدث هذا إذا كان نظام لتنظيف مخبأ الدورة الجارية. <br> ملاحظة : مع أي نظام الداخلي PHP عملية تنظيف كل دورة حوالي <b>٪ ق / %s</b> فقط ولكن وصول وصول أدلى به خلال دورات أخرى.
 TriggersAvailable=محفزات متاحة
 TriggersDesc=يطلق الملفات التي سوف يتم تعديل سلوك Dolibarr العمل نسخها مرة واحدة في الدليل <b>htdocs / تضم / محفزات.</b> ادركوا إجراءات جديدة ، وتفعيله على Dolibarr الأحداث (انشاء الشركة الجديدة ، والمصادقة على الفواتير ،...).
 TriggerDisabledByName=يطلق في هذا الملف من قبل المعوقين لاحقة بين <b>NORUN</b> باسمهم.
@@ -1013,47 +1015,47 @@ TriggerDisabledAsModuleDisabled=يتسبب في تعطيل هذه الصورة 
 TriggerAlwaysActive=يطلق في هذا الملف هي حركة دائمة ، وتفعيل ما هي وحدات Dolibarr.
 TriggerActiveAsModuleActive=يطلق في هذا الملف كما ينشط حدة تمكين <b>٪ ق.</b>
 GeneratedPasswordDesc=هنا تعريف القاعدة التي تريد استخدامه لكلمة السر اذا كنت أسأل لصناعة السيارات ولدت كلمة السر
-DictionaryDesc=Define here all reference datas. You can complete predefined value with yours.
-ConstDesc=تسمح لك هذه الصفحة لتحرير جميع البارامترات الأخرى غير المتوفرة في الصفحات السابقة. فهي محفوظة لمعايير متقدمة للمطورين أو troubleshouting.
-OnceSetupFinishedCreateUsers=تحذير فأنت Dolibarr مدير المستخدم. مدير المستخدمين تستخدم لإعداد Dolibarr. لالمعتاد استخدام Dolibarr ، يوصى باستخدام غير مستخدم مدير خلق مجموعات من المستخدمين & القائمة.
+DictionaryDesc=تعريف هنا كل دتس المرجعية. يمكنك استكمال قيمة محددة مسبقا مع يدكم.
+ConstDesc=هذه الصفحة تسمح لك لتحرير جميع المحددات أخرى غير متوفرة في الصفحات السابقة. محجوزة أنها محدادت للمطورين متقدمة أو لحل المشاكل.
+OnceSetupFinishedCreateUsers=تحذير فأنت Dolibarr مدير المستخدم. مدير المستخدمين تستخدم لإعداد Dolibarr. لالمعتاد استخدام Dolibarr ، يوصى باستخدام غير مستخدم مدير إنشاء مجموعات من المستخدمين & القائمة.
 MiscellaneousDesc=هنا تعريف جميع البارامترات الأخرى ذات الصلة بالأمن.
 LimitsSetup=حدود / الدقيقة الإعداد
-LimitsDesc=يمكنك تحديد الحدود ، وoptimisations الايضاحات التي تستخدمها Dolibarr هنا
+LimitsDesc=يمكنك تعريف حدود، توضيحات وتحقيق أمثلية المستخدمة من قبل Dolibarr هنا
 MAIN_MAX_DECIMALS_UNIT=ماكس عشرية لأسعار الوحدات
 MAIN_MAX_DECIMALS_TOT=الحد الأقصى لمجموع أسعار عشرية
 MAIN_MAX_DECIMALS_SHOWN=ماكس عشرية لأسعار تظهر على الشاشة (يضاف هذا العدد <b>بعد...</b> إذا كنت تريد أن <b>ترى...</b> عندما العدد مبتورة عندما تظهر على الشاشة)
 MAIN_DISABLE_PDF_COMPRESSION=الاستخدام الشعبي للضغط الشعبي ولدت الملفات.
-MAIN_ROUNDING_RULE_TOT=Step of rounding range (for countries where rounding is done on something else than base 10. For example, put 0.05 if rounding is done by 0.05 steps)
+MAIN_ROUNDING_RULE_TOT=خطوة للتقريب النطاق (للبلدان التي يتم التقريب على شيء آخر من قاعدة 10. على سبيل المثال، وضعت 0.05 إذا تم التقريب بنسبة 0.05 الخطوات)
 UnitPriceOfProduct=صافي سعر وحدة من المنتج
 TotalPriceAfterRounding=إجمالي السعر الصافي / ضريبة القيمة المضافة / ضريبة مدفوع) بعد التقريب
 ParameterActiveForNextInputOnly=معلمة فعالة للمساهمة المقبل فقط
 NoEventOrNoAuditSetup=لا أمن الحدث وقد سجلت حتى الآن. هذا طبيعي ويمكن مراجعة الحسابات اذا لم يتم تمكين "الإعداد -- الأمن -- مراجعة" الصفحة.
 NoEventFoundWithCriteria=لا أمن حال تم العثور على مثل هذا البحث criterias.
-SeeLocalSendMailSetup=انظر المحلية الإعداد sendmail
+SeeLocalSendMailSetup=انظر الى إرسال البريد الإعداد المحلي
 BackupDesc=لتقديم دعم كامل للDolibarr ، يجب عليك :
-BackupDesc2=Save content of documents directory (<b>%s</b>) that contains all uploaded and generated files (So it includes all dump files generated at step 1).
-BackupDesc3=Save content of your database (<b>%s</b>) into a dump file. For this, you can use following assistant.
+BackupDesc2=حفظ محتويات الدليل وثائق <b>(٪) التي</b> تحتوي على كافة الملفات التي تم تحميلها ولدت (لذلك يشمل جميع ملفات تفريغ تم إنشاؤها في الخطوة 1).
+BackupDesc3=حفظ محتوى قاعدة البيانات الخاصة بك <b>(%s) في</b> ملف تفريغ. لهذا، يمكنك استخدام مساعد التالي.
 BackupDescX=الأرشيف دليل ينبغي أن تحفظ في مكان آمن.
 BackupDescY=وقد ولدت وينبغي التخلص من الملفات المخزنة في مكان آمن.
-BackupPHPWarning=Backup can't be guaranted with this method. Prefer previous one
+BackupPHPWarning=لا يمكن ضمان الخدمة الاحتياطية مع هذا الأسلوب. يفضل السابق
 RestoreDesc=Dolibarr لاستعادة النسخ الاحتياطي ، يجب عليك :
-RestoreDesc2=Restore archive file (zip file for example) of documents directory to extract tree of files in documents directory of a new Dolibarr installation or into this current documents directoy (<b>%s</b>).
-RestoreDesc3=Restore the data, from a backup dump file, into the database of the new Dolibarr installation or into the database of this current installation (<b>%s</b>). Warning, once restore is finished, you must use a login/password, that existed when backup was made, to connect again. To restore a backup database into this current installation, you can follow this assistant.
-RestoreMySQL=MySQL import
-ForcedToByAModule= هذه القاعدة <b>ق ٪</b> الى جانب تفعيل وحدة
+RestoreDesc2=استعادة ملف أرشيف (ملف مضغوط على سبيل المثال) من دليل الوثائق لاستخراج شجرة من الملفات في وثائق دليل تثبيت Dolibarr جديد أو إلى هذه الوثائق دليل الحالي <b>(%s).</b>
+RestoreDesc3=استعادة البيانات من ملف تفريغ النسخ الاحتياطي، في قاعدة بيانات التثبيت Dolibarr جديد أو إلى قاعدة البيانات من هذا التثبيت الحالي <b>(%s).</b> تحذير، بمجرد استعادة الانتهاء، يجب عليك استخدام تسجيل الدخول / كلمة المرور، التي كانت موجودة عندما تم النسخ الاحتياطي، والاتصال مرة أخرى. استعادة قاعدة بيانات النسخ الاحتياطي إلى هذا التثبيت الحالي، يمكنك اتباع هذا المساعد.
+RestoreMySQL=استيراد MySQL
+ForcedToByAModule= هذه القاعدة <b>%s</b> الى جانب تفعيل وحدة
 PreviousDumpFiles=متاح تفريغ النسخ الاحتياطي ملفات قاعدة البيانات
 WeekStartOnDay=أول يوم من الأسبوع
-RunningUpdateProcessMayBeRequired=تشغيل عملية الترقية ويبدو أن المطلوب (ليالي برامج الإصدار ٪ يختلف عن إصدار قاعدة بيانات ٪)
-YouMustRunCommandFromCommandLineAfterLoginToUser=يجب تشغيل هذا الأمر من سطر الأوامر بعد الدخول إلى قذيفة مع المستخدم <b>٪ ق.</b>
+RunningUpdateProcessMayBeRequired=تشغيل عملية الترقية ويبدو أن المطلوب (ليالي برامج الإصدار %s  يختلف عن إصدار قاعدة بيانات  %s )
+YouMustRunCommandFromCommandLineAfterLoginToUser=يجب تشغيل هذا الأمر من سطر الأوامر بعد تسجيل الدخول إلى قذيفة مع <b>المستخدم %s </b> أو يجب عليك إضافة خيار -w في نهاية سطر الأوامر <b>لتوفير %s </b> كلمة المرور.
 YourPHPDoesNotHaveSSLSupport=وظائف خدمة تصميم المواقع لا تتوفر في بي الخاص بك
 DownloadMoreSkins=مزيد من جلود بتحميل
-SimpleNumRefModelDesc=عودة الرقم المرجعي للتنسيق مع nnnn - ٪ syymm ث ث حيث هي السنة ، هو شهر ملم وnnnn هو تسلسل بدون ثقب ودون إعادة تعيين
+SimpleNumRefModelDesc=إرجاع الرقم المرجعي مع شكل %s  yymm-NNNN حيث هو YY العام، مم هو الشهر وnnnn هو تسلسل بدون ثقب وبدون إعادة تعيين
 ShowProfIdInAddress=إظهار رقم حرفي مع عناوين على وثائق
-ShowVATIntaInAddress=Hide VAT Intra num with addresses on documents
+ShowVATIntaInAddress=إخفاء ضريبة القيمة المضافة داخل الأسطوانات مع العناوين على الوثائق
 TranslationUncomplete=ترجمة جزئية
-SomeTranslationAreUncomplete=Some languages may be partially translated or may contains errors. If you detect some, you can fix language files registering to <a href="http://transifex.com/projects/p/dolibarr/" target="_blank">http://transifex.com/projects/p/dolibarr/</a>.
-MenuUseLayout=جعل القائمة العمودية hidable (يجب أن لا يتم تعطيل خيار جافا سكريبت)
-MAIN_DISABLE_METEO=تعطيل ميتيو رأي
+SomeTranslationAreUncomplete=بعض اللغات يمكن ترجمتها جزء منه أو تحتوي على أخطاء. إذا كنت الكشف عن بعض، يمكنك إصلاح ملفات اللغة التسجيل <a href="http://transifex.com/projects/p/dolibarr/" target="_blank">للhttp://transifex.com/projects/p/dolibarr/.</a>
+MenuUseLayout=جعل القائمة العمودية مخفية (يجب أن لا يتم تعطيل خيار جافا سكريبت)
+MAIN_DISABLE_METEO=تعطيل عرض ميتيو
 TestLoginToAPI=اختبار الدخول إلى API
 ProxyDesc=بعض ملامح Dolibarr في حاجة الى وصول الإنترنت إلى العمل. هنا تعريف المعلمات من أجل هذا. إذا كان الملقم Dolibarr خلف ملقم وكيل، هذه المعايير يقول Dolibarr كيفية الوصول إلى الإنترنت من خلال ذلك.
 ExternalAccess=وصول خارجي
@@ -1064,56 +1066,57 @@ MAIN_PROXY_USER=الدخول لاستخدام الملقم الوكيل
 MAIN_PROXY_PASS=كلمة مرور لاستخدام الملقم الوكيل
 DefineHereComplementaryAttributes=هنا تعريف جميع atributes، لا تتوفر بالفعل افتراضيا، والتي تريد أن تدعم ل%s.
 ExtraFields=تكميلية سمات
-ExtraFieldsLines=Complementary attributes (lines)
-ExtraFieldsSupplierOrdersLines=Complementary attributes (order lines)
-ExtraFieldsSupplierInvoicesLines=Complementary attributes (invoice lines)
-ExtraFieldsThirdParties=Complementary attributes (thirdparty)
-ExtraFieldsContacts=Complementary attributes (contact/address)
-ExtraFieldsMember=Complementary attributes (member)
-ExtraFieldsMemberType=Complementary attributes (member type)
-ExtraFieldsCustomerOrders=Complementary attributes (orders)
-ExtraFieldsCustomerInvoices=Complementary attributes (invoices)
-ExtraFieldsSupplierOrders=Complementary attributes (orders)
-ExtraFieldsSupplierInvoices=Complementary attributes (invoices)
-ExtraFieldsProject=Complementary attributes (projects)
-ExtraFieldsProjectTask=Complementary attributes (tasks)
-ExtraFieldHasWrongValue=Attribute %s has a wrong value.
-AlphaNumOnlyCharsAndNoSpace=only alphanumericals characters without space
-AlphaNumOnlyLowerCharsAndNoSpace=only alphanumericals and lower case characters without space
-SendingMailSetup=الإعداد من sendings عن طريق البريد الإلكتروني
+ExtraFieldsLines=سمات التكميلية (خطوط)
+ExtraFieldsSupplierOrdersLines=سمات التكميلية (خطوط النظام)
+ExtraFieldsSupplierInvoicesLines=سمات التكميلية (خطوط الفاتورة)
+ExtraFieldsThirdParties=سمات التكميلية (مرشحين عن)
+ExtraFieldsContacts=سمات التكميلية (الاتصال / العنوان)
+ExtraFieldsMember=سمات التكميلية (عضو)
+ExtraFieldsMemberType=سمات التكميلية (النوع الأعضاء)
+ExtraFieldsCustomerOrders=سمات التكميلية (أوامر)
+ExtraFieldsCustomerInvoices=سمات التكميلية (الفواتير)
+ExtraFieldsSupplierOrders=سمات التكميلية (أوامر)
+ExtraFieldsSupplierInvoices=سمات التكميلية (الفواتير)
+ExtraFieldsProject=سمات التكميلية (مشاريع)
+ExtraFieldsProjectTask=سمات التكميلية (المهام)
+ExtraFieldHasWrongValue=السمة %s له قيمة خاطئة.
+AlphaNumOnlyCharsAndNoSpace=فقط الأحرف والأرقام بدون فراغ
+AlphaNumOnlyLowerCharsAndNoSpace=alphanumericals فقط وشخصيات الحالة الأدنى دون الفضاء
+SendingMailSetup=الإعداد لإرسال البريد عن طريق البريد الإلكتروني
 SendmailOptionNotComplete=تحذير، في بعض أنظمة لينكس، لإرسال البريد الإلكتروني من البريد الإلكتروني الخاص بك، يجب أن تنسخ الإعداد تنفيذ conatins الخيار، على درجة البكالوريوس (mail.force_extra_parameters المعلمة في ملف php.ini الخاص بك). إذا كان بعض المستفيدين لم تلقي رسائل البريد الإلكتروني، في محاولة لتعديل هذه المعلمة PHP مع mail.force_extra_parameters =-BA).
 PathToDocuments=الطريق إلى وثائق
 PathDirectory=دليل
-SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
-TranslationSetup=Configuration de la traduction
-TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
-TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
-YouMustEnableOneModule=You must at least enable 1 module
-ClassNotFoundIntoPathWarning=Class %s not found into PHP path
-YesInSummer=Yes in summer
-OnlyFollowingModulesAreOpenedToExternalUsers=Note, only following modules are open to external users (whatever are permission of such users):
-SuhosinSessionEncrypt=Session storage encrypted by Suhosin
-ConditionIsCurrently=Condition is currently %s
-YouUseBestDriver=You use driver %s that is best driver available currently.
-YouDoNotUseBestDriver=You use drive %s but driver %s is recommended.
-NbOfProductIsLowerThanNoPb=You have only %s products/services into database. This does not required any particular optimization.
-SearchOptim=Search optimization
-YouHaveXProductUseSearchOptim=You have %s product into database. You should add the constant PRODUCT_DONOTSEARCH_ANYWHERE to 1 into Home-Setup-Other, you limit the search to the beginning of strings making possible for database to use index and you should get an immediate response.
-BrowserIsOK=You are using the web browser %s. This browser is ok for security and performance.
-BrowserIsKO=You are using the web browser %s. This browser is known to be a bad choice for security, performance and reliability. We recommand you to use Firefox, Chrome, Opera or Safari.
-XDebugInstalled=XDebug is loaded.
-XCacheInstalled=XCache is loaded.
-AddRefInList=Display customer/supplier ref into list (select list or combobox) and most of hyperlink. Third parties will appears with name "CC12345 - SC45678 - The big company coorp", instead of "The big company coorp".
-FieldEdition=Edition of field %s
-FillThisOnlyIfRequired=Example: +2 (fill only if timezone offset problems are experienced)
-GetBarCode=Get barcode
-EmptyNumRefModelDesc=The code is free. This code can be modified at any time.
+SendmailOptionMayHurtBuggedMTA=ميزة لإرسال رسائل باستخدام طريقة "البريد PHP مباشرة" سيتم إنشاء رسالة البريد الإلكتروني التي قد لا تحليل بشكل صحيح من قبل بعض ملقمات البريد المستقبلة. النتيجة هي أن بعض رسائل لا يمكن قراءتها من قبل الشعب الذي استضافته تلك البرامج تنصتت. انها حالة لبعض مزودي الانترنت (مثال: أورانج في فرنسا). هذه ليست مشكلة في Dolibarr ولا في PHP ولكن على استقبال خادم البريد. ولكن هل يمكن أن تضيف MAIN_FIX_FOR_BUGGED_MTA الخيار ل1 إلى الإعداد - البعض لتعديل Dolibarr لتجنب ذلك. ومع ذلك، قد تواجه مشكلة مع خوادم أخرى تحترم بدقة المعيار SMTP. الحل الآخر (موصى به) هو استخدام طريقة "مكتبة مأخذ SMTP" الذي لا يوجد لديه عيوب.
+TranslationSetup=التكوين دي لا TRADUCTION
+TranslationDesc=اختيار اللغة مرئية على الشاشة يمكن تعديلها: <br> * على الصعيد العالمي من القائمة <strong>الرئيسية - إعداد - عرض</strong> <br> * وبالنسبة للمستخدم فقط من <strong>عرض</strong> التبويب <strong>العضو</strong> من بطاقة المستخدم (اضغط على تسجيل الدخول على أعلى الشاشة).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
+TotalNumberOfActivatedModules=إجمالي عدد الوحدات ميزة <b>تنشيط: %s</b>
+YouMustEnableOneModule=يجب على الأقل تمكين 1 وحدة
+ClassNotFoundIntoPathWarning=لم يتم العثور على  %s في مسار PHP
+YesInSummer=نعم في الصيف
+OnlyFollowingModulesAreOpenedToExternalUsers=ملاحظة، وحدات فقط التالية مفتوحة للمستخدمين الخارجيين (أيا كان هي إذن من هؤلاء المستخدمين):
+SuhosinSessionEncrypt=تخزين جلسة المشفرة بواسطة Suhosin
+ConditionIsCurrently=الشرط هو حاليا %s
+YouUseBestDriver=استخدام سائق %s التي هو أفضل سائق المتاحة حاليا.
+YouDoNotUseBestDriver=استخدام يوصى قرص٪ s ولكن سائق%s.
+NbOfProductIsLowerThanNoPb=لديك %s فقط المنتجات / الخدمات إلى قاعدة البيانات. هذا لا يتطلب أي الأمثل معين.
+SearchOptim=البحث الأمثل
+YouHaveXProductUseSearchOptim=لديك منتج %s في قاعدة البيانات. يجب عليك إضافة PRODUCT_DONOTSEARCH_ANYWHERE ثابت إلى 1 في الصفحة الرئيسية الإعداد-أخرى، قصر البحث على بداية السلاسل مما يجعل من الممكن لقاعدة البيانات لاستخدام مؤشر ويجب أن تحصل على استجابة فورية.
+BrowserIsOK=كنت تستخدم متصفح الويب %s. هذا المتصفح على ما يرام بالنسبة للأمن والأداء.
+BrowserIsKO=كنت تستخدم متصفح الويب %s ويعرف هذا المتصفح أن يكون خيارا سيئا للأمن والأداء والموثوقية. نحن انصح لك استخدام فايرفوكس، كروم، أوبرا وسفاري.
+XDebugInstalled=XDebug غير محملة.
+XCacheInstalled=XCache غير محملة.
+AddRefInList=عرض العميل / المورد المرجع في قائمة (قائمة أو منسدل اختيار) وأكثر من الارتباط التشعبي. سوف أطراف ثالثة يظهر مع اسم "CC12345 - SC45678 - وcoorp شركة كبيرة"، بدلا من "وcoorp شركة كبيرة".
+FieldEdition=طبعة من ميدان%s
+FillThisOnlyIfRequired=مثال: +2 (ملء إلا إذا تعوض توقيت المشاكل من ذوي الخبرة)
+GetBarCode=الحصول على الباركود
+EmptyNumRefModelDesc=رمز مجانا. يمكن تعديل هذا القانون في أي وقت.
 ##### Module password generation
 PasswordGenerationStandard=عودة كلمة سر ولدت الداخلية وفقا لخوارزمية Dolibarr : 8 أحرف مشتركة تتضمن الأرقام والحروف في حرف صغير.
-PasswordGenerationNone=Do not suggest any generated password. Password must be typed in manually.
-PasswordGenerationPerso=Return a password according to your personally defined configuration.
-SetupPerso=According to your configuration
-PasswordPatternDesc=Password pattern description
+PasswordGenerationNone=لا توحي بأي كلمة المرور التي تم إنشاؤها. يجب أن تكتب كلمة المرور في يدويا.
+PasswordGenerationPerso=ترجع كلمة المرور الخاصة بك وفقا لتكوين المعرفة شخصيا.
+SetupPerso=وفقا لتكوين الخاصة بك
+PasswordPatternDesc=وصف نمط كلمة المرور
 ##### Users setup #####
 UserGroupSetup=مستخدمين والمجموعات وحدة الإعداد
 GeneratePassword=وتشير ولدت كلمة السر
@@ -1124,7 +1127,7 @@ DisableForgetPasswordLinkOnLogonPage=لا تظهر وصلة "نسيت كلمة 
 UsersSetup=شاهد الإعداد وحدة
 UserMailRequired=مطلوب بريد إلكتروني لإنشاء مستخدم جديد
 ##### HRM setup #####
-HRMSetup=HRM module setup
+HRMSetup=HRM وحدة الإعداد
 ##### Company setup #####
 CompanySetup=وحدة الإعداد للشركات
 CompanyCodeChecker=نموذج للجيل الثالث لقانون الأحزاب ومراجعة (عميل أو مورد)
@@ -1133,19 +1136,19 @@ ModuleCompanyCodeAquarium=عودة رمز المحاسبة التي بناها:
 ModuleCompanyCodePanicum=العودة فارغة مدونة المحاسبة.
 ModuleCompanyCodeDigitaria=قانون المحاسبة طرف ثالث يعتمد على الرمز. الشفرة تتكون من طابع "جيم" في المركز الأول يليه 5 الحروف الأولى من طرف ثالث المدونة.
 UseNotifications=استخدام الإخطارات
-NotificationsDesc=EMails notifications feature allows you to silently send automatic mail, for some Dolibarr events. Targets of notifications can be defined:<br>* per third parties contacts (customers or suppliers), one contact at time.<br>* or by setting global target email addresses in module setup page.
+NotificationsDesc=رسائل البريد الإلكتروني ميزة الإخطارات يسمح لك بصمت لإرسال البريد الآلي، لبعض الأحداث Dolibarr. أهداف الإخطارات يمكن تعريفها: <br> * في ثلث الأطراف الاتصالات (العملاء أو الموردين)، اتصل واحد في وقت و. <br> * أو عن طريق وضع عناوين البريد الإلكتروني المستهدفة العالمية في صفحة إعداد حدة.
 ModelModules=وثائق قوالب
-DocumentModelOdt=Generate documents from OpenDocuments templates (.ODT or .ODS files for OpenOffice, KOffice, TextEdit,...)
+DocumentModelOdt=توليد وثائق من OpenDocuments القوالب (.ODT أو .ODS ملفات أوفيس، كي أوفيس، برنامج TextEdit، ...)
 WatermarkOnDraft=علامة مائية على مشروع الوثيقة
-JSOnPaimentBill=Activate feature to autofill payment lines on payment form
+JSOnPaimentBill=ميزة تفعيل لتدوين كلمات خطوط المبلغ على شكل دفع
 CompanyIdProfChecker=المهنية معرف فريد
 MustBeUnique=يجب أن تكون فريدة من نوعها؟
-MustBeMandatory=Mandatory to create third parties ?
-MustBeInvoiceMandatory=Mandatory to validate invoices ?
+MustBeMandatory=إلزامية لإنشاء أطراف ثالثة؟
+MustBeInvoiceMandatory=إلزاميا للتحقق من صحة الفواتير؟
 Miscellaneous=متفرقات
 ##### Webcal setup #####
-WebCalSetup=Webcalendar ربط الإعداد
-WebCalSyncro=إضافة إلى Dolibarr الأحداث WebCalendar
+WebCalSetup=تقويم الويب ربط الإعداد
+WebCalSyncro=إضافة إلى Dolibarr الأحداث لتقويم الويب
 WebCalAllways=دائما ، لا يسأل
 WebCalYesByDefault=بناء على الطلب (نعم افتراضيا)
 WebCalNoByDefault=على الطلب (أي افتراضي)
@@ -1154,18 +1157,18 @@ WebCalURL=عنوان الجدول الزمني للحصول
 WebCalServer=خدمة استضافة قاعدة بيانات التقويم
 WebCalDatabaseName=اسم قاعدة البيانات
 WebCalUser=المستخدم من الوصول إلى قاعدة البيانات
-WebCalSetupSaved=أنقذ Webcalendar الإعداد بنجاح.
+WebCalSetupSaved=تم إعداد تقويم الويب بنجاح.
 WebCalTestOk=Connection to server '%s' on database '%s' with user '%s' successful.
-WebCalTestKo1=علاقة الخادم '٪ ق' تنجح ولكن قاعدة البيانات '٪ ق' لا يمكن التوصل إليها.
-WebCalTestKo2=علاقة الخادم '٪ ق' مستخدم '٪ ق' فشلت.
+WebCalTestKo1=علاقة الخادم '%s' تنجح ولكن قاعدة البيانات '%s'  لا يمكن التوصل إليها.
+WebCalTestKo2=علاقة الخادم'%s'  مستخدم '%s' فشلت.
 WebCalErrorConnectOkButWrongDatabase=نجح الصدد ولكن قاعدة البيانات لا يبدو أن Webcalendar في قاعدة البيانات.
-WebCalAddEventOnCreateActions=إضافة تقويم الحدث على خلق الأعمال
+WebCalAddEventOnCreateActions=إضافة تقويم الحدث على إنشاء الأعمال
 WebCalAddEventOnCreateCompany=إضافة جدول زمني بشأن إنشاء شركات
 WebCalAddEventOnStatusPropal=إضافة تقويم الحدث على مركز تجاري مقترحات التغيير
 WebCalAddEventOnStatusContract=إضافة تقويم حال تغير الوضع على العقود
 WebCalAddEventOnStatusBill=إضافة على مشاريع القوانين المدرجة في جدول تغيير الوضع
 WebCalAddEventOnStatusMember=إضافة تقويم الحدث على أعضاء مركز التغيير
-WebCalUrlForVCalExport=تصدير صلة <b>ق ٪</b> شكل متاح على الوصلة التالية : ٪ ق
+WebCalUrlForVCalExport=تصدير صلة <b>%s </b> شكل متاح على الوصلة التالية : %s
 WebCalCheckWebcalSetup=ربما Webcal نميطة الإعداد غير صحيح.
 ##### Invoices #####
 BillsSetup=وحدة إعداد الفواتير
@@ -1177,18 +1180,18 @@ CreditNotePDFModules=المذكرة وثيقة من وثائق الائتمان
 CreditNote=علما الائتمان
 CreditNotes=ويلاحظ الائتمان
 ForceInvoiceDate=قوة تاريخ الفاتورة تاريخ المصادقة على
-AllowCreditNoteWithoutRelatedInvoice=Allow to create credit note without a related invoice
+AllowCreditNoteWithoutRelatedInvoice=السماح لإنشاء ملاحظة الائتمان دون فاتورة ذات الصلة
 DisableRepeatable=تعطيل تكرار الفواتير
 SuggestedPaymentModesIfNotDefinedInInvoice=واقترح على طريقة دفع الفواتير تلقائيا اذا لم تعرف للفاتورة
 EnableEditDeleteValidInvoice=تتيح إمكانية تعديل أو حذف صحيحة دون دفع الفاتورة
 SuggestPaymentByRIBOnAccount=وتشير دفع سحب على حساب
 SuggestPaymentByChequeToAddress=وتشير إلى دفع الشيكات
 FreeLegalTextOnInvoices=نص حر على الفواتير
-WatermarkOnDraftInvoices=Watermark on draft invoices (none if empty)
-PaymentsNumberingModule=Payments numbering model
+WatermarkOnDraftInvoices=العلامة المائية على مشروع الفواتير (أي إذا فارغ)
+PaymentsNumberingModule=المدفوعات نموذج الترقيم
 ##### Proposals #####
 PropalSetup=وحدة إعداد مقترحات تجارية
-CreateForm=خلق أشكال
+CreateForm=إنشاء أشكال
 NumberOfProductLines=عدد خطوط الإنتاج
 ProposalsNumberingModules=اقتراح نماذج تجارية الترقيم
 ProposalsPDFModules=اقتراح نماذج الوثائق التجارية
@@ -1198,26 +1201,26 @@ AddShippingDateAbility=إضافة قدرة الشحن والتاريخ
 AddDeliveryAddressAbility=إضافة قدرة تاريخ التسليم
 UseOptionLineIfNoQuantity=خط من المنتجات / الخدمات ذات الصفر المبلغ يعتبر خيارا
 FreeLegalTextOnProposal=نص تجارية حرة على مقترحات
-WatermarkOnDraftProposal=Watermark on draft commercial proposals (none if empty)
-BANK_ASK_PAYMENT_BANK_DURING_PROPOSAL=Ask for bank account destination of proposal
+WatermarkOnDraftProposal=العلامة المائية على مشاريع المقترحات التجارية (أي إذا فارغ)
+BANK_ASK_PAYMENT_BANK_DURING_PROPOSAL=اسأل عن وجهة الحساب المصرفي للاقتراح
 ##### SupplierProposal #####
-SupplierProposalSetup=Price requests suppliers module setup
-SupplierProposalNumberingModules=Price requests suppliers numbering models
-SupplierProposalPDFModules=Price requests suppliers documents models
-FreeLegalTextOnSupplierProposal=Free text on price requests suppliers
-WatermarkOnDraftSupplierProposal=Watermark on draft price requests suppliers (none if empty)
-BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_PROPOSAL=Ask for bank account destination of price request
-WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER=Ask for Warehouse Source for order
+SupplierProposalSetup=يطلب سعر الإعداد الموردين وحدة
+SupplierProposalNumberingModules=طلبات الأسعار الموردين الذين يبلغ عددهم نماذج
+SupplierProposalPDFModules=يطلب سعر الموردين وثائق نماذج
+FreeLegalTextOnSupplierProposal=النص الحر على طلبات سعر الموردين
+WatermarkOnDraftSupplierProposal=العلامة المائية على مشروع سعر تطلب الموردين (أي إذا فارغ)
+BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_PROPOSAL=اسأل عن وجهة الحساب المصرفي للطلب السعر
+WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER=طلب مستودع المصدر لأمر
 ##### Orders #####
 OrdersSetup=أوامر إدارة الإعداد
 OrdersNumberingModules=أوامر الترقيم نمائط
 OrdersModelModule=وثائق من أجل النماذج
-HideTreadedOrders=Hide the treated or cancelled orders in the list
+HideTreadedOrders=إخفاء أوامر معالجتها أو إلغاؤها في القائمة
 ValidOrderAfterPropalClosed=للمصادقة على النظام بعد اقتراح أوثق ، لا يجعل من الممكن للخطوة من جانب النظام المؤقت
 FreeLegalTextOnOrders=بناء على أوامر النص الحر
-WatermarkOnDraftOrders=Watermark on draft orders (none if empty)
-ShippableOrderIconInList=Add an icon in Orders list which indicate if order is shippable
-BANK_ASK_PAYMENT_BANK_DURING_ORDER=Ask for bank account destination of order
+WatermarkOnDraftOrders=العلامة المائية على مشاريع المراسيم (أي إذا فارغ)
+ShippableOrderIconInList=إضافة رمز في قائمة الطلبيات التي تشير إلى أمر غير قابل للشحن إذا
+BANK_ASK_PAYMENT_BANK_DURING_ORDER=اسأل عن وجهة حساب مصرفي من أجل
 ##### Clicktodial #####
 ClickToDialSetup=انقر لإعداد وحدة الاتصال الهاتفي
 ClickToDialUrlDesc=ودعا الموقع عندما تنقر على الهاتف picto ذلك. Dans l' رابط ، vous pouvez utiliser ليه balises <br> <b>٪ ٪ 1 $ ق</b> qui الأمصال remplacé قدم المساواة جنيه téléphone دي l' appelé <br> <b>٪ ٪</b> 2 $ <b>ق</b> qui الأمصال remplacé لو قدم المساواة téléphone دي l' appelant جنيه مصري vôtre) <br> <b>٪ ٪ ل 3</b> دولار qui الأمصال remplacé vôtre ادخل clicktodial الفقرة (défini سور vôtre فيشه utilisateur) <br> <b>٪ ٪</b> 4 <b>$</b> ق qui الأمصال remplacé الفقرة vôtre يذكره دي clicktodial عتيق (défini سور vôtre فيشه utilisateur).
@@ -1228,14 +1231,14 @@ InterventionsSetup=وحدة التدخل الإعداد
 FreeLegalTextOnInterventions=حرر النص على وثائق التدخل
 FicheinterNumberingModules=الترقيم وحدات التدخل
 TemplatePDFInterventions=تدخل بطاقة نماذج الوثائق
-WatermarkOnDraftInterventionCards=Watermark on intervention card documents (none if empty)
+WatermarkOnDraftInterventionCards=علامة مائية على وثائق بطاقة التدخل (أي إذا فارغ)
 ##### Contracts #####
-ContractsSetup=Contracts/Subscriptions module setup
+ContractsSetup=عقود / وحدة الاشتراكات الإعداد
 ContractsNumberingModules=عقود ترقيم الوحدات
-TemplatePDFContracts=Contracts documents models
-FreeLegalTextOnContracts=Free text on contracts
-WatermarkOnDraftContractCards=Watermark on draft contracts (none if empty)
-ContractsAndServices=List of contracts and services
+TemplatePDFContracts=عقود الوثائق نماذج
+FreeLegalTextOnContracts=النص الحر على العقود
+WatermarkOnDraftContractCards=العلامة المائية على مسودات العقود (أي إذا فارغ)
+ContractsAndServices=قائمة العقود والخدمات
 ##### Members #####
 MembersSetup=أعضاء وحدة الإعداد
 MemberMainOptions=الخيارات الرئيسية
@@ -1282,9 +1285,9 @@ LDAPDnSynchroActive=مستخدمين والمجموعات التزامن
 LDAPDnSynchroActiveExample=LDAP لDolibarr أو Dolibarr لتزامن LDAP
 LDAPDnContactActive=اتصالات تزامن
 LDAPDnContactActiveYes=تفعيل التزامن
-LDAPDnContactActiveExample=تفعيل / Unactivated التزامن
+LDAPDnContactActiveExample=تنشيط /  تعطيل  التزامن
 LDAPDnMemberActive=أعضاء تزامن
-LDAPDnMemberActiveExample=تفعيل / Unactivated التزامن
+LDAPDnMemberActiveExample=تنشيط /  تعطيل  التزامن
 LDAPContactDn=Dolibarr اتصالات 'DN
 LDAPContactDnExample=Complete DN (ex: ou=contacts,dc=society,dc=DN الكامل (مثلا : où= اتصالات العاصمة= المجتمع ، العاصمة= كوم)
 LDAPMemberDn=Dolibarr الأعضاء DN
@@ -1304,7 +1307,7 @@ LDAPTestSynchroContact=اختبار الاتصال 'sالتزامن
 LDAPTestSynchroUser=تجربة المستخدم التزامن
 LDAPTestSynchroGroup=اختبار المجموعة التزامن
 LDAPTestSynchroMember=اختبار العضو التزامن
-LDAPTestSearch= Test a LDAP search
+LDAPTestSearch= اختبار البحث LDAP
 LDAPSynchroOK=تزامن اختبار ناجح
 LDAPSynchroKO=فشل تزامن الاختبار
 LDAPSynchroKOMayBePermissions=تزامن فشل الاختبار. تأكد من أن ارتباط لخادم تهيئتها بشكل صحيح ، ويسمح LDAP udpates
@@ -1326,7 +1329,7 @@ LDAPFilterConnection=البحث عن مرشح
 LDAPFilterConnectionExample=Example : &(objectClass=مثال ذلك : & (objectClass= inetOrgPerson)
 LDAPFieldLoginSamba=ادخل (سامبا ، activedirectory)
 LDAPFieldLoginSambaExample=مثال ذلك : samaccountname
-LDAPFieldFullname=Firstname الاسم
+LDAPFieldFullname=الاسم الكامل
 LDAPFieldFullnameExample=مثال ذلك : cn
 LDAPFieldPassword=كلمة السر
 LDAPFieldPasswordNotCrypted=كلمة السر لا crypted
@@ -1335,15 +1338,15 @@ LDAPFieldPasswordExample=مثال ذلك : userPassword
 LDAPFieldCommonName=اسم عام
 LDAPFieldCommonNameExample=مثال ذلك : cn
 LDAPFieldName=اسم
-LDAPFieldNameExample=مثال ذلك : كيشور
-LDAPFieldFirstName=Firstname
-LDAPFieldFirstNameExample=مثال ذلك : givenname
+LDAPFieldNameExample=مثال ذلك : cn
+LDAPFieldFirstName=الاسم الأول
+LDAPFieldFirstNameExample=على سبيل المثال: الاسم
 LDAPFieldMail=عنوان البريد الإلكتروني
 LDAPFieldMailExample=على سبيل المثال : البريد الإلكتروني
 LDAPFieldPhone=رقم الهاتف المهني
-LDAPFieldPhoneExample=مثال ذلك : telephonenumber
+LDAPFieldPhoneExample=مثال ذلك : رقم الهاتف
 LDAPFieldHomePhone=رقم الهاتف الشخصي
-LDAPFieldHomePhoneExample=مثال ذلك : homephone
+LDAPFieldHomePhoneExample=مثال ذلك : هاتف المنزل
 LDAPFieldMobile=الهاتف الخليوي
 LDAPFieldMobileExample=مثال ذلك : الجوال
 LDAPFieldFax=رقم الفاكس
@@ -1351,17 +1354,17 @@ LDAPFieldFaxExample=مثال ذلك : facsimiletelephonenumber
 LDAPFieldAddress=الشارع
 LDAPFieldAddressExample=على سبيل المثال : في الشارع
 LDAPFieldZip=الرمز البريدي
-LDAPFieldZipExample=مثلا : الرمز البريدي
-LDAPFieldTown=مدينة
+LDAPFieldZipExample=مثلا :صندوق البريد
+LDAPFieldTown=بلدة
 LDAPFieldTownExample=على سبيل المثال : ل
 LDAPFieldCountry=قطر
 LDAPFieldCountryExample=على سبيل المثال : (ج)
 LDAPFieldDescription=وصف
 LDAPFieldDescriptionExample=مثال ذلك : وصف
-LDAPFieldNotePublic=Public Note
-LDAPFieldNotePublicExample=Example : publicnote
+LDAPFieldNotePublic=ملاحظة عامة
+LDAPFieldNotePublicExample=مثال: publicnote
 LDAPFieldGroupMembers= أعضاء الفريق
-LDAPFieldGroupMembersExample= على سبيل المثال : uniqueMember
+LDAPFieldGroupMembersExample= مثال: uniqueMember
 LDAPFieldBirthdate=تاريخ الميلاد
 LDAPFieldBirthdateExample=على سبيل المثال :
 LDAPFieldCompany=شركة
@@ -1370,8 +1373,8 @@ LDAPFieldSid=سيد
 LDAPFieldSidExample=مثال ذلك : objectsid
 LDAPFieldEndLastSubscription=تاريخ انتهاء الاكتتاب
 LDAPFieldTitle=وظيفة / وظيفة
-LDAPFieldTitleExample=Example: title
-LDAPParametersAreStillHardCoded=LDAP parameters are still hardcoded (in contact class)
+LDAPFieldTitleExample=مثال: اللقب
+LDAPParametersAreStillHardCoded=لا تزال ضمنية المعلمات LDAP (في الدرجة الاتصال)
 LDAPSetupNotComplete=LDAP الإعداد غير كاملة (على آخرين علامات التبويب)
 LDAPNoUserOrPasswordProvidedAccessIsReadOnly=أي مدير أو كلمة السر. LDAP الوصول مجهولة وسيكون في قراءة فقط.
 LDAPDescContact=تسمح لك هذه الصفحة لتحديد اسم LDAP الصفات LDAP شجرة في كل البيانات التي وجدت على Dolibarr الاتصالات.
@@ -1380,24 +1383,24 @@ LDAPDescGroups=تسمح لك هذه الصفحة لتحديد اسم LDAP الص
 LDAPDescMembers=تسمح لك هذه الصفحة لتحديد اسم LDAP الصفات LDAP شجرة في كل البيانات التي وجدت على Dolibarr أعضاء الوحدة.
 LDAPDescValues=مثال قيم تهدف <b>لOpenLDAP</b> مع مخططات بعد تحميلها : <b>core.schema ، cosine.schema ، inetorgperson.schema).</b> إذا كنت تستخدم thoose القيم وOpenLDAP تعديل LDAP الخاص بك ملف <b>slapd.conf</b> لجميع مخططات thoose تحميله.
 ForANonAnonymousAccess=لصحتها accès (لكتابة الحصول على سبيل المثال)
-PerfDolibarr=Performance setup/optimizing report
-YouMayFindPerfAdviceHere=You will find on this page some checks or advices related to performance.
-NotInstalled=Not installed, so your server is not slow down by this.
-ApplicativeCache=Applicative cache
-MemcachedNotAvailable=No applicative cache found. You can enhance performance by installing a cache server Memcached and a module able to use this cache server.<br>More information here <a href="http://wiki.dolibarr.org/index.php/Module_MemCached_EN">http://wiki.dolibarr.org/index.php/Module_MemCached_EN</a>.<br>Note that a lot of web hosting provider does not provide such cache server.
-MemcachedModuleAvailableButNotSetup=Module memcached for applicative cache found but setup of module is not complete.
-MemcachedAvailableAndSetup=Module memcached dedicated to use memcached server is enabled.
-OPCodeCache=OPCode cache
-NoOPCodeCacheFound=No OPCode cache found. May be you use another OPCode cache than XCache or eAccelerator (good), may be you don't have OPCode cache (very bad).
-HTTPCacheStaticResources=HTTP cache for static resources (css, img, javascript)
-FilesOfTypeCached=Files of type %s are cached by HTTP server
-FilesOfTypeNotCached=Files of type %s are not cached by HTTP server
-FilesOfTypeCompressed=Files of type %s are compressed by HTTP server
-FilesOfTypeNotCompressed=Files of type %s are not compressed by HTTP server
-CacheByServer=Cache by server
-CacheByClient=Cache by browser
-CompressionOfResources=Compression of HTTP responses
-TestNotPossibleWithCurrentBrowsers=Such an automatic detection is not possible with current browsers
+PerfDolibarr=الإعداد أداء / تحسين تقرير
+YouMayFindPerfAdviceHere=سوف تجد في هذه الصفحة بعض الشيكات أو النصائح المتعلقة بالأداء.
+NotInstalled=غير مثبتة، لذلك الخادم الخاص بك لا تبطئ من هذا الأمر.
+ApplicativeCache=مخبأ تطبيقي
+MemcachedNotAvailable=لم يتم العثور على مخبأ تطبيقي. يمكنك تحسين الأداء عن طريق تثبيت أعطها مخبأ خادم وحدة قادرة على استخدام هذا الخادم ذاكرة التخزين المؤقت. <br> مزيد من المعلومات هنا <a href="http://wiki.dolibarr.org/index.php/Module_MemCached_EN">http://wiki.dolibarr.org/index.php/Module_MemCached_EN.</a> <br> لاحظ أن الكثير من مزود استضافة المواقع لا توفر مثل هذا الخادم ذاكرة التخزين المؤقت.
+MemcachedModuleAvailableButNotSetup=وحدة أعطها لمخبأ تطبيقي وجدت ولكن الإعداد من وحدة ليست كاملة.
+MemcachedAvailableAndSetup=يتم تمكين أعطها حدة مخصصة لاستخدام الخادم أعطها.
+OPCodeCache=مخبأ شفرة التشغيل
+NoOPCodeCacheFound=لم يتم العثور على مخبأ شفرة التشغيل. قد تكون استخدمت مخبأ شفرة تشغيل آخر من XCache أو eAccelerator (جيد)، قد يكون لم يكن لديك ذاكرة التخزين المؤقت شفرة التشغيل (سيئة جدا).
+HTTPCacheStaticResources=مخبأ HTTP للموارد ثابتة (المغلق، IMG، وجافا سكريبت)
+FilesOfTypeCached=يتم التخزين المؤقت الملفات من نوع%s من قبل خادم HTTP
+FilesOfTypeNotCached=لا يتم التخزين المؤقت الملفات من نوع %s  من قبل خادم HTTP
+FilesOfTypeCompressed=يتم ضغط الملفات من نوع %s من قبل خادم HTTP
+FilesOfTypeNotCompressed=لا يتم ضغط الملفات من نوع %s من قبل خادم HTTP
+CacheByServer=ذاكرة التخزين المؤقت من قبل خادم
+CacheByClient=الذاكرة المخبئية من خلال متصفح
+CompressionOfResources=ضغط الردود HTTP
+TestNotPossibleWithCurrentBrowsers=مثل هذا الكشف التلقائي غير ممكن مع المتصفحات الحالية
 ##### Products #####
 ProductSetup=المنتجات وحدة الإعداد
 ServiceSetup=خدمات وحدة الإعداد
@@ -1406,18 +1409,18 @@ NumberOfProductShowInSelect=Max number of products in combos select lists (0=ا
 ConfirmDeleteProductLineAbility=تأكيد عندما إزالة خطوط الإنتاج في الأشكال
 ModifyProductDescAbility=الشخصي من الأشكال في وصف المنتج
 ViewProductDescInFormAbility=تصور وصف المنتج في أشكال (ما المنبثقة tooltip)
-MergePropalProductCard=Activate in product/service Attached Files tab an option to merge product PDF document to proposal PDF azur if product/service is in the proposal
+MergePropalProductCard=في تنشيط المنتج / الخدمة المرفقة التبويب ملفات خيار دمج المستند المنتج PDF إلى اقتراح PDF دازور إذا كان المنتج / الخدمة في الاقتراح
 ViewProductDescInThirdpartyLanguageAbility=تصور من أوصاف المنتجات في لغة مرشحين عن
-UseMaskOnClone=Use product next ref when we clone a product%s (available if mask configured)
-UseSearchToSelectProductTooltip=Also if you have a large number of product (> 100 000), you can increase speed by setting constant PRODUCT_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
-UseSearchToSelectProduct=Use a search form to choose a product (rather than a drop-down list).
+UseMaskOnClone=استخدام المنتج المرجع المقبل عندما كنا استنساخ منتج%s (متوفر إذا قناع تكوينها)
+UseSearchToSelectProductTooltip=أيضا إذا كان لديك عدد كبير من المنتجات (> 100 000)، يمكنك زيادة السرعة عن طريق وضع PRODUCT_DONOTSEARCH_ANYWHERE ثابت إلى 1 في الإعداد، <أخرى. وبعد ذلك البحث أن يقتصر على بداية السلسلة.
+UseSearchToSelectProduct=استخدام نموذج البحث لاختيار المنتج (بدلا من القائمة المنسدلة).
 UseEcoTaxeAbility=الدعم الاقتصادي Taxe (WEEE)
 SetDefaultBarcodeTypeProducts=النوع الافتراضي لاستخدام الباركود للمنتجات
 SetDefaultBarcodeTypeThirdParties=النوع الافتراضي لاستخدام الباركود لأطراف ثالثة
-UseUnits=Define a unit of measure for Quantity during order, proposal or invoice lines edition
-ProductCodeChecker= Module for product code generation and checking (product or service)
-ProductOtherConf= Product / Service configuration
-IsNotADir=is not a directory!
+UseUnits=تحديد وحدة قياس لكمية خلال النظام، الطبعة اقتراح أو فاتورة خطوط
+ProductCodeChecker= وحدة لتوليد رمز المنتج والتحقق (المنتج أو الخدمة)
+ProductOtherConf= المنتج / الخدمة التكوين
+IsNotADir=ليس دليل!
 ##### Syslog #####
 SyslogSetup=Syslog حدة الإعداد
 SyslogOutput=سجل الناتج
@@ -1427,10 +1430,10 @@ SyslogLevel=المستوى
 SyslogSimpleFile=ملف
 SyslogFilename=اسم الملف ومسار
 YouCanUseDOL_DATA_ROOT=يمكنك استخدام DOL_DATA_ROOT / dolibarr.log لملف الدخول في Dolibarr "وثائق" دليل. يمكنك أن تحدد مسارا مختلفا لتخزين هذا الملف.
-ErrorUnknownSyslogConstant=ق المستمر ٪ ليست معروفة syslog مستمر
-OnlyWindowsLOG_USER=Windows only supports LOG_USER
-SyslogSentryDSN=Sentry DSN
-SyslogSentryFromProject=DSN from your Sentry project
+ErrorUnknownSyslogConstant=ثابت %s ليس ثابت سيسلوغ معروفة
+OnlyWindowsLOG_USER=نوافذ يعتمد فقط LOG_USER
+SyslogSentryDSN=ترقب DSN
+SyslogSentryFromProject=DSN من مشروع ترقب بك
 ##### Donations #####
 DonationsSetup=وحدة الإعداد للتبرع
 DonationsReceiptModel=قالب من استلام التبرع
@@ -1448,11 +1451,11 @@ BarcodeDescUPC=الباركود نوع من اتحاد الوطنيين الكو
 BarcodeDescISBN=الباركود من نوع ردمك
 BarcodeDescC39=الباركود من نوع C39
 BarcodeDescC128=الباركود من نوع C128
-BarcodeDescDATAMATRIX=Barcode of type Datamatrix
-BarcodeDescQRCODE=Barcode of type QR code
-GenbarcodeLocation=Bar code generation command line tool (used by internal engine for some bar code types). Must be compatible with "genbarcode".<br>For example: /usr/local/bin/genbarcode
+BarcodeDescDATAMATRIX=الباركود من نوع DATAMATRIX
+BarcodeDescQRCODE=الباركود من نوع رمز الاستجابة السريعة
+GenbarcodeLocation=شريط أدوات سطر الأوامر رمز جيل (التي يستخدمها محرك داخلي لبعض أنواع الرمز الشريطي). يجب أن تكون متوافقة مع "genbarcode". <br> على سبيل المثال: / البيرة / المحلية / بن / genbarcode
 BarcodeInternalEngine=Internal engine
-BarCodeNumberManager=Manager to auto define barcode numbers
+BarCodeNumberManager=مدير لصناعة السيارات تحديد أرقام الباركود
 ##### Prelevements #####
 WithdrawalsSetup=انسحاب وحدة الإعداد
 ##### ExternalRSS #####
@@ -1464,42 +1467,42 @@ RSSUrlExample=An interesting RSS feed
 MailingSetup=إعداد وحدة الارسال بالبريد الالكتروني
 MailingEMailFrom=مرسل البريد الالكتروني (من) لرسائل البريد الإلكتروني التي بعث بها وحدة الإنترنت
 MailingEMailError=بريد إلكتروني العودة (إلى أخطاء) لرسائل البريد الإلكتروني مع الأخطاء
-MailingDelay=Seconds to wait after sending next message
+MailingDelay=ثواني الانتظار بعد إرسال الرسالة التالية
 ##### Notification #####
 NotificationSetup=EMail notification module setup
 NotificationEMailFrom=مرسل البريد الالكتروني (من) لإرسال رسائل البريد الإلكتروني لالإخطارات
-ListOfAvailableNotifications=List of events you can set notification on, for each thirdparty (go into thirdparty card to setup) or by setting a fixed email (List depends on activated modules)
-FixedEmailTarget=Fixed email target
+ListOfAvailableNotifications=قائمة الأحداث يمكنك تعيين الإعلام على، لكل مرشحين عن (الذهاب إلى بطاقة مرشحين عن الإعداد) أو عن طريق وضع البريد الإلكتروني ثابت (القائمة يعتمد على وحدات المنشط)
+FixedEmailTarget=الهدف بريدك ثابت
 ##### Sendings #####
 SendingsSetup=ارسال وحدة الإعداد
 SendingsReceiptModel=ارسال استلام نموذج
 SendingsNumberingModules=Sendings ترقيم الوحدات
-SendingsAbility=Support shipping sheets for customer deliveries
+SendingsAbility=أوراق دعم الشحن للشحنات العملاء
 NoNeedForDeliveryReceipts=في معظم الحالات ، تستخدم الإرسال إيصالات سواء صحائف لتسليم العميل (قائمة المنتجات ارسال) ، وصحائف التي وقعت عليها recevied الزبون. حتى المنتج تسليم الإيصالات هي سمة مزدوجة ونادرا ما تفعيلها.
-FreeLegalTextOnShippings=Free text on shipments
+FreeLegalTextOnShippings=النص الحر على الشحنات
 ##### Deliveries #####
 DeliveryOrderNumberingModules=تلقي شحنات المنتجات الترقيم وحدة
 DeliveryOrderModel=تلقي شحنات المنتجات النموذجية
 DeliveriesOrderAbility=دعم المنتجات تسليم الإيصالات
-FreeLegalTextOnDeliveryReceipts=نص حر بتسليم إيصالات
+FreeLegalTextOnDeliveryReceipts=النص الحر على إيصالات التسليم
 ##### FCKeditor #####
-AdvancedEditor=متقدمة محرر
-ActivateFCKeditor=تفعيل FCKeditor ل:
+AdvancedEditor=محرر متقدم
+ActivateFCKeditor=تفعيل محرر متقدم ل:
 FCKeditorForCompany=WYSIWIG إنشاء / الطبعة شركات ووصف المذكرة
 FCKeditorForProduct=WYSIWIG إنشاء / الطبعة المنتجات / الخدمات ووصف المذكرة
-FCKeditorForProductDetails=WYSIWIG creation/edition of products details lines for all entities (proposals, orders, invoices, etc...). <font class="warning">Warning: Using this option for this case is seriously not recommended as it can create problems with special characters and page formating when building PDF files.</font>
+FCKeditorForProductDetails=WYSIWIG إنشاء / طبعة من المنتجات تفاصيل الخطوط لجميع الكيانات (المقترحات والأوامر، والفواتير، الخ ...) <font class="warning">تحذير: استخدام هذا الخيار لهذه الحالة على محمل الجد ليس الموصى بها لأنها يمكن أن تخلق مشاكل مع الأحرف الخاصة وصيغة الصفحة عند بناء PDF الملفات.</font>
 FCKeditorForMailing= WYSIWIG إنشاء / الطبعة بالبريد
-FCKeditorForUserSignature=WYSIWIG creation/edition of user signature
-FCKeditorForMail=WYSIWIG creation/edition for all mail (except Outils->eMailing)
+FCKeditorForUserSignature=إنشاء WYSIWIG / طبعة التوقيع المستعمل
+FCKeditorForMail=إنشاء WYSIWIG / طبعة لجميع البريد (ما عدا Outils-> إرساله عبر البريد الإلكتروني)
 ##### OSCommerce 1 #####
-OSCommerceErrorConnectOkButWrongDatabase=نجح الصدد ولكن قاعدة البيانات لا يبدو أن قاعدة بيانات OSCommerce (ق ٪ الرئيسية غير موجودة في الجدول ٪).
-OSCommerceTestOk=علاقة الخادم '٪ ق' على قاعدة البيانات '٪ ق' مستخدم '٪ ق' ناجحة.
-OSCommerceTestKo1=علاقة الخادم '٪ ق' تنجح ولكن قاعدة البيانات '٪ ق' لا يمكن التوصل إليها.
-OSCommerceTestKo2=علاقة الخادم '٪ ق' مستخدم '٪ ق' فشلت.
+OSCommerceErrorConnectOkButWrongDatabase=نجح الصدد ولكن قاعدة البيانات لا يبدو أن قاعدة بيانات OSCommerce (%s  الرئيسية غير موجودة في الجدول %s ).
+OSCommerceTestOk=اتصال الخادم '%s ' على قاعدة البيانات '%s ' مع المستخدم '%s ' النجاح.
+OSCommerceTestKo1=علاقة الخادم '%s ' تنجح ولكن قاعدة البيانات '%s ' لا يمكن التوصل إليها.
+OSCommerceTestKo2=علاقة الخادم '%s ' مستخدم '%s ' فشلت.
 ##### Stock #####
-StockSetup=Warehouse module setup
-UserWarehouse=Use user personal warehouses
-IfYouUsePointOfSaleCheckModule=If you use a Point of Sale module (POS module provided by default or another external module), this setup may be ignored by your Point Of Sale module. Most point of sales modules are designed to create immediatly an invoice and decrease stock by default whatever are options here. So, if you need or not to have a stock decrease when registering a sell from your Point Of Sale, check also your POS module set up.
+StockSetup=مستودع وحدة الإعداد
+UserWarehouse=استخدام المستخدم المستودعات الشخصية
+IfYouUsePointOfSaleCheckModule=إذا كنت تستخدم نقاط البيع وحدة (وحدة POS قدمت افتراضيا أو وحدة خارجية أخرى)، قد يتم تجاهل هذا الإعداد من خلال وجهة نظرك من بيع وحدة. تم تصميم معظم نقطة من وحدات المبيعات لخلق الفور فاتورة وانخفاض الأسهم افتراضيا كل ما هي الخيارات المتاحة هنا. لذلك، إذا كنت في حاجة أو ليس لديهم انخفاض الأسهم عند تسجيل بيع من وجهة نظرك من بيع، وتحقق أيضا مجموعة وحدة POS الخاص بك.
 ##### Menu #####
 MenuDeleted=حذف من القائمة
 TreeMenu=شجرة القوائم
@@ -1529,15 +1532,15 @@ DetailLevel=المستوى (-1 : الأعلى ، 0 : رأس القائمة ،&gt
 ModifMenu=قائمة التغيير
 DeleteMenu=حذف من القائمة الدخول
 ConfirmDeleteMenu=هل أنت متأكد من أنك تريد حذف القائمة دخول <b>٪ ق؟</b>
-FailedToInitializeMenu=Failed to initialize menu
+FailedToInitializeMenu=فشل في تهيئة القائمة
 ##### Tax #####
-TaxSetup=Taxes, social or fiscal taxes and dividends module setup
+TaxSetup=الضرائب، الضرائب الاجتماعية أو المالية وتوزيعات الأرباح الإعداد حدة
 OptionVatMode=ضريبة القيمة المضافة المستحقة
-OptionVATDefault=Cash basis
-OptionVATDebitOption=Accrual basis
+OptionVATDefault=الأساس النقدي
+OptionVATDebitOption=أساس الاستحقاق
 OptionVatDefaultDesc=ومن المقرر ان ضريبة القيمة المضافة : <br> -- التسليم / الدفع للسلع <br> -- على دفع تكاليف الخدمات
 OptionVatDebitOptionDesc=ومن المقرر ان ضريبة القيمة المضافة : <br> -- التسليم / الدفع للسلع <br> -- على الفاتورة (الخصم) للخدمات
-SummaryOfVatExigibilityUsedByDefault=Time of VAT exigibility by default according to chosen option:
+SummaryOfVatExigibilityUsedByDefault=وقت exigibility VAT افتراضيا وفقا لخيار المختار:
 OnDelivery=التسليم
 OnPayment=عن الدفع
 OnInvoice=على فاتورة
@@ -1548,51 +1551,51 @@ Sell=يبيع
 InvoiceDateUsed=فاتورة تاريخ المستخدمة
 YourCompanyDoesNotUseVAT=وقد تم تسجيل شركة محددة لعدم استخدام ضريبة القيمة المضافة (الصفحة الرئيسية -- إعداد -- شركة / مؤسسة) ، لذلك لا يوجد خيارات لضريبة القيمة المضافة الإعداد.
 AccountancyCode=قانون المحاسبة
-AccountancyCodeSell=Sale account. code
-AccountancyCodeBuy=Purchase account. code
+AccountancyCodeSell=حساب بيع. رمز
+AccountancyCodeBuy=شراء الحساب. رمز
 ##### Agenda #####
 AgendaSetup=جدول الأعمال وحدة الإعداد
 PasswordTogetVCalExport=مفتاح ربط تصدير تأذن
 PastDelayVCalExport=لا تصدر الحدث الأكبر من
-AGENDA_USE_EVENT_TYPE=Use events types (managed into menu Setup -> Dictionary -> Type of agenda events)
-AGENDA_USE_EVENT_TYPE_DEFAULT=Set automatically this default value for type of event into event create form
-AGENDA_DEFAULT_FILTER_TYPE=Set automatically this type of event into search filter of agenda view
-AGENDA_DEFAULT_FILTER_STATUS=Set automatically this status for events into search filter of agenda view
-AGENDA_DEFAULT_VIEW=Which tab do you want to open by default when selecting menu Agenda
+AGENDA_USE_EVENT_TYPE=استخدام الأحداث أنواع (إدارة في إعداد القائمة -> قاموس -> النوع من الأحداث جدول الأعمال)
+AGENDA_USE_EVENT_TYPE_DEFAULT=تلقائيا تعيين هذه القيمة الافتراضية لنوع من الحدث إلى الحدث إنشاء النموذج
+AGENDA_DEFAULT_FILTER_TYPE=تلقائيا تعيين هذا النوع من الأحداث في تصفية بحثا عن عرض جدول الأعمال
+AGENDA_DEFAULT_FILTER_STATUS=تلقائيا تعيين هذه الحالة مع الأحداث في تصفية بحثا عن عرض جدول الأعمال
+AGENDA_DEFAULT_VIEW=علامة التبويب التي تريد فتح افتراضيا عند اختيار القائمة جدول الأعمال
 ##### ClickToDial #####
-ClickToDialDesc=This module allows to make phone numbers clickable. A click on this icon will call make your phone to call the phone number. This can be used to call a call center system from Dolibarr that can call the phone number on a SIP system for example.
-ClickToDialUseTelLink=Use just a link "tel:" on phone numbers
-ClickToDialUseTelLinkDesc=Use this method if your users have a softphone or a software interface installed on same computer than the browser, and called when you click on a link in your browser that start with "tel:". If you need a full server solution (no need of local software installation), you must set this to "No" and fill next field.
+ClickToDialDesc=هذه الوحدة تسمح لجعل أرقام هواتف يمكن النقر عليها. وهناك انقر على هذه الأيقونة دعوة تجعل هاتفك إلى الاتصال برقم الهاتف. وهذا يمكن أن تستخدم لاستدعاء نظام مركز الاتصال من Dolibarr يمكن أن نسميه ورقم الهاتف على نظام SIP على سبيل المثال.
+ClickToDialUseTelLink=مجرد استخدام الرابط "الهاتف:" على أرقام الهواتف
+ClickToDialUseTelLinkDesc=استخدام هذا الأسلوب إذا كان المستخدمون يكون الهاتف الرقمي أو واجهة البرامج المثبتة على الكمبيوتر نفسه من المتصفح، ويسمى عند النقر على رابط في المتصفح التي تبدأ ب "الهاتف". إذا كنت في حاجة الى حل خادم الكامل (لا حاجة لتثبيت البرامج المحلية)، يجب عليك تعيين هذا إلى "لا" وملء الحقل التالي.
 ##### Point Of Sales (CashDesk) #####
 CashDesk=نقاط البيع
 CashDeskSetup=مكتب الإعداد وحدة نقدية
-CashDeskThirdPartyForSell=Default generic third party to use for sells
+CashDeskThirdPartyForSell=افتراضي طرف ثالث عام على استخدام لتبيع
 CashDeskBankAccountForSell=الحساب النقدي لاستخدامها لتبيع
 CashDeskBankAccountForCheque= حساب لاستخدام لتلقي المدفوعات عن طريق الشيكات
 CashDeskBankAccountForCB= حساب لاستخدام لاستلام المبالغ النقدية عن طريق بطاقات الائتمان
-CashDeskDoNotDecreaseStock=Disable stock decrease when a sell is done from Point of Sale (if "no", stock decrease is done for each sell done from POS, whatever is option set into module Stock).
-CashDeskIdWareHouse=Force and restrict warehouse to use for stock decrease
-StockDecreaseForPointOfSaleDisabled=Stock decrease from Point Of Sale disabled
-StockDecreaseForPointOfSaleDisabledbyBatch=Stock decrease in POS is not compatible with lot management
-CashDeskYouDidNotDisableStockDecease=You did not disable stock decrease when making a sell from Point Of Sale. So a warehouse is required.
+CashDeskDoNotDecreaseStock=تعطيل انخفاض الأسهم عندما يتم عمليات بيع من نقاط البيع (إذا كان "لا"، ويتم ذلك انخفاض الأسهم لكل تبيع القيام به من نقاط البيع، ومهما تم تعيين الخيار إلى وحدة المالية).
+CashDeskIdWareHouse=قوة وتحد من مستودع لاستخدامها لانخفاض الأسهم
+StockDecreaseForPointOfSaleDisabled=انخفاض الأسهم من نقاط البيع تعطيل
+StockDecreaseForPointOfSaleDisabledbyBatch=انخفاض الأسهم في POS غير متوافق مع الكثير الإدارة
+CashDeskYouDidNotDisableStockDecease=أنت لم تقم بتعطيل انخفاض الأسهم عند اتخاذ قرار بيع من نقاط البيع. لذلك لا بد من المستودع.
 ##### Bookmark #####
 BookmarkSetup=إعداد وحدة المرجعية
 BookmarkDesc=هذا النموذج يسمح لك لإدارة العناوين. يمكنك أيضا إضافة أي Dolibarr اختصارات لصفحات أو مواقع الويب externale على القائمة اليمنى.
 NbOfBoomarkToShow=أكبر عدد ممكن من العناوين تظهر في القائمة اليمنى
 ##### WebServices #####
-WebServicesSetup=إعداد وحدة Webservices
+WebServicesSetup=إعداد وحدة خدمات الويب
 WebServicesDesc=من خلال تمكين هذه الوحدة ، Dolibarr تصبح خدمة الإنترنت لتوفير خدمات الإنترنت وخدمات متنوعة.
 WSDLCanBeDownloadedHere=اختصار الواصفة ملف قدمت serviceses هنا يمكن التحميل
 EndPointIs=الصابون العملاء يجب إرسال الطلبات إلى نقطة النهاية Dolibarr متاحة في الموقع
 ##### API ####
-ApiSetup=API module setup
-ApiDesc=By enabling this module, Dolibarr become a REST server to provide miscellaneous web services.
-KeyForApiAccess=Key to use API (parameter "api_key")
-ApiProductionMode=Enable production mode (this will activate use of a caches for services management)
-ApiEndPointIs=You can access to the API at url
-ApiExporerIs=You can explore the API at url
-OnlyActiveElementsAreExposed=Only elements from enabled modules are exposed
-ApiKey=Key for API
+ApiSetup=API وحدة الإعداد
+ApiDesc=من خلال تمكين هذه الوحدة، Dolibarr يصبح الخادم REST لتوفير خدمات الإنترنت المتنوعة.
+KeyForApiAccess=مفتاح لاستخدام API (المعلمة "api_key")
+ApiProductionMode=تمكين وضع الإنتاج (وهذا سوف تفعيل استخدام مخابئ لإدارة الخدمات)
+ApiEndPointIs=يمكنك الوصول إلى API على رابط
+ApiExporerIs=يمكنك استكشاف API في رابط
+OnlyActiveElementsAreExposed=ويتعرض عناصر فقط من وحدات تمكين
+ApiKey=مفتاح API
 ##### Bank #####
 BankSetupModule=إعداد وحدة مصرفية
 FreeLegalTextOnChequeReceipts=نص حر على الشيكات والإيصالات
@@ -1607,11 +1610,11 @@ MultiCompanySetup=نموذج متعدد شركة الإعداد
 SuppliersSetup=المورد الإعداد وحدة
 SuppliersCommandModel=قالب كاملة من أجل المورد (logo...)
 SuppliersInvoiceModel=كاملة قالب من فاتورة المورد (logo. ..)
-SuppliersInvoiceNumberingModel=Supplier invoices numbering models
-IfSetToYesDontForgetPermission=If set to yes, don't forget to provide permissions to groups or users allowed for the second approval
+SuppliersInvoiceNumberingModel=فواتير الموردين الذين يبلغ عددهم نماذج
+IfSetToYesDontForgetPermission=إذا اخترت نعم، لا تنسى أن توفر الأذونات إلى المجموعات أو المستخدمين المسموح بها للموافقة الثانية
 ##### GeoIPMaxmind #####
 GeoIPMaxmindSetup=GeoIP Maxmind الإعداد وحدة
-PathToGeoIPMaxmindCountryDataFile=Path to file containing Maxmind ip to country translation.<br>Examples:<br>/usr/local/share/GeoIP/GeoIP.dat<br>/usr/share/GeoIP/GeoIP.dat
+PathToGeoIPMaxmindCountryDataFile=المسار إلى ملف يحتوي على MaxMind في الملكية الفكرية لترجمة البلاد. <br> الأمثلة على ذلك: <br> /usr/local/share/GeoIP/GeoIP.dat <br> /usr/share/GeoIP/GeoIP.dat
 NoteOnPathLocation=لاحظ أن الملكية الفكرية الخاصة بك على البيانات القطرية الملف يجب أن تكون داخل الدليل الخاص بي يمكن قراءة (راجع الإعداد open_basedir بى وأذونات نظام الملفات).
 YouCanDownloadFreeDatFileTo=يمكنك تحميل <b>نسخة تجريبية مجانية</b> من GeoIP ملف Maxmind البلاد في ٪ s.
 YouCanDownloadAdvancedDatFileTo=كما يمكنك تحميل <b>نسخة كاملة</b> أكثر من ذلك <b>، مع التحديثات ،</b> من GeoIP ملف Maxmind البلاد في ٪ s.
@@ -1620,88 +1623,89 @@ TestGeoIPResult=اختبار لتحويل الملكية الفكرية --> ال
 ProjectsNumberingModules=مشاريع وحدة الترقيم
 ProjectsSetup=مشروع إعداد وحدة
 ProjectsModelModule=المشروع نموذج التقرير وثيقة
-TasksNumberingModules=Tasks numbering module
-TaskModelModule=Tasks reports document model
-UseSearchToSelectProject=Use autocompletion fields to choose project (instead of using a list box)
+TasksNumberingModules=مهام ترقيم وحدة
+TaskModelModule=تقارير المهام ثيقة نموذجية
+UseSearchToSelectProject=استخدام حقول تكملة لاختيار المشروع (بدلا من استخدام مربع القائمة)
 ##### ECM (GED) #####
-ECMSetup = GED Setup
-ECMAutoTree = Show also the automatic tree folder and document
+ECMSetup = إعداد GED
+ECMAutoTree = المعرض أيضا المجلد شجرة التلقائي وثيقة
 ##### Fiscal Year #####
-FiscalYears=Fiscal years
-FiscalYear=Fiscal year
-FiscalYearCard=Fiscal year card
-NewFiscalYear=New fiscal year
-EditFiscalYear=Edit fiscal year
-OpenFiscalYear=Open fiscal year
-CloseFiscalYear=Close fiscal year
-DeleteFiscalYear=Delete fiscal year
-ConfirmDeleteFiscalYear=Are you sure to delete this fiscal year ?
-AlwaysEditable=Can always be edited
-MAIN_APPLICATION_TITLE=Force visible name of application (warning: setting your own name here may break autofill login feature when using DoliDroid mobile application)
-NbMajMin=Minimum number of uppercase characters
-NbNumMin=Minimum number of numeric characters
-NbSpeMin=Minimum number of special characters
-NbIteConsecutive=Maximum number of repeating same characters
-NoAmbiCaracAutoGeneration=Do not use ambiguous characters ("1","l","i","|","0","O") for automatic generation
-SalariesSetup=Setup of module salaries
-SortOrder=Sort order
-Format=Format
-TypePaymentDesc=0:Customer payment type, 1:Supplier payment type, 2:Both customers and suppliers payment type
-IncludePath=Include path (defined into variable %s)
-ExpenseReportsSetup=Setup of module Expense Reports
-TemplatePDFExpenseReports=Document templates to generate expense report document
-NoModueToManageStockDecrease=No module able to manage automatic stock decrease has been activated. Stock decrease will be done on manual input only.
-NoModueToManageStockIncrease=No module able to manage automatic stock increase has been activated. Stock increase will be done on manual input only.
-YouMayFindNotificationsFeaturesIntoModuleNotification=You may find options for EMail notifications by enabling and configuring the module "Notification".
-ListOfNotificationsPerContact=List of notifications per contact*
-ListOfFixedNotifications=List of fixed notifications
-GoOntoContactCardToAddMore=Go on the tab "Notifications" of a thirdparty contact to add or remove notifications for contacts/addresses
-Threshold=Threshold
-BackupDumpWizard=Wizard to build database backup dump file
-SomethingMakeInstallFromWebNotPossible=Installation of external module is not possible from the web interface for the following reason:
-SomethingMakeInstallFromWebNotPossible2=For this reason, process to upgrade described here is only manual steps a privileged user can do.
-InstallModuleFromWebHasBeenDisabledByFile=Install of external module from application has been disabled by your administrator. You must ask him to remove the file <strong>%s</strong> to allow this feature.
-ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
-HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
-HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
-LinkColor=Color of links
-PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
-NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
-BackgroundColor=Background color
-TopMenuBackgroundColor=Background color for Top menu
-LeftMenuBackgroundColor=Background color for Left menu
-BackgroundTableTitleColor=Background color for Table title line
-BackgroundTableLineOddColor=Background color for odd table lines
-BackgroundTableLineEvenColor=Background color for even table lines
-MinimumNoticePeriod=Minimum notice period (Your leave request must be done before this delay)
-NbAddedAutomatically=Number of days added to counters of users (automatically) each month
-EnterAnyCode=This field contains a reference to identify line. Enter any value of your choice, but without special characters.
-UnicodeCurrency=Enter here between braces, list of byte number that represent the currency symbol. For exemple: for $, enter [36] - for brazil real R$ [82,36] - for €, enter [8364]
-PositionIntoComboList=Position of line into combo lists
-SellTaxRate=Sale tax rate
-RecuperableOnly=Yes for VAT "Non Perçue Récupérable" dedicated for some state in France. Keep value to "No" in all other cases.
-UrlTrackingDesc=If the provider or transport service offer a page or web site to check status of your shipping, you can enter it here. You can use the key {TRACKID} into URL parameters so the system will replace it with value of tracking number user entered into shipment card.
-OpportunityPercent=When you create an opportunity, you will defined an estimated amount of project/lead. According to status of opportunity, this amount may be multiplicated by this rate to evaluate global amount all your opportunities may generate. Value is percent (between 0 and 100).
-TemplateForElement=This template record is dedicated to which element
-TypeOfTemplate=Type of template
-TemplateIsVisibleByOwnerOnly=Template is visible by owner only
-FixTZ=TimeZone fix
-FillFixTZOnlyIfRequired=Example: +2 (fill only if problem experienced)
-ExpectedChecksum=Expected Checksum
-CurrentChecksum=Current Checksum
-MailToSendProposal=To send customer proposal
-MailToSendOrder=To send customer order
-MailToSendInvoice=To send customer invoice
-MailToSendShipment=To send shipment
-MailToSendIntervention=To send intervention
-MailToSendSupplierRequestForQuotation=To send quotation request to supplier
-MailToSendSupplierOrder=To send supplier order
-MailToSendSupplierInvoice=To send supplier invoice
-MailToThirdparty=To send email from thirdparty page
-ByDefaultInList=Show by default on list view
-YouUseLastStableVersion=You use the last stable version
-TitleExampleForMajorRelease=Example of message you can use to announce this major release (feel free to use it on your web sites)
-TitleExampleForMaintenanceRelease=Example of message you can use to announce this maintenance release (feel free to use it on your web sites)
-ExampleOfNewsMessageForMajorRelease=Dolibarr ERP & CRM %s is available. Version %s is a major release with a lot of new features for both users and developers. You can download it from the download area of http://www.dolibarr.org portal (subdirectory Stable versions). You can read <a href="https://github.com/Dolibarr/dolibarr/blob/develop/ChangeLog">ChangeLog</a> for complete list of changes.
-ExampleOfNewsMessageForMaintenanceRelease=Dolibarr ERP & CRM %s is available. Version %s is a maintenance version, so it contains only fixes of bugs. We recommend everybody using an older version to upgrade to this one. As any maintenance release, no new features, nor data structure change is present into this version. You can download it from the download area of http://www.dolibarr.org portal (subdirectory Stable versions). You can read <a href="https://github.com/Dolibarr/dolibarr/blob/develop/ChangeLog">ChangeLog</a> for complete list of changes.
-MultiPriceRuleDesc=When option "Several level of prices per product/service" is on, you can define different prices (one per price level) for each product. To save you time, you can enter here rule to have price for each level autocalculated according to price of first level, so you will have to enter only price for first level on each product. This page is here to save you time and can be usefull only if your prices for each leve are relative to first level. You can ignore this page in most cases.
+FiscalYears=السنوات المالية
+FiscalYear=السنة المالية
+FiscalYearCard=بطاقة السنة المالية
+NewFiscalYear=السنة المالية الجديدة
+EditFiscalYear=تعديل السنة المالية
+OpenFiscalYear=السنة المالية المفتوحة
+CloseFiscalYear=السنة المالية وثيق
+DeleteFiscalYear=حذف السنة المالية
+ConfirmDeleteFiscalYear=هل أنت متأكد من حذف هذه السنة المالية؟
+AlwaysEditable=يمكن دائما أن تعدل
+MAIN_APPLICATION_TITLE=إجبار اسم المرئي من التطبيق (تحذير: وضع اسمك هنا قد كسر ميزة تسجيل الدخول التدوين الآلي عند استخدام تطبيقات الهاتف المتحرك DoliDroid)
+NbMajMin=الحد الأدنى لعدد الأحرف الكبيرة
+NbNumMin=الحد الأدنى لعدد الأحرف الرقمية
+NbSpeMin=الحد الأدنى لعدد الأحرف الخاصة
+NbIteConsecutive=الحد الأقصى لعدد تكرار نفس الأحرف
+NoAmbiCaracAutoGeneration=لا تستخدم الأحرف الغامضة ("1"، "L"، "أنا"، "|"، "0"، "O") لتوليد التلقائي
+SalariesSetup=الإعداد للرواتب وحدة
+SortOrder=ترتيب
+Format=شكل
+TypePaymentDesc=0: العميل نوع الدفع، 1: مورد نوع الدفع، 2: كل من العملاء والموردين نوع الدفع
+IncludePath=يشمل المسار (المحدد في متغير%s)
+ExpenseReportsSetup=إعداد تقارير المصروفات وحدة
+TemplatePDFExpenseReports=قوالب المستند لتوليد حساب ثيقة تقرير
+NoModueToManageStockDecrease=تم تفعيل أي وحدة قادرة على إدارة انخفاض الأسهم التلقائي. وسيتم ذلك انخفاض الأسهم على الإدخال اليدوي فقط.
+NoModueToManageStockIncrease=تم تفعيل أي وحدة قادرة على إدارة زيادة المخزون التلقائي. وسوف يتم زيادة الأسهم على الإدخال اليدوي فقط.
+YouMayFindNotificationsFeaturesIntoModuleNotification=قد تجد خيارات لاشعارات بالبريد الالكتروني من خلال تمكين وتكوين وحدة "الإخطار".
+ListOfNotificationsPerContact=قائمة الإشعارات لكل اسم *
+ListOfFixedNotifications=قائمة الإشعارات ثابت
+GoOntoContactCardToAddMore=الذهاب على علامة التبويب "التبليغات" من جهة اتصال مرشحين عن إضافة أو إزالة إخطارات للاتصالات / عناوين
+Threshold=عتبة
+BackupDumpWizard=المعالج لبناء قاعدة بيانات النسخ الاحتياطي ملف تفريغ
+SomethingMakeInstallFromWebNotPossible=تركيب وحدة خارجية غير ممكن من واجهة ويب للسبب التالي:
+SomethingMakeInstallFromWebNotPossible2=لهذا السبب، عملية لترقية وصفت هنا هو دليل على بعد خطوات قليلة يمكن للمستخدم متميز القيام به.
+InstallModuleFromWebHasBeenDisabledByFile=تثبيت وحدة خارجية من التطبيق قد تم تعطيلها من قبل المسؤول. يجب أن يطلب منه إزالة <strong>الملف٪ s</strong> للسماح هذه الميزة.
+ConfFileMuseContainCustom=تركيب وحدة خارجية من التطبيق حفظ الملفات وحدة في <strong>الدليل%s.</strong> أن يكون هذا الدليل معالجتها من قبل Dolibarr، يجب الإعداد <strong>أسيوط / conf.php</strong> لديك الخيار <br> - <strong>$ dolibarr_main_url_root_alt</strong> سكريبت لقيمة <strong>$ dolibarr_main_url_root_alt = "/ حسب الطلب"</strong> <br> - <strong>$ dolibarr_main_document_root_alt</strong> سكريبت لقيمة <strong>"٪ ق / مخصص"</strong>
+HighlightLinesOnMouseHover=تسليط الضوء على خطوط الجدول عندما يمر تحرك الماوس فوق
+HighlightLinesColor=تسليط الضوء على لون الخط عند تمرير الماوس فوق (الحفاظ فارغة دون تمييز)
+TextTitleColor=Color of page title
+LinkColor=لون الروابط
+PressF5AfterChangingThis=اضغط F5 على لوحة المفاتيح بعد تغيير هذه القيمة أن يكون ذلك فعالا
+NotSupportedByAllThemes=الإرادة يعمل مع موضوع eldy لكن غير معتمد من قبل جميع المواضيع
+BackgroundColor=لون الخلفية
+TopMenuBackgroundColor=لون الخلفية لقائمة الأعلى
+LeftMenuBackgroundColor=لون الخلفية القائمة اليمنى
+BackgroundTableTitleColor=لون الخلفية لخط عنوان الجدول
+BackgroundTableLineOddColor=لون الخلفية لخطوط الجدول غريبة
+BackgroundTableLineEvenColor=لون الخلفية حتى خطوط الجدول
+MinimumNoticePeriod=الحد الأدنى لمدة إشعار (يجب أن يتم طلب إجازة قبل هذا التأخير)
+NbAddedAutomatically=عدد الأيام تضاف إلى العدادات من المستخدمين (تلقائيا) كل شهر
+EnterAnyCode=يحتوي هذا الحقل على إشارة لتحديد الخط. أدخل أي قيمة من اختيارك، ولكن من دون أحرف خاصة.
+UnicodeCurrency=أدخل هنا بين الأقواس، وقائمة من عدد البايت التي تمثل رمز العملة. لexemple: ل$، أدخل [36] - للبرازيل R الحقيقي $ [82،36] - ل€، أدخل [8364]
+PositionIntoComboList=موقف خط في قوائم السرد
+SellTaxRate=بيع معدل الضريبة
+RecuperableOnly=نعم لضريبة القيمة المضافة "غير مستردة Perçue" مخصصة لبعض الدول في فرنسا. إبقاء القيمة إلى "لا" في جميع الحالات الأخرى.
+UrlTrackingDesc=إذا كان مزود الخدمة أو النقل تقديم صفحة أو موقع على شبكة الإنترنت للتحقق من حالة الشحن الخاص بك، يمكنك إدخاله هنا. يمكنك استخدام مفتاح {خاصية TrackID} إلى المعلمات URL وبالتالي فإن النظام سوف يحل محله مع دخلت قيمة عدد تتبع المستخدم في بطاقة الشحن.
+OpportunityPercent=عند إنشاء فرصة، وسوف تعريف المبلغ المقدر للمشروع / الرصاص. وفقا لحالة من فرصة، قد تكون multiplicated هذا المبلغ من قبل هذا المعدل لتقييم كمية العالمي عن فرص الخاص بك قد تولد. القيمة هي في المئة (ما بين 0 و 100).
+TemplateForElement=ويكرس هذا السجل القالب الذي عنصر
+TypeOfTemplate=نوع القالب
+TemplateIsVisibleByOwnerOnly=قالب مرئيا من قبل المالك فقط
+FixTZ=الإصلاح والوقت
+FillFixTZOnlyIfRequired=مثال: +2 (ملء فقط إذا كانت المشكلة من ذوي الخبرة)
+ExpectedChecksum=اختباري المتوقع
+CurrentChecksum=اختباري الحالي
+MailToSendProposal=لإرسال اقتراح العملاء
+MailToSendOrder=لإرسال طلب العميل
+MailToSendInvoice=لإرسال فاتورة العملاء
+MailToSendShipment=لإرسال شحنة
+MailToSendIntervention=لإرسال التدخل
+MailToSendSupplierRequestForQuotation=لإرسال طلب الاقتباس إلى المورد
+MailToSendSupplierOrder=لإرسال المورد أجل
+MailToSendSupplierInvoice=لإرسال فاتورة المورد
+MailToThirdparty=لإرسال البريد الإلكتروني من صفحة مرشحين عن
+ByDefaultInList=تظهر بشكل افتراضي على عرض القائمة
+YouUseLastStableVersion=كنت تستخدم إصدار مستقر الماضي
+TitleExampleForMajorRelease=مثال على رسالة يمكنك استخدامها ليعلن هذا الإصدار الرئيسي (لا تتردد في استخدامها على مواقع الويب الخاص بك)
+TitleExampleForMaintenanceRelease=مثال على الرسالة التي يمكن استخدامها ليعلن هذا البيان الصيانة (لا تتردد في استخدامها على مواقع الويب الخاص بك)
+ExampleOfNewsMessageForMajorRelease=Dolibarr ERP و CRM%s هو متاح. النسخة٪ s هو الإصدار الرئيسي مع الكثير من الميزات الجديدة لكل من المستخدمين والمطورين. يمكنك تحميل البرنامج من منطقة التحميل من http://www.dolibarr.org البوابة (الإصدارات المستقرة دليل فرعي). يمكنك أن تقرأ <a href="https://github.com/Dolibarr/dolibarr/blob/develop/ChangeLog">سجل التغيير</a> للحصول على قائمة كاملة من التغييرات.
+ExampleOfNewsMessageForMaintenanceRelease=Dolibarr ERP و CRM%s هو متاح. النسخة٪ s هو الحفاظ على الصيغة، لذلك يحتوي فقط على الإصلاحات من البق. نوصي الجميع تستخدم نسخة قديمة للترقية إلى هذا واحد. مثل أي الافراج عن صيانة، لا ملامح جديدة، أو على تغيير بنية البيانات غير موجودة في هذا الإصدار. يمكنك تحميل البرنامج من منطقة التحميل من http://www.dolibarr.org البوابة (الإصدارات المستقرة دليل فرعي). يمكنك أن تقرأ <a href="https://github.com/Dolibarr/dolibarr/blob/develop/ChangeLog">سجل التغيير</a> للحصول على قائمة كاملة من التغييرات.
+MultiPriceRuleDesc=عندما خيار "مستوى العديد من الأسعار لكل المنتجات / الخدمات" في وضع التشغيل، يمكنك تحديد أسعار مختلفة (واحد لكل مستوى الأسعار) لكل منتج. لتوفير الوقت، يمكنك الدخول هنا حكم أن يكون السعر لكل مستوى autocalculated وفقا لسعر المستوى الأول، لذلك سيكون لديك للدخول الثمن الوحيد للمستوى الأول على كل منتج. هذه الصفحة هي هنا لتوفر لك الوقت ويمكن أن تكون مفيدة فقط إذا كانت الأسعار الخاص لكل LEVE قريبة إلى المستوى الأول. يمكنك تجاهل هذه الصفحة في معظم الحالات.
diff --git a/htdocs/langs/ar_SA/agenda.lang b/htdocs/langs/ar_SA/agenda.lang
index 8c1b1e0fcfc0805ed129c831a3894d56090437c3..34bd12ff763cc829730658bf128bf6dc277c5b33 100644
--- a/htdocs/langs/ar_SA/agenda.lang
+++ b/htdocs/langs/ar_SA/agenda.lang
@@ -6,11 +6,11 @@ Agenda=جدول الأعمال
 Agendas=جداول الأعمال
 Calendar=التقويم
 Calendars=التقاويم
-LocalAgenda=Internal calendar
-ActionsOwnedBy=Event owned by
+LocalAgenda=تقويم الداخلي
+ActionsOwnedBy=الحدث يملكها
 AffectedTo=مناط لـ
 DoneBy=أنهي بواسطة
-Event=Event
+Event=حدث
 Events=الأحداث
 EventsNb=عدد الأحداث
 MyEvents=الأحداث الخاصة بي
@@ -23,19 +23,21 @@ MenuToDoActions=جميع الأحداث الغير مكتملة
 MenuDoneActions=جميع الأحداث الملغية
 MenuToDoMyActions=أحداثي الغير مكتملة
 MenuDoneMyActions=أحداثي الملغاة
-ListOfEvents=List of events (internal calendar)
+ListOfEvents=قائمة الأحداث (التقويم الداخلي)
 ActionsAskedBy=أحداث تم رعايتها بواسطة
 ActionsToDoBy=أحداث عينت لـ
 ActionsDoneBy=أحداث انهيت بواسطة
-ActionsForUser=Events for user
-ActionsForUsersGroup=Events for all users of group
-ActionAssignedTo=Event assigned to
+ActionsForUser=أحداث المستخدم
+ActionsForUsersGroup=أحداث لجميع مستخدمي مجموعة
+ActionAssignedTo=الحدث المخصصة ل
 AllMyActions= كل أحداثي/ مهامي
 AllActions= جميع الأحداث / المهام
 ViewCal=عرض شهري
 ViewDay=عرض يومي
 ViewWeek=عرض اسبوعي
-ViewPerUser=Per user view
+ViewYear=Year view
+ViewPerUser=لكل وجهة نظر المستخدم
+ViewPerType=Per type view
 ViewWithPredefinedFilters= قم بالعرض مع الفلاتر المعرفة مسبقاً
 AutoActions= إكمال تلقائي
 AgendaAutoActionDesc= عرف الأحداث التي تريد من دوليبار إنشائها تلقائيا في جدوال الأعمال. إذا لم تقم بإختيار أي شي (الخيار الإفتراضي), سوف يتم فقط إدخال الأنشطلة إلى جدول الأعمال يدوياً
@@ -44,24 +46,24 @@ AgendaExtSitesDesc=تسمح لك هذه الصفحة بتعريف مصادر خ
 ActionsEvents=الأحداث التي ستمكن دوليبار من إنشاء أعمال تلقائية في جدول الأعمال
 PropalValidatedInDolibarr=تم تفعيل %s من الإقتراح
 InvoiceValidatedInDolibarr=تم توثيق %s من الفاتورة
-InvoiceValidatedInDolibarrFromPos=Invoice %s validated from POS
+InvoiceValidatedInDolibarrFromPos=فاتورة%s التأكد من صلاحيتها من نقاط البيع
 InvoiceBackToDraftInDolibarr=الفاتورة %s للذهاب بها إلى حالة المسودة
 InvoiceDeleteDolibarr=تم حذف %s من الفاتورة
 OrderValidatedInDolibarr=تم توثيق %s من الطلب
-OrderDeliveredInDolibarr=Order %s classified delivered
+OrderDeliveredInDolibarr=ترتيب %s حسب التسليم
 OrderCanceledInDolibarr=تم إلغاء %s من الطلب
-OrderBilledInDolibarr=Order %s classified billed
+OrderBilledInDolibarr=ترتيب %s  حسب التبويب 
 OrderApprovedInDolibarr=تم الموافقة على %s من الطلب
-OrderRefusedInDolibarr=Order %s refused
+OrderRefusedInDolibarr=ترتيب %s رفض
 OrderBackToDraftInDolibarr=الطلب %s للذهاب بها إلى حالة المسودة
 ProposalSentByEMail=تم إرسال العرض الرسمي %s بواسطة البريد الإلكتروني
 OrderSentByEMail=تم إرسال طلبية العميل %s بواسطة البريد الإلكتروني
 InvoiceSentByEMail=تم إرسال فاتروة العميل %s بواسطة البريد الإلكتروني
 SupplierOrderSentByEMail=تم إرسال طلبية المزود %s بواسطة البريد الإلكتروني
 SupplierInvoiceSentByEMail=تم إرسال فاتروة المزود%s بواسطة البريد الإلكتروني
-ShippingSentByEMail=Shipment %s sent by EMail
-ShippingValidated= Shipment %s validated
-InterventionSentByEMail=Intervention %s sent by EMail
+ShippingSentByEMail=شحنة%s إرسالها عن طريق البريد الإلكتروني
+ShippingValidated= شحنة %sالتأكد من صلاحيتها
+InterventionSentByEMail=التدخل%s إرسالها عن طريق البريد الإلكتروني
 NewCompanyToDolibarr= تم إنشاء طرف ثالث أو خارجي
 DateActionPlannedStart= التاريخ المخطط للبدء
 DateActionPlannedEnd= التاريخ المخطط للإنهاء
@@ -70,37 +72,37 @@ DateActionDoneEnd= تاريخ النهاية الفعلية
 DateActionStart= تاريخ البدء
 DateActionEnd= تاريخ النهاية
 AgendaUrlOptions1=يمكنك أيضا إضافة المعايير التالية لترشيح النتائج:
-AgendaUrlOptions2=<b>login=%s</b> to restrict output to actions created by or assigned to user <b>%s</b>.
-AgendaUrlOptions3=<b>logina=%s</b> to restrict output to actions owned by a user <b>%s</b>.
+AgendaUrlOptions2=<b>تسجيل الدخول =٪ s إلى</b> تقييد الإخراج إلى الإجراءات التي أنشأتها أو المخصصة <b>للمستخدم%s.</b>
+AgendaUrlOptions3=<b>وجينا =٪ s إلى</b> تقييد الإخراج إلى الإجراءات التي <b>يملكها%s</b> المستخدم.
 AgendaUrlOptions4=<b>logint=<b>logint=%s</b> لتقييد الانتاج للإجراءات المناطة للمستخدم <b>%s</b>
-AgendaUrlOptionsProject=<b>project=PROJECT_ID</b> to restrict output to actions associated to project <b>PROJECT_ID</b>.
+AgendaUrlOptionsProject=<b>مشروع = PROJECT_ID</b> لتقييد الإخراج إلى الإجراءات المرتبطة <b>PROJECT_ID</b> المشروع.
 AgendaShowBirthdayEvents=أظهر تاريخ الميلاد في عناوين الإتصال
 AgendaHideBirthdayEvents=أخفي تاريخ الميلاد في عناوين الإتصال
 Busy=مشغول
 ExportDataset_event1=قائمة الأحداث في جدول الأعمال
-DefaultWorkingDays=Default working days range in week (Example: 1-5, 1-6)
-DefaultWorkingHours=Default working hours in day (Example: 9-18)
+DefaultWorkingDays=افتراضي أيام عمل تتراوح في الأسبوع (على سبيل المثال: 1-5، 1-6)
+DefaultWorkingHours=افتراضي ساعات العمل في اليوم (على سبيل المثال: 9-18)
 # External Sites ical
 ExportCal=تصدير التقويم
 ExtSites=استيراد التقويمات الخارجية
-ExtSitesEnableThisTool=Show external calendars (defined into global setup) into agenda. Does not affect external calendars defined by users.
+ExtSitesEnableThisTool=عرض التقويمات الخارجية (المعرفة في الإعداد العالمي) في جدول الأعمال. لا يؤثر التقويمات الخارجية محددة من قبل المستخدمين.
 ExtSitesNbOfAgenda=عدد التقاويم
 AgendaExtNb=رقم التقويم %s
 ExtSiteUrlAgenda=عنوان المتصفح للدخول لملف .ical
 ExtSiteNoLabel=لا يوجد وصف
-WorkingTimeRange=Working time range
-WorkingDaysRange=Working days range
-VisibleTimeRange=Visible time range
-VisibleDaysRange=Visible days range
-AddEvent=Create event
-MyAvailability=My availability
-ActionType=Event type
-DateActionBegin=Start event date
-CloneAction=Clone event
-ConfirmCloneEvent=Are you sure you want to clone the event <b>%s</b> ?
-RepeatEvent=Repeat event
-EveryWeek=Every week
-EveryMonth=Every month
-DayOfMonth=Day of month
-DayOfWeek=Day of week
-DateStartPlusOne=Date start + 1 hour
+WorkingTimeRange=تعمل مجموعة الوقت
+WorkingDaysRange=أيام عمل تتراوح
+VisibleTimeRange=النطاق الزمني مرئية
+VisibleDaysRange=أيام مرئية مجموعة
+AddEvent=إنشاء الحدث
+MyAvailability=تواجدي
+ActionType=نوع الحدث
+DateActionBegin=تاريخ البدء الحدث
+CloneAction=الحدث استنساخ
+ConfirmCloneEvent=هل أنت متأكد أنك تريد استنساخ <b>الحدث %s ؟</b>
+RepeatEvent=تكرار الحدث
+EveryWeek=كل اسبوع
+EveryMonth=كل شهر
+DayOfMonth=يوم من الشهر
+DayOfWeek=يوم من الأسبوع
+DateStartPlusOne=تاريخ بدء + 1 ساعة
diff --git a/htdocs/langs/ar_SA/banks.lang b/htdocs/langs/ar_SA/banks.lang
index a502a00c74a49f4e508fa4cfe6ce33ba9b90ccdf..ab281345292036c8bb97c47c9dff9268787ce8db 100644
--- a/htdocs/langs/ar_SA/banks.lang
+++ b/htdocs/langs/ar_SA/banks.lang
@@ -8,7 +8,7 @@ FinancialAccount=حساب
 FinancialAccounts=الحسابات
 BankAccount=الحساب المصرفي
 BankAccounts=الحسابات المصرفية
-ShowAccount=Show Account
+ShowAccount=مشاهدة الحساب
 AccountRef=الحساب المالي المرجع
 AccountLabel=الحساب المالي العلامة
 CashAccount=الحساب النقدي
@@ -20,8 +20,8 @@ SavingAccount=حساب توفير
 SavingAccounts=حسابات التوفير
 ErrorBankLabelAlreadyExists=الحساب المالي الملصق موجود بالفعل
 BankBalance=التوازن
-BankBalanceBefore=Balance before
-BankBalanceAfter=Balance after
+BankBalanceBefore=التوازن قبل
+BankBalanceAfter=التوازن بعد
 BalanceMinimalAllowed=الحد الأدنى المسموح التوازن
 BalanceMinimalDesired=الحد الأدنى من التوازن المطلوب
 InitialBankBalance=الرصيد الأولي
@@ -29,15 +29,15 @@ EndBankBalance=رصيد نهاية
 CurrentBalance=الرصيد الحالي
 FutureBalance=التوازن في المستقبل
 ShowAllTimeBalance=يظهر من البداية على التوازن
-AllTime=From start
+AllTime=من البداية
 Reconciliation=المصالحة
 RIB=رقم الحساب المصرفي
 IBAN=عدد إيبان
-IbanValid=IBAN is Valid
-IbanNotValid=IBAN is Not Valid
+IbanValid=IBAN غير صالح
+IbanNotValid=IBAN غير صالح
 BIC=بيك / سويفت عدد
-SwiftValid=BIC/SWIFT is Valid
-SwiftNotValid=BIC/SWIFT is Not Valid
+SwiftValid=BIC / SWIFT غير صالح
+SwiftNotValid=BIC / SWIFT غير صالح
 StandingOrders=أوامر دائمة
 StandingOrder=من أجل الوقوف
 Withdrawals=انسحابات
@@ -79,7 +79,7 @@ Account=حساب
 ByCategories=حسب فئات
 ByRubriques=حسب فئات
 BankTransactionByCategories=المعاملات المصرفية وفقا للفئات
-BankTransactionForCategory=المعاملات المصرفية لفئة <b>ق ٪</b>
+BankTransactionForCategory=المعاملات المصرفية لفئة <b>%s</b>
 RemoveFromRubrique=إزالة الارتباط مع هذه الفئة
 RemoveFromRubriqueConfirm=هل أنت متأكد من أنك تريد إزالة الربط بين الصفقة والفئة؟
 ListBankTransactions=قائمة المعاملات المصرفية
@@ -94,12 +94,12 @@ Conciliate=التوفيق
 Conciliation=توفيق
 ConciliationForAccount=التوفيق في هذا الحساب
 IncludeClosedAccount=وتشمل حسابات مغلقة
-OnlyOpenedAccount=Only open accounts
+OnlyOpenedAccount=حسابات مفتوحة فقط
 AccountToCredit=الحساب على الائتمان
 AccountToDebit=لحساب الخصم
 DisableConciliation=تعطيل ميزة التوفيق لهذا الحساب
 ConciliationDisabled=توفيق سمة المعوقين
-StatusAccountOpened=Open
+StatusAccountOpened=فتح
 StatusAccountClosed=مغلقة
 AccountIdShort=عدد
 EditBankRecord=تعديل السجل
@@ -110,17 +110,17 @@ ConciliatedBy=طريق التصالح
 DateConciliating=التوفيق التاريخ
 BankLineConciliated=صفقة التصالح
 CustomerInvoicePayment=عملاء الدفع
-CustomerInvoicePaymentBack=Customer payment back
+CustomerInvoicePaymentBack=العميل دفع الظهر
 SupplierInvoicePayment=المورد الدفع
 WithdrawalPayment=انسحاب الدفع
-SocialContributionPayment=Social/fiscal tax payment
+SocialContributionPayment=اجتماعي / دفع الضرائب المالية
 FinancialAccountJournal=مجلة الحساب المالي
 BankTransfer=حوالة مصرفية
 BankTransfers=التحويلات المصرفية
 TransferDesc=التحويل من حساب إلى آخر واحد ، وسوف يكتب Dolibarr اثنين من السجلات (أ مصدر في حساب الخصم والائتمان في الاعتبار الهدف من نفس المبلغ. العلامة نفسها وحتى الآن وسيتم استخدام هذه الصفقة)
 TransferFrom=من
 TransferTo=إلى
-TransferFromToDone=ونقل من هناك إلى ٪ <b>٪ ق ق ق ٪</b> ٪ وقد سجلت ق.
+TransferFromToDone=ونقل من هناك إلى ٪ <b>%s ق %s</b> ٪ وقد سجلت ق.
 CheckTransmitter=الإرسال
 ValidateCheckReceipt=التحقق من صحة هذا الاستلام؟
 ConfirmValidateCheckReceipt=هل أنت متأكد من ذلك فحص للتحقق من تلقي أي تغيير سيكون ممكنا بمجرد أن يتم ذلك؟
@@ -138,35 +138,35 @@ CashBudget=الميزانية النقدية
 PlannedTransactions=المخطط المعاملات
 Graph=الرسومات
 ExportDataset_banque_1=المعاملات المصرفية وحساب
-ExportDataset_banque_2=Deposit slip
+ExportDataset_banque_2=إيداع زلة
 TransactionOnTheOtherAccount=صفقة على حساب الآخرين
 TransactionWithOtherAccount=تحويل الحساب
 PaymentNumberUpdateSucceeded=دفع عدد تحديث بنجاح
 PaymentNumberUpdateFailed=دفع عددا لا يمكن تحديث
 PaymentDateUpdateSucceeded=تاريخ التحديث الدفع بنجاح
 PaymentDateUpdateFailed=دفع حتى الآن لا يمكن تحديث
-Transactions=Transactions
+Transactions=المعاملات
 BankTransactionLine=المعاملات المصرفية
 AllAccounts=جميع المصرفية / حسابات نقدية
 BackToAccount=إلى حساب
 ShowAllAccounts=وتبين للجميع الحسابات
 FutureTransaction=الصفقة في أجل المستقبل. أي وسيلة للتوفيق.
 SelectChequeTransactionAndGenerate=حدد / تصفية الشيكات لتشمل في الاختيار استلام الودائع وانقر على &quot;إنشاء&quot;.
-InputReceiptNumber=Choose the bank statement related with the conciliation. Use a sortable numeric value: YYYYMM or YYYYMMDD
-EventualyAddCategory=Eventually, specify a category in which to classify the records
-ToConciliate=To conciliate?
-ThenCheckLinesAndConciliate=Then, check the lines present in the bank statement and click
-BankDashboard=Bank accounts summary
-DefaultRIB=Default BAN
-AllRIB=All BAN
-LabelRIB=BAN Label
-NoBANRecord=No BAN record
-DeleteARib=Delete BAN record
-ConfirmDeleteRib=Are you sure you want to delete this BAN record ?
-StartDate=Start date
-EndDate=End date
-RejectCheck=Check returned
-ConfirmRejectCheck=Are you sure you want to mark this check as rejected ?
-RejectCheckDate=Date the check was returned
-CheckRejected=Check returned
-CheckRejectedAndInvoicesReopened=Check returned and invoices reopened
+InputReceiptNumber=اختيار كشف حساب مصرفي ذات الصلة مع التوفيق. استخدام قيمة رقمية للفرز: YYYYMM أو YYYYMMDD
+EventualyAddCategory=في نهاية المطاف، حدد الفئة التي لتصنيف السجلات
+ToConciliate=التوفيق؟
+ThenCheckLinesAndConciliate=ثم، والتحقق من خطوط الحالية في بيان البنك وانقر
+BankDashboard=الحسابات المصرفية موجز
+DefaultRIB=BAN الافتراضي
+AllRIB=جميع BAN
+LabelRIB=BAN تسمية
+NoBANRecord=لا يوجد سجل BAN
+DeleteARib=حذف سجل BAN
+ConfirmDeleteRib=هل أنت متأكد أنك تريد حذف هذا السجل BAN؟
+StartDate=تاريخ البدء
+EndDate=تاريخ الانتهاء
+RejectCheck=تحقق عاد
+ConfirmRejectCheck=هل أنت متأكد أنك تريد وضع علامة هذا الاختيار مرفوضا؟
+RejectCheckDate=تاريخ أعيد الاختيار
+CheckRejected=تحقق عاد
+CheckRejectedAndInvoicesReopened=تحقق عاد والفواتير فتح
diff --git a/htdocs/langs/ar_SA/bills.lang b/htdocs/langs/ar_SA/bills.lang
index 070ae68a39f066264f3e7af272121aa92142d468..85348cf3fd2a84a4640139bf0fa78a0bd708d2f0 100644
--- a/htdocs/langs/ar_SA/bills.lang
+++ b/htdocs/langs/ar_SA/bills.lang
@@ -1,16 +1,16 @@
 # Dolibarr language file - Source file is en_US - bills
 Bill=فاتورة
 Bills=فواتير
-BillsCustomers=Customers invoices
-BillsCustomer=Customers invoice
-BillsSuppliers=Suppliers invoices
-BillsCustomersUnpaid=Unpaid customers invoices
-BillsCustomersUnpaidForCompany=غير المدفوعة للعملاء فواتير ق ٪
+BillsCustomers=فواتير العملاء
+BillsCustomer=فاتورة العملاء
+BillsSuppliers=فواتير الموردين
+BillsCustomersUnpaid=فواتير العملاء الغير مدفوعة
+BillsCustomersUnpaidForCompany=فواتير العميل الغير مدفوعة لـ%s
 BillsSuppliersUnpaid=غير المدفوعة الموردين
 BillsSuppliersUnpaidForCompany=مورد غير المسددة لفواتير %s
 BillsLate=في وقت متأخر المدفوعات
-BillsStatistics=Customers invoices statistics
-BillsStatisticsSuppliers=Suppliers invoices statistics
+BillsStatistics=عملاء الفواتير إحصاءات
+BillsStatisticsSuppliers=فواتير الموردين إحصاءات
 DisabledBecauseNotErasable=تعطيل لأنه لا يمكن أن تمحى
 InvoiceStandard=فاتورة موحدة
 InvoiceStandardAsk=فاتورة موحدة
@@ -19,27 +19,27 @@ InvoiceDeposit=إيداع فاتورة
 InvoiceDepositAsk=إيداع فاتورة
 InvoiceDepositDesc=هذا النوع من الفاتورة يتم فيه ايداع وقد وردت.
 InvoiceProForma=Proforma الفاتورة
-InvoiceProFormaAsk=Proforma الفاتورة
+InvoiceProFormaAsk=الفاتورة الأولية
 InvoiceProFormaDesc=<b>Proforma الفاتورة</b> هو صورة حقيقية فاتورة المحاسبة ولكن ليس له قيمة.
 InvoiceReplacement=استبدال الفاتورة
 InvoiceReplacementAsk=استبدال فاتورة الفاتورة
-InvoiceReplacementDesc=<b>Replacement invoice</b> is used to cancel and replace completely an invoice with no payment already received.<br><br>Note: Only invoices with no payment on it can be replaced. If the invoice you replace is not yet closed, it will be automatically closed to 'abandoned'.
+InvoiceReplacementDesc=يستخدم <b>فاتورة استبدال</b> لإلغاء واستبدال تماما فاتورة مع دفع أي مبلغ حصل بالفعل. <br><br> ملاحظة: فقط الفواتير مع دفع أي مبلغ على ذلك يمكن استبدالها. إذا كانت الفاتورة التي استبدال ليست مغلقة حتى الآن، فإنه سيتم إغلاق تلقائيا إلى "التخلي عن '.
 InvoiceAvoir=علما الائتمان
 InvoiceAvoirAsk=علما الائتمان لتصحيح الفاتورة
 InvoiceAvoirDesc=<b>الفضل</b> في <b>المذكرة</b> سلبية الفاتورة تستخدم لحل كون فاتورة بمبلغ قد يختلف عن المبلغ المدفوع فعلا (لأنه دفع الكثير من العملاء عن طريق الخطأ ، أو لن تدفع بالكامل منذ عودته لبعض المنتجات على سبيل المثال).
-invoiceAvoirWithLines=Create Credit Note with lines from the origin invoice
-invoiceAvoirWithPaymentRestAmount=Create Credit Note with remaining unpaid of origin invoice
-invoiceAvoirLineWithPaymentRestAmount=Credit Note for remaining unpaid amount
-ReplaceInvoice=يستعاض عن فاتورة ٪ ق
+invoiceAvoirWithLines=إنشاء الائتمان ملاحظة مع خطوط من الفاتورة الأصلية
+invoiceAvoirWithPaymentRestAmount=إنشاء الائتمان ملاحظة مع المتبقية غير المسددة من الفاتورة الأصلية
+invoiceAvoirLineWithPaymentRestAmount=ملاحظة الائتمان للبقاء المبلغ غير المدفوع
+ReplaceInvoice=يستعاض عن فاتورة %s
 ReplacementInvoice=استبدال الفاتورة
-ReplacedByInvoice=بعبارة فاتورة ق ٪
+ReplacedByInvoice=تم استبدالها بالفاتورة  %s
 ReplacementByInvoice=استعيض عن الفاتورة
-CorrectInvoice=تصحيح الفاتورة ٪ ق
+CorrectInvoice=تصحيح الفاتورة %s
 CorrectionInvoice=تصحيح الفاتورة
-UsedByInvoice=وتستخدم لدفع فاتورة ق ٪
+UsedByInvoice=وتستخدم لدفع فاتورة %s
 ConsumedBy=يستهلكها
 NotConsumed=لا يستهلك
-NoReplacableInvoice=لا replacable الفواتير
+NoReplacableInvoice=لا الفواتير replacable
 NoInvoiceToCorrect=أي فاتورة لتصحيح
 InvoiceHasAvoir=تصحيح واحدة أو عدة الفواتير
 CardBill=فاتورة بطاقة
@@ -58,39 +58,41 @@ Payment=الدفع
 PaymentBack=دفع العودة
 Payments=المدفوعات
 PaymentsBack=عودة المدفوعات
-PaidBack=Paid back
+PaidBack=تسديدها
 DeletePayment=حذف الدفع
 ConfirmDeletePayment=هل أنت متأكد من أنك تريد حذف هذا المبلغ؟
 ConfirmConvertToReduc=هل تريد تحويل هذه القروض إلى الودائع أو علما مطلقة الخصم؟ <br> المبلغ حتى يتم حفظ جميع الخصومات ويمكن استخدام خصم لحالي أو مستقبلي الفاتورة لهذا العميل.
 SupplierPayments=الموردين والمدفوعات
 ReceivedPayments=تلقت مدفوعات
 ReceivedCustomersPayments=المدفوعات المقبوضة من الزبائن
-PayedSuppliersPayments=Payments payed to suppliers
+PayedSuppliersPayments=المدفوعات التي دفعت للموردين
 ReceivedCustomersPaymentsToValid=تلقى مدفوعات عملاء للمصادقة
-PaymentsReportsForYear=تقارير المدفوعات للق ٪
+PaymentsReportsForYear=تقارير المدفوعات لل%s
 PaymentsReports=تقارير المدفوعات
 PaymentsAlreadyDone=المدفوعات قد فعلت
-PaymentsBackAlreadyDone=Payments back already done
+PaymentsBackAlreadyDone=المدفوعات يعود بالفعل القيام به
 PaymentRule=دفع الحكم
 PaymentMode=نوع الدفع
-PaymentModeShort=Payment type
-PaymentTerm=Payment term
-PaymentConditions=Payment terms
-PaymentConditionsShort=Payment terms
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
+PaymentModeShort=نوع الدفع
+PaymentTerm=مصطلح الدفع
+PaymentConditions=شروط الدفع
+PaymentConditionsShort=شروط الدفع
 PaymentAmount=دفع مبلغ
-ValidatePayment=Validate payment
+ValidatePayment=تحقق من الدفع
 PaymentHigherThanReminderToPay=دفع أعلى من دفع تذكرة
-HelpPaymentHigherThanReminderToPay=الاهتمام ، على دفع مبلغ واحد أو أكثر من فواتير أعلى من الراحة على الدفع. <br> تعديل الدخول ، تؤكد خلاف ذلك والتفكير في خلق الائتمان علما الزائدة وتلقى كل الفواتير الزائدة.
-HelpPaymentHigherThanReminderToPaySupplier=Attention, the payment amount of one or more bills is higher than the rest to pay. <br> Edit your entry, otherwise confirm.
+HelpPaymentHigherThanReminderToPay=الاهتمام ، على دفع مبلغ واحد أو أكثر من فواتير أعلى من الراحة على الدفع. <br> تعديل الدخول ، تؤكد خلاف ذلك والتفكير في إنشاء الائتمان علما الزائدة وتلقى كل الفواتير الزائدة.
+HelpPaymentHigherThanReminderToPaySupplier=انتباه، ومقدار دفع الفواتير واحد أو أكثر أعلى من بقية لدفع. <br> تعديل دخولك، تؤكد خلاف ذلك.
 ClassifyPaid=تصنيف 'مدفوع'
 ClassifyPaidPartially=تصنيف 'مدفوع جزئيا'
 ClassifyCanceled=تصنيف 'المهجورة'
 ClassifyClosed=تصنيف 'مغلقة'
-ClassifyUnBilled=Classify 'Unbilled'
+ClassifyUnBilled=تصنيف "فواتير"
 CreateBill=إنشاء الفاتورة
-CreateCreditNote=Create credit note
-AddBill=Create invoice or credit note
-AddToDraftInvoices=Add to draft invoice
+CreateCreditNote=إنشاء ملاحظة الائتمان
+AddBill=إنشاء فاتورة أو الائتمان المذكرة
+AddToDraftInvoices=إضافة إلى مسودة الفاتورة
 DeleteBill=شطب فاتورة
 SearchACustomerInvoice=البحث عن زبون فاتورة
 SearchASupplierInvoice=البحث عن مورد فاتورة
@@ -101,7 +103,7 @@ DoPaymentBack=هل لدفع الظهر
 ConvertToReduc=تحويل الخصم في المستقبل
 EnterPaymentReceivedFromCustomer=دخول الدفع الواردة من العملاء
 EnterPaymentDueToCustomer=من المقرر أن يسدد العميل
-DisabledBecauseRemainderToPayIsZero=Disabled because remaining unpaid is zero
+DisabledBecauseRemainderToPayIsZero=تعطيل بسبب المتبقية غير المدفوعة صفر
 PriceBase=سعر الأساس
 BillStatus=حالة الفاتورة
 BillStatusDraft=مشروع (لا بد من التحقق من صحة)
@@ -128,7 +130,7 @@ PaymentStatusToValidShort=للمصادقة
 ErrorVATIntraNotConfigured=Intracommunautary رقم الضريبة على القيمة المضافة لم تحدد بعد
 ErrorNoPaiementModeConfigured=لا يعرف طريقة الدفع الافتراضية. الذهاب الى الفاتورة وحدة لتحديد هذا الإعداد.
 ErrorCreateBankAccount=إنشاء حساب مصرفي ، ثم يذهب إلى إعداد فريق من الفاتورة وحدة لتحديد طرق الدفع
-ErrorBillNotFound=فاتورة ٪ ق لا يوجد
+ErrorBillNotFound=فاتورة %s لا يوجد
 ErrorInvoiceAlreadyReplaced=خطأ ، في محاولة لإثبات صحة فاتورة لتحل محل الفاتورة ٪ s. ولكن هذا قد تم الاستعاضة عن فاتورة ٪ s.
 ErrorDiscountAlreadyUsed=خطأ الخصم المستخدمة بالفعل
 ErrorInvoiceAvoirMustBeNegative=خطأ ، والصحيح يجب أن يكون للفاتورة بمبلغ سلبي
@@ -138,9 +140,9 @@ BillFrom=من
 BillTo=مشروع قانون ل
 ActionsOnBill=الإجراءات على فاتورة
 NewBill=فاتورة جديدة
-LastBills=آخر الفواتير ق ٪
-LastCustomersBills=٪ ق الماضي فواتير العملاء
-LastSuppliersBills=٪ ق الماضي فواتير الموردين
+LastBills=آخر الفواتير %s
+LastCustomersBills=%s الماضي فواتير العملاء
+LastSuppliersBills=%s الماضي فواتير الموردين
 AllBills=جميع الفواتير
 OtherBills=غيرها من الفواتير
 DraftBills=مشروع الفواتير
@@ -148,16 +150,16 @@ CustomersDraftInvoices=مشروع فواتير العملاء
 SuppliersDraftInvoices=مشروع فواتير الموردين
 Unpaid=غير المدفوعة
 ConfirmDeleteBill=هل أنت متأكد من أنك تريد حذف هذه الفاتورة؟
-ConfirmValidateBill=هل أنت متأكد أنك تريد التحقق من صحة هذه الفاتورة مع الإشارة <b>٪ ق؟</b>
+ConfirmValidateBill=هل أنت متأكد أنك تريد التحقق من صحة هذه الفاتورة مع الإشارة <b>%s؟</b>
 ConfirmUnvalidateBill=هل أنت متأكد أنك تريد تغيير <b>%s</b> فاتورة إلى وضع مشروع؟
-ConfirmClassifyPaidBill=هل أنت متأكد من أنك تريد تغيير فاتورة <b>٪ ق</b> لمركز paid؟
-ConfirmCancelBill=هل أنت متأكد من أنك تريد إلغاء الفاتورة <b>٪ ق؟</b>
+ConfirmClassifyPaidBill=هل أنت متأكد من أنك تريد تغيير فاتورة <b>%s</b> لمركز paid؟
+ConfirmCancelBill=هل أنت متأكد من أنك تريد إلغاء الفاتورة <b>%s؟</b>
 ConfirmCancelBillQuestion=لماذا تريدها لتصنيف هذه الفاتورة 'المهجورة؟
-ConfirmClassifyPaidPartially=هل أنت متأكد من أنك تريد تغيير فاتورة <b>٪ ق</b> لمركز paid؟
+ConfirmClassifyPaidPartially=هل أنت متأكد من أنك تريد تغيير فاتورة <b>%s</b> لمركز paid؟
 ConfirmClassifyPaidPartiallyQuestion=هذه الفاتورة لم تدفع بالكامل. ما هي أسباب قريبة لك هذه الفاتورة؟
-ConfirmClassifyPaidPartiallyReasonAvoir=Remaining unpaid <b>(%s %s)</b> is a discount granted because payment was made before term. I regularise the VAT with a credit note.
-ConfirmClassifyPaidPartiallyReasonDiscountNoVat=Remaining unpaid <b>(%s %s)</b> is a discount granted because payment was made before term. I accept to lose the VAT on this discount.
-ConfirmClassifyPaidPartiallyReasonDiscountVat=Remaining unpaid <b>(%s %s)</b> is a discount granted because payment was made before term. I recover the VAT on this discount without a credit note.
+ConfirmClassifyPaidPartiallyReasonAvoir=تبقى بدون أجر <b>(%s%s) هو</b> الخصم الممنوح لأنه تم السداد قبل الأجل. I تسوية الضريبة على القيمة المضافة مع ملاحظة الائتمان.
+ConfirmClassifyPaidPartiallyReasonDiscountNoVat=تبقى بدون أجر <b>(%s%s) هو</b> الخصم الممنوح لأنه تم السداد قبل الأجل. أنا أقبل أن تفقد ضريبة القيمة المضافة على هذا الخصم.
+ConfirmClassifyPaidPartiallyReasonDiscountVat=تبقى بدون أجر <b>(%s%s) هو</b> الخصم الممنوح لأنه تم السداد قبل الأجل. I استرداد ضريبة القيمة المضافة على هذا الخصم دون مذكرة الائتمان.
 ConfirmClassifyPaidPartiallyReasonBadCustomer=العملاء سيئة
 ConfirmClassifyPaidPartiallyReasonProductReturned=المنتجات عاد جزئيا
 ConfirmClassifyPaidPartiallyReasonOther=التخلي عن المبلغ لسبب آخر
@@ -166,11 +168,11 @@ ConfirmClassifyPaidPartiallyReasonDiscountVatDesc=في بعض البلدان ،
 ConfirmClassifyPaidPartiallyReasonAvoirDesc=استخدام هذا الخيار إذا كان كل ما لا يتناسب مع
 ConfirmClassifyPaidPartiallyReasonBadCustomerDesc=وهناك <b>سوء العميل</b> عميل التي ترفض سداد ديونه.
 ConfirmClassifyPaidPartiallyReasonProductReturnedDesc=ويستخدم هذا الاختيار عند الدفع ليس كاملا لأن بعض المنتجات أعيدت
-ConfirmClassifyPaidPartiallyReasonOtherDesc=استخدام هذا الخيار إذا كان كل ما لا يتناسب مع غيرها ، على سبيل المثال في الحالة التالية : <br> -- دفع ليست كاملة لأن بعض المنتجات شحنت العودة <br> -- أهم من المبلغ المطالب به لأن الخصم هو نسيان <br> في جميع الحالات ، والمبالغة في المبلغ المطالب به لا بد من تصحيحه في نظام المحاسبة عن طريق خلق الائتمان المذكرة.
+ConfirmClassifyPaidPartiallyReasonOtherDesc=استخدام هذا الخيار إذا كان كل ما لا يتناسب مع غيرها ، على سبيل المثال في الحالة التالية : <br> -- دفع ليست كاملة لأن بعض المنتجات شحنت العودة <br> -- أهم من المبلغ المطالب به لأن الخصم هو نسيان <br> في جميع الحالات ، والمبالغة في المبلغ المطالب به لا بد من تصحيحه في نظام المحاسبة عن طريق إنشاء الائتمان المذكرة.
 ConfirmClassifyAbandonReasonOther=أخرى
 ConfirmClassifyAbandonReasonOtherDesc=هذا الخيار وسوف يستخدم في جميع الحالات الأخرى. على سبيل المثال لأنك من خطة لإقامة استبدال الفاتورة.
-ConfirmCustomerPayment=هل تؤكد ذلك دفع مساهمات <b>٪</b> ٪ <b>ق</b> ق؟
-ConfirmSupplierPayment=Do you confirm this payment input for <b>%s</b> %s ?
+ConfirmCustomerPayment=هل تؤكد هذه الدفعة المدخلات ل <b>%s</b> %s ؟
+ConfirmSupplierPayment=هل تؤكد هذه الدفعة المدخلات ل <b>%s</b> %s؟
 ConfirmValidatePayment=هل أنت متأكد أنك تريد التحقق من صحة هذا الدفع؟ لم يطرأ أي تغيير يمكن الدفع مرة واحدة على صحتها.
 ValidateBill=التحقق من صحة الفواتير
 UnvalidateBill=Unvalidate فاتورة
@@ -178,31 +180,32 @@ NumberOfBills=ملاحظة : من الفواتير
 NumberOfBillsByMonth=ملحوظة من الفواتير من قبل شهر
 AmountOfBills=مبلغ الفواتير
 AmountOfBillsByMonthHT=كمية من الفواتير من قبل شهر (بعد خصم الضرائب)
-ShowSocialContribution=Show social/fiscal tax
+ShowSocialContribution=تظهر الضريبة الاجتماعية / المالية
 ShowBill=وتظهر الفاتورة
 ShowInvoice=وتظهر الفاتورة
 ShowInvoiceReplace=وتظهر استبدال الفاتورة
 ShowInvoiceAvoir=وتظهر المذكرة الائتمان
 ShowInvoiceDeposit=وتبين أن تودع الفاتورة
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=وتظهر الدفع
 AlreadyPaid=دفعت بالفعل
-AlreadyPaidBack=Already paid back
+AlreadyPaidBack=دفعت بالفعل العودة
 AlreadyPaidNoCreditNotesNoDeposits=دفعت بالفعل (بدون تلاحظ الائتمان والودائع)
 Abandoned=المهجورة
-RemainderToPay=Remaining unpaid
-RemainderToTake=Remaining amount to take
-RemainderToPayBack=Remaining amount to pay back
-Rest=Pending
+RemainderToPay=تبقى بدون أجر
+RemainderToTake=المتبقي لاتخاذ
+RemainderToPayBack=تبقى مبلغ لتسديد
+Rest=بانتظار
 AmountExpected=المبلغ المطالب به
 ExcessReceived=تلقى الزائدة
 EscompteOffered=عرض الخصم (الدفع قبل الأجل)
-SendBillRef=Submission of invoice %s
-SendReminderBillRef=Submission of invoice %s (reminder)
+SendBillRef=تقديم فاتورة%s
+SendReminderBillRef=تقديم فاتورة%s (تذكير)
 StandingOrders=أوامر دائمة
 StandingOrder=من أجل الوقوف
 NoDraftBills=أي مشروع الفواتير
 NoOtherDraftBills=أي مشروع الفواتير
-NoDraftInvoices=No draft invoices
+NoDraftInvoices=لا يوجد مسودة فواتير
 RefBill=فاتورة المرجع
 ToBill=على مشروع قانون
 RemainderToBill=تبقى لمشروع قانون
@@ -215,19 +218,20 @@ DateEcheance=الحد من الموعد المقرر
 DateInvoice=تاريخ الفاتورة
 NoInvoice=لا الفاتورة
 ClassifyBill=تصنيف الفاتورة
-SupplierBillsToPay=Unpaid supplier invoices
-CustomerBillsUnpaid=Unpaid customer invoices
+SupplierBillsToPay=فواتير الموردين غير المدفوعة
+CustomerBillsUnpaid=فواتير العملاء غير المسددة
 NonPercuRecuperable=غير القابلة للاسترداد
 SetConditions=تحدد شروط الدفع
 SetMode=حدد طريقة الدفع
 Billed=فواتير
-RepeatableInvoice=Template invoice
-RepeatableInvoices=Template invoices
-Repeatable=Template
-Repeatables=Templates
-ChangeIntoRepeatableInvoice=Convert into template invoice
-CreateRepeatableInvoice=Create template invoice
-CreateFromRepeatableInvoice=Create from template invoice
+RecurringInvoices=Recurring invoices
+RepeatableInvoice=فاتورة قالب
+RepeatableInvoices=الفواتير قالب
+Repeatable=قالب
+Repeatables=النماذج
+ChangeIntoRepeatableInvoice=تحويل إلى قالب فاتورة
+CreateRepeatableInvoice=إنشاء فاتورة قالب
+CreateFromRepeatableInvoice=إنشاء من قالب الفاتورة
 CustomersInvoicesAndInvoiceLines=فواتير العملاء والفواتير 'خطوط
 CustomersInvoicesAndPayments=العملاء والفواتير والمدفوعات
 ExportDataset_invoice_1=قائمة العملاء والفواتير والفواتير 'خطوط
@@ -239,21 +243,21 @@ Reductions=التخفيضات
 ReductionsShort=Reduc.
 Discounts=خصومات
 AddDiscount=إضافة الخصم
-AddRelativeDiscount=خلق خصم قريب
-EditRelativeDiscount=Edit relative discount
+AddRelativeDiscount=إنشاء خصم قريب
+EditRelativeDiscount=تعديل الخصم النسبي
 AddGlobalDiscount=إضافة الخصم
 EditGlobalDiscounts=تعديل الخصومات مطلق
-AddCreditNote=علما خلق الائتمان
+AddCreditNote=علما إنشاء الائتمان
 ShowDiscount=وتظهر الخصم
-ShowReduc=Show the deduction
+ShowReduc=عرض خصم
 RelativeDiscount=الخصم النسبي
 GlobalDiscount=خصم العالمية
 CreditNote=علما الائتمان
 CreditNotes=ويلاحظ الائتمان
 Deposit=إيداع
 Deposits=الودائع
-DiscountFromCreditNote=خصم ٪ من الائتمان علما ق
-DiscountFromDeposit=دفع فاتورة ٪ من الودائع ق
+DiscountFromCreditNote=خصم من دائن  %s
+DiscountFromDeposit=المدفوعات من فاتورة  %s
 AbsoluteDiscountUse=هذا النوع من الائتمان يمكن استخدامها على الفاتورة قبل المصادقة
 CreditNoteDepositUse=الفاتورة يجب أن يصادق على استخدام هذه الأرصدة ملك
 NewGlobalDiscount=تحديد خصم جديد
@@ -267,8 +271,9 @@ BillAddress=مشروع قانون معالجة
 HelpEscompte=هذا الخصم هو الخصم الممنوح للعميل لأن الدفع قبل البعيد.
 HelpAbandonBadCustomer=هذا المبلغ قد تم التخلي عنها (وذكر أن العملاء سيئة العملاء) ، ويعتبر أحد exceptionnal فضفاضة.
 HelpAbandonOther=هذا المبلغ قد تم التخلي عنها لأنها كانت خطأ (خطأ أو فاتورة العميل أي بعبارة أخرى على سبيل المثال)
-IdSocialContribution=Social/fiscal tax payment id
+IdSocialContribution=اجتماعي / ضريبة مالية دفع معرف
 PaymentId=دفع معرف
+PaymentRef=Payment ref.
 InvoiceId=فاتورة معرف
 InvoiceRef=المرجع الفاتورة.
 InvoiceDateCreation=فاتورة تاريخ الإنشاء
@@ -280,22 +285,26 @@ RemoveDiscount=إزالة الخصم
 WatermarkOnDraftBill=مشاريع مائية على فواتير (إذا كانت فارغة لا شيء)
 InvoiceNotChecked=لا فاتورة مختارة
 CloneInvoice=استنساخ الفاتورة
-ConfirmCloneInvoice=هل أنت متأكد من استنساخ هذه الفاتورة <b>٪ ق؟</b>
+ConfirmCloneInvoice=هل أنت متأكد من استنساخ هذه الفاتورة <b>%s؟</b>
 DisabledBecauseReplacedInvoice=العمل والمعوقين بسبب الفاتورة قد استبدل
-DescTaxAndDividendsArea=This area presents a summary of all payments made for special expenses. Only records with payment during the fixed year are included here.
+DescTaxAndDividendsArea=تقدم هذا المجال ملخص لجميع المبالغ المدفوعة للنفقات الخاصة. يتم تضمين السجلات فقط مع دفع خلال السنة الثابتة هنا.
 NbOfPayments=ملاحظة : للمدفوعات
 SplitDiscount=انقسام في الخصم
-ConfirmSplitDiscount=هل أنت متأكد من أن هذا الانقسام خصم <b>٪ ق</b> ق ٪ الى 2 خصومات أقل؟
+ConfirmSplitDiscount=هل أنت متأكد من أن هذا الانقسام خصم <b>%s</b> %s الى 2 خصومات أقل؟
 TypeAmountOfEachNewDiscount=مقدار مساهمة كل من جزأين :
 TotalOfTwoDiscountMustEqualsOriginal=مجموعه جديدتين الخصم يجب أن تكون مساوية للخصم المبلغ الأصلي.
 ConfirmRemoveDiscount=هل أنت متأكد من أنك تريد إزالة هذا الخصم؟
 RelatedBill=الفاتورة ذات الصلة
 RelatedBills=الفواتير ذات الصلة
-RelatedCustomerInvoices=Related customer invoices
-RelatedSupplierInvoices=Related supplier invoices
-LatestRelatedBill=Latest related invoice
-WarningBillExist=Warning, one or more invoice already exist
-MergingPDFTool=Merging PDF tool
+RelatedCustomerInvoices=فواتير العملاء ذات صلة
+RelatedSupplierInvoices=فواتير الموردين ذات صلة
+LatestRelatedBill=أحدث فاتورة ذات الصلة
+WarningBillExist=تحذير، واحد أو أكثر من فاتورة موجودة بالفعل
+MergingPDFTool=دمج أداة PDF
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=فورا
@@ -310,12 +319,12 @@ PaymentConditionShort60DENDMONTH=60 يوما من نهاية الشهر
 PaymentCondition60DENDMONTH=60 يوما من نهاية الشهر
 PaymentConditionShortPT_DELIVERY=تسليم
 PaymentConditionPT_DELIVERY=التسليم
-PaymentConditionShortPT_ORDER=On order
-PaymentConditionPT_ORDER=On order
+PaymentConditionShortPT_ORDER=على الطلب
+PaymentConditionPT_ORDER=على الطلب
 PaymentConditionShortPT_5050=50-50
-PaymentConditionPT_5050=50%% in advance, 50%% on delivery
-FixAmount=Fix amount
-VarAmount=Variable amount (%% tot.)
+PaymentConditionPT_5050=50 ٪٪ مقدما، 50 ٪٪ عند التسليم
+FixAmount=كمية الإصلاح
+VarAmount=مقدار متغير (٪٪ TOT).
 # PaymentType
 PaymentTypeVIR=الودائع المصرفية
 PaymentTypeShortVIR=الودائع المصرفية
@@ -327,14 +336,14 @@ PaymentTypeCB=بطاقة الائتمان
 PaymentTypeShortCB=بطاقة الائتمان
 PaymentTypeCHQ=الشيكات
 PaymentTypeShortCHQ=الشيكات
-PaymentTypeTIP=Interbank Payment
-PaymentTypeShortTIP=Interbank Payment
+PaymentTypeTIP=ما بين البنوك الدفع
+PaymentTypeShortTIP=ما بين البنوك الدفع
 PaymentTypeVAD=على خط التسديد
 PaymentTypeShortVAD=على خط التسديد
 PaymentTypeTRA=Traite
 PaymentTypeShortTRA=Traite
-PaymentTypeFAC=Factor
-PaymentTypeShortFAC=Factor
+PaymentTypeFAC=عامل
+PaymentTypeShortFAC=عامل
 BankDetails=التفاصيل المصرفية
 BankCode=رمز المصرف
 DeskCode=مدونة مكتبية
@@ -349,9 +358,9 @@ ExtraInfos=معلومات اضافية
 RegulatedOn=وتنظم على
 ChequeNumber=رقم الشيك
 ChequeOrTransferNumber=شيك / نقل رقم
-ChequeMaker=Check/Transfer transmitter
+ChequeMaker=الاختيار / الارسال نقل
 ChequeBank=الشيكات المصرفية
-CheckBank=Check
+CheckBank=الاختيار
 NetToBePaid=الصافي للدفع
 PhoneNumber=الهاتف :
 FullPhoneNumber=الهاتف
@@ -368,7 +377,7 @@ LawApplicationPart2=البضاعة تظل ملكا لل
 LawApplicationPart3=البائع إلى حين استكمال صرف
 LawApplicationPart4=ثمنها.
 LimitedLiabilityCompanyCapital=SARL برأس مال
-UseLine=Apply
+UseLine=تطبيق
 UseDiscount=استخدام الخصم
 UseCredit=استخدام القروض
 UseCreditNoteInInvoicePayment=تخفيض المبلغ لدفع هذه القروض
@@ -380,32 +389,34 @@ ChequesReceipts=الشيكات والإيصالات
 ChequesArea=الشيكات مجال الودائع
 ChequeDeposits=الشيكات الودائع
 Cheques=الشيكات
-DepositId=Id deposit
-NbCheque=Number of checks
-CreditNoteConvertedIntoDiscount=هذه المذكرة الائتمان أو إيداع فاتورة تم تحويلها إلى ٪ ق
+DepositId=إيداع معرف
+NbCheque=عدد الشيكات
+CreditNoteConvertedIntoDiscount=هذه المذكرة الائتمان أو إيداع فاتورة تم تحويلها إلى %s
 UsBillingContactAsIncoiveRecipientIfExist=فواتير العملاء استخدام عنوان الاتصال بدلا من التصدي لطرف ثالث كما المتلقية للفواتير
 ShowUnpaidAll=وتظهر جميع الفواتير غير المسددة
 ShowUnpaidLateOnly=وتبين في وقت متأخر من الفواتير غير المدفوعة فقط
-PaymentInvoiceRef=دفع فاتورة ٪ ق
+PaymentInvoiceRef=دفع فاتورة %s
 ValidateInvoice=تحقق من صحة الفواتير
 Cash=نقد
 Reported=تأخر
 DisabledBecausePayments=غير ممكن لأن هناك بعض المدفوعات
 CantRemovePaymentWithOneInvoicePaid=تصنيف لا يمكن إزالة الدفع لأنه ليس هناك على الأقل على الفاتورة سيولي
 ExpectedToPay=من المتوقع الدفع
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=سيولي هذا الدفع
-ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
-ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
+ClosePaidInvoicesAutomatically=تصنيف "مدفوع" كل مستوى، حالة أو الفواتير استبدال دفعت بالكامل.
+ClosePaidCreditNotesAutomatically=تصنيف "مدفوع" كل الملاحظات الائتمان تدفع بالكامل مرة أخرى.
 AllCompletelyPayedInvoiceWillBeClosed=كل فاتورة مع عدم وجود لا تزال لدفع ستغلق تلقائيا إلى &quot;فياض&quot; الوضع.
-ToMakePayment=Pay
-ToMakePaymentBack=Pay back
-ListOfYourUnpaidInvoices=List of unpaid invoices
-NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third parties you are linked to as a sale representative.
-RevenueStamp=Revenue stamp
-YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
+ToMakePayment=دفع
+ToMakePaymentBack=تسديد
+ListOfYourUnpaidInvoices=قائمة الفواتير غير المسددة
+NoteListOfYourUnpaidInvoices=ملاحظة: تحتوي هذه القائمة على الفواتير الوحيدة لأطراف ثالثة ترتبط لك كممثل بيع.
+RevenueStamp=طوابع الواردات
+YouMustCreateInvoiceFromThird=يتوفر هذا الخيار فقط عند إنشاء الفاتورة من علامة التبويب "العملاء" من مرشحين عن
 PDFCrabeDescription=نموذج فاتورة Crabe. نموذج الفاتورة كاملة (دعم الخيار الضريبة على القيمة المضافة ، والخصومات ، وشروط الدفع ، والشعار ، الخ..)
-TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
-MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+TerreNumRefModelDesc1=عودة عدد مع الشكل syymm NNNN عن الفواتير القياسية و٪ syymm-NNNN لتلاحظ الائتمان حيث هو YY العام٪، مم هو الشهر وnnnn هو تسلسل مع أي انقطاع وعدم العودة إلى 0
+MarsNumRefModelDesc1=عودة عدد مع الشكل syymm NNNN عن الفواتير القياسية٪،٪ syymm-NNNN عن الفواتير استبدال،٪ syymm-NNNN لفواتير الودائع و٪ syymm-NNNN لتلاحظ الائتمان حيث هو YY العام، مم هو الشهر وnnnn هو تسلسل مع عدم وجود كسر وعدم العودة إلى 0
 TerreNumRefModelError=وهناك مشروع قانون بدءا من دولار ويوجد بالفعل syymm لا تتفق مع هذا النموذج من التسلسل. إزالة أو تغيير تسميتها لتصبح لتفعيل هذه الوحدة.
 ##### Types de contacts #####
 TypeContact_facture_internal_SALESREPFOLL=ممثل العميل متابعة فاتورة
@@ -417,19 +428,27 @@ TypeContact_invoice_supplier_external_BILLING=المورد فاتورة الات
 TypeContact_invoice_supplier_external_SHIPPING=المورد الشحن الاتصال
 TypeContact_invoice_supplier_external_SERVICE=المورد خدمة الاتصال
 # Situation invoices
-InvoiceFirstSituationAsk=First situation invoice
-InvoiceFirstSituationDesc=The <b>situation invoices</b> are tied to situations related to a progression, for example the progression of a construction. Each situation is tied to an invoice.
-InvoiceSituation=Situation invoice
-InvoiceSituationAsk=Invoice following the situation
-InvoiceSituationDesc=Create a new situation following an already existing one
-SituationAmount=Situation invoice amount(net)
-SituationDeduction=Situation subtraction
-Progress=Progress
-ModifyAllLines=Modify all lines
-CreateNextSituationInvoice=Create next situation
-NotLastInCycle=This invoice in not the last in cycle and must not be modified.
-DisabledBecauseNotLastInCycle=The next situation already exists.
-DisabledBecauseFinal=This situation is final.
-CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
-NoSituations=No open situations
-InvoiceSituationLast=Final and general invoice
+InvoiceFirstSituationAsk=الفاتورة الأولى الوضع
+InvoiceFirstSituationDesc=وترتبط <b>الفواتير الوضع</b> إلى حالات تتعلق التقدم، على سبيل المثال تطور البناء. ويرتبط كل حالة على فاتورة.
+InvoiceSituation=فاتورة الوضع
+InvoiceSituationAsk=فاتورة تتابع الوضع
+InvoiceSituationDesc=إنشاء وضعا جديدا التالية موجودة بالفعل
+SituationAmount=مبلغ الفاتورة الوضع (صافي)
+SituationDeduction=الوضع الطرح
+Progress=تقدم
+ModifyAllLines=تعديل كافة خطوط
+CreateNextSituationInvoice=إنشاء الوضع المقبل
+NotLastInCycle=لا يجب تعديل هذه الفاتورة في ليست الأخيرة في دورة و.
+DisabledBecauseNotLastInCycle=الوضع القادم موجود بالفعل.
+DisabledBecauseFinal=هذا الوضع النهائي.
+CantBeLessThanMinPercent=التقدم لا يمكن أن يكون أصغر من قيمتها في الحالة السابقة.
+NoSituations=لا حالات مفتوحة
+InvoiceSituationLast=الفاتورة النهائية والعامة
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/ar_SA/boxes.lang b/htdocs/langs/ar_SA/boxes.lang
index 4b457a32b8385ccbc0e1f135becd3a1a437bcdd5..7d138bc70924b0d8de4917334522809f44acb463 100644
--- a/htdocs/langs/ar_SA/boxes.lang
+++ b/htdocs/langs/ar_SA/boxes.lang
@@ -1,97 +1,98 @@
 # Dolibarr language file - Source file is en_US - boxes
-BoxLastRssInfos=Rss المعلومات
-BoxLastProducts=ق الماضي ٪ منتجات / خدمات
-BoxProductsAlertStock=Products in stock alert
-BoxLastProductsInContract=٪ ق الماضي التعاقد المنتجات / الخدمات
-BoxLastSupplierBills=الماضي فواتير المورد
-BoxLastCustomerBills=الماضي العميل الفواتير
-BoxOldestUnpaidCustomerBills=اقدم العميل الفواتير غير المدفوعة
-BoxOldestUnpaidSupplierBills=أقدم المورد الفواتير غير المدفوعة
-BoxLastProposals=آخر مقترحات تجارية
-BoxLastProspects=آفاق الماضي
-BoxLastCustomers=آخر الزبائن
-BoxLastSuppliers=الماضي الموردين
-BoxLastCustomerOrders=آخر طلبات الزبائن
-BoxLastValidatedCustomerOrders=Last validated customer orders
-BoxLastBooks=آخر الكتب
-BoxLastActions=آخر الأعمال
-BoxLastContracts=آخر العقود
+BoxLastRssInfos=المعلومات RSS
+BoxLastProducts=أخر %s  منتجات / خدمات
+BoxProductsAlertStock=المنتجات في حالة تأهب الأسهم
+BoxLastProductsInContract=نشاط٪ انكمش المنتجات / الخدمات
+BoxLastSupplierBills=فواتير الموردين الماضي
+BoxLastCustomerBills=فواتير الماضي الزبون
+BoxOldestUnpaidCustomerBills=فواتير غير مدفوعة الأجر لأقدم العملاء
+BoxOldestUnpaidSupplierBills=فواتير غير مدفوعة الأجر لأقدم المورد
+BoxLastProposals=مقترحات التجارية مشاركة
+BoxLastProspects=آفاق آخر تعديل ل
+BoxLastCustomers=الزبائن آخر تعديل
+BoxLastSuppliers=آخر تعديل الموردين
+BoxLastCustomerOrders=طلبات العملاء الماضية
+BoxLastValidatedCustomerOrders=أخر طلبات العملاء التحقق من صحة
+BoxLastBooks=مشاركة الكتب
+BoxLastActions=مشاركة الإجراءات
+BoxLastContracts=مشاركة عقود
 BoxLastContacts=مشاركة اتصالات / عناوين
-BoxLastMembers=مشاركة الأعضاء
-BoxFicheInter=Last interventions
-BoxCurrentAccounts=Open accounts balance
-BoxSalesTurnover=مبيعات
-BoxTotalUnpaidCustomerBills=مجموع الفواتير غير المدفوعة للعميل
-BoxTotalUnpaidSuppliersBills=مجموع الفواتير غير المدفوعة المورد
-BoxTitleLastBooks=آخر الكتب المسجلة ق ٪
-BoxTitleNbOfCustomers=دي اسم العميل
-BoxTitleLastRssInfos=آخر الأخبار من ٪ ق ق ٪
-BoxTitleLastProducts=آخر تعديل ٪ ق المنتجات / الخدمات
-BoxTitleProductsAlertStock=Products in stock alert
-BoxTitleLastCustomerOrders=Last %s customer orders
-BoxTitleLastModifiedCustomerOrders=Last %s modified customer orders
-BoxTitleLastSuppliers=الماضي وسجل الموردين ق ٪
-BoxTitleLastCustomers=الماضي وسجل للعملاء ل ٪
-BoxTitleLastModifiedSuppliers=%s آخر تعديل الموردين
-BoxTitleLastModifiedCustomers=%s آخر تعديل الزبائن
-BoxTitleLastCustomersOrProspects=Last %s customers or prospects
-BoxTitleLastPropals=Last %s proposals
-BoxTitleLastModifiedPropals=Last %s modified proposals
-BoxTitleLastCustomerBills=ق الماضي ٪ العميل الفواتير
-BoxTitleLastModifiedCustomerBills=Last %s modified customer invoices
-BoxTitleLastSupplierBills=ق الماضي ٪ فواتير المورد
-BoxTitleLastModifiedSupplierBills=Last %s modified supplier invoices
-BoxTitleLastModifiedProspects=%s آخر تعديل آفاق
-BoxTitleLastProductsInContract=الماضي ٪ ق المنتجات / الخدمات في عقد
-BoxTitleLastModifiedMembers=Last %s members
-BoxTitleLastFicheInter=Last %s modified intervention
-BoxTitleOldestUnpaidCustomerBills=Oldest %s unpaid customer invoices
-BoxTitleOldestUnpaidSupplierBills=Oldest %s unpaid supplier invoices
-BoxTitleCurrentAccounts=Open accounts balances
-BoxTitleSalesTurnover=مبيعات
-BoxTitleTotalUnpaidCustomerBills=Unpaid customer invoices
-BoxTitleTotalUnpaidSuppliersBills=Unpaid supplier invoices
-BoxTitleLastModifiedContacts=%s آخر تعديل الأسماء / عناوين
-BoxMyLastBookmarks=آخر العناوين ق ٪
-BoxOldestExpiredServices=أقدم نشط خدمات منتهية الصلاحية
-BoxLastExpiredServices=%s مشاركة أقدم اتصالات مع خدمات منتهية الصلاحية نشط
-BoxTitleLastActionsToDo=ق ٪ الإجراءات الأخيرة للقيام
-BoxTitleLastContracts=%s العقود الماضية
-BoxTitleLastModifiedDonations=%s آخر تعديل التبرعات
-BoxTitleLastModifiedExpenses=Last %s modified expense reports
-BoxGlobalActivity=Global activity (invoices, proposals, orders)
-FailedToRefreshDataInfoNotUpToDate=فشلت في تجديد تدفق RSS. اخر تحديث تاريخ : ٪ ق
-LastRefreshDate=تاريخ آخر تجديد
-NoRecordedBookmarks=No bookmarks defined. Click <a href=لا علامات محددة. اضغط <a href="%s">هنا</a> لإضافة إشارات مرجعية.
+BoxLastMembers=نشاط أعضاء
+BoxFicheInter=مشاركة التدخلات
+BoxCurrentAccounts=ميزان الحسابات المفتوحة
+BoxSalesTurnover=حجم المبيعات
+BoxTotalUnpaidCustomerBills=فواتير العملاء غير مدفوعة الأجر الكلي 
+BoxTotalUnpaidSuppliersBills=فواتير المورد غير مدفوعة الأجر الكلي 
+BoxTitleLastBooks=أخر %s الكتب المسجلة
+BoxTitleNbOfCustomers=عدد العملاء
+BoxTitleLastRssInfos=أخر %s الأخبار من٪ s
+BoxTitleLastProducts=أخر %s تعديلات على المنتجات / الخدمات
+BoxTitleProductsAlertStock=المنتجات في حالة تأهب الأسهم
+BoxTitleLastCustomerOrders=أخر %s  طلبات للعملاء
+BoxTitleLastModifiedCustomerOrders=أخر %s طلبات العملاء المعدلة
+BoxTitleLastSuppliers=أخر %s موردين مسجلين
+BoxTitleLastCustomers=أخر %s عملاء مسجلين
+BoxTitleLastModifiedSuppliers=أخر %s موردين تم تعديلهم
+BoxTitleLastModifiedCustomers=أخر %s عملاء تم تعديلهم
+BoxTitleLastCustomersOrProspects=أخر %s عملاء أو اقتراحات
+BoxTitleLastPropals=أخر %s مقترحات
+BoxTitleLastModifiedPropals=أخر %s مقترحات التعديل
+BoxTitleLastCustomerBills=أخر %s فواتير العميل
+BoxTitleLastModifiedCustomerBills=أخر %s  معدلة فواتير العملاء
+BoxTitleLastSupplierBills=أخر %s فواتير المورد
+BoxTitleLastModifiedSupplierBills=أخر %s  معدلة فواتير الموردين
+BoxTitleLastModifiedProspects=أخر %s اقتراحات تم تعديلها
+BoxTitleLastProductsInContract=أخر %s منتجات / خدمات في عقد
+BoxTitleLastModifiedMembers=أخر %s أعضاء 
+BoxTitleLastFicheInter=أخر %s تعديل
+BoxTitleOldestUnpaidCustomerBills=أقدم %s  غير المدفوعة فواتير العملاء
+BoxTitleOldestUnpaidSupplierBills=أقدم %s الفواتير غير المسددة المورد
+BoxTitleCurrentAccounts=أرصدة الحسابات المفتوحة
+BoxTitleSalesTurnover=حجم المبيعات
+BoxTitleTotalUnpaidCustomerBills=فواتير العملاء غير المسددة
+BoxTitleTotalUnpaidSuppliersBills=فواتير الموردين غير المدفوعة
+BoxTitleLastModifiedContacts=أخر %s معدلة اتصالات / عناوين
+BoxMyLastBookmarks=إشاراتي مشاركة الصورة٪
+BoxOldestExpiredServices=أقدم خدمات منتهية الصلاحية النشطة
+BoxLastExpiredServices=مشاركة الصورة٪ أقدم اتصالات مع خدمات منتهية الصلاحية النشطة
+BoxTitleLastActionsToDo=الإجراءات الأخيرة %s للقيام
+BoxTitleLastContracts=العقود %s الماضية
+BoxTitleLastModifiedDonations=أخر  %s التبرعات تعديل
+BoxTitleLastModifiedExpenses=أخر  %s  تقارير النفقات المعدلة
+BoxGlobalActivity=النشاط العالمي (الفواتير والمقترحات والطلبات)
+FailedToRefreshDataInfoNotUpToDate=فشل لتحديث تدفق RSS. تاريخ آخر تحديث ناجحا:٪ الصورة
+LastRefreshDate=تاريخ آخر تحديث
+NoRecordedBookmarks=أية إشارات محددة.
 ClickToAdd=انقر هنا لإضافة.
-NoRecordedCustomers=لم تسجل العملاء
-NoRecordedContacts=أي اتصالات مسجل
-NoActionsToDo=أي إجراءات للقيام
-NoRecordedOrders=لم تسجل أوامر العملاء
-NoRecordedProposals=لم تسجل مقترحات
-NoRecordedInvoices=لم تسجل العملاء والفواتير
-NoUnpaidCustomerBills=لا العميل الفواتير غير المدفوعة
-NoRecordedSupplierInvoices=لم تسجل فواتير المورد
-NoUnpaidSupplierBills=لا المورد الفواتير غير المدفوعة
-NoModifiedSupplierBills=أي مورد مسجل في الفواتير
+NoRecordedCustomers=لا العملاء تسجيل
+NoRecordedContacts=أي اتصالات تسجيل
+NoActionsToDo=توجد إجراءات لتفعل
+NoRecordedOrders=أوامر العملاء لا يسجل في
+NoRecordedProposals=أي مقترحات تسجيل
+NoRecordedInvoices=فواتير لم تسجل العملاء ل
+NoUnpaidCustomerBills=فواتير غير مدفوعة الأجر في أي العملاء
+NoRecordedSupplierInvoices=فواتير لم المورد المسجلة في
+NoUnpaidSupplierBills=فواتير غير مدفوعة الأجر في أي المورد
+NoModifiedSupplierBills=فواتير لم المورد المسجلة في
 NoRecordedProducts=لم تسجل المنتجات / الخدمات
-NoRecordedProspects=لم تسجل آفاق
-NoContractedProducts=أي المنتجات / الخدمات المتعاقد عليها
-NoRecordedContracts=لا عقود المسجلة
-NoRecordedInterventions=No recorded interventions
-BoxLatestSupplierOrders=Latest supplier orders
-BoxTitleLatestSupplierOrders=Last %s supplier orders
-BoxTitleLatestModifiedSupplierOrders=Last %s modified supplier orders
-NoSupplierOrder=No recorded supplier order
-BoxCustomersInvoicesPerMonth=Customer invoices per month
-BoxSuppliersInvoicesPerMonth=Supplier invoices per month
-BoxCustomersOrdersPerMonth=Customer orders per month
-BoxSuppliersOrdersPerMonth=Supplier orders per month
-BoxProposalsPerMonth=Proposals per month
-NoTooLowStockProducts=No product under the low stock limit
-BoxProductDistribution=Products/Services distribution
-BoxProductDistributionFor=Distribution of %s for %s
-ForCustomersInvoices=العملاء والفواتير
-ForCustomersOrders=Customers orders
-ForProposals=مقترحات
-LastXMonthRolling=The last %s month rolling
+NoRecordedProspects=لا آفاق المسجلة
+NoContractedProducts=لا توجد منتجات / خدمات التعاقد
+NoRecordedContracts=أي عقود المسجلة
+NoRecordedInterventions=لا التدخلات المسجلة
+BoxLatestSupplierOrders=أحدث أوامر المورد
+BoxTitleLatestSupplierOrders=آخر %s أوامر المورد
+BoxTitleLatestModifiedSupplierOrders=أخر %s تعديل أوامر المورد
+NoSupplierOrder=لم تسجل المورد أجل
+BoxCustomersInvoicesPerMonth=فواتير العملاء شهريا
+BoxSuppliersInvoicesPerMonth=فواتير الموردين شهريا
+BoxCustomersOrdersPerMonth=طلبات العملاء شهريا
+BoxSuppliersOrdersPerMonth=أوامر المورد شهريا
+BoxProposalsPerMonth=مقترحات شهريا
+NoTooLowStockProducts=أي منتج في إطار الحد الأقصى الأسهم منخفضة
+BoxProductDistribution=منتجات / خدمات توزيع
+BoxProductDistributionFor=توزيع من %s لـ %s
+ForCustomersInvoices=عملاء الفواتير
+ForCustomersOrders=أوامر العملاء
+ForProposals=اقتراحات
+LastXMonthRolling=أخر %s متداولة شهريا
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/ar_SA/cashdesk.lang b/htdocs/langs/ar_SA/cashdesk.lang
index bfad2785bd5e9168515f99b6da3a701a67d2e08a..d7d29160c2cc8d9764f2e9ce009752e4080a313e 100644
--- a/htdocs/langs/ar_SA/cashdesk.lang
+++ b/htdocs/langs/ar_SA/cashdesk.lang
@@ -12,7 +12,7 @@ CashDeskProducts=المنتجات
 CashDeskStock=الأوراق المالية
 CashDeskOn=في
 CashDeskThirdParty=طرف ثالث
-CashdeskDashboard=Point of sale access
+CashdeskDashboard=نقاط البيع الوصول
 ShoppingCart=عربة التسوق
 NewSell=بيع جديد
 BackOffice=المكتب الخلفي
@@ -36,6 +36,6 @@ BankToPay=تهمة حساب
 ShowCompany=عرض شركة
 ShowStock=عرض مستودع
 DeleteArticle=انقر لإزالة هذه المادة
-FilterRefOrLabelOrBC=Search (Ref/Label)
-UserNeedPermissionToEditStockToUsePos=You ask to decrease stock on invoice creation, so user that use POS need to have permission to edit stock.
-DolibarrReceiptPrinter=Dolibarr Receipt Printer
+FilterRefOrLabelOrBC=بحث (المرجع / تسمية)
+UserNeedPermissionToEditStockToUsePos=كنت أسأل أن ينخفض ​​المخزون على إنشاء الفاتورة، لذلك المستخدم التي تستخدم POS تحتاج إلى تملك الصلاحيات لتعديل الأسهم.
+DolibarrReceiptPrinter=طابعة استلام Dolibarr
diff --git a/htdocs/langs/ar_SA/categories.lang b/htdocs/langs/ar_SA/categories.lang
index 707c42f201b5b6bc4939a4f54cabfa6c62cc5e23..c7756c0228ebb4030319318f19f16cb842894d85 100644
--- a/htdocs/langs/ar_SA/categories.lang
+++ b/htdocs/langs/ar_SA/categories.lang
@@ -1,62 +1,62 @@
 # Dolibarr language file - Source file is en_US - categories
-Rubrique=Tag/Category
-Rubriques=Tags/Categories
-categories=tags/categories
-TheCategorie=The tag/category
-NoCategoryYet=No tag/category of this type created
+Rubrique=العلامة / الفئة
+Rubriques=الكلمات / فئات
+categories=علامات / فئات
+TheCategorie=العلامة / فئة
+NoCategoryYet=أي علامة / فئة من هذا النوع تم إنشاؤها
 In=في
 AddIn=أضيف في
 modify=تعديل
 Classify=تصنيف
-CategoriesArea=Tags/Categories area
-ProductsCategoriesArea=Products/Services tags/categories area
-SuppliersCategoriesArea=Suppliers tags/categories area
-CustomersCategoriesArea=Customers tags/categories area
-ThirdPartyCategoriesArea=Third parties tags/categories area
-MembersCategoriesArea=Members tags/categories area
-ContactsCategoriesArea=Contacts tags/categories area
-MainCats=Main tags/categories
+CategoriesArea=الكلمات / فئات منطقة
+ProductsCategoriesArea=المنتجات / الخدمات به / المنطقة الفئات
+SuppliersCategoriesArea=الموردين به / المنطقة الفئات
+CustomersCategoriesArea=العملاء العلامات / المنطقة الفئات
+ThirdPartyCategoriesArea=به أطراف ثالثة / المنطقة الفئات
+MembersCategoriesArea=به أعضاء / المنطقة الفئات
+ContactsCategoriesArea=اتصالات به / المنطقة الفئات
+MainCats=العلامات الرئيسية / فئات
 SubCats=الفئات الفرعية
 CatStatistics=إحصائيات
-CatList=List of tags/categories
-AllCats=All tags/categories
-ViewCat=View tag/category
-NewCat=Add tag/category
-NewCategory=New tag/category
-ModifCat=Modify tag/category
-CatCreated=Tag/category created
-CreateCat=Create tag/category
-CreateThisCat=Create this tag/category
+CatList=قائمة العلامات / فئات
+AllCats=كافة العلامات / فئات
+ViewCat=عرض العلامة / فئة
+NewCat=إضافة العلامة / فئة
+NewCategory=علامة جديدة / فئة
+ModifCat=تعديل العلامة / فئة
+CatCreated=العلامة / فئة خلقت
+CreateCat=إنشاء العلامة / فئة
+CreateThisCat=إنشاء هذه العلامة / فئة
 ValidateFields=صحة المجالات
 NoSubCat=لا فرعية.
 SubCatOf=فرعية
-FoundCats=Found tags/categories
-FoundCatsForName=Tags/categories found for the name :
-FoundSubCatsIn=Subcategories found in the tag/category
-ErrSameCatSelected=You selected the same tag/category several times
-ErrForgotCat=You forgot to choose the tag/category
+FoundCats=علامات وجدت / فئات
+FoundCatsForName=الكلمات / فئات وجدت لاسم:
+FoundSubCatsIn=فرعية وجدت في العلامة / فئة
+ErrSameCatSelected=لقد حددت نفس العلامة / فئة عدة مرات
+ErrForgotCat=كنت قد نسيت أن اختيار العلامة / فئة
 ErrForgotField=نسيت أن أبلغ المجالات
 ErrCatAlreadyExists=هذا الاسم مستخدم بالفعل
-AddProductToCat=Add this product to a tag/category?
-ImpossibleAddCat=Impossible to add the tag/category
-ImpossibleAssociateCategory=Impossible to associate the tag/category to
+AddProductToCat=إضافة هذا المنتج إلى علامة / الفئة؟
+ImpossibleAddCat=من المستحيل لإضافة العلامة / فئة
+ImpossibleAssociateCategory=من المستحيل أن أضم العلامة / فئة ل
 WasAddedSuccessfully=<b>ق ٪</b> أضيفت بنجاح.
-ObjectAlreadyLinkedToCategory=Element is already linked to this tag/category.
-CategorySuccessfullyCreated=This tag/category %s has been added successfully.
-ProductIsInCategories=Product/service is linked to following tags/categories
-SupplierIsInCategories=Third party is linked to following suppliers tags/categories
-CompanyIsInCustomersCategories=This third party is linked to following customers/prospects tags/categories
-CompanyIsInSuppliersCategories=This third party is linked to following suppliers tags/categories
-MemberIsInCategories=This member is linked to following members tags/categories
-ContactIsInCategories=This contact is linked to following contacts tags/categories
-ProductHasNoCategory=This product/service is not in any tags/categories
-SupplierHasNoCategory=This supplier is not in any tags/categories
-CompanyHasNoCategory=This thirdparty is not in any tags/categories
-MemberHasNoCategory=This member is not in any tags/categories
-ContactHasNoCategory=This contact is not in any tags/categories
-ClassifyInCategory=Add to tag/category
+ObjectAlreadyLinkedToCategory=ويرتبط العنصر بالفعل لهذه العلامة / فئة.
+CategorySuccessfullyCreated=تمت إضافة هذه العلامة / الفئة٪ الصورة بنجاح.
+ProductIsInCategories=ويرتبط المنتج / الخدمة ليلي به / فئات
+SupplierIsInCategories=يرتبط طرف ثالث ليلي الموردين به / فئات
+CompanyIsInCustomersCategories=ويرتبط هذا الطرف الثالث ليلي العملاء / آفاق به / فئات
+CompanyIsInSuppliersCategories=ويرتبط هذا الطرف الثالث ليلي الموردين به / فئات
+MemberIsInCategories=ويرتبط هذا العضو ليلي أعضاء علامات / فئات
+ContactIsInCategories=ويرتبط هذا الاتصال بعد اتصالات به / فئات
+ProductHasNoCategory=هذا المنتج / الخدمة ليست في أية علامات / فئات
+SupplierHasNoCategory=هذه الشركة ليست في أية علامات / فئات
+CompanyHasNoCategory=هذه مرشحين عن ليس في أية علامات / فئات
+MemberHasNoCategory=هذا العضو ليس في أية علامات / فئات
+ContactHasNoCategory=هذا الاتصال ليست في أية علامات / فئات
+ClassifyInCategory=إضافة إلى علامة / فئة
 NoneCategory=بلا
-NotCategorized=Without tag/category
+NotCategorized=من دون سمة / فئة
 CategoryExistsAtSameLevel=هذه الفئة موجودة بالفعل في نفس المكان
 ReturnInProduct=عودة إلى المنتجات / الخدمات بطاقة
 ReturnInSupplier=عودة الى مورد بطاقة
@@ -64,48 +64,49 @@ ReturnInCompany=عودة الى الزبون / احتمال بطاقة
 ContentsVisibleByAll=محتويات سوف تكون واضحة من جانب جميع
 ContentsVisibleByAllShort=محتويات مرئية من قبل جميع
 ContentsNotVisibleByAllShort=محتويات غير مرئي من قبل جميع
-CategoriesTree=Tags/categories tree
-DeleteCategory=Delete tag/category
-ConfirmDeleteCategory=Are you sure you want to delete this tag/category ?
-RemoveFromCategory=Remove link with tag/category
-RemoveFromCategoryConfirm=Are you sure you want to unlink the transaction from the tag/category ?
-NoCategoriesDefined=No tag/category defined
-SuppliersCategoryShort=Suppliers tag/category
-CustomersCategoryShort=Customers tag/category
-ProductsCategoryShort=Products tag/category
-MembersCategoryShort=Members tag/category
-SuppliersCategoriesShort=Suppliers tags/categories
-CustomersCategoriesShort=Customers tags/categories
+CategoriesTree=الكلمات / شجرة الفئات
+DeleteCategory=حذف العلامة / فئة
+ConfirmDeleteCategory=هل أنت متأكد أنك تريد حذف هذه العلامة / الفئة؟
+RemoveFromCategory=إزالة الارتباط مع البطاقات / فئة
+RemoveFromCategoryConfirm=هل أنت متأكد أنك تريد فك ارتباط الصفقة من العلامة / الفئة؟
+NoCategoriesDefined=أي علامة / فئة محددة
+SuppliersCategoryShort=الموردين العلامة / فئة
+CustomersCategoryShort=عملاء العلامة / فئة
+ProductsCategoryShort=منتجات العلامة / فئة
+MembersCategoryShort=العلامة أعضاء / فئة
+SuppliersCategoriesShort=الموردين به / فئات
+CustomersCategoriesShort=العملاء العلامات / فئات
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo. / Prosp. الفئات
-ProductsCategoriesShort=Products tags/categories
-MembersCategoriesShort=Members tags/categories
-ContactCategoriesShort=Contacts tags/categories
+ProductsCategoriesShort=منتجات العلامات / فئات
+MembersCategoriesShort=به أعضاء / فئات
+ContactCategoriesShort=اتصالات به / فئات
 ThisCategoryHasNoProduct=هذه الفئة لا تحتوي على أي منتج.
 ThisCategoryHasNoSupplier=هذه الفئة لا تحتوي على أي مورد.
 ThisCategoryHasNoCustomer=هذه الفئة لا تحتوي على أي عميل.
 ThisCategoryHasNoMember=هذا التصنيف لا يحتوي على أي عضو.
-ThisCategoryHasNoContact=This category does not contain any contact.
+ThisCategoryHasNoContact=لا تحتوي هذه الفئة أي اتصال.
 AssignedToCustomer=المخصصة للعميل
 AssignedToTheCustomer=يكلف العميل
 InternalCategory=فئة Inernal
-CategoryContents=Tag/category contents
-CategId=Tag/category id
-CatSupList=List of supplier tags/categories
-CatCusList=List of customer/prospect tags/categories
-CatProdList=List of products tags/categories
-CatMemberList=List of members tags/categories
-CatContactList=List of contact tags/categories
-CatSupLinks=Links between suppliers and tags/categories
-CatCusLinks=Links between customers/prospects and tags/categories
-CatProdLinks=Links between products/services and tags/categories
-CatMemberLinks=Links between members and tags/categories
-DeleteFromCat=Remove from tags/category
-DeletePicture=Picture delete
-ConfirmDeletePicture=Confirm picture deletion?
-ExtraFieldsCategories=Complementary attributes
-CategoriesSetup=Tags/categories setup
-CategorieRecursiv=Link with parent tag/category automatically
-CategorieRecursivHelp=If activated, product will also linked to parent category when adding into a subcategory
-AddProductServiceIntoCategory=Add the following product/service
-ShowCategory=Show tag/category
-ByDefaultInList=By default in list
+CategoryContents=محتويات العلامة / فئة
+CategId=العلامة / فئة معرف
+CatSupList=قائمة المورد به / فئات
+CatCusList=قائمة العملاء / احتمال علامات / فئات
+CatProdList=قائمة منتجات العلامات / فئات
+CatMemberList=قائمة الأعضاء به / فئات
+CatContactList=قائمة الاتصال به / فئات
+CatSupLinks=الروابط بين الموردين والعلامات / فئات
+CatCusLinks=الروابط بين العملاء / آفاق والعلامات / فئات
+CatProdLinks=الروابط بين المنتجات / الخدمات والعلامات / فئات
+CatMemberLinks=الروابط بين أفراد والعلامات / فئات
+DeleteFromCat=إزالة من العلامات / فئة
+DeletePicture=حذف صورة
+ConfirmDeletePicture=تأكيد الصورة الحذف؟
+ExtraFieldsCategories=سمات التكميلية
+CategoriesSetup=الكلمات / فئات الإعداد
+CategorieRecursiv=الارتباط مع الوالد العلامة / فئة تلقائيا
+CategorieRecursivHelp=إذا تفعيلها، وربط المنتج أيضا إلى فئة الأم عند إضافة إلى فئة فرعية
+AddProductServiceIntoCategory=أضف التالي المنتج / الخدمة
+ShowCategory=مشاهدة العلامة / فئة
+ByDefaultInList=بشكل افتراضي في القائمة
diff --git a/htdocs/langs/ar_SA/commercial.lang b/htdocs/langs/ar_SA/commercial.lang
index 8b82b5512c87efaf527e5f0eeb104ab31d7d2446..77c74f957120891ebef6ef86fc161c6b1e23febb 100644
--- a/htdocs/langs/ar_SA/commercial.lang
+++ b/htdocs/langs/ar_SA/commercial.lang
@@ -7,13 +7,13 @@ Customer=العميل
 Customers=العملاء
 Prospect=احتمال
 Prospects=آفاق
-DeleteAction=Delete an event
-NewAction=New event
-AddAction=Create event
-AddAnAction=Create an event
-AddActionRendezVous=Create a Rendez-vous event
+DeleteAction=حذف حدث
+NewAction=حدث جديد
+AddAction=إنشاء الحدث
+AddAnAction=إنشاء حدث
+AddActionRendezVous=إنشاء الحدث RENDEZ المفكرة
 Rendez-Vous=الموعد
-ConfirmDeleteAction=Are you sure you want to delete this event ?
+ConfirmDeleteAction=هل أنت متأكد أنك تريد حذف هذا الحدث؟
 CardAction=بطاقة العمل
 PercentDone=النسبة المئوية لعمله
 ActionOnCompany=مهمة عن الشركة
@@ -23,7 +23,7 @@ TaskRDVWith=لقاء مع ق ٪
 ShowTask=وتظهر هذه المهمة
 ShowAction=وتظهر العمل
 ActionsReport=تقرير الأعمال
-ThirdPartiesOfSaleRepresentative=Thirdparties with sales representative
+ThirdPartiesOfSaleRepresentative=Thirdparties مع مندوب مبيعات
 SalesRepresentative=ممثل مبيعات
 SalesRepresentatives=مندوبي المبيعات
 SalesRepresentativeFollowUp=ممثل مبيعات (متابعة)
@@ -44,8 +44,8 @@ DoneActions=إجراءات عمله
 DoneActionsFor=إجراءات لعمله ق ٪
 ToDoActions=عدم اكتمال الإجراءات
 ToDoActionsFor=لعدم اكتمال الإجراءات ق ٪
-SendPropalRef=Submission of commercial proposal %s
-SendOrderRef=Submission of order %s
+SendPropalRef=تقديم اقتراح التجاري٪ الصورة
+SendOrderRef=تقديم النظام %s
 StatusNotApplicable=لا ينطبق
 StatusActionToDo=القيام
 StatusActionDone=فعل
@@ -62,16 +62,16 @@ LastProspectContactDone=الاتصال به
 DateActionPlanned=تاريخ العمل المزمع
 DateActionDone=تاريخ العمل به
 ActionAskedBy=طلبت العمل
-ActionAffectedTo=Event assigned to
+ActionAffectedTo=الحدث المخصصة ل
 ActionDoneBy=العمل الذي قام به
 ActionUserAsk=التي سجلتها
-ErrorStatusCantBeZeroIfStarted=إذا كان المجال <b>'تاريخ عمله</b> هو شغلها ، وبدأ العمل (أو انتهت) ، وذلك الميدان' <b>الحالة</b> 'لا يمكن أن يكون 0 ٪ ٪.
+ErrorStatusCantBeZeroIfStarted=إذا كان المجال <b>'تاريخ عمله</b> هو شغلها ، وبدأ العمل (أو انتهت) ، وذلك الحقل' <b>الحالة</b> 'لا يمكن أن يكون 0 ٪ ٪.
 ActionAC_TEL=اتصال هاتفي
 ActionAC_FAX=إرسال فاكس
 ActionAC_PROP=إرسال اقتراح
 ActionAC_EMAIL=ارسال بريد الكتروني
 ActionAC_RDV=اجتماعات
-ActionAC_INT=Intervention on site
+ActionAC_INT=تدخل على الموقع
 ActionAC_FAC=ارسال الفواتير
 ActionAC_REL=ارسال الفواتير (للتذكير)
 ActionAC_CLO=إغلاق
@@ -81,17 +81,17 @@ ActionAC_SHIP=إرسال الشحن عن طريق البريد
 ActionAC_SUP_ORD=أرسل النظام المورد عن طريق البريد
 ActionAC_SUP_INV=إرسال فاتورة المورد عن طريق البريد
 ActionAC_OTH=آخر
-ActionAC_OTH_AUTO=Other (automatically inserted events)
-ActionAC_MANUAL=Manually inserted events
-ActionAC_AUTO=Automatically inserted events
-Stats=Sales statistics
-CAOrder=Sales volume (validated orders)
-FromTo=from %s to %s
-MargeOrder=Margins (validated orders)
-RecapAnnee=Summary of the year
-NoData=There is no data
+ActionAC_OTH_AUTO=أخرى (أحداث إدراجها تلقائيا)
+ActionAC_MANUAL=أحداث إدراجها يدويا
+ActionAC_AUTO=أحداث إدراجها تلقائيا
+Stats=إحصاءات المبيعات
+CAOrder=حجم المبيعات (أوامر التحقق)
+FromTo=من٪ s إلى٪ s
+MargeOrder=هوامش (أوامر التحقق)
+RecapAnnee=ملخص عام
+NoData=ليس هنالك معلومات
 StatusProsp=احتمال وضع
 DraftPropals=صياغة مقترحات تجارية
 SearchPropal=بحث اقتراح التجاري
-CommercialDashboard=Commercial summary
-NoLimit=No limit
+CommercialDashboard=ملخص التجاري
+NoLimit=لا حدود
diff --git a/htdocs/langs/ar_SA/companies.lang b/htdocs/langs/ar_SA/companies.lang
index 3806c180744bd193d504b54a5f23a591c0a5ddba..f0ee96413054985bf3c22af2c99f24bbd0cff24c 100644
--- a/htdocs/langs/ar_SA/companies.lang
+++ b/htdocs/langs/ar_SA/companies.lang
@@ -18,7 +18,7 @@ NewCompany=الشركة الجديدة (آفاق ، والعملاء ، والم
 NewThirdParty=طرف ثالث جديد (آفاق ، والعملاء ، والموردين)
 NewSocGroup=مجموعة شركات جديدة
 NewPrivateIndividual=خاصة جديدة الفردية (آفاق ، والعملاء ، والموردين)
-CreateDolibarrThirdPartySupplier=Create a third party (supplier)
+CreateDolibarrThirdPartySupplier=إنشاء طرف ثالث (المورد)
 ProspectionArea=مجال التنقيب
 SocGroup=مجموعة شركات
 IdThirdParty=هوية الطرف الثالث
@@ -30,8 +30,8 @@ ThirdPartyContact=طرف ثالث اتصال
 StatusContactValidated=مركز الاتصال
 Company=شركة
 CompanyName=اسم الشركة
-AliasNames=Alias name (commercial, trademark, ...)
-AliasNameShort=Alias name
+AliasNames=الاسم المستعار (التجارية، العلامات التجارية، ...)
+AliasNameShort=الاسم المستعار
 Companies=الشركات
 CountryIsInEEC=البلد داخل المجموعة الاقتصادية الأوروبية
 ThirdPartyName=اسم طرف ثالث
@@ -47,7 +47,7 @@ ThirdPartySuppliers=الموردين
 ThirdPartyType=طرف ثالث من نوع
 Company/Fundation=الشركة / المؤسسة
 Individual=فرد
-ToCreateContactWithSameName=سيخلق تلقائيا مادية نفس معلومات الاتصال
+ToCreateContactWithSameName=سيتم تلقائيا إنشاء نفس معلومات الاتصال
 ParentCompany=الشركة الأم
 Subsidiary=فرعي
 Subsidiaries=الشركات التابعة
@@ -63,20 +63,20 @@ UserTitle=العنوان
 Surname=لقب / مزيف
 Address=عنوان
 State=الولاية / المقاطعة
-StateShort=State
+StateShort=حالة
 Region=المنطقة
 Country=قطر
 CountryCode=رمز البلد
 CountryId=بلد معرف
 Phone=الهاتف
-PhoneShort=Phone
-Skype=Skype
-Call=Call
-Chat=Chat
+PhoneShort=الهاتف
+Skype=سكايب
+Call=مكالمة
+Chat=دردشة
 PhonePro=الأستاذ الهاتف
 PhonePerso=عدد الأفراد. الهاتف
 PhoneMobile=الجوال
-No_Email=Don't send mass e-mailings
+No_Email=لا ترسل الرسائل الإلكترونية الجماعية
 Fax=الفاكس
 Zip=الرمز البريدي
 Town=مدينة
@@ -85,20 +85,20 @@ Poste= موقف
 DefaultLang=اللغة افتراضيا
 VATIsUsed=وتستخدم ضريبة القيمة المضافة
 VATIsNotUsed=ضريبة القيمة المضافة لا يستخدم
-CopyAddressFromSoc=Fill address with thirdparty address
-NoEmailDefined=There is no email defined
+CopyAddressFromSoc=ملء العنوان مع عنوان مرشحين عن
+NoEmailDefined=لا يوجد تعريف البريد الإلكتروني
 ##### Local Taxes #####
-LocalTax1IsUsed=Use second tax
+LocalTax1IsUsed=استخدام الضرائب الثانية
 LocalTax1IsUsedES= يتم استخدام الطاقة المتجددة
 LocalTax1IsNotUsedES= لا يتم استخدام الطاقة المتجددة
-LocalTax2IsUsed=Use third tax
+LocalTax2IsUsed=استخدام الضرائب الثالثة
 LocalTax2IsUsedES= يستخدم IRPF
 LocalTax2IsNotUsedES= IRPF لا يستخدم
 LocalTax1ES=تعاود
 LocalTax2ES=IRPF
-TypeLocaltax1ES=RE Type
-TypeLocaltax2ES=IRPF Type
-TypeES=Type
+TypeLocaltax1ES=نوع RE
+TypeLocaltax2ES=IRPF نوع
+TypeES=اكتب
 ThirdPartyEMail=ق ٪
 WrongCustomerCode=رمز غير صالح العملاء
 WrongSupplierCode=رمز المورد غير صالحة
@@ -111,22 +111,22 @@ ProfId2Short=معرف الأستاذ 2
 ProfId3Short=الأستاذ معرف 3
 ProfId4Short=الأستاذ معرف 4
 ProfId5Short=البروفيسور رقم 5
-ProfId6Short=Prof. id 6
+ProfId6Short=البروفيسور معرف 6
 ProfId1=الهوية المهنية (1)
 ProfId2=الهوية المهنية (2)
 ProfId3=3 الهوية المهنية
 ProfId4=الهوية المهنية 4
 ProfId5=المهنية رقم 5
-ProfId6=Professional ID 6
+ProfId6=المهنية ID 6
 ProfId1AR=معرف البروفيسور 1 (CUIT / [كيل])
 ProfId2AR=البروفيسور رقم 2 (المتوحشون الايرادات)
 ProfId3AR=-
 ProfId4AR=-
 ProfId5AR=-
 ProfId6AR=-
-ProfId1AT=Prof Id 1 (USt.-IdNr)
-ProfId2AT=Prof Id 2 (USt.-Nr)
-ProfId3AT=Prof Id 3 (Handelsregister-Nr.)
+ProfId1AT=البروفيسور رقم 1 (USt.-IdNr)
+ProfId2AT=البروفيسور رقم 2 (USt.-العدد)
+ProfId3AT=البروفيسور رقم 3 (Handelsregister-العدد).
 ProfId4AT=-
 ProfId5AT=-
 ProfId6AT=-
@@ -144,7 +144,7 @@ ProfId5BE=-
 ProfId6BE=-
 ProfId1BR=-
 ProfId2BR=IE (Inscricao Estadual)
-ProfId3BR=IM (Inscricao Municipal)
+ProfId3BR=IM (Inscricao المحلي)
 ProfId4BR=CPF
 #ProfId5BR=CNAE
 #ProfId6BR=INSS
@@ -206,7 +206,7 @@ ProfId1MA=الرقم أ. 1 (RC)
 ProfId2MA=الرقم أ. 2 (Patente)
 ProfId3MA=الرقم أ. 3 (إذا)
 ProfId4MA=الرقم أ. 4 (CNSS)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=الأستاذ رقم 1 (RFC).
 ProfId2MX=الأستاذ رقم 2 (ر. P. IMSS)
@@ -260,8 +260,8 @@ CustomerRelativeDiscountShort=الخصم النسبي
 CustomerAbsoluteDiscountShort=مطلق الخصم
 CompanyHasRelativeDiscount=هذا العميل قد خصم <b>٪ ق ٪ ٪</b>
 CompanyHasNoRelativeDiscount=هذا العميل ليس لديها النسبية خصم افتراضي
-CompanyHasAbsoluteDiscount=هذا الزبون لا يزال خصم القروض <b>ل٪ ق ق ٪</b>
-CompanyHasCreditNote=ولا يزال هذا العميل الائتمانية ويلاحظ السابقة أو ودائع <b>ل٪ ق ق ٪</b>
+CompanyHasAbsoluteDiscount=هذا الزبون لا يزال خصم القروض <b>ل%s ق ٪</b>
+CompanyHasCreditNote=ولا يزال هذا العميل الائتمانية ويلاحظ السابقة أو ودائع <b>ل%s ق ٪</b>
 CompanyHasNoAbsoluteDiscount=هذا العميل ليس الخصم الائتمان المتاح
 CustomerAbsoluteDiscountAllUsers=خصومات المطلقة (الممنوحة من جميع المستخدمين)
 CustomerAbsoluteDiscountMy=خصومات المطلقة) التي منحتها لنفسك)
@@ -270,24 +270,24 @@ AvailableGlobalDiscounts=مطلق الخصومات المتاحة
 DiscountNone=بلا
 Supplier=المورد
 CompanyList=شركات قائمة
-AddContact=Create contact
-AddContactAddress=Create contact/address
+AddContact=إنشاء اتصال
+AddContactAddress=إنشاء الاتصال / عنوان
 EditContact=تحرير الاتصال / عنوان
-EditContactAddress=Edit contact/address
+EditContactAddress=تحرير الاتصال / عنوان
 Contact=جهة اتصال
 ContactsAddresses=اتصالات / عناوين
-NoContactDefinedForThirdParty=No contact defined for this third party
+NoContactDefinedForThirdParty=أي اتصال محددة لهذا الطرف الثالث
 NoContactDefined=لا يوجد اتصال محددة لهذا الطرف الثالث
 DefaultContact=الاتصال الافتراضية
-AddCompany=Create company
-AddThirdParty=Create third party
+AddCompany=إنشاء شركة
+AddThirdParty=إنشاء طرف ثالث
 DeleteACompany=حذف شركة
 PersonalInformations=البيانات الشخصية
 AccountancyCode=قانون المحاسبة
 CustomerCode=رمز العميل
 SupplierCode=رمز المورد
-CustomerCodeShort=Customer code
-SupplierCodeShort=Supplier code
+CustomerCodeShort=كود العميل
+SupplierCodeShort=كود المورد
 CustomerAccount=حساب الزبون
 SupplierAccount=مورد الحساب
 CustomerCodeDesc=شفرة الزبون ، فريدة من نوعها لجميع العملاء
@@ -300,13 +300,13 @@ LastProspect=أخير
 ProspectToContact=إمكانية الاتصال
 CompanyDeleted=شركة "٪ ل" حذفها من قاعدة البيانات.
 ListOfContacts=قائمة الاتصالات
-ListOfContactsAddresses=List of contacts/adresses
+ListOfContactsAddresses=قائمة الأسماء / عناوين
 ListOfProspectsContacts=قائمة آفاق الاتصالات
 ListOfCustomersContacts=قائمة عملاء الاتصالات
 ListOfSuppliersContacts=قائمة الموردين اتصالات
 ListOfCompanies=قائمة الشركات
 ListOfThirdParties=قائمة أطراف ثالثة
-ShowCompany=Show thirdparty
+ShowCompany=مشاهدة مرشحين عن
 ShowContact=وتظهر الاتصال
 ContactsAllShort=جميع (بدون فلتر)
 ContactType=نوع الاتصال
@@ -319,7 +319,7 @@ NoContactForAnyProposal=هذا الاتصال ليست على اتصال في أ
 NoContactForAnyContract=هذا الاتصال ليس أي عقد للاتصال
 NoContactForAnyInvoice=هذا الاتصال ليست على اتصال في أي فاتورة
 NewContact=اتصال جديد
-NewContactAddress=New contact/address
+NewContactAddress=اسم جديد / عنوان
 LastContacts=آخر الاتصالات
 MyContacts=اتصالاتي
 Phones=الهواتف
@@ -342,7 +342,7 @@ ProspectLevel=آفاق محتملة
 ContactPrivate=القطاع الخاص
 ContactPublic=تقاسم
 ContactVisibility=الرؤية
-ContactOthers=Other
+ContactOthers=الآخر
 OthersNotLinkedToThirdParty=أخرى ، لا صلة لطرف ثالث
 ProspectStatus=آفاق الوضع
 PL_NONE=Aucun
@@ -381,12 +381,12 @@ ExportCardToFormat=تصدير بطاقة شكل
 ContactNotLinkedToCompany=اتصالات ليست مرتبطة بطرف ثالث
 DolibarrLogin=ادخل Dolibarr
 NoDolibarrAccess=لا Dolibarr الوصول
-ExportDataset_company_1=Third parties (Companies/foundations/physical people) and properties
+ExportDataset_company_1=أطراف ثالثة (الشركات / المؤسسات / الناس البدني) وخصائص
 ExportDataset_company_2=الاتصالات والعقارات
-ImportDataset_company_1=Third parties (Companies/foundations/physical people) and properties
-ImportDataset_company_2=Contacts/Addresses (of thirdparties or not) and attributes
+ImportDataset_company_1=أطراف ثالثة (الشركات / المؤسسات / الناس البدني) وخصائص
+ImportDataset_company_2=اتصالات / عناوين (من thirdparties أو لا) وسمات
 ImportDataset_company_3=التفاصيل المصرفية
-ImportDataset_company_4=Third parties/Sales representatives (Affect sales representatives users to companies)
+ImportDataset_company_4=الأطراف الثالث / مندوبي المبيعات (على مستخدمي مندوبي المبيعات للشركات)
 PriceLevel=مستوى الأسعار
 DeliveriesAddress=تقديم عناوين
 DeliveryAddress=عنوان التسليم
@@ -394,8 +394,8 @@ DeliveryAddressLabel=تسليم بطاقة معالجة
 DeleteDeliveryAddress=حذف عنوان التسليم
 ConfirmDeleteDeliveryAddress=هل أنت متأكد من أنك تريد حذف هذا عنوان التسليم؟
 NewDeliveryAddress=تقديم معالجة جديدة
-AddDeliveryAddress=Create address
-AddAddress=Create address
+AddDeliveryAddress=إنشاء عنوان
+AddAddress=إنشاء عنوان
 NoOtherDeliveryAddress=لا بديل عن تقديم معالجة محددة
 SupplierCategory=المورد الفئة
 JuridicalStatus200=المستقلة
@@ -412,23 +412,23 @@ YouMustCreateContactFirst=يجب إنشاء رسائل البريد الإلكت
 ListSuppliersShort=قائمة الموردين
 ListProspectsShort=قائمة التوقعات
 ListCustomersShort=قائمة العملاء
-ThirdPartiesArea=Third parties and contact area
+ThirdPartiesArea=أطراف ثالثة، ومنطقة الاتصال
 LastModifiedThirdParties=%s آخر تعديل لأطراف ثالثة
 UniqueThirdParties=مجموع الأطراف الثالثة فريدة من نوعها
 InActivity=فتح
 ActivityCeased=مغلق
 ActivityStateFilter=نشاط المركز
-ProductsIntoElements=List of products/services into %s
-CurrentOutstandingBill=Current outstanding bill
-OutstandingBill=Max. for outstanding bill
-OutstandingBillReached=Reached max. for outstanding bill
+ProductsIntoElements=قائمة المنتجات / الخدمات إلى %s
+CurrentOutstandingBill=فاتورة المستحق حاليا
+OutstandingBill=ماكس. لمشروع قانون المتميز
+OutstandingBillReached=وصلت كحد أقصى. لمشروع قانون المتميز
 MonkeyNumRefModelDesc=عودة número مع الشكل nnnn - ٪ syymm الزبون ورمز وnnnn - ٪ syymm مورد للقانون حيث السنة هو السنة ، هو شهر ملم وnnnn هو تسلسل بلا كسر وعدم العودة إلى 0.
 LeopardNumRefModelDesc=العميل / المورد مدونة مجانية. هذا القانون يمكن تعديلها في أي وقت.
-ManagingDirectors=Manager(s) name (CEO, director, president...)
-SearchThirdparty=Search third party
-SearchContact=Search contact
-MergeOriginThirdparty=Duplicate third party (third party you want to delete)
-MergeThirdparties=Merge third parties
-ConfirmMergeThirdparties=Are you sure you want to merge this third party into the current one ? All linked objects (invoices, orders, ...) will be moved to current third party so you will be able to delete the duplicate one.
-ThirdpartiesMergeSuccess=Thirdparties have been merged
-ErrorThirdpartiesMerge=There was an error when deleting the thirdparties. Please check the log. Changes have been reverted.
+ManagingDirectors=مدير (ق) اسم (CEO، مدير، رئيس ...)
+SearchThirdparty=بحث طرف ثالث
+SearchContact=البحث اتصال
+MergeOriginThirdparty=تكرار طرف ثالث (طرف ثالث كنت ترغب في حذف)
+MergeThirdparties=دمج أطراف ثالثة
+ConfirmMergeThirdparties=هل أنت متأكد أنك تريد دمج هذا الطرف الثالث في واحدة الحالي؟ كل الكائنات المرتبطة (الفواتير وأوامر، ...) سيتم نقلها إلى طرف ثالث الحالي لذلك سوف تكون قادرة على حذف واحد مكرر.
+ThirdpartiesMergeSuccess=تم دمج Thirdparties
+ErrorThirdpartiesMerge=كان هناك خطأ عند حذف thirdparties. يرجى التحقق من السجل. وقد عادت التغييرات.
diff --git a/htdocs/langs/ar_SA/compta.lang b/htdocs/langs/ar_SA/compta.lang
index 95726360e2defa78b01df1990c7aa2f801606a9d..a38ff238c107c2647c2ea69397ae3535b4471b72 100644
--- a/htdocs/langs/ar_SA/compta.lang
+++ b/htdocs/langs/ar_SA/compta.lang
@@ -3,8 +3,8 @@ Accountancy=المحاسبة
 AccountancyCard=بطاقة المحاسبة
 Treasury=الخزانة
 MenuFinancial=المالية
-TaxModuleSetupToModifyRules=Go to <a href="%s">Taxes module setup</a> to modify rules for calculation
-TaxModuleSetupToModifyRulesLT=Go to <a href="%s">Company setup</a> to modify rules for calculation
+TaxModuleSetupToModifyRules=الذهاب إلى <a href="%s">الإعداد حدة الضرائب</a> لتعديل قواعد حساب
+TaxModuleSetupToModifyRulesLT=الذهاب إلى <a href="%s">إعداد الشركة</a> لتعديل قواعد حساب
 OptionMode=الخيار المحاسبة
 OptionModeTrue=خيار المدخلات والمخرجات
 OptionModeVirtual=الخيار بين اعتمادات الديون
@@ -12,15 +12,15 @@ OptionModeTrueDesc=وفي هذا السياق ، ويحسب حجم المدفو
 OptionModeVirtualDesc=وفي هذا السياق ، فإن أكثر من الدوران يحسب الفواتير (تاريخ التصديق). إذا كانت هذه الفواتير المستحقة ، وعما إذا كانت قد دفعت أم لا ، فهي مدرجة في حجم الانتاج.
 FeatureIsSupportedInInOutModeOnly=الميزة الوحيدة المتاحة في سداد ديون قروض المحاسبة طريقة (انظر التكوين وحدة المحاسبة)
 VATReportBuildWithOptionDefinedInModule=المبالغ المبينة هنا يتم حسابها باستخدام القواعد التي تحددها وحدة الإعداد الضرائب.
-LTReportBuildWithOptionDefinedInModule=Amounts shown here are calculated using rules defined by Company setup.
+LTReportBuildWithOptionDefinedInModule=وتحسب المبالغ المبينة هنا باستخدام القواعد التي يحددها الإعداد الشركة.
 Param=الإعداد
 RemainingAmountPayment=دفع المبلغ المتبقي :
 AmountToBeCharged=المبلغ الإجمالي للدفع :
 AccountsGeneral=الحسابات
 Account=حساب
 Accounts=الحسابات
-Accountparent=Account parent
-Accountsparent=Accounts parent
+Accountparent=الوالد حساب
+Accountsparent=حسابات الأم
 BillsForSuppliers=فواتير الموردين
 Income=الدخل
 Outcome=نتائج
@@ -29,11 +29,11 @@ ReportTurnover=دوران
 PaymentsNotLinkedToInvoice=المدفوعات ليست مرتبطة بأي الفاتورة ، وذلك ليس مرتبطا بأي طرف ثالث
 PaymentsNotLinkedToUser=المدفوعات ليست مرتبطة بأي مستخدم
 Profit=الأرباح
-AccountingResult=Accounting result
+AccountingResult=نتيجة المحاسبة
 Balance=التوازن
 Debit=الخصم
 Credit=الائتمان
-Piece=Accounting Doc.
+Piece=تمثل الوثيقة.
 Withdrawal=انسحاب
 Withdrawals=انسحابات
 AmountHTVATRealReceived=جمعت HT
@@ -43,74 +43,74 @@ VATReceived=وتلقى الضريبة على القيمة المضافة
 VATToCollect=ضريبة القيمة المضافة مشتريات
 VATSummary=رصيد الضريبة على القيمة المضافة
 LT2SummaryES=IRPF الرصيد
-LT1SummaryES=RE Balance
+LT1SummaryES=RE الميزان
 VATPaid=دفع ضريبة القيمة المضافة
-SalaryPaid=Salary paid
+SalaryPaid=دفع الرواتب
 LT2PaidES=مدفوع IRPF
-LT1PaidES=RE Paid
+LT1PaidES=RE المدفوعة
 LT2CustomerES=مبيعات IRPF
 LT2SupplierES=مشتريات IRPF
-LT1CustomerES=RE sales
-LT1SupplierES=RE purchases
+LT1CustomerES=RE المبيعات
+LT1SupplierES=RE المشتريات
 VATCollected=جمعت ضريبة القيمة المضافة
 ToPay=دفع
 ToGet=العودة
-SpecialExpensesArea=Area for all special payments
-TaxAndDividendsArea=Sale taxes, social/fiscal taxes contributions and dividends area
-SocialContribution=Social or fiscal tax
-SocialContributions=Social or fiscal taxes
-MenuSpecialExpenses=Special expenses
+SpecialExpensesArea=منطقة لجميع المدفوعات الخاصة
+TaxAndDividendsArea=بيع الضرائب، والمساهمات الاجتماعية / مالية الضرائب والأرباح المنطقة
+SocialContribution=الضريبة الاجتماعية أو المالية
+SocialContributions=الضرائب الاجتماعية أو المالية
+MenuSpecialExpenses=المصروفات الخاصة
 MenuTaxAndDividends=الضرائب وعوائد
-MenuSalaries=Salaries
-MenuSocialContributions=Social/fiscal taxes
-MenuNewSocialContribution=New social/fiscal tax
-NewSocialContribution=New social/fiscal tax
-ContributionsToPay=Social/fiscal taxes to pay
+MenuSalaries=الرواتب
+MenuSocialContributions=الضرائب الاجتماعية / المالية
+MenuNewSocialContribution=الضريبة الاجتماعية / مالية جديدة
+NewSocialContribution=الضريبة الاجتماعية / مالية جديدة
+ContributionsToPay=الضرائب الاجتماعية / المالية لدفع
 AccountancyTreasuryArea=المحاسبة / الخزانة المنطقة
 AccountancySetup=المحاسبة الإعداد
 NewPayment=دفع جديدة
 Payments=المدفوعات
 PaymentCustomerInvoice=الزبون تسديد الفاتورة
 PaymentSupplierInvoice=دفع فاتورة المورد
-PaymentSocialContribution=Social/fiscal tax payment
+PaymentSocialContribution=اجتماعي / دفع الضرائب المالية
 PaymentVat=دفع ضريبة القيمة المضافة
-PaymentSalary=Salary payment
+PaymentSalary=دفع المرتبات
 ListPayment=قائمة المدفوعات
 ListOfPayments=قائمة المدفوعات
 ListOfCustomerPayments=قائمة مدفوعات العملاء
 ListOfSupplierPayments=قائمة الموردين المدفوعات
-DateStartPeriod=Date start period
-DateEndPeriod=Date end period
+DateStartPeriod=تاريخ بداية الفترة
+DateEndPeriod=تاريخ انتهاء الفترة
 NewVATPayment=دفع ضريبة القيمة المضافة الجديدة
-newLT1Payment=New tax 2 payment
-newLT2Payment=New tax 3 payment
-LT1Payment=Tax 2 payment
-LT1Payments=Tax 2 payments
-LT2Payment=Tax 3 payment
-LT2Payments=Tax 3 payments
-newLT1PaymentES=New RE payment
+newLT1Payment=جديد الضريبية 2 الدفع
+newLT2Payment=الجديد الضريبة 3 دفع
+LT1Payment=ضريبة دفع 2
+LT1Payments=الضريبة 2 المدفوعات
+LT2Payment=الضريبة 3 دفع
+LT2Payments=الضريبة 3 دفعات
+newLT1PaymentES=دفع RE جديد
 newLT2PaymentES=جديد IRPF دفع
-LT1PaymentES=RE Payment
-LT1PaymentsES=RE Payments
+LT1PaymentES=RE الدفع
+LT1PaymentsES=المدفوعات RE
 LT2PaymentES=IRPF الدفع
 LT2PaymentsES=الدفعات IRPF
 VATPayment=دفع ضريبة القيمة المضافة
 VATPayments=دفع ضريبة القيمة المضافة
-VATRefund=VAT Refund
-Refund=Refund
-SocialContributionsPayments=Social/fiscal taxes payments
+VATRefund=استرداد ضريبة القيمة المضافة
+Refund=رد
+SocialContributionsPayments=الاجتماعية المدفوعات / الضرائب المالية
 ShowVatPayment=وتظهر دفع ضريبة القيمة المضافة
 TotalToPay=على دفع ما مجموعه
 TotalVATReceived=تلقى مجموع الضريبة على القيمة المضافة
 CustomerAccountancyCode=قانون محاسبة العملاء
 SupplierAccountancyCode=مورد قانون المحاسبة
-CustomerAccountancyCodeShort=Cust. account. code
-SupplierAccountancyCodeShort=Sup. account. code
+CustomerAccountancyCodeShort=الزبون. حساب. رمز
+SupplierAccountancyCodeShort=سوب. حساب. رمز
 AccountNumberShort=رقم الحساب
 AccountNumber=رقم الحساب
 NewAccount=حساب جديد
 SalesTurnover=مبيعات
-SalesTurnoverMinimum=Minimum sales turnover
+SalesTurnoverMinimum=الحد الأدنى حجم مبيعات
 ByThirdParties=بو أطراف ثالثة
 ByUserAuthorOfInvoice=فاتورة من قبل المؤلف
 AccountancyExport=المحاسبة التصدير
@@ -118,54 +118,55 @@ ErrorWrongAccountancyCodeForCompany=قانون محاسبة العملاء سي
 SuppliersProductsSellSalesTurnover=وقد ولدت عن طريق الدوران مبيعات الموردين المنتجات.
 CheckReceipt=التحقق من إيداع
 CheckReceiptShort=التحقق من إيداع
-LastCheckReceiptShort=Last %s check receipts
+LastCheckReceiptShort=مشاركة الصورة٪ إيصالات الاختيار
 NewCheckReceipt=خصم جديد
 NewCheckDeposit=تأكد من ايداع جديدة
 NewCheckDepositOn=تهيئة لتلقي الودائع على حساب : ٪ ق
 NoWaitingChecks=لم ينتظر إيداع الشيكات.
 DateChequeReceived=استقبال المدخلات تاريخ الشيك
 NbOfCheques=ملاحظة : للشيكات
-PaySocialContribution=Pay a social/fiscal tax
-ConfirmPaySocialContribution=Are you sure you want to classify this social or fiscal tax as paid?
-DeleteSocialContribution=Delete a social or fiscal tax payment
-ConfirmDeleteSocialContribution=Are you sure you want to delete this social/fiscal tax payment?
-ExportDataset_tax_1=Social and fiscal taxes and payments
-CalcModeVATDebt=Mode <b>%sVAT on commitment accounting%s</b>.
-CalcModeVATEngagement=Mode <b>%sVAT on incomes-expenses%s</b>.
-CalcModeDebt=Mode <b>%sClaims-Debts%s</b> said <b>Commitment accounting</b>.
-CalcModeEngagement=Mode <b>%sIncomes-Expenses%s</b> said <b>cash accounting</b>
-CalcModeLT1= Mode <b>%sRE on customer invoices - suppliers invoices%s</b>
-CalcModeLT1Debt=Mode <b>%sRE on customer invoices%s</b>
-CalcModeLT1Rec= Mode <b>%sRE on suppliers invoices%s</b>
-CalcModeLT2= Mode <b>%sIRPF on customer invoices - suppliers invoices%s</b>
-CalcModeLT2Debt=Mode <b>%sIRPF on customer invoices%s</b>
-CalcModeLT2Rec= Mode <b>%sIRPF on suppliers invoices%s</b>
-AnnualSummaryDueDebtMode=Balance of income and expenses, annual summary
-AnnualSummaryInputOutputMode=Balance of income and expenses, annual summary
+PaySocialContribution=دفع ضريبة اجتماعية / مالية
+ConfirmPaySocialContribution=هل أنت متأكد أنك تريد أن تصنيف هذه الضريبة الاجتماعية أو المالية كما دفعت؟
+DeleteSocialContribution=حذف دفع الضرائب الاجتماعي أو المالي
+ConfirmDeleteSocialContribution=هل أنت متأكد أنك تريد حذف / دفع الضرائب المالية الاجتماعي؟
+ExportDataset_tax_1=الضرائب والمدفوعات الاجتماعية والمالية
+CalcModeVATDebt=<b>الوضع٪ SVAT بشأن المحاسبة الالتزام٪ الصورة.</b>
+CalcModeVATEngagement=وضع <b>SVAT٪ على مداخيل مصاريف٪ الصورة.</b>
+CalcModeDebt=<b>وقال٪</b> وضع <b>sClaims-الديون٪ الصورة</b> <b>المحاسبة الالتزام.</b>
+CalcModeEngagement=وقال <b>واسطة٪ sIncomes-المصروفات٪ الصورة</b> <b>المحاسبة النقدية</b>
+CalcModeLT1= <b>الوضع٪ زارة العلاقات الخارجية على فواتير العملاء - فواتير الموردين٪ الصورة</b>
+CalcModeLT1Debt=<b>الوضع٪ زارة العلاقات الخارجية على فواتير العملاء٪ الصورة</b>
+CalcModeLT1Rec= <b>الوضع٪ زارة العلاقات الخارجية على فواتير الموردين٪ الصورة</b>
+CalcModeLT2= وضع <b>sIRPF٪ على فواتير العملاء - فواتير الموردين٪ الصورة</b>
+CalcModeLT2Debt=وضع <b>sIRPF٪ على فواتير العملاء٪ الصورة</b>
+CalcModeLT2Rec= وضع <b>sIRPF٪ على فواتير الموردين٪ الصورة</b>
+AnnualSummaryDueDebtMode=ميزان الإيرادات والمصروفات، ملخص سنوي
+AnnualSummaryInputOutputMode=ميزان الإيرادات والمصروفات، ملخص سنوي
 AnnualByCompaniesDueDebtMode=ميزان الإيرادات والنفقات ، وبالتفصيل من قبل أطراف ثالثة ، وطريقة سداد <b>ديون sClaims ٪ ٪ ق</b> قال <b>الالتزام والمحاسبة.</b>
 AnnualByCompaniesInputOutputMode=ميزان الإيرادات والنفقات ، وبالتفصيل من قبل أطراف ثالثة ، واسطة بين <b>sRevenues ٪ من مصروفات ٪ ق</b> قال <b>المحاسبة النقدية.</b>
 SeeReportInInputOutputMode=انظر التقرير <b>sIncomes ٪</b> بين <b>المصروفات ٪ ق</b> قال <b>المحاسبة النقدية</b> لحساب المدفوعات الفعلية
 SeeReportInDueDebtMode=انظر التقرير <b>sClaims ٪</b> بين <b>ديونها ٪ ق الالتزام والمحاسبة</b> وقال لحساب فواتير
-RulesAmountWithTaxIncluded=- Amounts shown are with all taxes included
-RulesResultDue=- It includes outstanding invoices, expenses, VAT, donations whether they are paid or not. Is also includes paid salaries.<br>- It is based on the validation date of invoices and VAT and on the due date for expenses. For salaries defined with Salary module, the value date of payment is used.
-RulesResultInOut=- It includes the real payments made on invoices, expenses, VAT and salaries. <br>- It is based on the payment dates of the invoices, expenses, VAT and salaries. The donation date for donation.
-RulesCADue=- It includes the client's due invoices whether they are paid or not. <br>- It is based on the validation date of these invoices.<br>
+RulesAmountWithTaxIncluded=- المبالغ المبينة لمع جميع الضرائب المدرجة
+RulesResultDue=- وتتضمن الفواتير غير المسددة، والنفقات، ضريبة القيمة المضافة، والتبرعات سواء كانت بأجر أو لا. هو أيضا يتضمن الرواتب المدفوعة. <br> - وهو يستند إلى تاريخ المصادقة على الفواتير وضريبة القيمة المضافة وعلى الموعد المحدد للنفقات. لرواتب محددة مع وحدة الراتب، يتم استخدام قيمة تاريخ الدفع.
+RulesResultInOut=- ويشمل المدفوعات الحقيقية المحرز في الفواتير والمصاريف والضريبة على القيمة المضافة والرواتب. <br> - لأنه يقوم على مواعيد دفع الفواتير والمصاريف والضريبة على القيمة المضافة والرواتب. تاريخ التبرع للتبرع.
+RulesCADue=- ويشمل الفواتير المستحقة على العميل سواء كانت بأجر أو لا. <br> - وهو يستند إلى تاريخ التحقق من هذه الفواتير. <br>
 RulesCAIn=-- ويشمل جميع الفعال دفع الفواتير الواردة من العملاء. <br> -- يقوم على دفع هذه الفواتير تاريخ <br>
 DepositsAreNotIncluded=- يتم ولا تشمل ودائع الفواتير
 DepositsAreIncluded=- وترد الفواتير ودائع
 LT2ReportByCustomersInInputOutputModeES=تقرير من قبل طرف ثالث IRPF
-LT1ReportByCustomersInInputOutputModeES=Report by third party RE
-VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
-VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
-VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
-LT1ReportByQuartersInInputOutputMode=Report by RE rate
-LT2ReportByQuartersInInputOutputMode=Report by IRPF rate
-VATReportByQuartersInDueDebtMode=Report by rate of the VAT collected and paid
-LT1ReportByQuartersInDueDebtMode=Report by RE rate
-LT2ReportByQuartersInDueDebtMode=Report by IRPF rate
+LT1ReportByCustomersInInputOutputModeES=تقرير RE طرف ثالث
+VATReport=VAT report
+VATReportByCustomersInInputOutputMode=تقرير من ضريبة القيمة المضافة العملاء جمع ودفع
+VATReportByCustomersInDueDebtMode=تقرير من ضريبة القيمة المضافة العملاء جمع ودفع
+VATReportByQuartersInInputOutputMode=تقرير معدل ضريبة القيمة المضافة جمع ودفع
+LT1ReportByQuartersInInputOutputMode=تقرير معدل RE
+LT2ReportByQuartersInInputOutputMode=تقرير معدل IRPF
+VATReportByQuartersInDueDebtMode=تقرير معدل ضريبة القيمة المضافة جمع ودفع
+LT1ReportByQuartersInDueDebtMode=تقرير معدل RE
+LT2ReportByQuartersInDueDebtMode=تقرير معدل IRPF
 SeeVATReportInInputOutputMode=انظر التقرير <b>تغطية sVAT ٪ ق ٪</b> لحساب موحد
 SeeVATReportInDueDebtMode=انظر التقرير <b>عن تدفق sVAT ٪ ق ٪</b> لحساب مع خيار على تدفق
-RulesVATInServices=- For services, the report includes the VAT regulations actually received or issued on the basis of the date of payment.
+RulesVATInServices=- للحصول على خدمات، يتضمن التقرير لوائح ضريبة القيمة المضافة تلقى فعلا أو الصادرة على أساس من تاريخ الدفع.
 RulesVATInProducts=- للحصول على الأصول المادية، فإنه يشمل ضريبة القيمة المضافة على الفواتير على أساس من تاريخ الفاتورة.
 RulesVATDueServices=- للحصول على الخدمات، ويتضمن التقرير فواتير ضريبة القيمة المضافة المستحقة، مدفوعة الأجر أم لا، بناء على تاريخ الفاتورة.
 RulesVATDueProducts=- للحصول على الأصول المادية، فإنه يشمل ضريبة القيمة المضافة على الفواتير، بناء على تاريخ الفاتورة.
@@ -188,35 +189,35 @@ CodeNotDef=لم يتم تعريف
 AddRemind=ارسال المبلغ المتاح
 RemainToDivide= يبقى أن يوفد :
 WarningDepositsNotIncluded=لا يتم تضمين فواتير الودائع في هذا الإصدار مع هذه الوحدة المحاسبة.
-DatePaymentTermCantBeLowerThanObjectDate=Payment term date can't be lower than object date.
-Pcg_version=Pcg version
-Pcg_type=Pcg type
-Pcg_subtype=Pcg subtype
-InvoiceLinesToDispatch=Invoice lines to dispatch
-InvoiceDispatched=Dispatched invoices
-AccountancyDashboard=Accountancy summary
-ByProductsAndServices=By products and services
-RefExt=External ref
-ToCreateAPredefinedInvoice=To create a predefined invoice, create a standard invoice then, without validating it, click onto button "Convert to predefined invoice".
-LinkedOrder=Link to order
-Mode1=Method 1
-Mode2=Method 2
-CalculationRuleDesc=To calculate total VAT, there is two methods:<br>Method 1 is rounding vat on each line, then summing them.<br>Method 2 is summing all vat on each line, then rounding result.<br>Final result may differs from few cents. Default mode is mode <b>%s</b>.
-CalculationRuleDescSupplier=According to supplier, choose appropriate method to apply same calculation rule and get same result expected by your supplier.
-TurnoverPerProductInCommitmentAccountingNotRelevant=Turnover report per product, when using a <b>cash accountancy</b> mode is not relevant. This report is only available when using <b>engagement accountancy</b> mode (see setup of accountancy module).
-CalculationMode=Calculation mode
-AccountancyJournal=Accountancy code journal
-ACCOUNTING_VAT_SOLD_ACCOUNT=Default accountancy code for collecting VAT (VAT on sales)
-ACCOUNTING_VAT_BUY_ACCOUNT=Default accountancy code for recovered VAT (VAT on purchases)
-ACCOUNTING_VAT_PAY_ACCOUNT=Default accountancy code for paying VAT
-ACCOUNTING_ACCOUNT_CUSTOMER=Accountancy code by default for customer thirdparties
-ACCOUNTING_ACCOUNT_SUPPLIER=Accountancy code by default for supplier thirdparties
-CloneTax=Clone a social/fiscal tax
-ConfirmCloneTax=Confirm the clone of a social/fiscal tax payment
-CloneTaxForNextMonth=Clone it for next month
-SimpleReport=Simple report
-AddExtraReport=Extra reports
-OtherCountriesCustomersReport=Foreign customers report
-BasedOnTwoFirstLettersOfVATNumberBeingDifferentFromYourCompanyCountry=Based on the two first letters of the VAT number being different from your own company's country code
-SameCountryCustomersWithVAT=National customers report
-BasedOnTwoFirstLettersOfVATNumberBeingTheSameAsYourCompanyCountry=Based on the two first letters of the VAT number being the same as your own company's country code
+DatePaymentTermCantBeLowerThanObjectDate=تاريخ الدفع الأجل لا يمكن أن يكون أقل من تاريخ الكائن.
+Pcg_version=نسخة PCG
+Pcg_type=نوع PCG
+Pcg_subtype=PCG النوع الفرعي
+InvoiceLinesToDispatch=خطوط الفاتورة لارسال
+InvoiceDispatched=أرسلت الفواتير
+AccountancyDashboard=ملخص المحاسبة
+ByProductsAndServices=المنتجات والخدمات
+RefExt=المرجع الخارجي
+ToCreateAPredefinedInvoice=لإنشاء فاتورة محددة مسبقا، إنشاء فاتورة القياسية ثم، دون التحقق من صحة ذلك، انقر على زر "تحويل إلى فاتورة محددة مسبقا".
+LinkedOrder=تصل إلى النظام
+Mode1=طريقة 1
+Mode2=طريقة 2
+CalculationRuleDesc=لحساب مجموع الضريبة على القيمة المضافة، هناك طريقتين: <br> طريقة 1 والتقريب ضريبة القيمة المضافة في كل سطر، ثم ملخصا لها. <br> طريقة 2 يتم تلخيص كل ضريبة القيمة المضافة في كل سطر، ثم التقريب النتيجة. <br> النتيجة النهائية قد تختلف من بضعة سنتات. الوضع الافتراضي هو وضع <b>الصورة٪.</b>
+CalculationRuleDescSupplier=وفقا لالمورد، واختيار الطريقة المناسبة لتطبيق الحكم حساب نفسها والحصول على نفس النتيجة المتوقعة من المورد الخاص بك.
+TurnoverPerProductInCommitmentAccountingNotRelevant=تقرير دوران لكل منتج، وعند استخدام طريقة <b>المحاسبة النقدية</b> غير ذي صلة. متاح فقط هذا التقرير عند استخدام طريقة <b>المشاركة المحاسبة</b> (انظر إعداد وحدة المحاسبة).
+CalculationMode=وضع الحساب
+AccountancyJournal=كود المحاسبة مجلة
+ACCOUNTING_VAT_SOLD_ACCOUNT=افتراضي كود المحاسبة لجمع ضريبة القيمة المضافة (ضريبة القيمة المضافة على المبيعات)
+ACCOUNTING_VAT_BUY_ACCOUNT=كود المحاسبة الافتراضية لضريبة القيمة المضافة المستردة (ضريبة القيمة المضافة على المشتريات)
+ACCOUNTING_VAT_PAY_ACCOUNT=كود المحاسبة الافتراضي للدفع ضريبة القيمة المضافة
+ACCOUNTING_ACCOUNT_CUSTOMER=كود المحاسبة افتراضيا لthirdparties العملاء
+ACCOUNTING_ACCOUNT_SUPPLIER=كود المحاسبة افتراضيا لthirdparties المورد
+CloneTax=استنساخ ضريبة اجتماعية / مالية
+ConfirmCloneTax=تأكيد استنساخ ل/ دفع الضرائب المالية الاجتماعي
+CloneTaxForNextMonth=استنساخ لشهر المقبل
+SimpleReport=تقرير بسيط
+AddExtraReport=تقارير إضافية
+OtherCountriesCustomersReport=تقرير العملاء الأجانب
+BasedOnTwoFirstLettersOfVATNumberBeingDifferentFromYourCompanyCountry=استنادا الى اثنين من الأحرف الأولى من رقم ضريبة القيمة المضافة بأنهم مختلفون عن رمز البلد شركتك الخاصة لل
+SameCountryCustomersWithVAT=تقرير عملاء الوطني
+BasedOnTwoFirstLettersOfVATNumberBeingTheSameAsYourCompanyCountry=استنادا الى اثنين من الأحرف الأولى من رقم ضريبة القيمة المضافة هي نفس رمز البلد شركتك الخاصة لل
diff --git a/htdocs/langs/ar_SA/contracts.lang b/htdocs/langs/ar_SA/contracts.lang
index b1d0252ae2f62890392705960c0af1f20e5cfa0a..fe8e54cdc4ec0b47b1d755d977b8bfdc0c343672 100644
--- a/htdocs/langs/ar_SA/contracts.lang
+++ b/htdocs/langs/ar_SA/contracts.lang
@@ -1,7 +1,7 @@
 # Dolibarr language file - Source file is en_US - contracts
 ContractsArea=عقود منطقة
 ListOfContracts=قائمة العقود
-LastModifiedContracts=Last %s modified contracts
+LastModifiedContracts=مشاركة الصورة٪ العقود المعدلة
 AllContracts=جميع العقود
 ContractCard=عقد بطاقة
 ContractStatus=عقد مركز
@@ -19,11 +19,11 @@ ServiceStatusLateShort=انتهى
 ServiceStatusClosed=مغلقة
 ServicesLegend=خدمات أسطورة
 Contracts=عقود
-ContractsSubscriptions=Contracts/Subscriptions
-ContractsAndLine=Contracts and line of contracts
+ContractsSubscriptions=العقود / الاشتراكات
+ContractsAndLine=العقود وخط عقود
 Contract=العقد
-ContractLine=Contract line
-Closing=Closing
+ContractLine=خط العقد
+Closing=إغلاق
 NoContracts=أي عقود
 MenuServices=الخدمات
 MenuInactiveServices=الخدمات غير الفعالة
@@ -31,8 +31,8 @@ MenuRunningServices=ادارة الخدمات
 MenuExpiredServices=انتهت الخدمات
 MenuClosedServices=أغلقت الخدمات
 NewContract=العقد الجديد
-NewContractSubscription=New contract/subscription
-AddContract=Create contract
+NewContractSubscription=العقد الجديد / الاشتراك
+AddContract=إنشاء العقد
 SearchAContract=بحث عقد
 DeleteAContract=الغاء العقد
 CloseAContract=وثيقة العقد
@@ -43,7 +43,7 @@ ConfirmCloseService=هل أنت متأكد من أن وثيقة مع هذه ال
 ValidateAContract=مصادقة على العقود
 ActivateService=تفعيل الخدمة
 ConfirmActivateService=هل أنت متأكد من تفعيل هذه الخدمة في تاريخ <b>٪ ق؟</b>
-RefContract=Contract reference
+RefContract=إشارة العقد
 DateContract=تاريخ العقد
 DateServiceActivate=تاريخ تفعيل الخدمة
 DateServiceUnactivate=تاريخ خدمة unactivation
@@ -58,7 +58,7 @@ ListOfRunningContractsLines=قائمة تشغيل خطوط العقد
 ListOfRunningServices=لائحة ادارة الخدمات
 NotActivatedServices=لا تنشيط الخدمات) بين مصدق العقود)
 BoardNotActivatedServices=خدمات لتفعيل العقود بين مصدق
-LastContracts=Last %s contracts
+LastContracts=العقود الماضية ق٪
 LastActivatedServices=ق الماضي ٪ تنشيط الخدمات
 LastModifiedServices=آخر تعديل ٪ ق الخدمات
 EditServiceLine=تعديل خط الخدمات
@@ -90,13 +90,13 @@ PaymentRenewContractId=تجديد العقد الخط (رقم ٪)
 ExpiredSince=تاريخ الانتهاء
 RelatedContracts=العقود ذات الصلة
 NoExpiredServices=أي نوع من الخدمات انتهت نشط
-ListOfServicesToExpireWithDuration=List of Services to expire in %s days
-ListOfServicesToExpireWithDurationNeg=List of Services expired from more than %s days
-ListOfServicesToExpire=List of Services to expire
-NoteListOfYourExpiredServices=This list contains only services of contracts for third parties you are linked to as a sale representative.
-StandardContractsTemplate=Standard contracts template
-ContactNameAndSignature=For %s, name and signature:
-OnlyLinesWithTypeServiceAreUsed=Only lines with type "Service" will be cloned.
+ListOfServicesToExpireWithDuration=قائمة الخدمات لتنتهي في أيام٪ الصورة
+ListOfServicesToExpireWithDurationNeg=قائمة الخدمات انتهت من أكثر من٪ الصورة أيام
+ListOfServicesToExpire=قائمة الخدمات لتنتهي
+NoteListOfYourExpiredServices=تحتوي هذه القائمة على الخدمات فقط من العقود لأطراف ثالثة ترتبط لك كممثل بيع.
+StandardContractsTemplate=قالب العقود القياسية
+ContactNameAndSignature=ل٪ الصورة والاسم والتوقيع:
+OnlyLinesWithTypeServiceAreUsed=خطوط الوحيدة مع نوع "الخدمة" سيتم استنساخ.
 
 ##### Types de contacts #####
 TypeContact_contrat_internal_SALESREPSIGN=ممثل مبيعات توقيع العقد
diff --git a/htdocs/langs/ar_SA/cron.lang b/htdocs/langs/ar_SA/cron.lang
index 7404d5fb07e68cd0e3bdc686056cc5d3df1f14e3..04e11d87cd10bd14c0f6031319dd5e39d7d1c871 100644
--- a/htdocs/langs/ar_SA/cron.lang
+++ b/htdocs/langs/ar_SA/cron.lang
@@ -1,89 +1,91 @@
 # Dolibarr language file - Source file is en_US - cron
 # About page
 About = حول
-CronAbout = About Cron
-CronAboutPage = Cron about page
+CronAbout = حول كرون
+CronAboutPage = كرون حول الصفحة
 # Right
-Permission23101 = Read Scheduled job
-Permission23102 = Create/update Scheduled job
-Permission23103 = Delete Scheduled job
-Permission23104 = Execute Scheduled job
+Permission23101 = قراءة مهمة مجدولة
+Permission23102 = إنشاء / تحديث المجدولة وظيفة
+Permission23103 = حذف مهمة مجدولة
+Permission23104 = تنفيذ مهمة مجدولة
 # Admin
-CronSetup= Scheduled job management setup
-URLToLaunchCronJobs=URL to check and launch cron jobs if required
-OrToLaunchASpecificJob=Or to check and launch a specific job
-KeyForCronAccess=Security key for URL to launch cron jobs
-FileToLaunchCronJobs=Command line to launch cron jobs
-CronExplainHowToRunUnix=On Unix environment you should use the following crontab entry to run the command line each 5 minutes
-CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
+CronSetup= من المقرر إعداد إدارة العمل
+URLToLaunchCronJobs=URL لفحص وإطلاق كرون الوظائف إذا لزم الأمر
+OrToLaunchASpecificJob=أو لفحص وإطلاق وظيفة محددة
+KeyForCronAccess=مفتاح أمان للURL لإطلاق كرون الوظائف
+FileToLaunchCronJobs=سطر الأوامر لإطلاق كرون الوظائف
+CronExplainHowToRunUnix=على بيئة يونكس يجب عليك استخدام دخول كرونتاب التالي لتشغيل سطر الأوامر كل 5 دقائق
+CronExplainHowToRunWin=على مايكروسوفت (TM) ويندوز environement يمكنك استخدام أدوات مهمة مجدولة لتشغيل سطر الأوامر كل 5 دقائق
 # Menu
-CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
-CronListInactive=List of disabled jobs
+CronJobs=المهام المجدولة
+CronListActive=List of enabled/scheduled jobs
+CronListInactive=قائمة وظائف ذوي الاحتياجات الخاصة
+EnabledAndDisabled=Enabled and disabled
 # Page list
-CronDateLastRun=Last run
-CronLastOutput=Last run output
-CronLastResult=Last result code
-CronListOfCronJobs=List of scheduled jobs
-CronCommand=Command
-CronList=Scheduled jobs
-CronDelete=Delete scheduled jobs
-CronConfirmDelete=Are you sure you want to delete these scheduled jobs ?
-CronExecute=Launch scheduled jobs
-CronConfirmExecute=Are you sure you want to execute these scheduled jobs now ?
-CronInfo=Scheduled job module allow to execute job that have been planned
-CronWaitingJobs=Waiting jobs
-CronTask=Job
+CronDateLastRun=الماضي البعيد
+CronLastOutput=نشاط انتاج المدى
+CronLastResult=آخر رمز النتيجة
+CronListOfCronJobs=قائمة المهام المجدولة
+CronCommand=أمر
+CronList=المهام المجدولة
+CronDelete=حذف المهام المجدولة
+CronConfirmDelete=هل أنت متأكد أنك تريد حذف هذه المهام المجدولة؟
+CronExecute=إطلاق المهام المجدولة
+CronConfirmExecute=هل أنت متأكد أنك تريد تنفيذ هذه المهام المجدولة الآن؟
+CronInfo=وحدة مهمة مجدولة تسمح لتنفيذ المهمة التي تم التخطيط لها
+CronWaitingJobs=في انتظار وظيفة
+CronTask=وظيفة
 CronNone=بلا
-CronDtStart=تاريخ البدء
-CronDtEnd=نهاية التاريخ
-CronDtNextLaunch=Next execution
-CronDtLastLaunch=Last execution
-CronFrequency=Frequency
-CronClass=Class
+CronDtStart=Not before
+CronDtEnd=Not after
+CronDtNextLaunch=إعدام المقبل
+CronDtLastLaunch=آخر إعدام
+CronFrequency=تردد
+CronClass=الصف
 CronMethod=الطريقة
 CronModule=وحدة
-CronAction=Action
+CronAction=إجراء
 CronStatus=حالة
 CronStatusActive=مكن
 CronStatusInactive=المعاقين
-CronNoJobs=No jobs registered
+CronNoJobs=أي وظيفة سجلت
 CronPriority=الأولوية
 CronLabel=وصف
-CronNbRun=Nb. launch
-CronEach=Every
-JobFinished=Job launched and finished
+CronNbRun=ملحوظة. إطلاق
+CronMaxRun=Max nb. launch
+CronEach=كل
+JobFinished=العمل بدأ وانتهى
 #Page card
-CronAdd= Add jobs
-CronHourStart= Start hour and date of job
-CronEvery=Execute job each
-CronObject=Instance/Object to create
+CronAdd= إضافة وظائف
+CronHourStart= بدء ساعة وتاريخ وظيفة
+CronEvery=العمل كل تنفيذ
+CronObject=المثال / إنشاء عنصر
 CronArgs=البارامترات
-CronSaveSucess=Save succesfully
+CronSaveSucess=حفظ بنجاح
 CronNote=التعليق
-CronFieldMandatory=Fields %s is mandatory
-CronErrEndDateStartDt=End date cannot be before start date
-CronStatusActiveBtn=Enable
+CronFieldMandatory=الحقول%s إلزامي
+CronErrEndDateStartDt=تاريخ نهاية لا يمكن أن يكون قبل تاريخ البدء
+CronStatusActiveBtn=تمكين
 CronStatusInactiveBtn=يعطل
-CronTaskInactive=This job is disabled
-CronDtLastResult=Last result date
-CronId=Id
-CronClassFile=Classes (filename.class.php)
-CronModuleHelp=Name of Dolibarr module directory (also work with external Dolibarr module). <BR> For exemple to fetch method of Dolibarr Product object /htdocs/<u>product</u>/class/product.class.php, the value of module is <i>product</i>
-CronClassFileHelp=The file name to load. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/<u>product.class.php</u>, the value of class file name is <i>product.class.php</i>
-CronObjectHelp=The object name to load. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of class file name is <i>Product</i>
-CronMethodHelp=The object method to launch. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of method is  is <i>fecth</i>
-CronArgsHelp=The method arguments. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of paramters can be <i>0, ProductRef</i>
-CronCommandHelp=The system command line to execute.
-CronCreateJob=Create new Scheduled Job
-CronFrom=From
+CronTaskInactive=تم تعطيل هذه الوظائف
+CronDtLastResult=آخر موعد نتيجة
+CronId=هوية شخصية
+CronClassFile=فصول (filename.class.php)
+CronModuleHelp=اسم Dolibarr وحدة الدليل (يعمل أيضا مع وحدة Dolibarr الخارجية). <BR> لexemple لجلب طريقة الكائن المنتج Dolibarr / htdocs / <u>المنتج</u> /class/product.class.php، وقيمة الوحدة هي <i>المنتج</i>
+CronClassFileHelp=اسم الملف لتحميل. <BR> لexemple لجلب طريقة الكائن المنتج Dolibarr / htdocs / المنتج / فئة / <u>product.class.php،</u> وقيمة اسم ملف فئة هي <i>product.class.php</i>
+CronObjectHelp=اسم الكائن لتحميل. <BR> لexemple لجلب طريقة Dolibarr /htdocs/product/class/product.class.php الكائن المنتج، وقيمة اسم ملف فئة هي <i>المنتج</i>
+CronMethodHelp=طريقة كائن لإطلاق. <BR> لexemple لجلب طريقة Dolibarr /htdocs/product/class/product.class.php الكائن المنتج، وقيمة الأسلوب هو <i>fecth</i>
+CronArgsHelp=الحجج الأسلوب. <BR> لexemple لجلب طريقة Dolibarr /htdocs/product/class/product.class.php الكائن المنتج، وقيمة paramters يمكن أن يكون <i>0، ProductRef</i>
+CronCommandHelp=سطر الأوامر لتنفيذ النظام.
+CronCreateJob=إنشاء مهمة مجدولة جديدة
+CronFrom=من عند
 # Info
-CronInfoPage=Information
+CronInfoPage=معلومات
 # Common
-CronType=Job type
-CronType_method=Call method of a Dolibarr Class
-CronType_command=Shell command
-CronMenu=Cron
-CronCannotLoadClass=Cannot load class %s or object %s
-UseMenuModuleToolsToAddCronJobs=Go into menu "Home - Modules tools - Job list" to see and edit scheduled jobs.
-TaskDisabled=Job disabled
+CronType=نوع العمل
+CronType_method=استدعاء الأسلوب من فئة Dolibarr
+CronType_command=الأمر Shell
+CronMenu=كرون
+CronCannotLoadClass=لا يمكن تحميل الطبقة %s أو الكائن %s
+UseMenuModuleToolsToAddCronJobs=الذهاب إلى قائمة "الرئيسية - أدوات الوحدات - قائمة الوظيفي" لرؤية وتعديل المهام المجدولة.
+TaskDisabled=تعطيل وظيفة
diff --git a/htdocs/langs/ar_SA/deliveries.lang b/htdocs/langs/ar_SA/deliveries.lang
index fe3526c7db16826b763162e87e7c557cb044d71b..2608ddb6ae1719f381b907b9a2916eb360bf610a 100644
--- a/htdocs/langs/ar_SA/deliveries.lang
+++ b/htdocs/langs/ar_SA/deliveries.lang
@@ -7,7 +7,7 @@ DeliveryOrders=توصيل الطلبات
 DeliveryDate=تاريخ التسليم
 DeliveryDateShort=Deliv. تاريخ
 CreateDeliveryOrder=ومن أجل توليد التسليم
-DeliveryStateSaved=Delivery state saved
+DeliveryStateSaved=الدولة تسليم أنقذت
 QtyDelivered=الكمية المسلمة
 SetDeliveryDate=حدد تاريخ الشحن
 ValidateDeliveryReceipt=تحقق من إنجاز ورود
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=هل أنت متأكد أنك تريد حذف <b>%s
 DeliveryMethod=طريقة التسليم
 TrackingNumber=تتبع عدد
 DeliveryNotValidated=التسليم يتم التحقق من صحة
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=الاسم والتوقيع :
 ToAndDate=To___________________________________ على ____ / _____ / __________
@@ -24,6 +27,6 @@ GoodStatusDeclaration=وتلقى البضائع الواردة أعلاه في 
 Deliverer=المنفذ :
 Sender=مرسل
 Recipient=المتلقي
-ErrorStockIsNotEnough=There's not enough stock
-Shippable=Shippable
-NonShippable=Not Shippable
+ErrorStockIsNotEnough=ليس هناك مخزون كاف
+Shippable=قابل للشحن
+NonShippable=لا قابل للشحن
diff --git a/htdocs/langs/ar_SA/dict.lang b/htdocs/langs/ar_SA/dict.lang
index 426d198b609554eb5de51ead9a45eb264507ae5a..520f9113cd5b3f743a71afb6ce040ac16c908aeb 100644
--- a/htdocs/langs/ar_SA/dict.lang
+++ b/htdocs/langs/ar_SA/dict.lang
@@ -6,7 +6,7 @@ CountryES=أسبانيا
 CountryDE=ألمانيا
 CountryCH=سويسرا
 CountryGB=بريطانيا العظمى
-CountryUK=United Kingdom
+CountryUK=المملكة المتحدة
 CountryIE=أيرلاندا
 CountryCN=الصين
 CountryTN=تونس
@@ -252,7 +252,7 @@ CivilityMME=السيدة
 CivilityMR=السيد
 CivilityMLE=السيدة
 CivilityMTRE=السيد
-CivilityDR=Doctor
+CivilityDR=دكتور
 ##### Currencies #####
 Currencyeuros=يورو
 CurrencyAUD=دولار للاتحاد الافريقي
@@ -289,8 +289,10 @@ CurrencyXOF=BCEAO فرنك أفريقي
 CurrencySingXOF=اتفاق وقف إطلاق النار الفرنك تشريعي ملائم
 CurrencyXPF=الحراجية المعتمدة الفرنك
 CurrencySingXPF=الحراجية المعتمدة الفرنك
-CurrencyCentSingEUR=cent
-CurrencyThousandthSingTND=thousandth
+CurrencyCentSingEUR=سنت
+CurrencyCentINR=بيزة
+CurrencyCentSingINR=paise
+CurrencyThousandthSingTND=الألف
 #### Input reasons #####
 DemandReasonTypeSRC_INTE=الإنترنت
 DemandReasonTypeSRC_CAMP_MAIL=حملة بريدية
@@ -299,27 +301,27 @@ DemandReasonTypeSRC_CAMP_PHO=حملة الهاتف
 DemandReasonTypeSRC_CAMP_FAX=حملة الفاكس
 DemandReasonTypeSRC_COMM=الاتصال التجاري
 DemandReasonTypeSRC_SHOP=متجر الاتصال
-DemandReasonTypeSRC_WOM=Word of mouth
-DemandReasonTypeSRC_PARTNER=Partner
-DemandReasonTypeSRC_EMPLOYEE=Employee
-DemandReasonTypeSRC_SPONSORING=Sponsorship
+DemandReasonTypeSRC_WOM=كلمة الفم
+DemandReasonTypeSRC_PARTNER=شريك
+DemandReasonTypeSRC_EMPLOYEE=الموظف
+DemandReasonTypeSRC_SPONSORING=رعاية
 #### Paper formats ####
-PaperFormatEU4A0=Format 4A0
-PaperFormatEU2A0=Format 2A0
-PaperFormatEUA0=Format A0
-PaperFormatEUA1=Format A1
-PaperFormatEUA2=Format A2
-PaperFormatEUA3=Format A3
-PaperFormatEUA4=Format A4
-PaperFormatEUA5=Format A5
-PaperFormatEUA6=Format A6
-PaperFormatUSLETTER=Format Letter US
-PaperFormatUSLEGAL=Format Legal US
-PaperFormatUSEXECUTIVE=Format Executive US
-PaperFormatUSLEDGER=Format Ledger/Tabloid
-PaperFormatCAP1=Format P1 Canada
-PaperFormatCAP2=Format P2 Canada
-PaperFormatCAP3=Format P3 Canada
-PaperFormatCAP4=Format P4 Canada
-PaperFormatCAP5=Format P5 Canada
-PaperFormatCAP6=Format P6 Canada
+PaperFormatEU4A0=شكل 4A0
+PaperFormatEU2A0=شكل 2A0
+PaperFormatEUA0=شكل A0
+PaperFormatEUA1=شكل A1
+PaperFormatEUA2=شكل A2
+PaperFormatEUA3=شكل A3
+PaperFormatEUA4=شكل A4
+PaperFormatEUA5=شكل A5
+PaperFormatEUA6=شكل A6
+PaperFormatUSLETTER=شكل خطاب الولايات المتحدة
+PaperFormatUSLEGAL=تنسيق أمريكي القانونية
+PaperFormatUSEXECUTIVE=شكل التنفيذي الولايات المتحدة
+PaperFormatUSLEDGER=شكل ليدجر / التابلويد
+PaperFormatCAP1=شكل P1 كندا
+PaperFormatCAP2=شكل P2 كندا
+PaperFormatCAP3=شكل P3 كندا
+PaperFormatCAP4=شكل P4 كندا
+PaperFormatCAP5=شكل P5 كندا
+PaperFormatCAP6=شكل P6 كندا
diff --git a/htdocs/langs/ar_SA/donations.lang b/htdocs/langs/ar_SA/donations.lang
index fe30adb3ceec926c88ee48ff6d5295a8b590d994..8ae04c25ec1d06623bd14c06d2af230794f2808d 100644
--- a/htdocs/langs/ar_SA/donations.lang
+++ b/htdocs/langs/ar_SA/donations.lang
@@ -1,14 +1,14 @@
 # Dolibarr language file - Source file is en_US - donations
 Donation=تبرع
 Donations=التبرعات
-DonationRef=Donation ref.
+DonationRef=التبرع المرجع.
 Donor=الجهات المانحة
 Donors=الجهات المانحة
-AddDonation=Create a donation
+AddDonation=إنشاء التبرع
 NewDonation=منحة جديدة
-DeleteADonation=Delete a donation
-ConfirmDeleteADonation=Are you sure you want to delete this donation ?
-ShowDonation=Show donation
+DeleteADonation=حذف التبرع
+ConfirmDeleteADonation=هل أنت متأكد أنك تريد حذف هذه الهبة؟
+ShowDonation=مشاهدة التبرع
 DonationPromise=هدية الوعد
 PromisesNotValid=وعود لم يصادق
 PromisesValid=صادق الوعود
@@ -23,21 +23,21 @@ DonationStatusPaid=تلقى تبرع
 DonationStatusPromiseNotValidatedShort=مسودة
 DonationStatusPromiseValidatedShort=صادق
 DonationStatusPaidShort=وردت
-DonationTitle=Donation receipt
-DonationDatePayment=Payment date
+DonationTitle=استلام التبرع
+DonationDatePayment=تاريخ الدفع
 ValidPromess=التحقق من صحة الوعد
-DonationReceipt=Donation receipt
+DonationReceipt=استلام التبرع
 BuildDonationReceipt=بناء استلام
 DonationsModels=نماذج لوثائق ايصالات للتبرع
 LastModifiedDonations=%s آخر تعديل التبرعات
 SearchADonation=البحث تبرع
-DonationRecipient=Donation recipient
-ThankYou=Thank You
-IConfirmDonationReception=The recipient declare reception, as a donation, of the following amount
-MinimumAmount=Minimum amount is  %s
-FreeTextOnDonations=Free text to show in footer
-FrenchOptions=Options for France
-DONATION_ART200=Show article 200 from CGI if you are concerned
-DONATION_ART238=Show article 238 from CGI if you are concerned
-DONATION_ART885=Show article 885 from CGI if you are concerned
-DonationPayment=Donation payment
+DonationRecipient=التبرع المستلم
+ThankYou=شكرا
+IConfirmDonationReception=المتلقي تعلن الاستقبال، كهبة، من المبلغ التالية
+MinimumAmount=الحد الأدنى للمبلغ هي٪ s
+FreeTextOnDonations=النص الحر لإظهارها في تذييل
+FrenchOptions=خيارات لفرنسا
+DONATION_ART200=تبين المادة 200 من CGI إذا كنت تشعر بالقلق
+DONATION_ART238=تبين المادة 238 من CGI إذا كنت تشعر بالقلق
+DONATION_ART885=تبين المادة 885 من CGI إذا كنت تشعر بالقلق
+DonationPayment=دفع التبرع
diff --git a/htdocs/langs/ar_SA/ecm.lang b/htdocs/langs/ar_SA/ecm.lang
index 0a274f7239ab5ee60d35d413f225a96d2f73d0ea..26f0127b24ea043d42c8ca199b204f858c730202 100644
--- a/htdocs/langs/ar_SA/ecm.lang
+++ b/htdocs/langs/ar_SA/ecm.lang
@@ -22,10 +22,10 @@ ECMNewDocument=وثيقة جديدة
 ECMCreationDate=تاريخ الإنشاء
 ECMNbOfFilesInDir=عدد من الملفات في دليل
 ECMNbOfSubDir=من دون أدلة
-ECMNbOfFilesInSubDir=Number of files in sub-directories
+ECMNbOfFilesInSubDir=عدد الملفات في الدلائل الفرعية
 ECMCreationUser=مبدع
-ECMArea=EDM area
-ECMAreaDesc=The EDM (Electronic Document Management) area allows you to save, share and search quickly all kind of documents in Dolibarr.
+ECMArea=منطقة EDM
+ECMAreaDesc=يسمح للمنطقة EDM (إدارة الوثائق الالكترونية) التي لانقاذ والمشاركة والبحث بسرعة كل نوع من الوثائق في Dolibarr.
 ECMAreaDesc2=* أدلة تلقائية تملأ تلقائيا عند إضافة الوثائق من بطاقة عنصر. <br> * دليل أدلة يمكن استخدامها لانقاذ وثائق ليست مرتبطة بشكل خاص عنصر.
 ECMSectionWasRemoved=دليل <b>٪ ق</b> حذفت.
 ECMDocumentsSection=وثيقة من وثائق ودليل
@@ -34,16 +34,16 @@ ECMSearchByEntity=بحث عن وجوه
 ECMSectionOfDocuments=أدلة وثائق
 ECMTypeManual=دليل
 ECMTypeAuto=التلقائي
-ECMDocsBySocialContributions=Documents linked to social or fiscal taxes
+ECMDocsBySocialContributions=المستندات المرتبطة بالضرائب الاجتماعية أو المالية
 ECMDocsByThirdParties=وثائق مرتبطة أطراف ثالثة
 ECMDocsByProposals=وثائق مرتبطة مقترحات
 ECMDocsByOrders=وثائق مرتبطة أوامر العملاء
 ECMDocsByContracts=وثائق مرتبطة بعقود
 ECMDocsByInvoices=وثائق مرتبطة عملاء الفواتير
 ECMDocsByProducts=الوثائق المرتبطة بالمنتجات
-ECMDocsByProjects=Documents linked to projects
-ECMDocsByUsers=Documents linked to users
-ECMDocsByInterventions=Documents linked to interventions
+ECMDocsByProjects=المستندات المرتبطة بالمشاريع
+ECMDocsByUsers=وثائق مرتبطة المستخدمين
+ECMDocsByInterventions=وثائق مرتبطة بالتدخلات
 ECMNoDirectoryYet=لا الدليل
 ShowECMSection=وتظهر الدليل
 DeleteSection=إزالة الدليل
@@ -52,5 +52,5 @@ ECMDirectoryForFiles=دليل النسبي للملفات
 CannotRemoveDirectoryContainsFiles=لا يمكن إزالتها لأنه يحتوي على بعض الملفات
 ECMFileManager=مدير الملفات
 ECMSelectASection=اختر دليل على ترك شجرة...
-DirNotSynchronizedSyncFirst=This directory seems to be created or modified outside ECM module. You must click on "Refresh" button first to synchronize disk and database to get content of this directory.
+DirNotSynchronizedSyncFirst=ويبدو أن هذا الدليل ليتم إنشاؤها أو تعديلها خارج وحدة ECM. يجب عليك النقر على زر "تحديث" لأول مرة لمزامنة القرص وقاعدة بيانات للحصول على محتويات هذا الدليل.
 
diff --git a/htdocs/langs/ar_SA/errors.lang b/htdocs/langs/ar_SA/errors.lang
index b51ff2071daa56d2b21fa36eea740df0921946be..2885fa8356cabc13752745af1dc1e3d45a7e52b7 100644
--- a/htdocs/langs/ar_SA/errors.lang
+++ b/htdocs/langs/ar_SA/errors.lang
@@ -1,9 +1,9 @@
 # Dolibarr language file - Source file is en_US - errors
 
 # No errors
-NoErrorCommitIsDone=No error, we commit
+NoErrorCommitIsDone=أي خطأ، ونحن نلزم
 # Errors
-ErrorButCommitIsDone=Errors found but we validate despite this
+ErrorButCommitIsDone=تم العثور على أخطاء لكننا تحقق على الرغم من هذا
 ErrorBadEMail=بريد إلكتروني خاطئ %s
 ErrorBadUrl=عنوان الموقع هو الخطأ %s
 ErrorLoginAlreadyExists=ادخل ٪ ق موجود بالفعل.
@@ -21,13 +21,13 @@ ErrorThisContactIsAlreadyDefinedAsThisType=هذا الاتصال هو اتصال
 ErrorCashAccountAcceptsOnlyCashMoney=هذا الحساب المصرفي هو الحساب النقدي ، وذلك ما وافق على نوع من المدفوعات النقدية فقط.
 ErrorFromToAccountsMustDiffers=المصدر والأهداف يجب أن تكون الحسابات المصرفية المختلفة.
 ErrorBadThirdPartyName=سوء قيمة اسم طرف ثالث
-ErrorProdIdIsMandatory=The %s is mandatory
+ErrorProdIdIsMandatory=و٪ s غير إلزامي
 ErrorBadCustomerCodeSyntax=سوء تركيب الزبون مدونة
-ErrorBadBarCodeSyntax=Bad syntax for bar code. May be you set a bad barcode type or you defined a barcode mask for numbering that does not match value scanned.
+ErrorBadBarCodeSyntax=جملة سيئة الباركود. قد تكون قمت بتعيين نوع الباركود سيئة أو قمت بتعريفه قناع الباركود للترقيم لا تطابق قيمة الممسوحة ضوئيا.
 ErrorCustomerCodeRequired=رمز العميل المطلوبة
-ErrorBarCodeRequired=Bar code required
+ErrorBarCodeRequired=رمز شريط المطلوب
 ErrorCustomerCodeAlreadyUsed=الشفرة المستخدمة بالفعل العملاء
-ErrorBarCodeAlreadyUsed=Bar code already used
+ErrorBarCodeAlreadyUsed=الرمز الشريطي تستخدم بالفعل
 ErrorPrefixRequired=المطلوب ببادئة
 ErrorUrlNotValid=موقع معالجة صحيحة
 ErrorBadSupplierCodeSyntax=مورد سوء تركيب لمدونة
@@ -35,9 +35,9 @@ ErrorSupplierCodeRequired=رمز المورد المطلوب
 ErrorSupplierCodeAlreadyUsed=الشفرة المستخدمة بالفعل مورد
 ErrorBadParameters=بارامترات سيئة
 ErrorBadValueForParameter=قيمة خاطئة &quot;%s 'ل' %s&quot; المعلمة غير صحيحة
-ErrorBadImageFormat=Image file has not a supported format (Your PHP does not support functions to convert images of this format)
+ErrorBadImageFormat=ملف الصورة لم تنسيق معتمد (PHP لديك لا يدعم وظائف لتحويل الصور من هذا الشكل)
 ErrorBadDateFormat='%s' قيمة له خاطئ تنسيق التاريخ
-ErrorWrongDate=Date is not correct!
+ErrorWrongDate=تاريخ غير صحيح!
 ErrorFailedToWriteInDir=لم يكتب في دليل ٪ ق
 ErrorFoundBadEmailInFile=Found incorrect email syntax for %s lines in file (example line %s with email=العثور على بريد إلكتروني صحيح لتركيب خطوط ق ٪ في ملف (على سبيل المثال خط ٪ ق= ٪ مع البريد الإلكتروني)
 ErrorUserCannotBeDelete=المستخدم لا يمكن حذفها. قد يكون ذلك مرتبطا Dolibarr على الكيانات.
@@ -58,26 +58,26 @@ ErrorUploadBlockedByAddon=حظر حمل من قبل البرنامج المسا
 ErrorFileSizeTooLarge=حجم الملف كبير جدا.
 ErrorSizeTooLongForIntType=طويل جدا بالنسبة نوع INT (%s أرقام كحد أقصى) حجم
 ErrorSizeTooLongForVarcharType=وقتا طويلا لنوع السلسلة (%s حرف كحد أقصى) حجم
-ErrorNoValueForSelectType=Please fill value for select list
-ErrorNoValueForCheckBoxType=Please fill value for checkbox list
-ErrorNoValueForRadioType=Please fill value for radio list
-ErrorBadFormatValueList=The list value cannot have more than one comma: <u>%s</u>, but need at least one: key,value
+ErrorNoValueForSelectType=يرجى ملء قيمة لقائمة مختارة
+ErrorNoValueForCheckBoxType=يرجى ملء قيمة لقائمة مربع
+ErrorNoValueForRadioType=يرجى ملء قيمة لقائمة الراديو
+ErrorBadFormatValueList=قيمة القائمة لا يمكن أن يكون أكثر من واحد <u>فاصلة:٪ الصورة،</u> ولكن تحتاج إلى واحد على الأقل: مفتاح، قيمة
 ErrorFieldCanNotContainSpecialCharacters=ميدان <b>٪ ق</b> يجب ألا يحتوي على أحرف خاصة.
-ErrorFieldCanNotContainSpecialNorUpperCharacters=Field <b>%s</b> must not contain special characters, nor upper case characters and cannot contain only numbers.
+ErrorFieldCanNotContainSpecialNorUpperCharacters=يجب أن لا يحتوي <b>الحقل%s</b> أحرف خاصة، ولا الحروف الكبيرة وليس يمكن أن تحتوي على أرقام فقط.
 ErrorNoAccountancyModuleLoaded=أي وحدة المحاسبة وتفعيل
-ErrorExportDuplicateProfil=This profile name already exists for this export set.
+ErrorExportDuplicateProfil=هذا الاسم الشخصي موجود مسبقا لهذه المجموعة التصدير.
 ErrorLDAPSetupNotComplete=Dolibarr - LDAP المطابقة وليس كاملا.
 ErrorLDAPMakeManualTest=ألف. ldif الملف قد ولدت في الدليل ٪ s. انها محاولة لتحميل يدويا من سطر في الحصول على مزيد من المعلومات عن الأخطاء.
-ErrorCantSaveADoneUserWithZeroPercentage=لا يمكن انقاذ عمل مع "المركز الخاص لم تبدأ" اذا الميدان "الذي قام به" كما شغلها.
+ErrorCantSaveADoneUserWithZeroPercentage=لا يمكن انقاذ عمل مع "المركز الخاص لم تبدأ" اذا الحقل "الذي قام به" كما شغلها.
 ErrorRefAlreadyExists=المرجع المستخدمة لإنشاء موجود بالفعل.
 ErrorPleaseTypeBankTransactionReportName=الرجاء كتابة اسم البنك استلام المعاملات ويقال فيها (شكل YYYYMM أو YYYYMMDD)
 ErrorRecordHasChildren=فشل حذف السجلات منذ نحو الطفل.
-ErrorRecordIsUsedCantDelete=Can't delete record. It is already used or included into other object.
+ErrorRecordIsUsedCantDelete=لا يمكن حذف السجلات. وبالفعل استخدامه أو نشره على كائن آخر.
 ErrorModuleRequireJavascript=يجب عدم تعطيل جافا سكريبت لجعل هذا العمل الميزة. لتمكين / تعطيل جافا سكريبت ، انتقل إلى القائمة الرئيسية -> الإعداد -> العرض.
 ErrorPasswordsMustMatch=ويجب على كلا كلمات المرور المكتوبة تطابق بعضها البعض
 ErrorContactEMail=وقع خطأ فني. من فضلك، اتصل بمسؤول إلى البريد الإلكتروني بعد <b>%s</b> EN توفير <b>%s</b> رمز الخطأ في رسالتك، أو حتى أفضل من خلال إضافة نسخة شاشة من هذه الصفحة.
 ErrorWrongValueForField=قيمة خاطئة لعدد <b>%s</b> الحقل (قيمة <b>'%s'</b> لا يتطابق <b>%s</b> حكم [رجإكس])
-ErrorFieldValueNotIn=Wrong value for field number <b>%s</b> (value '<b>%s</b>' is not a value available into field <b>%s</b> of table <b>%s</b>)
+ErrorFieldValueNotIn=قيمة خاطئة عن رقم <b>الحقل%s</b> (القيمة <b>'٪ ق'</b> ليست قيمة متوفرة في <b>حقل٪ الصورة</b> من <b>الجدول%s)</b>
 ErrorFieldRefNotIn=قيمة خاطئة <b>ل%s</b> عدد حقل <b>('%s</b> &quot;قيمة ليست المرجع <b>%s</b> موجود)
 ErrorsOnXLines=الأخطاء على خطوط مصدر <b>%s</b>
 ErrorFileIsInfectedWithAVirus=وكان برنامج مكافحة الفيروسات غير قادرة على التحقق من صحة الملف (ملف قد يكون مصابا بواسطة فيروس)
@@ -89,8 +89,8 @@ ErrorModuleSetupNotComplete=إعداد وحدة يتطلع إلى أن يكون
 ErrorBadMask=خطأ في قناع
 ErrorBadMaskFailedToLocatePosOfSequence=خطأ، من دون قناع رقم التسلسل
 ErrorBadMaskBadRazMonth=خطأ، قيمة إعادة سيئة
-ErrorMaxNumberReachForThisMask=Max number reach for this mask
-ErrorCounterMustHaveMoreThan3Digits=Counter must have more than 3 digits
+ErrorMaxNumberReachForThisMask=عدد ماكس متناول هذا القناع
+ErrorCounterMustHaveMoreThan3Digits=يجب أن يكون العداد أكثر من 3 أرقام
 ErrorSelectAtLeastOne=خطأ. حدد واحد على الأقل دخول.
 ErrorProductWithRefNotExist=المنتج مع <i>'%s</i> &quot;إشارة لا وجود لها
 ErrorDeleteNotPossibleLineIsConsolidated=حذف غير ممكن لأنه مرتبط سجل إلى transation البنك الذي يتم التصالح
@@ -98,7 +98,7 @@ ErrorProdIdAlreadyExist=يتم تعيين ثلث آخر إلى %s
 ErrorFailedToSendPassword=لم ترسل كلمة السر
 ErrorFailedToLoadRSSFile=فشل في الحصول على آر إس إس. محاولة إضافة MAIN_SIMPLEXMLLOAD_DEBUG ثابت إذا رسائل الخطأ لا توفر ما يكفي من المعلومات.
 ErrorPasswordDiffers=كلمات السر يختلف، الرجاء كتابتها مرة أخرى.
-ErrorForbidden=Access denied.<br>You try to access to a page, area or feature of a disabled module or without being in an authenticated session or that is not allowed to your user.
+ErrorForbidden=تم الرفض. <br> محاولة الوصول إلى صفحة أو منطقة أو ميزة من وحدة نمطية تعطيل أو دون أن تكون في جلسة مصادقة أو الذي لا يسمح له المستخدم الخاص بك.
 ErrorForbidden2=ويمكن تعريف إذن لهذا الدخول من قبل المسؤول Dolibarr الخاص بك من القائمة %s-> %s.
 ErrorForbidden3=يبدو أن لا يتم استخدام Dolibarr خلال جلسة المصادقة. نلقي نظرة على وثائق الإعداد Dolibarr لمعرفة كيفية إدارة المصادقة (تاكيس، mod_auth أو غيرها ...).
 ErrorNoImagickReadimage=لم يتم العثور على فئة Imagick في هذا PHP. لا يمكن لمعاينة تكون متاحة. يمكن للمسؤولين تعطيل هذا التبويب من إعداد القائمة - عرض.
@@ -114,68 +114,68 @@ ErrorLoginDoesNotExists=لا يستطيع المستخدم الدخول مع <b>
 ErrorLoginHasNoEmail=هذا المستخدم ليس لديه عنوان البريد الإلكتروني. إحباط عملية.
 ErrorBadValueForCode=سيئة قيمة لرمز الحماية. حاول مرة أخرى مع القيمة الجديدة ...
 ErrorBothFieldCantBeNegative=ويمكن لحقول %s و%s لا تكون سلبية
-ErrorQtyForCustomerInvoiceCantBeNegative=Quantity for line into customer invoices can't be negative
+ErrorQtyForCustomerInvoiceCantBeNegative=كمية لخط في فواتير العملاء لا يمكن أن يكون سلبيا
 ErrorWebServerUserHasNotPermission=<b>%s</b> تستخدم حساب مستخدم لتنفيذ خادم الويب لا يوجد لديه إذن لذلك
 ErrorNoActivatedBarcode=لا يوجد نوع الباركود تفعيلها
-ErrUnzipFails=Failed to unzip %s with ZipArchive
-ErrNoZipEngine=No engine to unzip %s file in this PHP
-ErrorFileMustBeADolibarrPackage=The file %s must be a Dolibarr zip package
-ErrorFileRequired=It takes a package Dolibarr file
-ErrorPhpCurlNotInstalled=The PHP CURL is not installed, this is essential to talk with Paypal
-ErrorFailedToAddToMailmanList=Failed to add record %s to Mailman list %s or SPIP base
-ErrorFailedToRemoveToMailmanList=Failed to remove record %s to Mailman list %s or SPIP base
-ErrorNewValueCantMatchOldValue=New value can't be equal to old one
-ErrorFailedToValidatePasswordReset=Failed to reinit password. May be the reinit was already done (this link can be used only one time). If not, try to restart the reinit process.
-ErrorToConnectToMysqlCheckInstance=Connect to database fails. Check Mysql server is running (in most cases, you can launch it from command line with 'sudo /etc/init.d/mysql start').
-ErrorFailedToAddContact=Failed to add contact
-ErrorDateMustBeBeforeToday=The date can not be greater than today
-ErrorPaymentModeDefinedToWithoutSetup=A payment mode was set to type %s but setup of module Invoice was not completed to define information to show for this payment mode.
-ErrorPHPNeedModule=Error, your PHP must have module <b>%s</b> installed to use this feature.
-ErrorOpenIDSetupNotComplete=You setup Dolibarr config file to allow OpenID authentication, but URL of OpenID service is not defined into constant %s
-ErrorWarehouseMustDiffers=Source and target warehouses must differs
-ErrorBadFormat=Bad format!
-ErrorMemberNotLinkedToAThirpartyLinkOrCreateFirst=Error, this member is not yet linked to any thirdparty. Link member to an existing third party or create a new thirdparty before creating subscription with invoice.
-ErrorThereIsSomeDeliveries=Error, there is some deliveries linked to this shipment. Deletion refused.
-ErrorCantDeletePaymentReconciliated=Can't delete a payment that had generated a bank transaction that was conciliated
-ErrorCantDeletePaymentSharedWithPayedInvoice=Can't delete a payment shared by at least one invoice with status Payed
-ErrorPriceExpression1=Cannot assign to constant '%s'
-ErrorPriceExpression2=Cannot redefine built-in function '%s'
-ErrorPriceExpression3=Undefined variable '%s' in function definition
-ErrorPriceExpression4=Illegal character '%s'
-ErrorPriceExpression5=Unexpected '%s'
-ErrorPriceExpression6=Wrong number of arguments (%s given, %s expected)
-ErrorPriceExpression8=Unexpected operator '%s'
-ErrorPriceExpression9=An unexpected error occured
-ErrorPriceExpression10=Iperator '%s' lacks operand
-ErrorPriceExpression11=Expecting '%s'
-ErrorPriceExpression14=Division by zero
-ErrorPriceExpression17=Undefined variable '%s'
-ErrorPriceExpression19=Expression not found
-ErrorPriceExpression20=Empty expression
-ErrorPriceExpression21=Empty result '%s'
-ErrorPriceExpression22=Negative result '%s'
-ErrorPriceExpressionInternal=Internal error '%s'
-ErrorPriceExpressionUnknown=Unknown error '%s'
-ErrorSrcAndTargetWarehouseMustDiffers=Source and target warehouses must differs
-ErrorTryToMakeMoveOnProductRequiringBatchData=Error, trying to make a stock movement without lot/serial information, on a product requiring lot/serial information
-ErrorCantSetReceptionToTotalDoneWithReceptionToApprove=All recorded receptions must first be verified (approved or denied) before being allowed to do this action
-ErrorCantSetReceptionToTotalDoneWithReceptionDenied=All recorded receptions must first be verified (approved) before being allowed to do this action
-ErrorGlobalVariableUpdater0=HTTP request failed with error '%s'
-ErrorGlobalVariableUpdater1=Invalid JSON format '%s'
-ErrorGlobalVariableUpdater2=Missing parameter '%s'
-ErrorGlobalVariableUpdater3=The requested data was not found in result
-ErrorGlobalVariableUpdater4=SOAP client failed with error '%s'
-ErrorGlobalVariableUpdater5=No global variable selected
-ErrorFieldMustBeANumeric=Field <b>%s</b> must be a numeric value
-ErrorFieldMustBeAnInteger=Field <b>%s</b> must be an integer
-ErrorMandatoryParametersNotProvided=Mandatory parameter(s) not provided
-ErrorOppStatusRequiredIfAmount=You set an estimated amount for this opportunity/lead. So you must also enter its status
-ErrorBadDefinitionOfMenuArrayInModuleDescriptor=Bad Definition Of Menu Array In Module Descriptor (bad value for key fk_menu)
-ErrorSavingChanges=An error has ocurred when saving the changes
+ErrUnzipFails=فشل بفك٪ الصورة مع ZipArchive
+ErrNoZipEngine=لا المحرك لبفك الصورة ملف٪ في هذا PHP
+ErrorFileMustBeADolibarrPackage=يجب أن يكون الملف٪ s حزمة البريدي Dolibarr
+ErrorFileRequired=فإنه يأخذ ملف حزمة Dolibarr
+ErrorPhpCurlNotInstalled=وPHP الضفيرة لم يتم تثبيت، وهذا أمر ضروري لاجراء محادثات مع باي بال
+ErrorFailedToAddToMailmanList=فشل لاضافة التسجيلة٪ s إلى قائمة ميلمان٪ الصورة أو قاعدة SPIP
+ErrorFailedToRemoveToMailmanList=فشل لإزالة سجل٪ s إلى قائمة ميلمان٪ الصورة أو قاعدة SPIP
+ErrorNewValueCantMatchOldValue=قيمة جديدة لا يمكن أن يكون مساويا لالقديم
+ErrorFailedToValidatePasswordReset=فشل في reinit كلمة المرور. قد يكون وقد تم بالفعل reinit (هذا الرابط يمكن استخدامها مرة واحدة فقط). إن لم يكن، في محاولة لاستئناف عملية reinit.
+ErrorToConnectToMysqlCheckInstance=الاتصال فشلت قاعدة البيانات. تحقق من خادم MySQL تشغيل (في معظم الحالات، يمكنك تشغيله من سطر الأوامر مع "سودو /etc/init.d/mysql بدء ').
+ErrorFailedToAddContact=فشل في إضافة جهة اتصال
+ErrorDateMustBeBeforeToday=التاريخ لا يمكن أن يكون أكبر مما هو عليه اليوم
+ErrorPaymentModeDefinedToWithoutSetup=وتم تشكيل لطريقة الدفع لكتابة٪ الصورة ولكن لم يكتمل الإعداد من وحدة الفاتورة لتحديد المعلومات لاظهار هذه طريقة الدفع.
+ErrorPHPNeedModule=خطأ، يجب PHP الخاص بتثبيت <b>وحدة٪ s إلى</b> استخدام هذه الميزة.
+ErrorOpenIDSetupNotComplete=يمكنك إعداد Dolibarr ملف التكوين للسماح بالمصادقة رض، ولكن لم يتم تعريف URL الخدمة رض إلى المستمر٪ الصورة
+ErrorWarehouseMustDiffers=يجب المصدر والهدف يختلف المستودعات
+ErrorBadFormat=شكل سيئة!
+ErrorMemberNotLinkedToAThirpartyLinkOrCreateFirst=خطأ، لا يرتبط هذا العضو حتى الآن أي مرشحين عن. عضو تصل إلى طرف ثالث القائمة أو إنشاء مرشحين عن الجديد قبل إنشاء الاشتراك مع الفاتورة.
+ErrorThereIsSomeDeliveries=خطأ، وهناك بعض الولادات ترتبط هذه الشحنة. رفض الحذف.
+ErrorCantDeletePaymentReconciliated=لا يمكنك حذف الدفع التي قد ولدت المعاملات المصرفية التي تم التصالح
+ErrorCantDeletePaymentSharedWithPayedInvoice=لا يمكنك حذف دفع تتقاسمها فاتورة واحدة على الأقل مع وضع سيولي
+ErrorPriceExpression1=لا يمكن تعيين إلى ثابت '٪ ق'
+ErrorPriceExpression2=لا يمكن إعادة تعريف المدمج في وظيفة '٪ ق'
+ErrorPriceExpression3=متغير غير معرف '٪ s' في تعريف الدالة
+ErrorPriceExpression4=الطابع غير القانوني '٪ ق'
+ErrorPriceExpression5=غير متوقع '٪ ق'
+ErrorPriceExpression6=عدد خاطئ من الوسائط (٪ ق معين،٪ المتوقعة الصورة)
+ErrorPriceExpression8=مشغل غير متوقع '٪ ق'
+ErrorPriceExpression9=حدث خطأ غير متوقع
+ErrorPriceExpression10=Iperator '٪ ق' يفتقر المعامل
+ErrorPriceExpression11=تتوقع '٪ ق'
+ErrorPriceExpression14=القسمة على صفر
+ErrorPriceExpression17=غير معرف متغير '٪ ق'
+ErrorPriceExpression19=التعبير لم يتم العثور على
+ErrorPriceExpression20=التعبير فارغة
+ErrorPriceExpression21=نتيجة فارغة '٪ ق'
+ErrorPriceExpression22=نتيجة سلبية '٪ ق'
+ErrorPriceExpressionInternal=خطأ داخلي '٪ ق'
+ErrorPriceExpressionUnknown=خطأ غير معروف '٪ ق'
+ErrorSrcAndTargetWarehouseMustDiffers=يجب المصدر والهدف يختلف المستودعات
+ErrorTryToMakeMoveOnProductRequiringBatchData=خطأ، في محاولة لجعل حركة المخزون دون الكثير / المعلومات المسلسل، على منتج تتطلب الكثير / المعلومات التسلسلية
+ErrorCantSetReceptionToTotalDoneWithReceptionToApprove=يجب أولا التحقق من جميع الاستقبالات سجلت (قبول او رفض) قبل أن يسمح لهم القيام بذلك العمل
+ErrorCantSetReceptionToTotalDoneWithReceptionDenied=يجب أولا التحقق من جميع الاستقبالات سجلت (المعتمد) قبل أن يسمح لهم القيام بذلك العمل
+ErrorGlobalVariableUpdater0=طلب HTTP فشلت مع الخطأ '٪ ق'
+ErrorGlobalVariableUpdater1=شكل JSON صالح '٪ ق'
+ErrorGlobalVariableUpdater2=المفقودين المعلمة '٪ ق'
+ErrorGlobalVariableUpdater3=لم يتم العثور على البيانات المطلوبة في نتيجة
+ErrorGlobalVariableUpdater4=العميل SOAP فشلت مع الخطأ '٪ ق'
+ErrorGlobalVariableUpdater5=لا متغير عمومي مختارة
+ErrorFieldMustBeANumeric=يجب أن يكون <b>حقل٪ الصورة</b> قيمة رقمية
+ErrorFieldMustBeAnInteger=يجب أن يكون <b>حقل٪ الصورة</b> عدد صحيح
+ErrorMandatoryParametersNotProvided=معيار إلزامي (ق) لم تقدم
+ErrorOppStatusRequiredIfAmount=قمت بتعيين المبلغ المقدر لهذه الفرصة / الرصاص. لذلك يجب عليك أيضا إدخال مكانتها
+ErrorBadDefinitionOfMenuArrayInModuleDescriptor=سيئة تعريف القائمة صفيف في الوحدة واصف (القيمة سيئة لfk_menu مفتاح)
+ErrorSavingChanges=وقد ocurred لخطأ عند حفظ التغييرات
 
 # Warnings
-WarningPasswordSetWithNoAccount=A password was set for this member. However, no user account was created. So this password is stored but can't be used to login to Dolibarr. It may be used by an external module/interface but if you don't need to define any login nor password for a member, you can disable option "Manage a login for each member" from Member module setup. If you need to manage a login but don't need any password, you can keep this field empty to avoid this warning. Note: Email can also be used as a login if the member is linked to a user.
-WarningMandatorySetupNotComplete=Mandatory setup parameters are not yet defined
+WarningPasswordSetWithNoAccount=تم تعيين كلمة مرور لهذا العضو. ومع ذلك، تم إنشاء أي حساب المستخدم. لذلك يتم تخزين كلمة المرور هذه ولكن لا يمكن استخدامها للدخول إلى Dolibarr. ويمكن استخدامه من قبل وحدة / واجهة خارجية ولكن إذا كنت لا تحتاج إلى تعريف أي تسجيل دخول أو كلمة المرور لأحد أفراد، يمكنك تعطيل خيار "إدارة تسجيل دخول لكل عضو" من إعداد وحدة الأعضاء. إذا كنت بحاجة إلى إدارة تسجيل الدخول ولكن لا تحتاج إلى أي كلمة المرور، يمكنك الحفاظ على هذا الحقل فارغا لتجنب هذا التحذير. ملاحظة: يمكن أيضا أن تستخدم البريد الإلكتروني لتسجيل الدخول إذا تم ربط عضو إلى المستخدم.
+WarningMandatorySetupNotComplete=لا يتم تعريف معلمات الإعداد إلزامية حتى الآن
 WarningSafeModeOnCheckExecDir=انذار ، فب <b>safe_mode</b> الخيار في ذلك تخزين الأمر يجب أن يكون داخل الدليل الذي أعلنته <b>safe_mode_exec_dir</b> المعلمة بي.
 WarningAllowUrlFopenMustBeOn=<b>allow_url_fopen</b> المعلم يجب أن يوضع <b>على</b> المدون في <b>php.ini</b> لتعمل هذه الوحدة بشكل كامل. يجب عليك أن تعدل عن هذا الملف يدويا.
 WarningBuildScriptNotRunned=السيناريو <b>٪ ق</b> لم يكن يتعارض مع بناء الرسومات ، أو عدم وجود بيانات تظهر.
@@ -184,13 +184,13 @@ WarningPassIsEmpty=تحذير كلمة سر قاعدة بيانات فارغة.
 WarningConfFileMustBeReadOnly=انذار ، ملف (التكوين <b>htdocs / أسيوط / conf.php)</b> الخاص يمكن أن تكون الكتابة بواسطة خادم الويب. هذه هي ثغرة أمنية خطيرة. أذونات تعديل على ملف ليكون في وضع القراءة فقط لمستخدم نظام التشغيل المستخدمة من قبل ملقم ويب. إذا كنت تستخدم ويندوز وشكل نسبة الدهون لمدة القرص الخاص بك ، فإنك يجب أن نعرف أن هذا النظام لا يسمح ملف لإضافة الأذونات على الملف ، بحيث لا تكون آمنة تماما.
 WarningsOnXLines=تحذيرات عن مصدر خطوط <b>%s</b>
 WarningNoDocumentModelActivated=لا يوجد نموذج لجيل وثيقة ، قد تم تنشيط. سيكون نموذج المختار افتراضيا حتى يمكنك التحقق من إعداد وحدة الخاص.
-WarningLockFileDoesNotExists=Warning, once setup is finished, you must disable install/migrate tools by adding a file <b>install.lock</b> into directory <b>%s</b>. Missing this file is a security hole.
+WarningLockFileDoesNotExists=تحذير، بمجرد الانتهاء من الإعداد، يجب عليك تعطيل تثبيت / الهجرة أدوات بإضافة <b>install.lock</b> الملف إلى <b>الدليل٪ الصورة.</b> في عداد المفقودين هذا الملف هو ثغرة أمنية.
 WarningUntilDirRemoved=كل التحذيرات الأمنية (مرئية من قبل المستخدمين مشرف فقط) وسوف تبقى نشطة طالما أن الضعف الحالي (أو لم يضف هذا MAIN_REMOVE_INSTALL_WARNING مستمر في الإعداد&gt; الإعداد الأخرى).
-WarningCloseAlways=Warning, closing is done even if amount differs between source and target elements. Enable this feature with caution.
-WarningUsingThisBoxSlowDown=Warning, using this box slow down seriously all pages showing the box.
-WarningClickToDialUserSetupNotComplete=Setup of ClickToDial information for your user are not complete (see tab ClickToDial onto your user card).
-WarningNotRelevant=Irrelevant operation for this dataset
-WarningFeatureDisabledWithDisplayOptimizedForBlindNoJs=Feature disabled when display setup is optimized for blind person or text browsers.
-WarningPaymentDateLowerThanInvoiceDate=Payment date (%s) is earlier than invoice date (%s) for invoice %s.
-WarningTooManyDataPleaseUseMoreFilters=Too many data (more than %s lines). Please use more filters or set the constant %s to a higher limit.
-WarningSomeLinesWithNullHourlyRate=Some times were recorded by users when their hourly rate was not defined. A value of 0 was used but this may result in wrong valuation of time spent.
+WarningCloseAlways=تحذير، ويتم إغلاق حتى إذا قدر يختلف بين عناصر المصدر والهدف. تمكين هذه الميزة بحذر.
+WarningUsingThisBoxSlowDown=تحذير، وذلك باستخدام هذا الإطار تبطئ على محمل الجد كل الصفحات التي تظهر مربع.
+WarningClickToDialUserSetupNotComplete=إعداد المعلومات ClickToDial لالمستخدم الخاص بك ليست كاملة (انظر التبويب ClickToDial على بطاقة المستخدم الخاص بك).
+WarningNotRelevant=العملية غير ذات صلة لهذه البينات.
+WarningFeatureDisabledWithDisplayOptimizedForBlindNoJs=ميزة تعطيل عندما تم تحسين عرض الإعداد لالعمياء شخص أو النص المتصفحات.
+WarningPaymentDateLowerThanInvoiceDate=تاريخ الدفع (٪ ق) هو أقدم من تاريخ الفاتورة (٪ ق) لفاتورة%s.
+WarningTooManyDataPleaseUseMoreFilters=عدد كبير جدا من البيانات (أكثر من خطوط%s). يرجى استخدام المزيد من المرشحات أو تعيين ثابت٪ الصورة إلى حد أعلى.
+WarningSomeLinesWithNullHourlyRate=وسجلت بعض الأوقات من قبل المستخدمين عندما لم يتم تعريف معدل في الساعة. وقد استخدم قيمة 0 ولكن هذا قد يؤدي إلى تقييم خاطئ من الوقت الذي يقضيه.
diff --git a/htdocs/langs/ar_SA/exports.lang b/htdocs/langs/ar_SA/exports.lang
index 49528892c487d6a127f30f49b009d2208e3d33fb..815af8970e383f2e5e80096122217b389bf96eb0 100644
--- a/htdocs/langs/ar_SA/exports.lang
+++ b/htdocs/langs/ar_SA/exports.lang
@@ -8,7 +8,7 @@ ImportableDatas=بيانات وارداتها
 SelectExportDataSet=اختر البيانات التي تريد تصديرها...
 SelectImportDataSet=اختر البيانات التي تريد الاستيراد...
 SelectExportFields=اختيار الحقول التي تريد تصديرها ، أو اختيار ملف التصدير مسبقا
-SelectImportFields=Choose source file fields you want to import and their target field in database by moving them up and down with anchor %s, or select a predefined import profile:
+SelectImportFields=اختيار الحقول في ملف المصدر الذي تريد استيراد والميدان هدفهم في قاعدة البيانات عن طريق نقلها إلى أعلى وأسفل مع مرساة%s ، أو اختر وضعا استيراد مسبقا:
 NotImportedFields=حقول من الملف المصدر يتم استيراد
 SaveExportModel=احفظ هذا التصدير صورة لو كنت تخطط لإعادة استخدامها في وقت لاحق...
 SaveImportModel=إنقاذ هذه استيراد صورة لو كنت تخطط لإعادة استخدامها في وقت لاحق...
@@ -48,7 +48,7 @@ NoImportableData=لا ارداتها البيانات (أي وحدة مع الس
 FileSuccessfullyBuilt=ملف التصدير ولدت
 SQLUsedForExport=SQL طلب استخدامه لبناء ملف التصدير
 LineId=معرف السطر
-LineLabel=Label of line
+LineLabel=تسمية الخط
 LineDescription=وصف خط
 LineUnitPrice=سعر الوحدة من خط
 LineVATRate=ضريبة القيمة المضافة من سعر الخط
@@ -65,7 +65,7 @@ ChooseFormatOfFileToImport=اختيار تنسيق ملف لاستخدام تن
 ChooseFileToImport=اختيار ملف لاستيراد ثم اضغط على picto ٪ ق...
 SourceFileFormat=مصدر تنسيق ملف
 FieldsInSourceFile=الحقول في ملف المصدر
-FieldsInTargetDatabase=Target fields in Dolibarr database (bold=mandatory)
+FieldsInTargetDatabase=الحقول المستهدفة في قاعدة بيانات Dolibarr (جريئة = إلزامي)
 Field=حقل
 NoFields=لا الحقول
 MoveField=تحرك %s حقل رقم العمود
@@ -82,7 +82,7 @@ DoNotImportFirstLine=لا استيراد السطر الأول من الملف 
 NbOfSourceLines=عدد الأسطر في الملف المصدر
 NowClickToTestTheImport=الاختيار المعلمات استيراد عرفتها. وإذا كانت صحيحة ، انقر على <b>%s</b> "زر" لإطلاق محاكاة لعملية الاستيراد (يمكن تغيير أية بيانات في قاعدة البيانات وسوف ، انها مجرد محاكاة لحظة)...
 RunSimulateImportFile=بدء استيراد محاكاة
-FieldNeedSource=This field requires data from the source file
+FieldNeedSource=يتطلب هذا المجال البيانات من الملف المصدر
 SomeMandatoryFieldHaveNoSource=بعض الحقول إلزامية ليس لديها مصدر من ملف البيانات
 InformationOnSourceFile=معلومات عن الملف المصدر
 InformationOnTargetTables=معلومات عن الهدف الحقول
@@ -90,8 +90,8 @@ SelectAtLeastOneField=التبديل حقل واحد على الأقل مصدر
 SelectFormat=اختيار تنسيق الملف هذا الاستيراد
 RunImportFile=بدء استيراد الملف
 NowClickToRunTheImport=تحقق نتيجة لمحاكاة الاستيراد. إذا كان كل شيء على ما يرام ، بدء استيراد نهائي.
-DataLoadedWithId=All data will be loaded with the following import id: <b>%s</b>
-ErrorMissingMandatoryValue=البيانات الإلزامية فارغ في الملف المصدر <b>ل%s</b> الميدان.
+DataLoadedWithId=سيتم تحميل كافة البيانات مع معرف استيراد <b>التالي:٪ الصورة</b>
+ErrorMissingMandatoryValue=البيانات الإلزامية فارغ في الملف المصدر <b> %s</b> للحقل.
 TooMuchErrors=لا يزال هناك <b>%s</b> خطوط مصدر آخر مع وجود أخطاء ولكن محدودة الانتاج و.
 TooMuchWarnings=لا يزال هناك <b>%s</b> خطوط مصدر آخر مع تحذيرات ولكن محدودة الانتاج و.
 EmptyLine=سيتم تجاهل سطر فارغ ()
@@ -103,34 +103,34 @@ NbOfLinesImported=عدد خطوط المستوردة بنجاح : <b>%s.</b>
 DataComeFromNoWhere=قيمة لادخال تأتي من أي مكان في الملف المصدر.
 DataComeFromFileFieldNb=قيمة لادخال يأتي من <b>%s</b> عدد الحقول في الملف المصدر.
 DataComeFromIdFoundFromRef=من حقل رقم <b>%s</b> ملف مصدر سوف تستخدم القيمة التي تأتي للعثور على معرف الكائن الأصل لاستخدام (هكذا <b>%s</b> objet الذي يحتوي على المرجع من الملف المصدر يجب أن يوجد في Dolibarr).
-DataComeFromIdFoundFromCodeId=Code that comes from field number <b>%s</b> of source file will be used to find id of parent object to use (So the code from source file must exists into dictionary <b>%s</b>). Note that if you know id, you can also use it into source file instead of code. Import should work in both cases.
+DataComeFromIdFoundFromCodeId=وسيتم استخدام التعليمات البرمجية التي تأتي من رقم <b>الحقل٪ الصورة</b> من ملف المصدر الى ايجاد هوية الكائن الأصل للاستخدام (ذلك الرمز من الملف المصدر بد منه موجود في <b>القاموس%s).</b> لاحظ أنه إذا كنت تعرف الهوية، ويمكنك أيضا استخدامه في ملف مصدر بدلا من التعليمات البرمجية. استيراد يجب أن تعمل في كلتا الحالتين.
 DataIsInsertedInto=البيانات سوف تأتي من الملف المصدر يتم إدراجها في الحقل التالي :
 DataIDSourceIsInsertedInto=العثور على كائن معرف الأصل باستخدام البيانات الموجودة في الملف المصدر ، سيتم إدراج في الحقل التالي :
 DataCodeIDSourceIsInsertedInto=معرف خط الأم وجدت من رمز، سيتم إدراجها في الحقل التالي:
 SourceRequired=بيانات قيمة إلزامية
 SourceExample=مثال على قيمة البيانات ممكن
 ExampleAnyRefFoundIntoElement=أي المرجع تم العثور عليها ل <b>%s</b> العنصر
-ExampleAnyCodeOrIdFoundIntoDictionary=Any code (or id) found into dictionary <b>%s</b>
+ExampleAnyCodeOrIdFoundIntoDictionary=أي رمز (أو قيمة id) وجدت في <b>القاموس٪ الصورة</b>
 CSVFormatDesc=<b>فاصلة فصل</b> ملف <b>القيمة</b> تنسيق (csv.). <br> هذا هو شكل ملف نصي ، حيث يتم فصل الحقول بواسطة فاصل [%s]. إذا تم العثور على فاصل داخل محتوى الحقل ، يتم تقريب الجولة الميدانية التي قام بها حرف] %s [. الهروب حرف وحرف الهروب جولة هو [%s].
-Excel95FormatDesc=<b>Excel</b> file format (.xls)<br>This is native Excel 95 format (BIFF5).
-Excel2007FormatDesc=<b>Excel</b> file format (.xlsx)<br>This is native Excel 2007 format (SpreadsheetML).
-TsvFormatDesc=<b>Tab Separated Value</b> file format (.tsv)<br>This is a text file format where fields are separated by a tabulator [tab].
-ExportFieldAutomaticallyAdded=Field <b>%s</b> was automatically added. It will avoid you to have similar lines to be treated as duplicate records (with this field added, all lines will own their own id and will differ).
-CsvOptions=Csv Options
-Separator=Separator
-Enclosure=Enclosure
-SuppliersProducts=Suppliers Products
+Excel95FormatDesc=شكل <b>ملف</b> اكسل (. XLS) <br> هذا هو الأصلي تنسيق Excel 95 (BIFF5).
+Excel2007FormatDesc=شكل <b>ملف</b> اكسل (. XLSX) <br> هذا هو الأصلي تنسيق Excel 2007 (SpreadsheetML).
+TsvFormatDesc=<b>علامة التبويب</b> تنسيق ملف <b>منفصل القيمة</b> (و .tsv) <br> هذا هو شكل ملف نصي حيث يتم فصل الحقول من قبل الجدوال [التبويب].
+ExportFieldAutomaticallyAdded=وأضافت <b>الحقل٪ الصورة</b> تلقائيا. ذلك تجنب أن يكون لديك خطوط مماثلة إلى أن تعامل على أنها سجلات مكررة (مع هذا المجال وأضاف، أن جميع خطوط امتلاك الهوية الخاصة بهم وسوف تختلف).
+CsvOptions=خيارات CSV
+Separator=الفاصل
+Enclosure=سياج
+SuppliersProducts=المنتوجات
 BankCode=رمز المصرف
 DeskCode=مدونة مكتبية
 BankAccountNumber=رقم الحساب
 BankAccountNumberKey=مفتاح
-SpecialCode=Special code
-ExportStringFilter=%% allows replacing one or more characters in the text
-ExportDateFilter=YYYY, YYYYMM, YYYYMMDD : filters by one year/month/day<br>YYYY+YYYY, YYYYMM+YYYYMM, YYYYMMDD+YYYYMMDD : filters over a range of years/months/days<br> > YYYY, > YYYYMM, > YYYYMMDD : filters on all following years/months/days<br> < YYYY, < YYYYMM, < YYYYMMDD : filters on all previous years/months/days
-ExportNumericFilter='NNNNN' filters by one value<br>'NNNNN+NNNNN' filters over a range of values<br>'&gt;NNNNN' filters by lower values<br>'&gt;NNNNN' filters by higher values
+SpecialCode=رمز خاص
+ExportStringFilter=٪٪ يسمح استبدال حرف واحد أو أكثر في النص
+ExportDateFilter=YYYY، YYYYMM، YYYYMMDD: فلاتر لسنة واحدة / شهر / يوم <br> YYYY + YYYY، YYYYMM + YYYYMM، YYYYMMDD + YYYYMMDD: مرشحات على مجموعة من سنوات / أشهر / أيام <br> > YYYY،> YYYYMM،> YYYYMMDD: مرشحات على جميع السنوات / أشهر / يوما التالية <br> <YYYY، <YYYYMM، <YYYYMMDD: مرشحات على جميع السنوات / أشهر / يوما السابقة
+ExportNumericFilter=مرشحات "NNNNN من حيث القيمة واحد <br> مرشحات "NNNNN + NNNNN" على مجموعة من القيم <br> '> NNNNN' المرشحات من قبل انخفاض القيم <br> '> NNNNN' المرشحات بالقيم العليا
 ## filters
-SelectFilterFields=If you want to filter on some values, just input values here.
-FilterableFields=Filterable Fields
-FilteredFields=Filtered fields
-FilteredFieldsValues=Value for filter
-FormatControlRule=Format control rule
+SelectFilterFields=إذا كنت ترغب في تصفية على بعض القيم، قيم الإدخال فقط هنا.
+FilterableFields=الحقول تصفيتها
+FilteredFields=الحقول التي تمت تصفيتها
+FilteredFieldsValues=قيمة للمرشح
+FormatControlRule=حكم عنصر تنسيق
diff --git a/htdocs/langs/ar_SA/externalsite.lang b/htdocs/langs/ar_SA/externalsite.lang
index a3b4dddc6b231e8ceb44ba1a1e37219b97a99b3b..5ce18520310bf30e99e0ac89a61c3f522a84fe88 100644
--- a/htdocs/langs/ar_SA/externalsite.lang
+++ b/htdocs/langs/ar_SA/externalsite.lang
@@ -1,5 +1,5 @@
 # Dolibarr language file - Source file is en_US - externalsite
 ExternalSiteSetup=رابط الإعداد لموقع خارجي
 ExternalSiteURL=الخارجية الموقع URL
-ExternalSiteModuleNotComplete=Module ExternalSite was not configured properly.
-ExampleMyMenuEntry=My menu entry
+ExternalSiteModuleNotComplete=لم يتم تكوين وحدة ExternalSite بشكل صحيح.
+ExampleMyMenuEntry=دخول القائمة بلدي
diff --git a/htdocs/langs/ar_SA/ftp.lang b/htdocs/langs/ar_SA/ftp.lang
index e6d13b6121ac1d1a998f408a367a86f289d355c2..2dc87207fcb5e6eac1b7c426c8b1af8aed8f2b77 100644
--- a/htdocs/langs/ar_SA/ftp.lang
+++ b/htdocs/langs/ar_SA/ftp.lang
@@ -9,6 +9,6 @@ FailedToConnectToFTPServer=فشل الاتصال بخادم بروتوكول ن
 FailedToConnectToFTPServerWithCredentials=فشل في تسجيل الدخول إلى خادم بروتوكول نقل الملفات مع تعريف الدخول / كلمة المرور
 FTPFailedToRemoveFile=فشل لإزالة <b>%s</b> الملف.
 FTPFailedToRemoveDir=فشل لإزالة <b>%s</b> الدليل (راجع الأذونات وهذا الدليل فارغ).
-FTPPassiveMode=Passive mode
-ChooseAFTPEntryIntoMenu=Choose a FTP entry into menu...
-FailedToGetFile=Failed to get files %s
+FTPPassiveMode=الوضع السلبي
+ChooseAFTPEntryIntoMenu=اختيار دخول FTP إلى القائمة ...
+FailedToGetFile=فشل في الحصول على الملفات٪ الصورة
diff --git a/htdocs/langs/ar_SA/help.lang b/htdocs/langs/ar_SA/help.lang
index 29bda6f59852370620a5cb8321e1c20669aa3dc2..0fc4a71d381241611a204b06b8e9e54f55a5b13a 100644
--- a/htdocs/langs/ar_SA/help.lang
+++ b/htdocs/langs/ar_SA/help.lang
@@ -25,4 +25,4 @@ LinkToGoldMember=تستطيع الاتصال به من قبل المدرب مخ
 PossibleLanguages=وأيد لغات
 MakeADonation=مساعدة Dolibarr المشروع ، تقديم تبرع
 SubscribeToFoundation=مساعدة مشروع Dolibarr، الاشتراك في الجمعية
-SeeOfficalSupport=For official Dolibarr support in your language: <br><b><a href="%s" target="_blank">%s</a></b>
+SeeOfficalSupport=للحصول على الدعم Dolibarr الرسمي في لغتك: <br> <b><a href="%s" target="_blank">٪ الصورة</a></b>
diff --git a/htdocs/langs/ar_SA/holiday.lang b/htdocs/langs/ar_SA/holiday.lang
index 95321128e54ec2302db3033ca1056ee158107225..4eb25f085ac23cdf490819664becbdce927b4373 100644
--- a/htdocs/langs/ar_SA/holiday.lang
+++ b/htdocs/langs/ar_SA/holiday.lang
@@ -1,144 +1,146 @@
 # Dolibarr language file - Source file is en_US - holiday
 HRM=HRM
-Holidays=Leaves
-CPTitreMenu=Leaves
-MenuReportMonth=Monthly statement
-MenuAddCP=New leave request
-NotActiveModCP=You must enable the module Leaves to view this page.
-NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
-NoCPforUser=You don't have any available day.
-AddCP=Make a leave request
-Employe=Employee
+Holidays=أوراق
+CPTitreMenu=أوراق
+MenuReportMonth=البيان الشهري
+MenuAddCP=طلب إجازة جديدة
+NotActiveModCP=يجب تمكين أوراق حدة لمشاهدة هذه الصفحة.
+NotConfigModCP=يجب عليك تكوين وحدة يترك لمشاهدة هذه الصفحة. للقيام بذلك، <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;">انقر هنا</a> </ a> <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;">.</a>
+NoCPforUser=لم يكن لديك أي يوم متاح.
+AddCP=تقديم طلب إجازة
 DateDebCP=تاريخ البدء
 DateFinCP=نهاية التاريخ
 DateCreateCP=تاريخ الإنشاء
 DraftCP=مسودة
-ToReviewCP=Awaiting approval
+ToReviewCP=انتظر القبول
 ApprovedCP=وافق
 CancelCP=ألغيت
 RefuseCP=رفض
 ValidatorCP=Approbator
-ListeCP=List of leaves
-ReviewedByCP=Will be reviewed by
+ListeCP=قائمة الأوراق
+ReviewedByCP=سيتم مراجعتها من قبل
 DescCP=وصف
-SendRequestCP=Create leave request
-DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
-UpdateAllCP=Update the leaves
-SoldeCPUser=Leaves balance is <b>%s</b> days.
-ErrorEndDateCP=You must select an end date greater than the start date.
-ErrorSQLCreateCP=An SQL error occurred during the creation:
-ErrorIDFicheCP=An error has occurred, the leave request does not exist.
-ReturnCP=Return to previous page
-ErrorUserViewCP=You are not authorized to read this leave request.
-InfosCP=Information of the leave request
-InfosWorkflowCP=Information Workflow
-RequestByCP=Requested by
-TitreRequestCP=Leave request
-NbUseDaysCP=Number of days of vacation consumed
+SendRequestCP=إنشاء طلب إجازة
+DelayToRequestCP=يجب أن يتم ترك طلبات في <b>اليوم</b> أقل <b>ق٪ (ق)</b> من قبلهم.
+MenuConfCP=Balance of leaves
+UpdateAllCP=تحديث الأوراق
+SoldeCPUser=يترك التوازن <b>هو%s</b> أيام.
+ErrorEndDateCP=يجب تحديد تاريخ انتهاء أكبر من تاريخ البدء.
+ErrorSQLCreateCP=حدث خطأ SQL أثناء إنشاء:
+ErrorIDFicheCP=حدث خطأ غير موجود على طلب الإجازة.
+ReturnCP=العودة إلى الصفحة السابقة
+ErrorUserViewCP=غير مصرح لك قراءة طلب إجازة هذا.
+InfosCP=معلومات للطلب إجازة
+InfosWorkflowCP=معلومات سير العمل
+RequestByCP=طلبت
+TitreRequestCP=ترك الطلب
+NbUseDaysCP=عدد أيام عطلة تستهلك
 EditCP=تحرير
 DeleteCP=حذف
 ActionValidCP=صحة
-ActionRefuseCP=Refuse
+ActionRefuseCP=رفض
 ActionCancelCP=الغاء
 StatutCP=حالة
-SendToValidationCP=Send to validation
-TitleDeleteCP=Delete the leave request
-ConfirmDeleteCP=Confirm the deletion of this leave request?
-ErrorCantDeleteCP=Error you don't have the right to delete this leave request.
-CantCreateCP=You don't have the right to make leave requests.
-InvalidValidatorCP=You must choose an approbator to your leave request.
-CantUpdate=You cannot update this leave request.
-NoDateDebut=You must select a start date.
-NoDateFin=You must select an end date.
-ErrorDureeCP=Your leave request does not contain working day.
-TitleValidCP=Approve the leave request
-ConfirmValidCP=Are you sure you want to approve the leave request?
-DateValidCP=Date approved
-TitleToValidCP=Send leave request
-ConfirmToValidCP=Are you sure you want to send the leave request?
-TitleRefuseCP=Refuse the leave request
-ConfirmRefuseCP=Are you sure you want to refuse the leave request?
-NoMotifRefuseCP=You must choose a reason for refusing the request.
-TitleCancelCP=Cancel the leave request
-ConfirmCancelCP=Are you sure you want to cancel the leave request?
-DetailRefusCP=Reason for refusal
-DateRefusCP=Date of refusal
-DateCancelCP=Date of cancellation
-DefineEventUserCP=Assign an exceptional leave for a user
-addEventToUserCP=Assign leave
+SendToValidationCP=ارسل الى التحقق من صحة
+TitleDeleteCP=حذف طلب إجازة
+ConfirmDeleteCP=تأكيد حذف طلب إجازة هذا؟
+ErrorCantDeleteCP=خطأ لم يكن لديك الحق في حذف طلب إجازة هذا.
+CantCreateCP=ليس لديك الحق في تقديم طلبات الإجازة.
+InvalidValidatorCP=يجب عليك اختيار approbator لطلب الإجازة الخاصة بك.
+CantUpdate=لا يمكنك تحديث طلب إجازة هذا.
+NoDateDebut=يجب تحديد تاريخ البدء.
+NoDateFin=يجب تحديد تاريخ انتهاء.
+ErrorDureeCP=لا يحتوي طلب إجازة الخاص يوم عمل.
+TitleValidCP=الموافقة على طلب الإجازة
+ConfirmValidCP=هل أنت متأكد أنك تريد الموافقة على طلب الإجازة؟
+DateValidCP=تاريخ الموافقة
+TitleToValidCP=إرسال طلب إجازة
+ConfirmToValidCP=هل أنت متأكد أنك تريد إرسال طلب إجازة؟
+TitleRefuseCP=رفض طلب إجازة
+ConfirmRefuseCP=هل أنت متأكد أنك تريد أن ترفض طلب إجازة؟
+NoMotifRefuseCP=يجب عليك اختيار سبب لرفض الطلب.
+TitleCancelCP=إلغاء طلب إجازة
+ConfirmCancelCP=هل أنت متأكد أنك تريد إلغاء طلب إجازة؟
+DetailRefusCP=سبب الرفض
+DateRefusCP=تاريخ الرفض
+DateCancelCP=تاريخ الإلغاء
+DefineEventUserCP=تعيين إجازة استثنائية لمستخدم
+addEventToUserCP=تعيين إجازة
 MotifCP=سبب
 UserCP=مستخدم
-ErrorAddEventToUserCP=An error occurred while adding the exceptional leave.
-AddEventToUserOkCP=The addition of the exceptional leave has been completed.
-MenuLogCP=View change logs
-LogCP=Log of updates of available vacation days
-ActionByCP=Performed by
-UserUpdateCP=For the user
-PrevSoldeCP=Previous Balance
-NewSoldeCP=New Balance
-alreadyCPexist=A leave request has already been done on this period.
+ErrorAddEventToUserCP=حدث خطأ أثناء إضافة إجازة استثنائية.
+AddEventToUserOkCP=تم الانتهاء من إضافة إجازة استثنائية.
+MenuLogCP=وبالنظر إلى سجلات التغيير
+LogCP=سجل التحديثات من أيام عطلة المتاحة
+ActionByCP=يؤديها
+UserUpdateCP=للمستخدم
+PrevSoldeCP=الرصيد السابق
+NewSoldeCP=توازن جديد
+alreadyCPexist=وقد تم بالفعل طلب إجازة في هذه الفترة.
 UserName=اسم
-Employee=Employee
-FirstDayOfHoliday=First day of vacation
-LastDayOfHoliday=Last day of vacation
-HolidaysMonthlyUpdate=Monthly update
-ManualUpdate=Manual update
-HolidaysCancelation=Leave request cancelation
+FirstDayOfHoliday=اليوم الأول من العطلة
+LastDayOfHoliday=آخر يوم عطلة
+BoxTitleLastLeaveRequests=Last %s modified leave requests
+HolidaysMonthlyUpdate=تحديث شهري
+ManualUpdate=التحديث اليدوي
+HolidaysCancelation=ترك طلب الإلغاء
 
 ## Configuration du Module ##
-ConfCP=Configuration of leave request module
-DescOptionCP=Description of the option
+ConfCP=تكوين وحدة طلب إجازة
+DescOptionCP=وصف الخيار
 ValueOptionCP=القيمة
-GroupToValidateCP=Group with the ability to approve leave requests
-ConfirmConfigCP=Validate the configuration
-LastUpdateCP=Last automatic update of leaves allocation
-MonthOfLastMonthlyUpdate=Month of last automatic update of leaves allocation
-UpdateConfCPOK=Updated successfully.
-ErrorUpdateConfCP=An error occurred during the update, please try again.
-AddCPforUsers=Please add the balance of leaves allocation of users by <a href="../define_holiday.php" style="font-weight: normal; color: red; text-decoration: underline;">clicking here</a>.
-DelayForSubmitCP=Deadline to make a leave requests
-AlertapprobatortorDelayCP=Prevent the approbator if the leave request does not match the deadline
-AlertValidatorDelayCP=Préevent the approbator if the leave request exceed delay
-AlertValidorSoldeCP=Prevent the approbator if the leave request exceed the balance
-nbUserCP=Number of users supported in the module Leaves
-nbHolidayDeductedCP=Number of leave days to be deducted per day of vacation taken
-nbHolidayEveryMonthCP=Number of leave days added every month
-Module27130Name= Management of leave requests
-Module27130Desc= Management of leave requests
-TitleOptionMainCP=Main settings of leave request
-TitleOptionEventCP=Settings of leave requets for events
+GroupToValidateCP=المجموعة لديها القدرة على الموافقة على طلبات الإجازة
+ConfirmConfigCP=تحقق من صحة التكوين
+LastUpdateCP=التحديث التلقائي الماضي من توزيع أوراق
+MonthOfLastMonthlyUpdate=شهر آخر تحديث تلقائي للتوزيع الأوراق
+UpdateConfCPOK=تم التحديث بنجاح.
+ErrorUpdateConfCP=حدث خطأ أثناء التحديث، يرجى المحاولة مرة أخرى.
+AddCPforUsers=الرجاء إضافة رصيد الأوراق تخصيص المستخدمين عن طريق <a href="../define_holiday.php" style="font-weight: normal; color: red; text-decoration: underline;">النقر هنا.</a>
+DelayForSubmitCP=الموعد النهائي لتقديم طلبات الإجازة
+AlertapprobatortorDelayCP=منع approbator إذا طلب إجازة لا يتطابق مع الموعد النهائي
+AlertValidatorDelayCP=Préevent وapprobator إذا طلب إجازة يتجاوز التأخير
+AlertValidorSoldeCP=منع approbator إذا طلب إجازة يتجاوز الرصيد
+nbUserCP=عدد مستخدمي معتمد في الأوراق حدة
+nbHolidayDeductedCP=عدد أيام الإجازة يجب أن تحسم في يوم عطلة اتخاذها
+nbHolidayEveryMonthCP=عدد أيام إجازة بإضافة كل شهر
+Module27130Name= إدارة طلبات الإجازة
+Module27130Desc= إدارة طلبات الإجازة
+TitleOptionMainCP=الضبط الرئيسي للطلب إجازة
+TitleOptionEventCP=ضبط ريكتس إجازة للأحداث
 ValidEventCP=صحة
-UpdateEventCP=Update events
-CreateEventCP=خلق
-NameEventCP=Event name
-OkCreateEventCP=The addition of the event went well.
-ErrorCreateEventCP=Error creating the event.
-UpdateEventOkCP=The update of the event went well.
-ErrorUpdateEventCP=Error while updating the event.
-DeleteEventCP=Delete Event
-DeleteEventOkCP=The event has been deleted.
-ErrorDeleteEventCP=Error while deleting the event.
-TitleDeleteEventCP=Delete a exceptional leave
-TitleCreateEventCP=Create a exceptional leave
-TitleUpdateEventCP=Edit or delete a exceptional leave
+UpdateEventCP=أحداث التحديث
+CreateEventCP=إنشاء
+NameEventCP=اسم الحدث
+OkCreateEventCP=إضافة لهذا الحدث سارت على ما يرام.
+ErrorCreateEventCP=خطأ في إنشاء الحدث.
+UpdateEventOkCP=ذهب التحديث لهذا الحدث بشكل جيد.
+ErrorUpdateEventCP=خطأ أثناء تحديث هذا الحدث.
+DeleteEventCP=حذف الحدث
+DeleteEventOkCP=تم حذف هذا الحدث.
+ErrorDeleteEventCP=خطأ أثناء حذف الحدث.
+TitleDeleteEventCP=حذف إجازة استثنائية
+TitleCreateEventCP=إنشاء إجازة استثنائية
+TitleUpdateEventCP=تعديل أو حذف إجازة استثنائية
 DeleteEventOptionCP=حذف
 UpdateEventOptionCP=تحديث
-ErrorMailNotSend=An error occurred while sending email:
-NoCPforMonth=No leave this month.
-nbJours=Number days
-TitleAdminCP=Configuration of Leaves
-NoticePeriod=Notice period
+ErrorMailNotSend=حدث خطأ أثناء إرسال البريد الإلكتروني:
+NoCPforMonth=لم يترك هذا الشهر.
+nbJours=عدد أيام
+TitleAdminCP=تكوين أوراق
+NoticePeriod=فترة إشعار
 #Messages
-HolidaysToValidate=Validate leave requests
-HolidaysToValidateBody=Below is a leave request to validate
-HolidaysToValidateDelay=This leave request will take place within a period of less than %s days.
-HolidaysToValidateAlertSolde=The user who made this leave reques do not have enough available days.
-HolidaysValidated=Validated leave requests
-HolidaysValidatedBody=Your leave request for %s to %s has been validated.
-HolidaysRefused=Request denied
-HolidaysRefusedBody=Your leave request for %s to %s has been denied for the following reason :
-HolidaysCanceled=Canceled leaved request
-HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
-NewByMonth=Added per month
-GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
+HolidaysToValidate=التحقق من صحة طلبات الإجازة
+HolidaysToValidateBody=وفيما يلي طلب إجازة للتحقق من صحة
+HolidaysToValidateDelay=وهذا الطلب إجازة أن تتم في غضون أقل من٪ الصورة أيام.
+HolidaysToValidateAlertSolde=المستخدم الذي جعل هذا ترك reques لم يكن لديك ما يكفي من الأيام المتاحة.
+HolidaysValidated=طلبات إجازة التحقق من صحة
+HolidaysValidatedBody=تم التحقق من صحة طلب إجازة لمدة٪ s إلى٪ s.
+HolidaysRefused=طلب نفى
+HolidaysRefusedBody=تم رفض طلب إجازة لمدة٪ s إلى٪ s للسبب التالي:
+HolidaysCanceled=إلغاء طلب الأوراق
+HolidaysCanceledBody=تم إلغاء طلب إجازة لمدة٪ s إلى٪ s.
+NewByMonth=وأضاف شهريا
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
+GoIntoDictionaryHolidayTypes=اذهب إلى <strong>الصفحة الرئيسية - إعداد - معاجم - نوع من الأوراق</strong> لإعداد أنواع مختلفة من الأوراق.
diff --git a/htdocs/langs/ar_SA/hrm.lang b/htdocs/langs/ar_SA/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..7b92925c2347e873e6b62337654330f02d30da3c 100644
--- a/htdocs/langs/ar_SA/hrm.lang
+++ b/htdocs/langs/ar_SA/hrm.lang
@@ -1,19 +1,20 @@
 # Dolibarr language file - en_US - hrm
 # Admin
-HRM_EMAIL_EXTERNAL_SERVICE=Email to prevent HRM external service
-Establishments=Establishments
-Establishment=Establishment
-NewEstablishment=New establishment
-DeleteEstablishment=Delete establishment
-ConfirmDeleteEstablishment=Are-you sure to delete this establishment ?
-OpenEtablishment=Open establishment
-CloseEtablishment=Close establishment
+HRM_EMAIL_EXTERNAL_SERVICE=البريد الإلكتروني لإيقاف شؤون الموظفين الخدمة الخارجية
+Establishments=وثائق
+Establishment=وثيقة
+NewEstablishment=وثيقة جديدة
+DeleteEstablishment=حذف وثيقة
+ConfirmDeleteEstablishment=هل أنت متأكد من حذف هذه الوثيقة
+OpenEtablishment=فتح وثيقة
+CloseEtablishment=إنشاء وثيقة
 # Dictionary
-DictionaryDepartment=HRM - Department list
-DictionaryFunction=HRM - Function list
+DictionaryDepartment=شؤون الموظفين - الأقسام 
+DictionaryFunction=شؤون الموظفين - الوظائف
 # Module
-ListOfEmployees=List of employees
-Employees=Employees
-Employee=Employee
-NewEmployee=New employee
-EmployeeCard=Employee card
+ListOfEmployees=قائمة الموظفين 
+Employees=الموظفين
+Employee=الموظف
+Employe=Employe
+NewEmployee=موظف جديد
+EmployeeCard=بطاقة موظف
diff --git a/htdocs/langs/ar_SA/incoterm.lang b/htdocs/langs/ar_SA/incoterm.lang
index 3065894865eb025934632d737bd394fb529876ed..8ee13db226d7dd85024d7c3609258bee3c949a3f 100644
--- a/htdocs/langs/ar_SA/incoterm.lang
+++ b/htdocs/langs/ar_SA/incoterm.lang
@@ -1,7 +1,7 @@
-Module62000Name=Incoterm
-Module62000Desc=Add features to manage Incoterm
-IncotermLabel=Incoterms
-IncotermSetupTitle1=Feature
-IncotermSetupTitle2=Status
-IncotermSetup=Setup of module Incoterm
-IncotermFunctionDesc=Activate Incoterm feature (Thirdparty, Proposal, Customer Order, Customer Invoice, Shipment, Supplier order)
+Module62000Name=INCOTERM
+Module62000Desc=إضافة ميزات لإدارة INCOTERM
+IncotermLabel=شروط التجارة الدولية
+IncotermSetupTitle1=خاصية
+IncotermSetupTitle2=الحالة
+IncotermSetup=إعداد وحدة INCOTERM
+IncotermFunctionDesc=تفعيل ميزة INCOTERM (مرشحين عن، اقتراح، طلب العملاء، فاتورة العميل، والشحن أجل المورد)
diff --git a/htdocs/langs/ar_SA/install.lang b/htdocs/langs/ar_SA/install.lang
index bae15569d430c54bfd71026b387d470e3832e6a9..ff4abc260310f3fb79581dfa1fa4a2ec3944bc62 100644
--- a/htdocs/langs/ar_SA/install.lang
+++ b/htdocs/langs/ar_SA/install.lang
@@ -71,10 +71,10 @@ CreateDatabaseObjects=إنشاء قاعدة بيانات الأجسام
 ReferenceDataLoading=تحميل البيانات المرجعية
 TablesAndPrimaryKeysCreation=الجداول وإنشاء المفاتيح الأساسية
 CreateTableAndPrimaryKey=إنشاء الجدول ق ٪
-CreateOtherKeysForTable=خلق الخارجية مفاتيح الأرقام القياسية والجدول ق ٪
+CreateOtherKeysForTable=إنشاء الخارجية مفاتيح الأرقام القياسية والجدول ق ٪
 OtherKeysCreation=مفاتيح الخارجية وإنشاء الفهارس
-FunctionsCreation=خلق وظائف
-AdminAccountCreation=مدير ادخل خلق
+FunctionsCreation=إنشاء وظائف
+AdminAccountCreation=مدير ادخل إنشاء
 PleaseTypePassword=الرجاء كتابة كلمة المرور ، وكلمات السر فارغة لا يسمح!
 PleaseTypeALogin=اكتب من فضلك ادخل!
 PasswordsMismatch=وتختلف كلمات السر ، يرجى المحاولة مرة أخرى!
@@ -82,7 +82,7 @@ SetupEnd=نهاية الإعداد
 SystemIsInstalled=هذا التثبيت الكامل.
 SystemIsUpgraded=وقد تم تطوير Dolibarr بنجاح.
 YouNeedToPersonalizeSetup=عليك تكوين Dolibarr لتناسب احتياجاتك (ظهور مقالات...). لذلك ، يرجى اتباع الوصلة التالية :
-AdminLoginCreatedSuccessfuly=مدير Dolibarr ادخل <b>'٪ ق'</b> خلق بنجاح.
+AdminLoginCreatedSuccessfuly=مدير Dolibarr ادخل <b>'٪ ق'</b> إنشاء بنجاح.
 GoToDolibarr=الذهاب إلى Dolibarr
 GoToSetupArea=الذهاب إلى Dolibarr (مجال الإعداد)
 MigrationNotFinished=نسخة من قاعدة البيانات الخاصة بك لا يصل تماما حتى الآن ، لذلك سيكون لديك لتشغيل عملية الترقية مرة أخرى.
@@ -129,7 +129,7 @@ KeepDefaultValuesWamp=استخدام معالج الإعداد DoliWamp ، حت
 KeepDefaultValuesDeb=يمكنك استخدام معالج الإعداد Dolibarr من أوبونتو أو حزمة ديبيان ، لذلك القيم المقترحة هنا هي الأمثل بالفعل. يجب أن تكتمل إلا كلمة السر للمالك قاعدة البيانات لإنشاء. تغيير معلمات أخرى إلا إذا كنت تعرف ما تفعله.
 KeepDefaultValuesMamp=استخدام معالج الإعداد DoliMamp ، حتى القيم المقترحة هنا بالفعل الأمثل. تغييرها إلا إذا كنت تعرف ما تفعله.
 KeepDefaultValuesProxmox=يمكنك استخدام معالج إعداد Dolibarr من الأجهزة الظاهرية Proxmox، بحيث يتم تحسين بالفعل القيم المقترحة هنا. تغييرها إلا إذا كنت تعرف ما تفعله.
-FieldRenamed=تغيير اسم الميدان
+FieldRenamed=تغيير اسم الحقل
 IfLoginDoesNotExistsCheckCreateUser=اذا ادخل لا يوجد حتى الآن ، يجب عليك التحقق من خيار "تكوين المستخدم"
 ErrorConnection=الخادم <b>"٪ ل"</b> اسم قاعدة بيانات <b>"٪ ل"</b> ادخل <b>"٪ ل"</b> أو كلمة سر قاعدة البيانات قد تكون خاطئة أو PHP العميل نسخة قديمة جدا ويمكن مقارنة مع قاعدة البيانات نسخة.
 InstallChoiceRecommanded=وأوصت لتثبيت اختيار النسخة <b>٪ المستندات</b> الخاصة بك من النسخة الحالية <b>ل ٪</b>
@@ -148,8 +148,8 @@ MigrationFinished=الانتهاء من الهجرة
 LastStepDesc=<strong>الخطوة الأخيرة</strong> : تعريف المستخدم وكلمة السر هنا كنت تخطط لاستخدامها للاتصال البرمجيات. لا تفقد هذا كما هو حساب لإدارة جميع الآخرين.
 ActivateModule=تفعيل وحدة %s
 ShowEditTechnicalParameters=انقر هنا لعرض/تحرير المعلمات المتقدمة (وضع الخبراء)
-WarningUpgrade=Warning:\nDid your run a database backup first ?\nThis is highly recommanded: for example, due to some bugs into databases systems (for example mysql version 5.5.40/41/42/43), some data or tables may be lost during this process, so it is highly recommanded to have a complete dump of your database before starting migration.\n\nClick OK to start migration process...
-ErrorDatabaseVersionForbiddenForMigration=Your database version is %s. It has a critical bug making data loss if you make structure change on your database, like it is required by the migration process. For his reason, migration will not be allowed until you upgrade your database to a higher fixed version (list of known bugged version: %s)
+WarningUpgrade=تحذير: \n\nهل قمت بأخذ النسخة الاحتياطية لقاعدة البيانات أولا؟ \n\nينصح به بشدة: على سبيل المثال، بسبب بعض الخلل في نظام قاعدة البيانات (على سبيل المثال MySQL النسخة 5.5.40 / 41/42/43)، وبعض البيانات أو الجداول قد تفقد خلال هذه العملية، لذلك الأفضل لك أن يكون هنالك نسخ احتياطي كامل لقاعدة البيانات الخاصة بك قبل البدء الترحيل.\n\n\nانقر فوق موافق لبدء عملية الترحيل...
+ErrorDatabaseVersionForbiddenForMigration=إصدار قاعدة البيانات الخاصة بك هي%s.   يوجد بعض الخلل أدى لفقدان بعض البيانات إذا قمت بإجراء تغيير هيكلي على قاعدة البيانات الخاصة بك، مثل كان مطلوبا خلال عملية ترحيل البيانات. لن يسمح لك بترحيل البيانات حتى تقوم بترقية قاعدة البيانات الخاصة بك إلى إصدار أعلى موثوق  (قائمة الاصدارات الموثوقة : %s)
 
 #########
 # upgrade
@@ -171,7 +171,7 @@ MigrationContractsUpdate=تصحيح بيانات العقد
 MigrationContractsNumberToUpdate=٪ ق العقد (ق) لتحديث
 MigrationContractsLineCreation=عقد إنشاء خط لعقد المرجع ق ٪
 MigrationContractsNothingToUpdate=لا أكثر مما ينبغي فعله
-MigrationContractsFieldDontExist=الميدان fk_facture لا وجود بعد الآن. لا علاقة.
+MigrationContractsFieldDontExist=الحقل fk_facture لا وجود بعد الآن. لا يمكن تنفيذ اي شيء.
 MigrationContractsEmptyDatesUpdate=عقد فارغ تصحيح التاريخ
 MigrationContractsEmptyDatesUpdateSuccess=تصحيح تاريخ العقد emtpy عمله بنجاح
 MigrationContractsEmptyDatesNothingToUpdate=أي عقد حتى الآن لتصحيح فارغة
@@ -180,8 +180,8 @@ MigrationContractsInvalidDatesUpdate=سوء قيمة العقد تصحيح ال
 MigrationContractsInvalidDateFix=Correct contract %s (Contract date=%s, Starting service date min=تصحيح العقد ٪ ق (تاريخ العقد ق= ٪ ، اعتبارا من تاريخ الخدمة دقيقة= ٪)
 MigrationContractsInvalidDatesNumber=ق ٪ العقود المعدلة
 MigrationContractsInvalidDatesNothingToUpdate=اي موعد مع سوء قيمة تصحيح
-MigrationContractsIncoherentCreationDateUpdate=سوء خلق قيمة العقد تصحيح التاريخ
-MigrationContractsIncoherentCreationDateUpdateSuccess=سوء خلق قيمة العقد حتى الآن تصحيح ذلك بنجاح
+MigrationContractsIncoherentCreationDateUpdate=سوء إنشاء قيمة العقد تصحيح التاريخ
+MigrationContractsIncoherentCreationDateUpdateSuccess=سوء إنشاء قيمة العقد حتى الآن تصحيح ذلك بنجاح
 MigrationContractsIncoherentCreationDateNothingToUpdate=ليس سيئا بالنسبة للقيمة العقد إنشاء لتصحيح التاريخ
 MigrationReopeningContracts=أغلقت العقود المفتوحة خطأ
 MigrationReopenThisContract=اعادة فتح العقد ق ٪
@@ -201,7 +201,7 @@ MigrationProjectTaskTime=تحديث الوقت الذي يقضيه في ثوان
 MigrationActioncommElement=تحديث البيانات على الإجراءات
 MigrationPaymentMode=بيانات الهجرة لطريقة الدفع
 MigrationCategorieAssociation=تحديث الفئات
-MigrationEvents=Migration of events to add event owner into assignement table
-MigrationReloadModule=Reload module %s
+MigrationEvents=الترحيل من الأحداث لإضافة مالك الحدث في جدول الاحالة
+MigrationReloadModule=إعادة تحديث الوحدات %s
 ShowNotAvailableOptions=عرض خيارات غير متوفرة
 HideNotAvailableOptions=إخفاء خيارات غير متوفرة
diff --git a/htdocs/langs/ar_SA/interventions.lang b/htdocs/langs/ar_SA/interventions.lang
index c7f46df33f0caa28b7975649dc0c922278b99045..82894260bedb93c74b6dc30722d74307581dab7b 100644
--- a/htdocs/langs/ar_SA/interventions.lang
+++ b/htdocs/langs/ar_SA/interventions.lang
@@ -3,7 +3,7 @@ Intervention=التدخل
 Interventions=المداخلات
 InterventionCard=تدخل البطاقة
 NewIntervention=التدخل الجديدة
-AddIntervention=Create intervention
+AddIntervention=إنشاء التدخل
 ListOfInterventions=قائمة التدخلات
 EditIntervention=Editer التدخل
 ActionsOnFicheInter=إجراءات على التدخل
@@ -23,25 +23,25 @@ ConfirmDeleteInterventionLine=هل أنت متأكد من أنك تريد حذف
 NameAndSignatureOfInternalContact=الاسم والتوقيع على التدخل :
 NameAndSignatureOfExternalContact=اسم وتوقيع العميل :
 DocumentModelStandard=نموذج وثيقة موحدة للتدخلات
-InterventionCardsAndInterventionLines=Interventions and lines of interventions
-InterventionClassifyBilled=Classify "Billed"
-InterventionClassifyUnBilled=Classify "Unbilled"
+InterventionCardsAndInterventionLines=التدخلات وخطوط التدخلات
+InterventionClassifyBilled=تصنيف "المفوتر"
+InterventionClassifyUnBilled=تصنيف "فواتير"
 StatusInterInvoiced=فواتير
 RelatedInterventions=التدخلات المتعلقة
 ShowIntervention=عرض التدخل
-SendInterventionRef=Submission of intervention %s
-SendInterventionByMail=Send intervention by Email
-InterventionCreatedInDolibarr=Intervention %s created
-InterventionValidatedInDolibarr=Intervention %s validated
-InterventionModifiedInDolibarr=Intervention %s modified
-InterventionClassifiedBilledInDolibarr=Intervention %s set as billed
-InterventionClassifiedUnbilledInDolibarr=Intervention %s set as unbilled
-InterventionSentByEMail=Intervention %s sent by EMail
-InterventionDeletedInDolibarr=Intervention %s deleted
-SearchAnIntervention=Search an intervention
-InterventionsArea=Interventions area
-DraftFichinter=Draft interventions
-LastModifiedInterventions=Last %s modified interventions
+SendInterventionRef=تقديم التدخل٪ الصورة
+SendInterventionByMail=إرسال تدخل عن طريق البريد الإلكتروني
+InterventionCreatedInDolibarr=التدخل٪ الصورة خلقت
+InterventionValidatedInDolibarr=التدخل%s التأكد من صلاحيتها
+InterventionModifiedInDolibarr=التدخل٪ الصورة المعدلة
+InterventionClassifiedBilledInDolibarr=التدخل٪ الصورة كما وصفت مجموعة
+InterventionClassifiedUnbilledInDolibarr=التدخل٪ الصورة مجموعة كما فواتير
+InterventionSentByEMail=التدخل٪ الصورة إرسالها عن طريق البريد الإلكتروني
+InterventionDeletedInDolibarr=التدخل٪ الصورة حذفها
+SearchAnIntervention=بحث تدخل
+InterventionsArea=منطقة التدخلات
+DraftFichinter=مشروع التدخلات
+LastModifiedInterventions=مشاركة الصورة٪ التدخلات المعدلة
 ##### Types de contacts #####
 TypeContact_fichinter_internal_INTERREPFOLL=ممثل متابعة التدخل
 TypeContact_fichinter_internal_INTERVENING=التدخل
@@ -52,16 +52,19 @@ ArcticNumRefModelDesc1=عدد نموذج عامة
 ArcticNumRefModelError=فشل لتفعيل
 PacificNumRefModelDesc1=عودة número مع الشكل nnnn - ٪ syymm فيها السنة هي السنة ، هو شهر ملم وnnnn هو كسر التسلسل وليس هناك عودة لل0
 PacificNumRefModelError=تدخل البطاقة ابتداء من دولار ويوجد بالفعل syymm لا تتفق مع هذا النموذج من التسلسل. إزالة أو تغيير تسميتها لتصبح لتفعيل هذه الوحدة.
-PrintProductsOnFichinter=Print products on intervention card
-PrintProductsOnFichinterDetails=interventions generated from orders
+PrintProductsOnFichinter=المنتجات المطبوعة على بطاقة التدخل
+PrintProductsOnFichinterDetails=التدخلات المتولدة من أوامر
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
-InterId=Intervention id
-InterRef=Intervention ref.
-InterDateCreation=Date creation intervention
-InterDuration=Duration intervention
-InterStatus=Status intervention
-InterNote=Note intervention
-InterLineId=Line id intervention
-InterLineDate=Line date intervention
-InterLineDuration=Line duration intervention
-InterLineDesc=Line description intervention
+InterId=تدخل معرف
+InterRef=تدخل المرجع.
+InterDateCreation=تدخل تاريخ الإنشاء
+InterDuration=تدخل مدة
+InterStatus=التدخل الوضع
+InterNote=ملاحظة التدخل
+InterLineId=تدخل معرف الخط
+InterLineDate=تدخل تاريخ الخط
+InterLineDuration=تدخل مدة خط
+InterLineDesc=خط وصف التدخل
diff --git a/htdocs/langs/ar_SA/languages.lang b/htdocs/langs/ar_SA/languages.lang
index 650f518f3e48ab4675aa39f5d217a4605e5453cb..766daf77c6e4da8e8dbb4c0e92754394ed3b1073 100644
--- a/htdocs/langs/ar_SA/languages.lang
+++ b/htdocs/langs/ar_SA/languages.lang
@@ -2,60 +2,60 @@
 
 Language_ar_AR=العربية
 Language_ar_SA=العربية
-Language_bn_BD=Bengali
-Language_bg_BG=Bulgarian
-Language_bs_BA=Bosnian
+Language_bn_BD=بنغالي
+Language_bg_BG=البلغارية
+Language_bs_BA=البوسنية
 Language_ca_ES=كاتالاني
-Language_cs_CZ=Czech
+Language_cs_CZ=تشيكي
 Language_da_DA=الدانمركية
 Language_da_DK=دانماركي
 Language_de_DE=اللغة الألمانية
 Language_de_AT=الألمانية (النمسا)
-Language_de_CH=German (Switzerland)
+Language_de_CH=الألمانية (سويسرا)
 Language_el_GR=يوناني
 Language_en_AU=الإنكليزية (أستراليا)
-Language_en_CA=English (Canada)
+Language_en_CA=الإنكليزية (كندا)
 Language_en_GB=الانجليزية (المملكة المتحدة)
 Language_en_IN=الإنكليزية (الهند)
 Language_en_NZ=الإنجليزية (نيوزيلندا)
-Language_en_SA=English (Saudi Arabia)
+Language_en_SA=الإنجليزية (المملكة العربية السعودية)
 Language_en_US=الإنكليزية (الولايات المتحدة)
-Language_en_ZA=English (South Africa)
+Language_en_ZA=الإنكليزية (جنوب أفريقيا)
 Language_es_ES=الأسبانية
 Language_es_AR=الأسبانية (الأرجنتين)
-Language_es_BO=Spanish (Bolivia)
-Language_es_CL=Spanish (Chile)
-Language_es_CO=Spanish (Colombia)
-Language_es_DO=Spanish (Dominican Republic)
+Language_es_BO=الأسبانية (بوليفيا)
+Language_es_CL=الإسبانية (تشيلي)
+Language_es_CO=الأسبانية (كولومبيا)
+Language_es_DO=الأسبانية (جمهورية الدومنيكان)
 Language_es_HN=الأسبانية (هندوراس)
 Language_es_MX=الإسبانية (المكسيك)
-Language_es_PY=Spanish (Paraguay)
-Language_es_PE=Spanish (Peru)
+Language_es_PY=الأسبانية (باراغواي)
+Language_es_PE=الإسبانية (بيرو)
 Language_es_PR=الأسبانية (بورتو ريكو)
-Language_et_EE=Estonian
-Language_eu_ES=Basque
+Language_et_EE=الإستونية
+Language_eu_ES=الباسكي
 Language_fa_IR=اللغة الفارسية
-Language_fi_FI=Finnish
+Language_fi_FI=اللغة الفنلندية
 Language_fr_BE=الفرنسية (بلجيكا)
 Language_fr_CA=الفرنسية (كندا)
 Language_fr_CH=الفرنسية (سويسرا)
 Language_fr_FR=الفرنسية
-Language_fr_NC=French (New Caledonia)
-Language_fy_NL=Frisian
-Language_he_IL=Hebrew
-Language_hr_HR=Croatian
+Language_fr_NC=الفرنسية (كاليدونيا الجديدة)
+Language_fy_NL=الفريزية
+Language_he_IL=اللغة العبرية
+Language_hr_HR=الكرواتية
 Language_hu_HU=المجري
-Language_id_ID=Indonesian
+Language_id_ID=الأندونيسية
 Language_is_IS=الآيسلندي
 Language_it_IT=الإيطالي
 Language_ja_JP=اليابانية
-Language_ka_GE=Georgian
-Language_kn_IN=Kannada
-Language_ko_KR=Korean
-Language_lo_LA=Lao
-Language_lt_LT=Lithuanian
-Language_lv_LV=Latvian
-Language_mk_MK=Macedonian
+Language_ka_GE=الجورجية
+Language_kn_IN=الكانادا
+Language_ko_KR=الكورية
+Language_lo_LA=لاو
+Language_lt_LT=اللتوانية
+Language_lv_LV=اللاتفية
+Language_mk_MK=المقدونية
 Language_nb_NO=النرويجية (بوكمال)
 Language_nl_BE=الهولندية (بلجيكا)
 Language_nl_NL=الهولندية (هولندا)
@@ -69,13 +69,13 @@ Language_tr_TR=التركية
 Language_sl_SI=السلوفينية
 Language_sv_SV=السويدية
 Language_sv_SE=السويدية
-Language_sq_AL=Albanian
-Language_sk_SK=Slovakian
-Language_sr_RS=Serbian
-Language_sw_SW=Kiswahili
-Language_th_TH=Thai
-Language_uk_UA=Ukrainian
-Language_uz_UZ=Uzbek
-Language_vi_VN=Vietnamese
+Language_sq_AL=الألبانية
+Language_sk_SK=السلوفاكية
+Language_sr_RS=صربي
+Language_sw_SW=السواحيلية
+Language_th_TH=التايلاندية
+Language_uk_UA=الأوكراني
+Language_uz_UZ=الأوزبكي
+Language_vi_VN=الفيتنامية
 Language_zh_CN=الصينية
-Language_zh_TW=Chinese (Traditional)
+Language_zh_TW=الصينية (التقليدية)
diff --git a/htdocs/langs/ar_SA/link.lang b/htdocs/langs/ar_SA/link.lang
index 42c7555d469ae235224733b8755d0a39b741adb6..28eb5f45d24d8b5f9ce9271db0932ed1930f310a 100644
--- a/htdocs/langs/ar_SA/link.lang
+++ b/htdocs/langs/ar_SA/link.lang
@@ -1,9 +1,9 @@
-LinkANewFile=Link a new file/document
-LinkedFiles=Linked files and documents
-NoLinkFound=No registered links
-LinkComplete=The file has been linked successfully
-ErrorFileNotLinked=The file could not be linked
-LinkRemoved=The link %s has been removed
-ErrorFailedToDeleteLink= Failed to remove link '<b>%s</b>'
-ErrorFailedToUpdateLink= Failed to update link '<b>%s</b>'
-URLToLink=URL to link
+LinkANewFile=ربط ملف جديد/ وثيقة
+LinkedFiles=الملفات والمستندات المرتبطة
+NoLinkFound=لا روابط مسجلة
+LinkComplete= تم ربط الملف بنجاح
+ErrorFileNotLinked=لا يمكن ربط الملف
+LinkRemoved=تم إزالة الارتباط  %s 
+ErrorFailedToDeleteLink= فشل في إزالة رابط <b>' %s '</b>
+ErrorFailedToUpdateLink= فشل تحديث رابط <b> %s </b>
+URLToLink=URL لربط
diff --git a/htdocs/langs/ar_SA/loan.lang b/htdocs/langs/ar_SA/loan.lang
index cc7f19037aa878bec1fd11f490d81e736fa18715..69c03596cf7a1836beaac6b44ed8da969d1f8373 100644
--- a/htdocs/langs/ar_SA/loan.lang
+++ b/htdocs/langs/ar_SA/loan.lang
@@ -1,53 +1,53 @@
 # Dolibarr language file - Source file is en_US - loan
-Loan=Loan
-Loans=Loans
-NewLoan=New Loan
-ShowLoan=Show Loan
-PaymentLoan=Loan payment
-ShowLoanPayment=Show Loan Payment
-Capital=Capital
-Insurance=Insurance
-Interest=Interest
-Nbterms=Number of terms
-LoanAccountancyCapitalCode=Accountancy code capital
-LoanAccountancyInsuranceCode=Accountancy code insurance
-LoanAccountancyInterestCode=Accountancy code interest
-LoanPayment=Loan payment
-ConfirmDeleteLoan=Confirm deleting this loan
-LoanDeleted=Loan Deleted Successfully
-ConfirmPayLoan=Confirm classify paid this loan
-LoanPaid=Loan Paid
-ErrorLoanCapital=Loan amount has to be numeric and greater than zero.
-ErrorLoanLength=Loan length has to be numeric and greater than zero.
-ErrorLoanInterest=Annual interest has to be numeric and greater than zero.
+Loan=قرض
+Loans=القروض
+NewLoan=قرض جديد
+ShowLoan=عرض القرض
+PaymentLoan=سداد القرض
+ShowLoanPayment=مشاهدة قرض الدفع
+Capital=عاصمة
+Insurance=تأمين
+Interest=اهتمام
+Nbterms=عدد من المصطلحات
+LoanAccountancyCapitalCode=العاصمة كود المحاسبة
+LoanAccountancyInsuranceCode=المحاسبة التأمين كود
+LoanAccountancyInterestCode=مصلحة كود المحاسبة
+LoanPayment=سداد القرض
+ConfirmDeleteLoan=تأكيد حذف هذا القرض
+LoanDeleted=بنجاح قرض محذوفة
+ConfirmPayLoan=تأكيد صنف دفع هذا القرض
+LoanPaid=القرض المدفوع
+ErrorLoanCapital=مبلغ القرض يجب أن يكون رقمية وأكبر من الصفر.
+ErrorLoanLength=طول قرض يجب أن يكون رقمية وأكبر من الصفر.
+ErrorLoanInterest=الفائدة السنوية يجب أن تكون رقمية وأكبر من الصفر.
 # Calc
-LoanCalc=Bank Loans Calculator
-PurchaseFinanceInfo=Purchase & Financing Information
-SalePriceOfAsset=Sale Price of Asset
-PercentageDown=Percentage Down
-LengthOfMortgage=Length of Mortgage
-AnnualInterestRate=Annual Interest Rate
-ExplainCalculations=Explain Calculations
-ShowMeCalculationsAndAmortization=Show me the calculations and amortization
-MortgagePaymentInformation=Mortgage Payment Information
-DownPayment=Down Payment
-DownPaymentDesc=The <b>down payment</b> = The price of the home multiplied by the percentage down divided by 100 (for 5% down becomes 5/100 or 0.05)
-InterestRateDesc=The <b>interest rate</b> = The annual interest percentage divided by 100
-MonthlyFactorDesc=The <b>monthly factor</b> = The result of the following formula
-MonthlyInterestRateDesc=The <b>monthly interest rate</b> = The annual interest rate divided by 12 (for the 12 months in a year)
-MonthTermDesc=The <b>month term</b> of the loan in months = The number of years you've taken the loan out for times 12
-MonthlyPaymentDesc=The montly payment is figured out using the following formula
-AmortizationPaymentDesc=The <a href="#amortization">amortization</a> breaks down how much of your monthly payment goes towards the bank's interest, and how much goes into paying off the principal of your loan.
-AmountFinanced=Amount Financed
-AmortizationMonthlyPaymentOverYears=Amortization For Monthly Payment: <b>%s</b> over %s years
-Totalsforyear=Totals for year
-MonthlyPayment=Monthly Payment
-LoanCalcDesc=This <b>mortgage calculator</b> can be used to figure out monthly payments of a home mortgage loan, based on the home's sale price, the term of the loan desired, buyer's down payment percentage, and the loan's interest rate.<br> This calculator factors in PMI (Private Mortgage Insurance) for loans where less than 20% is put as a down payment. Also taken into consideration are the town property taxes, and their effect on the total monthly mortgage payment.<br>
-GoToInterest=%s will go towards INTEREST
-GoToPrincipal=%s will go towards PRINCIPAL
-YouWillSpend=You will spend %s on your house in year %s
+LoanCalc=بنك القروض حاسبة
+PurchaseFinanceInfo=شراء وتمويل معلومات
+SalePriceOfAsset=بيع سعر الأصول
+PercentageDown=نسبة داون
+LengthOfMortgage=طول الرهن العقاري
+AnnualInterestRate=معدل الفائدة السنوي
+ExplainCalculations=شرح الحسابات
+ShowMeCalculationsAndAmortization=تدلني على الحسابات والإطفاء
+MortgagePaymentInformation=معلومات الرهن العقاري الدفع
+DownPayment=الدفعة الأولى
+DownPaymentDesc=<b>الدفعة</b> الأولى = سعر المنزل مضروبا في نسبة مقسمة بنسبة 100٪ (5٪ يصبح أسفل 5/100 أو 0.05)
+InterestRateDesc=<b>سعر</b> الفائدة = نسبة الفائدة السنوية مقسومة على 100
+MonthlyFactorDesc=<b>عامل الشهري</b> = ونتيجة الصيغة التالية
+MonthlyInterestRateDesc=<b>معدل الفائدة الشهرية</b> = معدل الفائدة السنوي مقسوما على 12 (لمدة 12 شهرا في السنة)
+MonthTermDesc=<b>على</b> المدى <b>شهر</b> القرض في أشهر = لعدد من السنوات كنت قد اتخذت القرض بها لمرة 12
+MonthlyPaymentDesc=وبرزت دفع أفضل نتيجة من استخدام الصيغة التالية
+AmortizationPaymentDesc=<a href="#amortization">والإطفاء</a> ينهار مقدار الدفع الشهري يذهب نحو مصلحة البنك، وكم يذهب إلى سداد أصل القرض الخاص بك.
+AmountFinanced=مبلغ التمويل
+AmortizationMonthlyPaymentOverYears=الإطفاء للدفع <b>الشهري:٪ الصورة</b> أكثر من٪ الصورة سنوات
+Totalsforyear=مجاميع العام
+MonthlyPayment=الدفع الشهري
+LoanCalcDesc=هذه <b>آلة حاسبة الرهن العقاري</b> يمكن استخدامها لمعرفة دفعات شهرية لقرض الرهن العقاري، على أساس سعر البيع في المنزل، ومدة القرض المطلوب، نسبة دفع المشتري إلى أسفل، وسعر الفائدة للقرض. <br> هذه العوامل آلة حاسبة في مؤشر مديري المشتريات (الرهن العقاري التأمين الخاصة) للحصول على قروض حيث يتم وضع أقل من 20٪ كدفعة مقدمة. الاعتبار أيضا هي الضرائب على الممتلكات المدينة، وتأثيرها على إجمالي أقساط الرهن العقاري الشهرية. <br>
+GoToInterest=٪ S سوف تذهب نحو الفائدة
+GoToPrincipal=٪ S سوف تذهب نحو PRINCIPAL
+YouWillSpend=سوف تنفق %s على منزلك في العام %s
 # Admin
-ConfigLoan=Configuration of the module loan
-LOAN_ACCOUNTING_ACCOUNT_CAPITAL=Accountancy code capital by default
-LOAN_ACCOUNTING_ACCOUNT_INTEREST=Accountancy code interest by default
-LOAN_ACCOUNTING_ACCOUNT_INSURANCE=Accountancy code insurance by default
+ConfigLoan=التكوين للقرض وحدة
+LOAN_ACCOUNTING_ACCOUNT_CAPITAL=العاصمة كود المحاسبة افتراضيا
+LOAN_ACCOUNTING_ACCOUNT_INTEREST=مصلحة كود المحاسبة افتراضيا
+LOAN_ACCOUNTING_ACCOUNT_INSURANCE=التأمين كود المحاسبة افتراضيا
diff --git a/htdocs/langs/ar_SA/mailmanspip.lang b/htdocs/langs/ar_SA/mailmanspip.lang
index 6be465b47cf880989def1e149afd5fdf96b88c4c..bc9bfd3e95b91f58952834423ef604967d7d711b 100644
--- a/htdocs/langs/ar_SA/mailmanspip.lang
+++ b/htdocs/langs/ar_SA/mailmanspip.lang
@@ -1,27 +1,27 @@
 # Dolibarr language file - Source file is en_US - mailmanspip
 MailmanSpipSetup=ساعي البريد و تركيب نموذج SPIP
-# MailmanTitle=Mailman mailing list system
-# TestSubscribe=To test subscription to Mailman lists
-# TestUnSubscribe=To test unsubscribe from Mailman lists
-# MailmanCreationSuccess=Subscription test was executed succesfully
-# MailmanDeletionSuccess=Unsubscription test was executed succesfully
-# SynchroMailManEnabled=A Mailman update will be performed
-# SynchroSpipEnabled=A Spip update will be performed
-# DescADHERENT_MAILMAN_ADMINPW=Mailman administrator password
-# DescADHERENT_MAILMAN_URL=URL for Mailman subscriptions
-# DescADHERENT_MAILMAN_UNSUB_URL=URL for Mailman unsubscriptions
-# DescADHERENT_MAILMAN_LISTS=List(s) for automatic inscription of new members (separated by a comma)
-# SPIPTitle=SPIP Content Management System
-# DescADHERENT_SPIP_SERVEUR=SPIP Server
-# DescADHERENT_SPIP_DB=SPIP database name
-# DescADHERENT_SPIP_USER=SPIP database login
-# DescADHERENT_SPIP_PASS=SPIP database password
-# AddIntoSpip=Add into SPIP
-# AddIntoSpipConfirmation=Are you sure you want to add this member into SPIP?
-# AddIntoSpipError=Failed to add the user in SPIP
-# DeleteIntoSpip=Remove from SPIP
-# DeleteIntoSpipConfirmation=Are you sure you want to remove this member from SPIP?
-# DeleteIntoSpipError=Failed to suppress the user from SPIP
-# SPIPConnectionFailed=Failed to connect to SPIP
-# SuccessToAddToMailmanList=Add of %s to mailman list %s or SPIP database done
-# SuccessToRemoveToMailmanList=Removal of %s from mailman list %s or SPIP database done
+MailmanTitle=القائمة البريدية ميلمان النظام
+TestSubscribe=لاختبار الاشتراك في قوائم ميلمان
+TestUnSubscribe=لاختبار إلغاء الاشتراك من قوائم ساعي البريد
+MailmanCreationSuccess=تم تنفيذ الاختبار بنجاح الاشتراك
+MailmanDeletionSuccess=أعدم إلغاء الاشتراك بنجاح اختبار
+SynchroMailManEnabled=سيتم تنفيذ عملية تحديث ميلمان
+SynchroSpipEnabled=سيتم تنفيذ عملية تحديث SPIP
+DescADHERENT_MAILMAN_ADMINPW=ساعي البريد مرور مسؤول
+DescADHERENT_MAILMAN_URL=URL للاشتراكات ساعي البريد
+DescADHERENT_MAILMAN_UNSUB_URL=URL للunsubscriptions ساعي البريد
+DescADHERENT_MAILMAN_LISTS=قائمة ل نقش التلقائي للأعضاء الجدد (مفصولة بفواصل)
+SPIPTitle=SPIP نظام إدارة المحتوى
+DescADHERENT_SPIP_SERVEUR=SPIP خادم
+DescADHERENT_SPIP_DB=SPIP اسم قاعدة البيانات
+DescADHERENT_SPIP_USER=قاعدة بيانات SPIP تسجيل الدخول
+DescADHERENT_SPIP_PASS=SPIP كلمة مرور قاعدة البيانات
+AddIntoSpip=إضافة إلى SPIP
+AddIntoSpipConfirmation=هل أنت متأكد أنك تريد إضافة هذا العضو إلى SPIP؟
+AddIntoSpipError=فشل في إضافة المستخدم في SPIP
+DeleteIntoSpip=إزالة من SPIP
+DeleteIntoSpipConfirmation=هل أنت متأكد أنك تريد إزالة هذا العضو من SPIP؟
+DeleteIntoSpipError=فشل في قمع المستخدم من SPIP
+SPIPConnectionFailed=فشل الاتصال SPIP
+SuccessToAddToMailmanList=إضافة ل٪ s إلى ساعي البريد ائحة٪ الصورة أو قاعدة بيانات SPIP به
+SuccessToRemoveToMailmanList=إزالة٪ s من قائمة ساعي البريد٪ الصورة أو قاعدة بيانات SPIP عمله
diff --git a/htdocs/langs/ar_SA/mails.lang b/htdocs/langs/ar_SA/mails.lang
index 0e3f4f0a0520fa3b2fbd545cb967730d3997de26..51547b388b95fd81b9b52312a636dac4f89d5411 100644
--- a/htdocs/langs/ar_SA/mails.lang
+++ b/htdocs/langs/ar_SA/mails.lang
@@ -28,7 +28,7 @@ DeleteMailing=حذف البريد الإلكتروني
 DeleteAMailing=حذف البريد الإلكتروني
 PreviewMailing=معاينة مراسلة
 PrepareMailing=إعداد البريد الإلكتروني
-CreateMailing=خلق مراسلة
+CreateMailing=إنشاء مراسلة
 MailingDesc=هذه الصفحة يسمح لك بإرسال emailings على مجموعة من الناس.
 MailingResult=ونتيجة لإرسال رسائل البريد الإلكتروني
 TestMailing=تجربة استخدام الإنترنت
@@ -43,10 +43,10 @@ MailingStatusSentCompletely=أرسلت تماما
 MailingStatusError=خطأ
 MailingStatusNotSent=لم ترسل
 MailSuccessfulySent=أرسل بالبريد الإلكتروني بنجاح (٪ من المستندات ل٪)
-MailingSuccessfullyValidated=EMailing successfully validated
-MailUnsubcribe=Unsubscribe
-Unsuscribe=Unsubscribe
-MailingStatusNotContact=Don't contact anymore
+MailingSuccessfullyValidated=البريد الإلكتروني التحقق من صحة بنجاح
+MailUnsubcribe=إلغاء الاشتراك
+Unsuscribe=إلغاء الاشتراك
+MailingStatusNotContact=عدم الاتصال بعد الآن
 ErrorMailRecipientIsEmpty=البريد الإلكتروني المتلقي فارغة
 WarningNoEMailsAdded=بريد الكتروني جديدة تضاف الى قائمة المتلقي.
 ConfirmValidMailing=هل أنت متأكد أنك تريد إرساله عبر البريد الإلكتروني للتحقق من هذا؟
@@ -73,34 +73,35 @@ DateLastSend=تاريخ آخر ارسال
 DateSending=تاريخ إرسال
 SentTo=إرسالها إلى <b>%s</b>
 MailingStatusRead=قرأ
-CheckRead=Read Receipt
-YourMailUnsubcribeOK=The email <b>%s</b>  is correctly unsubcribe from mailing list
-MailtoEMail=Hyper link to email
-ActivateCheckRead=Allow to use the "Unsubcribe" link
-ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubcribe" feature
-EMailSentToNRecipients=EMail sent to %s recipients.
-XTargetsAdded=<b>%s</b> recipients added into target list
-EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
-MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
-SendRemind=Send reminder by EMails
-RemindSent=%s reminder(s) sent
-AllRecipientSelected=All thirdparties selected and if an email is set.
-NoRemindSent=No EMail reminder sent
-ResultOfMailSending=Result of mass EMail sending
-NbSelected=Nb selected
-NbIgnored=Nb ignored
-NbSent=Nb sent
+CheckRead=قراءة إيصال
+YourMailUnsubcribeOK=البريد <b>الإلكتروني٪ s غير</b> unsubcribe بشكل صحيح من القائمة البريدية
+MailtoEMail=رابط فرط إلى البريد الإلكتروني
+ActivateCheckRead=السماح لاستخدام الرابط "Unsubcribe"
+ActivateCheckReadKey=المفتاح المستخدم في تشفير URL المستخدمة ل "اقرأ استلام" و "Unsubcribe" ميزة
+EMailSentToNRecipients=البريد الإلكتروني المرسلة إلى المستلمين٪ الصورة.
+XTargetsAdded=وأضاف <b>المتلقين٪ الصورة</b> إلى قائمة المستهدفين
+EachInvoiceWillBeAttachedToEmail=سيتم إنشاء المستند باستخدام الافتراضي قالب المستند الفاتورة وتعلق على كل البريد الإلكتروني.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
+MailTopicSendRemindUnpaidInvoices=تذكير الفاتورة%s (ق٪)
+SendRemind=إرسال تذكرة عن طريق البريد الالكتروني
+RemindSent=٪ الصورة تذكير (ق) أرسلت
+AllRecipientSelected=جميع thirdparties اختيار وإذا تم تعيين بالبريد.
+NoRemindSent=لا رسالة تذكير أرسلت
+ResultOfMailSending=نتيجة لإرسال البريد الإلكتروني الشامل
+NbSelected=ملحوظة مختارة
+NbIgnored=ملحوظة تجاهلها
+NbSent=أرسلت ملحوظة
 
 # Libelle des modules de liste de destinataires mailing
 MailingModuleDescContactCompanies=اتصالات لجميع الأطراف الثالثة (العملاء ، والاحتمال ، والمورد ،...)
 MailingModuleDescDolibarrUsers=Dolibarr جميع مستخدمي البريد الإلكتروني
 MailingModuleDescFundationMembers=مؤسسة البريد الالكتروني للأعضاء
 MailingModuleDescEmailsFromFile=رسائل البريد الإلكتروني من ملف نصي (البريد الإلكتروني ؛ اسم الشهرة ؛ التعليقات)
-MailingModuleDescEmailsFromUser=EMails from user input (email;lastname;firstname;other)
+MailingModuleDescEmailsFromUser=رسائل البريد الإلكتروني من المستخدم إدخال (البريد الإلكتروني؛ اللقب، الاسم الأول، وغير ذلك)
 MailingModuleDescContactsCategories=أطراف ثالثة مع رسائل البريد الإلكتروني (حسب الفئة)
 MailingModuleDescDolibarrContractsLinesExpired=أطراف ثالثة مع انتهاء العقد خطوط
 MailingModuleDescContactsByCompanyCategory=اتصالات من أطراف ثالثة (من قبل أطراف ثالثة الفئة)
-MailingModuleDescContactsByCategory=Contacts/addresses of third parties (by category)
+MailingModuleDescContactsByCategory=اتصالات / عناوين أطراف ثالثة (حسب الفئة)
 MailingModuleDescMembersCategories=أعضاء مؤسسة (حسب الفئات)
 MailingModuleDescContactsByFunction=اتصالات من أطراف ثالثة (من قبل المنصب / الوظيفة)
 LineInFile=خط المستندات في ملف ٪
@@ -115,33 +116,33 @@ SearchAMailing=البحث البريدية
 SendMailing=إرسال البريد الإلكتروني
 SendMail=إرسال بريد إلكتروني
 SentBy=أرسلها
-MailingNeedCommand=For security reason, sending an emailing is better when performed from command line. If you have one, ask your server administrator to launch the following command to send the emailing to all recipients:
+MailingNeedCommand=لأسباب أمنية، إرسال البريد الإلكتروني هو أفضل عندما يؤديها من سطر الأوامر. إذا كان لديك واحدة، اطلب من مسؤول الخادم الخاص بك لإطلاق الأمر التالي لإرسال إرساله عبر البريد الإلكتروني لجميع المستفيدين:
 MailingNeedCommand2=ولكن يمكنك إرسالها عبر الإنترنت عن طريق إضافة معلمة MAILING_LIMIT_SENDBYWEB مع قيمة الحد الأقصى لعدد من رسائل البريد الإلكتروني التي تريد إرسالها من خلال هذه الدورة.
-ConfirmSendingEmailing=If you can't or prefer sending them with your www browser, please confirm you are sure you want to send emailing now from your browser ?
-LimitSendingEmailing=Note: Sending of emailings from web interface is done in several times for security and timeout reasons, <b>%s</b> recipients at a time for each sending session.
+ConfirmSendingEmailing=إذا كنت لا تستطيع أو تفضل إرسالها مع متصفح الشبكة العالمية الخاصة بك، يرجى تأكيد كنت متأكدا من أنك تريد إرسال البريد الإلكتروني الآن من المتصفح؟
+LimitSendingEmailing=يتم إرسال من emailings من واجهة الويب في عدة مرات لأسباب أمنية ومهلة <b>والمستفيدين٪ الصورة</b> في وقت لكل دورة ارسال: ملاحظة.
 TargetsReset=لائحة واضحة
 ToClearAllRecipientsClickHere=من الواضح أن المستفيدين قائمة لهذا البريد الإلكتروني ، انقر على زر
 ToAddRecipientsChooseHere=إضافة إلى المتلقين ، وتختار في هذه القوائم
 NbOfEMailingsReceived=وتلقى كتلة emailings
-NbOfEMailingsSend=Mass emailings sent
+NbOfEMailingsSend=emailings الجماعية أرسلت
 IdRecord=رقم قياسي
 DeliveryReceipt=إيصال استلام
 YouCanUseCommaSeparatorForSeveralRecipients=يمكنك استخدام <b>الفاصلة</b> فاصل لتحديد عدد من المتلقين.
-TagCheckMail=Track mail opening
-TagUnsubscribe=Unsubscribe link
-TagSignature=Signature sending user
-TagMailtoEmail=Recipient EMail
-NoEmailSentBadSenderOrRecipientEmail=No email sent. Bad sender or recipient email. Verify user profile.
+TagCheckMail=افتتاح البريد المسار
+TagUnsubscribe=رابط إلغاء الاشتراك
+TagSignature=التوقيع إرسال المستعمل
+TagMailtoEmail=البريد الإلكتروني المستلم
+NoEmailSentBadSenderOrRecipientEmail=لا ترسل البريد الإلكتروني. مرسل سيئة أو البريد الإلكتروني المستلم. تحقق ملف تعريف المستخدم.
 # Module Notifications
 Notifications=الإخطارات
 NoNotificationsWillBeSent=إشعارات البريد الإلكتروني لا يجري التخطيط لهذا الحدث ، وشركة
 ANotificationsWillBeSent=1 سيتم إرسال الإشعار عن طريق البريد الإلكتروني
 SomeNotificationsWillBeSent=ق ٪ سوف يتم إرسال الإخطارات عبر البريد الإلكتروني
-AddNewNotification=Activate a new email notification target
-ListOfActiveNotifications=List all active email notification targets
+AddNewNotification=تفعيل هدفا إشعار البريد الإلكتروني الجديد
+ListOfActiveNotifications=قائمة جميع الأهداف إشعار البريد الإلكتروني النشطة
 ListOfNotificationsDone=أرسلت قائمة جميع اشعارات بالبريد الالكتروني
-MailSendSetupIs=Configuration of email sending has been setup to '%s'. This mode can't be used to send mass emailing.
-MailSendSetupIs2=You must first go, with an admin account, into menu %sHome - Setup - EMails%s to change parameter <strong>'%s'</strong> to use mode '%s'. With this mode, you can enter setup of the SMTP server provided by your Internet Service Provider and use Mass emailing feature.
-MailSendSetupIs3=If you have any questions on how to setup your SMTP server, you can ask to %s.
-YouCanAlsoUseSupervisorKeyword=You can also add the keyword <strong>__SUPERVISOREMAIL__</strong> to have email being sent to the supervisor of user (works only if an email is defined for this supervisor)
-NbOfTargetedContacts=Current number of targeted contact emails
+MailSendSetupIs=وقد تم تكوين إرسال البريد الإلكتروني الإعداد ل'٪ ق'. هذا الوضع لا يمكن أن تستخدم لإرسال إرساله عبر البريد الإلكتروني الشامل.
+MailSendSetupIs2=يجب عليك أولا الذهاب، مع حساب مشرف، في القائمة٪ sHome - إعداد - رسائل البريد الإلكتروني٪ s إلى تغيير المعلمة <strong>'٪ ق'</strong> لاستخدام وضع '٪ ق'. مع هذا الوضع، يمكنك إدخال الإعداد خادم SMTP المقدمة من قبل موفر خدمة الإنترنت واستخدام قداس ميزة البريد الإلكتروني.
+MailSendSetupIs3=إذا كان لديك أي أسئلة حول كيفية إعداد ملقم SMTP الخاص بك، يمكنك أن تطلب إلى٪ s.
+YouCanAlsoUseSupervisorKeyword=يمكنك أيضا إضافة <strong>__SUPERVISOREMAIL__</strong> الكلمة أن يكون البريد الإلكتروني إرسالها إلى المشرف على المستخدم (يعمل فقط إذا تم تعريف بريد الكتروني لهذا المشرف)
+NbOfTargetedContacts=العدد الحالي من رسائل البريد الإلكتروني اتصال المستهدفة
diff --git a/htdocs/langs/ar_SA/main.lang b/htdocs/langs/ar_SA/main.lang
index cd188e5b5cc673f5024c7c3396b06695bf8dbe20..33eb00f16ba7885ec3539e1ed0137bff63545e1e 100644
--- a/htdocs/langs/ar_SA/main.lang
+++ b/htdocs/langs/ar_SA/main.lang
@@ -1,5 +1,5 @@
 # Dolibarr language file - Source file is en_US - main
-DIRECTION=rtl
+DIRECTION=ltr
 # Note for Chinese:
 # msungstdlight or cid0ct are for traditional Chinese (traditional does not render with Ubuntu pdf reader)
 # stsongstdlight or cid0cs are for simplified Chinese
@@ -9,467 +9,471 @@ FONTSIZEFORPDF=9
 SeparatorDecimal=.
 SeparatorThousand=None
 FormatDateShort=%d/%m/%Y
-FormatDateShortInput=%m/%d/%Y
+FormatDateShortInput=%d/%m/%Y
 FormatDateShortJava=dd/MM/yyyy
 FormatDateShortJavaInput=dd/MM/yyyy
 FormatDateShortJQuery=dd/mm/yy
 FormatDateShortJQueryInput=dd/mm/yy
-FormatHourShortJQuery=HH:MI
+FormatHourShortJQuery=HH: MI
 FormatHourShort=%H:%M
 FormatHourShortDuration=%H:%M
 FormatDateTextShort=%d %b %Y
 FormatDateText=%d %B %Y
 FormatDateHourShort=%d/%m/%Y %H:%M
-FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
+FormatDateHourSecShort=%d/%m/%Y %H:%M:%S
 FormatDateHourTextShort=%d %b %Y %H:%M
 FormatDateHourText=%d %B %Y %H:%M
-DatabaseConnection=قاعدة بيانات الصدد
-NoTranslation=No translation
-NoRecordFound=No record found
-NoError=أي خطأ
+DatabaseConnection=اتصال قاعدة البيانات
+NoTemplateDefined=No template defined for this email type
+NoTranslation=لا يوجد ترجمة
+NoRecordFound=لا يوجد سجلات
+NoError=لا خطأ
 Error=خطأ
-Errors=Errors
-ErrorFieldRequired=الميدان '٪ ق' مطلوب
-ErrorFieldFormat=الميدان '٪ ق' سيئة القيمة
-ErrorFileDoesNotExists=ملف ٪ ق لا يوجد
-ErrorFailedToOpenFile=فشل في فتح الملف ٪ ق
-ErrorCanNotCreateDir=لا يمكن إنشاء دير ق
-ErrorCanNotReadDir=لا يمكن قراءة دير ق
-ErrorConstantNotDefined=معلمة ٪s ق لم تحدد
-ErrorUnknown=Unknown error
+Errors=أخطاء
+ErrorFieldRequired=Field '%s' is required
+ErrorFieldFormat=Field '%s' has a bad value
+ErrorFileDoesNotExists=File %s does not exist
+ErrorFailedToOpenFile=Failed to open file %s
+ErrorCanNotCreateDir=Can not create dir %s
+ErrorCanNotReadDir=Can not read dir %s
+ErrorConstantNotDefined=Parameter %s not defined
+ErrorUnknown=خطأ غير معروف
 ErrorSQL=خطأ SQL
-ErrorLogoFileNotFound=شعار ملف '٪ ق' لم يتم العثور على
-ErrorGoToGlobalSetup=اذهب إلى 'شركة / مؤسسة' الإعداد لتثبيت هذا
-ErrorGoToModuleSetup=الذهاب الى الوحدة لتحديد هذا الإعداد
-ErrorFailedToSendMail=فشل إرسال البريد (ق= ٪ مرسل ، واستقبال= ٪)
-ErrorAttachedFilesDisabled=إرفاق ملفات الميزة المعوقين على هذا الخادم
-ErrorFileNotUploaded=لم تحميل الملف. تأكد من أن حجمها لا يتجاوز الحد الأقصى المسموح به ، والتي توفر مساحة خالية على القرص الصلب ، وأنه لا يوجد بالفعل ملف بنفس الاسم في هذا الدليل.
-ErrorInternalErrorDetected=اكتشاف الخطأ
-ErrorNoRequestRan=لا يتعارض مع طلب
-ErrorWrongHostParameter=خطأ المضيفة معلمة
-ErrorYourCountryIsNotDefined=بلادكم ليست محددة. الذهاب إلى المنزل بين إعداد وتحرير وظيفة ثانية.
-ErrorRecordIsUsedByChild=فشل حذف هذا المحضر. ويستخدم هذا السجل على الأقل من الأطفال السجلات.
+ErrorLogoFileNotFound=Logo file '%s' was not found
+ErrorGoToGlobalSetup=اذهب إلى 'شركة / مؤسسة' الإعداد لإصلاح هذه
+ErrorGoToModuleSetup=الذهاب إلى الوحدة الإعداد لإصلاح هذه
+ErrorFailedToSendMail=Failed to send mail (sender=%s, receiver=%s)
+ErrorAttachedFilesDisabled=تم تعطيل إرفاق ملف في هذا الخادم
+ErrorFileNotUploaded=ويتم تحميل الملف. تحقق لا يتجاوز هذا الحجم الأقصى المسموح به، أن المساحة الحرة المتوفرة على القرص والتي لا يوجد بالفعل ملف بنفس الاسم في هذا الدليل.
+ErrorInternalErrorDetected=خطأ الكشف عن
+ErrorNoRequestRan=أي طلب ركض
+ErrorWrongHostParameter=المعلمة المضيف خاطئة
+ErrorYourCountryIsNotDefined=لم يتم تعريف بلدك. الذهاب إلى الصفحة الرئيسية الإعداد-تحرير ومشاركة مرة أخرى في النموذج.
+ErrorRecordIsUsedByChild=فشل في حذف هذا السجل. ويستخدم هذا السجل من قبل واحد على الأقل السجلات التابعة.
 ErrorWrongValue=قيمة خاطئة
-ErrorWrongValueForParameterX=قيمة خاطئة لمعلمة ق ٪
-ErrorNoRequestInError=لا خطأ في الطلب
-ErrorServiceUnavailableTryLater=الخدمة غير متاحة لحظة. المحاولة لاحقا.
-ErrorDuplicateField=المكررة قيمة فريدة من نوعها في مجال
-ErrorSomeErrorWereFoundRollbackIsDone=تم العثور على بعض الأخطاء. نحن تراجع التغييرات.
-ErrorConfigParameterNotDefined=المعلم <b>ل ٪</b> غير محدد Dolibarr داخل ملف <b>conf.php.</b>
-ErrorCantLoadUserFromDolibarrDatabase=فشلت في العثور على المستخدم <b>٪ ق</b> Dolibarr في قاعدة البيانات.
-ErrorNoVATRateDefinedForSellerCountry=خطأ ، لم يعرف لمعدلات ضريبة القيمة المضافة فى البلاد ٪ ق.
+ErrorWrongValueForParameterX=Wrong value for parameter %s
+ErrorNoRequestInError=أي طلب في الخطأ
+ErrorServiceUnavailableTryLater=الخدمة غير متوفرة في الوقت الراهن. حاول مجددا لاحقا.
+ErrorDuplicateField=قيمة مكررة في حقل فريد
+ErrorSomeErrorWereFoundRollbackIsDone=تم العثور على بعض الأخطاء. نحن التراجع التغييرات.
+ErrorConfigParameterNotDefined=Parameter <b>%s</b> is not defined inside Dolibarr config file <b>conf.php</b>.
+ErrorCantLoadUserFromDolibarrDatabase=Failed to find user <b>%s</b> in Dolibarr database.
+ErrorNoVATRateDefinedForSellerCountry=Error, no vat rates defined for country '%s'.
 ErrorNoSocialContributionForSellerCountry=Error, no social/fiscal taxes type defined for country '%s'.
-ErrorFailedToSaveFile=خطأ ، وفشلت في انقاذ الملف.
-NotAuthorized=You are not authorized to do that.
-SetDate=Set date
-SelectDate=Select a date
+ErrorFailedToSaveFile=خطأ، فشل في حفظ الملف.
+NotAuthorized=غير مصرح لك ان تفعل ذلك.
+SetDate=التاريخ المحدد
+SelectDate=تحديد تاريخ
 SeeAlso=See also %s
-SeeHere=See here
-BackgroundColorByDefault=لون الخلفية الافتراضي
-FileNotUploaded=The file was not uploaded
-FileUploaded=The file was successfully uploaded
-FileWasNotUploaded=يتم تحديد ملف مرفق لكنه لم يكن بعد تحميلها. انقر على "ملف إرفاق" لهذا الغرض.
-NbOfEntries=ملاحظة : إدخالات
-GoToWikiHelpPage=الانترنت تساعد على قراءة (على ضرورة الوصول إلى الإنترنت)
-GoToHelpPage=قراءة مساعدة
-RecordSaved=سجل المحفوظة
-RecordDeleted=Record deleted
-LevelOfFeature=مستوى الملامح
+SeeHere=انظر هنا
+BackgroundColorByDefault=لون الخلفية الافتراضية
+FileNotUploaded=لم إيداع الملف
+FileUploaded=تم تحميل الملف بنجاح
+FileWasNotUploaded=يتم اختيار ملف لمرفق ولكن لم تحميلها بعد. انقر على "إرفاق ملف" لهذا الغرض.
+NbOfEntries=ملحوظة من إدخالات
+GoToWikiHelpPage=قراءة التعليمات الفورية (تحتاج الوصول إلى الإنترنت)
+GoToHelpPage=قراءة المساعدة
+RecordSaved=سجل حفظ
+RecordDeleted=سجل محذوف
+LevelOfFeature=مستوى ميزات
 NotDefined=غير معرف
-DefinedAndHasThisValue=وحددت قيمة
-IsNotDefined=غير معروف
-DolibarrInHttpAuthenticationSoPasswordUseless=Dolibarr التوثيق هو طريقة الإعداد <b>لق ٪</b> في ملف <b>conf.php.</b> <br> وهذا يعني ان كلمة السر لقاعدة البيانات Dolibarr خارجي ، وذلك في تغيير هذا المجال قد لا يكون من آثار.
-Administrator=المدير العام
-Undefined=غير معروف
-PasswordForgotten=هل نسيت كلمة السر؟
-SeeAbove=انظر أعلاه
-HomeArea=مساحة الوطن
-LastConnexion=آخر الصدد
-PreviousConnexion=السابقة الصدد
-ConnectedOnMultiCompany=مرتبطة على الكيان
-ConnectedSince=مرتبطة منذ
-AuthenticationMode=صحة واسطة
-RequestedUrl=وطلب الموقع
-DatabaseTypeManager=مدير قاعدة بيانات من نوع
-RequestLastAccess=طلب الماضي الوصول إلى قواعد البيانات
-RequestLastAccessInError=طلب الماضي في الوصول إلى قاعدة بيانات خطأ
-ReturnCodeLastAccessInError=عودة لمدونة الماضي خطأ في الوصول إلى قاعدة البيانات
-InformationLastAccessInError=آخر المعلومات عن الوصول إلى قواعد البيانات في خطأ
-DolibarrHasDetectedError=Dolibarr اكتشفت خطأ فني
-InformationToHelpDiagnose=هذه هي المعلومات التي يمكن أن تساعد على تشخيص
-MoreInformation=مزيد من المعلومات
-TechnicalInformation=Technical information
-TechnicalID=Technical ID
-NotePublic=علما (العامة)
-NotePrivate=المذكرة (الخاصة)
-PrecisionUnitIsLimitedToXDecimals=Dolibarr كان الإعداد بدقة للحد من أسعار الوحدات إلى <b>٪ ق</b> عشرية.
+DefinedAndHasThisValue=تعريف وقيمة ل
+IsNotDefined=غير محدد
+DolibarrInHttpAuthenticationSoPasswordUseless=Dolibarr authentication mode is setup to <b>%s</b> in configuration file <b>conf.php</b>.<br>This means that password database is extern to Dolibarr, so changing this field may have no effects.
+Administrator=مدير
+Undefined=غير محدد
+PasswordForgotten=نسيت كلمة المرور؟
+SeeAbove=أنظر فوق
+HomeArea=المنطقة الرئيسية
+LastConnexion=آخر إتصال
+PreviousConnexion=الاتصال السابق
+ConnectedOnMultiCompany=إتصال على البيئة
+ConnectedSince=إتصال منذ
+AuthenticationMode=وضع صحة المستندات
+RequestedUrl=URL المطلوب
+DatabaseTypeManager=نوع قاعدة البيانات مدير
+RequestLastAccess=طلب الوصول إلى قاعدة البيانات الماضي
+RequestLastAccessInError=طلب الأخير الوصول إلى قاعدة البيانات في الخطأ
+ReturnCodeLastAccessInError=العودة رمز لآخر الوصول إلى قاعدة البيانات في الخطأ
+InformationLastAccessInError=معلومات عن الماضي الوصول إلى قاعدة البيانات في الخطأ
+DolibarrHasDetectedError=كشف Dolibarr خطأ فني
+InformationToHelpDiagnose=هذا هو المعلومات التي يمكن أن تساعد في التشخيص
+MoreInformation=المزيد من المعلومات
+TechnicalInformation=المعلومات التقنية
+TechnicalID=ID الفني
+NotePublic=ملاحظة (الجمهور)
+NotePrivate=ملاحظة (خاص)
+PrecisionUnitIsLimitedToXDecimals=Dolibarr was setup to limit precision of unit prices to <b>%s</b> decimals.
 DoTest=اختبار
 ToFilter=فلتر
-WarningYouHaveAtLeastOneTaskLate=تحذير لديك على الأقل أحد العناصر التي تجاوزت التسامح تأخير.
-yes=نعم
-Yes=نعم
+NoFilter=No filter
+WarningYouHaveAtLeastOneTaskLate=تحذير، لديك عنصر واحد على الأقل الذي تجاوز التأخير التسامح.
+yes=نعم فعلا
+Yes=نعم فعلا
 no=لا
 No=لا
-All=الكل
-Alls=All
-Home=منزل
+All=جميع
+Alls=جميع
+Home=الصفحة الرئيسية
 Help=مساعدة
 OnlineHelp=مساعدة على الانترنت
-PageWiki=صفحة ويكي
+PageWiki=صفحة ويكيبيديا
 Always=دائما
 Never=أبدا
 Under=تحت
-Period=الفترة
-PeriodEndDate=الموعد النهائي لفترة
-Activate=تفعيل
-Activated=تفعيل
-Closed=مغلقة
-Closed2=مغلقة
-Enabled=مكن
-Deprecated=Deprecated
-Disable=يعطل
-Disabled=المعاقين
+Period=فترة
+PeriodEndDate=تاريخ انتهاء الفترة
+Activate=فعل
+Activated=تنشيط
+Closed=مغلق
+Closed2=مغلق
+Enabled=تمكين
+Deprecated=انتقدت
+Disable=تعطيل
+Disabled=تعطيل
 Add=إضافة
 AddLink=إضافة وصلة
-RemoveLink=Remove link
+RemoveLink=نلغي
 Update=تحديث
-AddActionToDo=إضافة إلى العمل لا
-AddActionDone=أضف العمل به
+AddActionToDo=إضافة حدث أن تفعل
+AddActionDone=إضافة حدث القيام به
 Close=إغلاق
 Close2=إغلاق
 Confirm=تأكيد
-ConfirmSendCardByMail=هل تريد حقا أن ترسل هذه البطاقة عن طريق البريد؟
+ConfirmSendCardByMail=Do you really want to send content of this card by mail to <b>%s</b> ?
 Delete=حذف
-Remove=يزيل
+Remove=إزالة
 Resiliate=Resiliate
-Cancel=الغاء
+Cancel=إلغاء
 Modify=تعديل
 Edit=تحرير
-Validate=صحة
-ValidateAndApprove=Validate and Approve
-ToValidate=للمصادقة
+Validate=التحقق من صحة
+ValidateAndApprove=التحقق من صحة والموافقة
+ToValidate=للتحقق من صحة
 Save=حفظ
 SaveAs=حفظ باسم
-TestConnection=اختبار الصدد
+TestConnection=اختبار الاتصال
 ToClone=استنساخ
-ConfirmClone=اختر البيانات التي تريد استنساخ :
-NoCloneOptionsSpecified=لا توجد بيانات محددة للاستنساخ.
+ConfirmClone=اختيار البيانات التي تريد استنساخ:
+NoCloneOptionsSpecified=لا توجد بيانات لاستنساخ محددة.
 Of=من
-Go=Go
-Run=Run
+Go=اذهب
+Run=اركض
 CopyOf=نسخة من
-Show=يظهر
-ShowCardHere=وتظهر البطاقة
-Search=بحث
-SearchOf=البحث
-Valid=صحيح
+Show=تبين
+ShowCardHere=مشاهدة بطاقة
+Search=البحث عن
+SearchOf=البحث عن
+Valid=سارية المفعول
 Approve=الموافقة
-Disapprove=Disapprove
+Disapprove=رفض
 ReOpen=إعادة فتح
-Upload=ارسال الملف
-ToLink=Link
-Select=رتخا
-Choose=يختار
-ChooseLangage=من فضلك اختر اللغة
-Resize=تغيير حجم
+Upload=إرسال ملف
+ToLink=حلقة الوصل
+Select=اختار
+Choose=أختر
+ChooseLangage=الرجاء اختيار لغتك
+Resize=تغيير
 Recenter=Recenter
-Author=المؤلف
-User=مستخدم
+Author=مؤلف
+User=المستعمل
 Users=المستخدمين
-Group=المجموعة
+Group=مجموعة
 Groups=المجموعات
-NoUserGroupDefined=No user group defined
-Password=كلمة السر
+NoUserGroupDefined=لا توجد مجموعة يحددها المستخدم
+Password=الرمز السري
 PasswordRetype=أعد كتابة كلمة السر
-NoteSomeFeaturesAreDisabled=علما بأن الكثير من السمات / حدات المعوقين في هذه التظاهرة.
+NoteSomeFeaturesAreDisabled=لاحظ أن الكثير من الميزات / معطلة في هذه المظاهرة وحدات.
 Name=اسم
 Person=شخص
 Parameter=معلمة
-Parameters=البارامترات
+Parameters=المعايير
 Value=القيمة
 GlobalValue=القيمة العالمية
-PersonalValue=القيمة الشخصية
-NewValue=قيمة جديدة
+PersonalValue=قيمة الشخصية
+NewValue=القيمة الجديدة
 CurrentValue=القيمة الحالية
-Code=مدونة
-Type=نوع
+Code=رمز
+Type=اكتب
 Language=لغة
 MultiLanguage=متعدد اللغات
-Note=علما
-CurrentNote=المذكرة
+Note=ملاحظة
+CurrentNote=مذكرة الحالية
 Title=العنوان
-Label=العلامة
-RefOrLabel=المرجع. أو بطاقة
+Label=ملصق
+RefOrLabel=المرجع. أو هذا الملصق
 Info=سجل
 Family=عائلة
-Description=وصف
-Designation=وصف
-Model=النموذج
-DefaultModel=النموذج الافتراضي
-Action=العمل
+Description=الوصف
+Designation=الوصف
+Model=نموذج
+DefaultModel=نموذج افتراضي
+Action=حدث
 About=حول
 Number=عدد
-NumberByMonth=عدد من الشهر
-AmountByMonth=كمية من شهر
+NumberByMonth=عدد بحلول الشهر
+AmountByMonth=المبلغ الشهر
 Numero=عدد
-Limit=الحد
+Limit=حد
 Limits=حدود
 DevelopmentTeam=فريق التطوير
-Logout=خروج
+Logout=تسجيل خروج
 NoLogoutProcessWithAuthMode=No applicative disconnect feature with authentication mode <b>%s</b>
-Connection=صلة
-Setup=الإعداد
-Alert=حالة تأهب
-Previous=السابق
-Next=التالي
+Connection=الاتصال
+Setup=التثبيت
+Alert=إنذار
+Previous=سابق
+Next=التالى
 Cards=بطاقات
 Card=بطاقة
 Now=الآن
-HourStart=Start hour
-Date=تاريخ
-DateAndHour=Date and hour
-DateStart=تاريخ البدء
-DateEnd=نهاية التاريخ
+HourStart=بدء ساعة
+Date=التاريخ
+DateAndHour=التاريخ و الساعة
+DateToday=Today's date
+DateReference=Reference date
+DateStart=تاريخ بداية
+DateEnd=تاريخ انتهاء
 DateCreation=تاريخ الإنشاء
-DateCreationShort=Creat. date
-DateModification=تعديل التاريخ
-DateModificationShort=Modif. تاريخ
+DateCreationShort=يخلق. التاريخ
+DateModification=تاريخ التعديل
+DateModificationShort=Modif. التاريخ
 DateLastModification=تاريخ آخر تعديل
-DateValidation=تاريخ المصادقة
-DateClosing=تاريخ اختتام
+DateValidation=تاريخ التحقق من الصحة
+DateClosing=الموعد النهائي
 DateDue=تاريخ الاستحقاق
-DateValue=قيمة التاريخ
-DateValueShort=قيمة التاريخ
-DateOperation=تاريخ العملية
-DateOperationShort=مكتب تعزيز المساواة بين الجنسين. تاريخ
-DateLimit=الحد من التاريخ
+DateValue=تاريخ القيمة
+DateValueShort=تاريخ القيمة
+DateOperation=تاريخ التشغيل
+DateOperationShort=دار الأوبرا. التاريخ
+DateLimit=تاريخ الحد
 DateRequest=تاريخ الطلب
 DateProcess=تاريخ العملية
-DatePlanShort=تاريخ تعتزم
-DateRealShort=التاريخ الحقيقي.
-DateBuild=التقرير بناء التاريخ
+DatePlanShort=تاريخ مملس
+DateRealShort=تاريخ ريال مدريد.
+DateBuild=تقرير تاريخ الإنشاء
 DatePayment=تاريخ الدفع
-DateApprove=Approving date
-DateApprove2=Approving date (second approval)
+DateApprove=تاريخ الموافقة
+DateApprove2=تاريخ الموافقة (موافقة الثانية)
 DurationYear=سنة
-DurationMonth=الشهر
-DurationWeek=الأسبوع
+DurationMonth=شهر
+DurationWeek=أسبوع
 DurationDay=يوم
 DurationYears=سنوات
 DurationMonths=أشهر
 DurationWeeks=أسابيع
 DurationDays=أيام
 Year=سنة
-Month=الشهر
-Week=الأسبوع
+Month=شهر
+Week=أسبوع
 Day=يوم
 Hour=ساعة
-Minute=لحظة
-Second=الثانية
+Minute=دقيقة
+Second=الثاني
 Years=سنوات
 Months=أشهر
 Days=أيام
 days=أيام
 Hours=ساعات
-Minutes=دقائق
-Seconds=ثانية
-Weeks=Weeks
+Minutes=دقيقة
+Seconds=ثواني
+Weeks=أسابيع
 Today=اليوم
-Yesterday=أمس
-Tomorrow=غدا
-Morning=Morning
-Afternoon=Afternoon
+Yesterday=اليوم السابق
+Tomorrow=يوم غد
+Morning=صباح
+Afternoon=بعد الزوال
 Quadri=قادري
-MonthOfDay=خلال شهر من اليوم
-HourShort=حاء
-MinuteShort=mn
-Rate=سعر
-UseLocalTax=Include tax
+MonthOfDay=شهر من اليوم
+HourShort=H
+MinuteShort=مليون
+Rate=معدل
+UseLocalTax=يشمل الضرائب
 Bytes=بايت
 KiloBytes=كيلو بايت
-MegaBytes=ميغا بايت
+MegaBytes=ميغابايت
 GigaBytes=غيغا بايت
 TeraBytes=تيرابايت
 b=ب.
-Kb=كيلو بايت
+Kb=كيلوبايت
 Mb=ميغابايت
-Gb=غيغابايت
+Gb=جيجابايت
 Tb=مرض السل
-Cut=قص
-Copy=نسخة
+Cut=قطع
+Copy=نسخ
 Paste=لصق
 Default=افتراضي
 DefaultValue=القيمة الافتراضية
 DefaultGlobalValue=القيمة العالمية
-Price=الأسعار
+Price=السعر
 UnitPrice=سعر الوحدة
 UnitPriceHT=سعر الوحدة (صافي)
 UnitPriceTTC=سعر الوحدة
-PriceU=ارتفاع
-PriceUHT=ارتفاع (صافي)
-SupplierProposalUHT=U.P. net Requested
-PriceUTTC=U.P. (inc. tax)
-Amount=مبلغ
-AmountInvoice=مبلغ الفاتورة
-AmountPayment=دفع مبلغ
+PriceU=إلى أعلى
+PriceUHT=UP (صافي)
+SupplierProposalUHT=شبكة UP مطلوب
+PriceUTTC=UP (شركة الضريبة)
+Amount=كمية
+AmountInvoice=قيمة الفاتورة
+AmountPayment=مبلغ الدفع
 AmountHTShort=مبلغ (صافي)
-AmountTTCShort=المبلغ (شركة الضريبية)
-AmountHT=المبلغ (صافي الضرائب)
-AmountTTC=المبلغ (شركة الضريبية)
-AmountVAT=مبلغ الضريبة على القيمة المضافة
-AmountLT1=Amount tax 2
-AmountLT2=Amount tax 3
-AmountLT1ES=كمية الطاقة المتجددة
-AmountLT2ES=مبلغ IRPF
-AmountTotal=المبلغ الإجمالي
-AmountAverage=متوسط المبلغ
-PriceQtyHT=سعر هذه الكمية (بعد خصم الضريبة)
-PriceQtyMinHT=سعر الكمية دقائق. (بعد خصم الضريبة)
-PriceQtyTTC=ثمن هذه الكمية (شركة الضرائب)
-PriceQtyMinTTC=سعر الكمية دقائق. (شركة الضرائب)
-Percentage=ةعومجملاو
-Total=المجموع
-SubTotal=المجموع الفرعي
+AmountTTCShort=المبلغ (المؤتمر الوطني العراقي. الضريبية)
+AmountHT=المبلغ (صافية من الضرائب)
+AmountTTC=المبلغ (المؤتمر الوطني العراقي. الضريبية)
+AmountVAT=مبلغ الضريبة
+AmountLT1=مبلغ الضريبة 2
+AmountLT2=مبلغ الضريبة 3
+AmountLT1ES=كمية RE
+AmountLT2ES=كمية IRPF
+AmountTotal=الكمية الكلية
+AmountAverage=متوسط ​​كمية
+PriceQtyHT=سعر هذه الكمية (صافية من الضرائب)
+PriceQtyMinHT=دقيقة سعر الكمية. (صافية من الضرائب)
+PriceQtyTTC=سعر هذه الكمية (شركة الضريبة)
+PriceQtyMinTTC=دقيقة سعر الكمية. (المؤتمر الوطني العراقي. من الضرائب)
+Percentage=نسبة مئوية
+Total=الإجمالي الكلي
+SubTotal=حاصل الجمع
 TotalHTShort=المجموع (الصافي)
-TotalTTCShort=المجموع (شركة الضريبية)
-TotalHT=المجموع (الصافي للضريبة)
-TotalHTforthispage=Total (net of tax) for this page
-TotalTTC=المجموع (شركة الضريبية)
-TotalTTCToYourCredit=المجموع (شركة الضريبية) الائتمان الخاصة بك
-TotalVAT=مجموع الضريبة على القيمة المضافة
-TotalLT1=Total tax 2
-TotalLT2=Total tax 3
-TotalLT1ES=مجموع الطاقة المتجددة
+TotalTTCShort=إجمالي (شركة الضريبة)
+TotalHT=مجموع (صافي الضريبة)
+TotalHTforthispage=مجموع (صافي الضريبة) لهذه الصفحة
+TotalTTC=إجمالي (شركة الضريبة)
+TotalTTCToYourCredit=الإجمالي (المؤتمر الوطني العراقي. الضريبية) لالائتمان الخاصة بك
+TotalVAT=مجموع الضرائب
+TotalLT1=مجموع الضرائب 2
+TotalLT2=مجموع الضرائب 3
+TotalLT1ES=مجموع RE
 TotalLT2ES=مجموع IRPF
-IncludedVAT=وتشمل الضريبة على القيمة المضافة
-HT=بعد خصم الضرائب
-TTC=شركة ضريبة على القيمة المضافة
-VAT=ضريبة القيمة المضافة
-VATs=Sales taxes
-LT1ES=تعاود
+IncludedVAT=وشملت الضرائب
+HT=صافي من الضريبة
+TTC=شركة الضرائب
+VAT=ضريبة المبيعات
+VATs=ضرائب المبيعات
+LT1ES=RE
 LT2ES=IRPF
-VATRate=سعر الضريبة على القيمة المضافة
+VATRate=معدل الضريبة
 Average=متوسط
-Sum=وخلاصة القول
-Delta=الدلتا
+Sum=مجموع
+Delta=دلتا
 Module=وحدة
-Option=الخيار
+Option=خيار
 List=قائمة
 FullList=القائمة الكاملة
-Statistics=احصاءات
-OtherStatistics=آخر الإحصاءات
-Status=حالة
-Favorite=Favorite
-ShortInfo=Info.
+Statistics=إحصائيات
+OtherStatistics=الإحصاءات الأخرى
+Status=الحالة
+Favorite=المفضل
+ShortInfo=معلومات.
 Ref=المرجع.
-ExternalRef=Ref. extern
+ExternalRef=المرجع. خارجي
 RefSupplier=المرجع. المورد
-RefPayment=المرجع. الدفع
+RefPayment=المرجع. دفع
 CommercialProposalsShort=مقترحات تجارية
 Comment=التعليق
 Comments=تعليقات
-ActionsToDo=الإجراءات للقيام
-ActionsDone=إجراءات عمله
-ActionsToDoShort=القيام
-ActionsRunningshort=بدأت
-ActionsDoneShort=فعل
-ActionNotApplicable=لا ينطبق
-ActionRunningNotStarted=لم تبدأ
-ActionRunningShort=بدأت
-ActionDoneShort=انتهى
+ActionsToDo=الأحداث للقيام
+ActionsDone=أحداث القيام به
+ActionsToDoShort=لكى يفعل
+ActionsRunningshort=بدأ
+ActionsDoneShort=انتهيت
+ActionNotApplicable=غير قابل للتطبيق
+ActionRunningNotStarted=لبدء
+ActionRunningShort=بدأ
+ActionDoneShort=تم الانتهاء من
 ActionUncomplete=Uncomplete
-CompanyFoundation=الشركة / المؤسسة
+CompanyFoundation=شركة / مؤسسة
 ContactsForCompany=اتصالات لهذا الطرف الثالث
-ContactsAddressesForCompany=Contacts/addresses for this third party
-AddressesForCompany=Addresses for this third party
-ActionsOnCompany=الأعمال حول هذا الطرف الثالث
-ActionsOnMember=أحداث حول هذا العضو
-NActions=ق ٪ الإجراءات
-NActionsLate=ق ٪ في وقت متأخر
-RequestAlreadyDone=Request already recorded
+ContactsAddressesForCompany=اتصالات / عناوين لهذا الطرف الثالث
+AddressesForCompany=عناوين لهذا الطرف الثالث
+ActionsOnCompany=الأحداث حول هذا الطرف الثالث
+ActionsOnMember=الأحداث عن هذا العضو
+NActions=%s events
+NActionsLate=%s late
+RequestAlreadyDone=طلب المسجل بالفعل
 Filter=فلتر
 FilterOnInto=Search criteria '<strong>%s</strong>' into fields %s
 RemoveFilter=إزالة فلتر
-ChartGenerated=رسم ولدت
-ChartNotGenerated=رسم لم تولد
-GeneratedOn=بناء على المستندات ٪
-Generate=تولد
-Duration=المدة
+ChartGenerated=الرسم البياني المتولدة
+ChartNotGenerated=الرسم البياني لم تولد
+GeneratedOn=Build on %s
+Generate=توليد
+Duration=المدة الزمنية
 TotalDuration=المدة الإجمالية
-Summary=موجز
-MyBookmarks=مؤشراتي
-OtherInformationsBoxes=معلومات أخرى صناديق
-DolibarrBoard=مجلس Dolibarr
-DolibarrStateBoard=احصاءات
-DolibarrWorkBoard=مهام عمل المجلس
+Summary=ملخص
+MyBookmarks=المواقع المفضلة
+OtherInformationsBoxes=صناديق غيرها من المعلومات
+DolibarrBoard=Dolibarr مجلس
+DolibarrStateBoard=إحصائيات
+DolibarrWorkBoard=مهام العمل متنها
 Available=متاح
 NotYetAvailable=لم تتوفر بعد
-NotAvailable=غير متاحة
+NotAvailable=غير متوفر
 Popularity=شعبية
-Categories=Tags/categories
-Category=Tag/category
+Categories=الكلمات / فئات
+Category=العلامة / فئة
 By=بواسطة
-From=من
+From=من عند
 to=إلى
 and=و
 or=أو
-Other=أخرى
+Other=الآخر
 Others=آخرون
-OtherInformations=معلومات أخرى
-Quantity=الكمية
+OtherInformations=المعلومات الأخرى
+Quantity=كمية
 Qty=الكمية
-ChangedBy=تغيير
-ApprovedBy=Approved by
-ApprovedBy2=Approved by (second approval)
-Approved=Approved
-Refused=Refused
-ReCalculate=Recalculate
-ResultOk=النجاح
+ChangedBy=تغيير من قبل
+ApprovedBy=التي وافقت عليها
+ApprovedBy2=التي وافقت عليها (موافقة الثانية)
+Approved=وافق
+Refused=رفض
+ReCalculate=حساب
+ResultOk=نجاح
 ResultKo=فشل
-Reporting=الإبلاغ
-Reportings=الإبلاغ
+Reporting=التقارير
+Reportings=التقارير
 Draft=مسودة
-Drafts=المسودات
-Validated=صادق
-Opened=Open
+Drafts=الداما
+Validated=التحقق من صحة
+Opened=فتح
 New=جديد
-Discount=الخصم
+Discount=تخفيض السعر
 Unknown=غير معروف
-General=العامة
+General=جنرال لواء
 Size=حجم
-Received=وردت
+Received=تم الاستلام
 Paid=دفع
-Topic=Subject
-ByCompanies=الشركات
+Topic=الموضوع
+ByCompanies=من قبل أطراف ثالثة
 ByUsers=من قبل المستخدمين
 Links=الروابط
-Link=رابط
-Receipts=إيصالات
-Rejects=وترفض
+Link=حلقة الوصل
+Receipts=المبالغ المستلمة
+Rejects=ترفض
 Preview=معاينة
 NextStep=الخطوة التالية
-PreviousStep=الخطوة السابقة
-Datas=Datas
-None=بلا
-NoneF=بلا
+PreviousStep=خطوة سابقة
+Datas=البيانات
+None=لا شيء
+NoneF=لا شيء
 Late=متأخر
 Photo=صورة
 Photos=الصور
-AddPhoto=إضافة صورة
+AddPhoto=إضافة الصورة
 Login=تسجيل الدخول
-CurrentLogin=ادخل الحالي
-January=كانون الثاني / يناير
-February=شباط / فبراير
-March=آذار / مارس
-April=نيسان / أبريل
-May=ربما
-June=حزيران / يونيو
-July=تموز / يوليو
-August=آب / أغسطس
-September=أيلول / سبتمبر
-October=تشرين الأول / أكتوبر
-November=تشرين الثاني / نوفمبر
-December=كانون الأول / ديسمبر
+CurrentLogin=تسجيل الدخول الحالي
+January=كانون الثاني
+February=شهر فبراير
+March=مارس، يسير، يتقدم
+April=أبريل
+May=قد
+June=حزيران
+July=يوليو
+August=أغسطس
+September=سبتمبر
+October=تشرين اول
+November=تشرين الثاني
+December=ديسمبر
 JanuaryMin=يناير
 FebruaryMin=فبراير
 MarchMin=مارس
@@ -482,23 +486,23 @@ SeptemberMin=سبتمبر
 OctoberMin=أكتوبر
 NovemberMin=نوفمبر
 DecemberMin=ديسمبر
-Month01=كانون الثاني / يناير
-Month02=فبراير
-Month03=مارس
-Month04=نيسان / أبريل
-Month05=ربما
-Month06=يونيو
+Month01=كانون الثاني
+Month02=شهر فبراير
+Month03=مارس، يسير، يتقدم
+Month04=أبريل
+Month05=قد
+Month06=حزيران
 Month07=يوليو
-Month08=آب / أغسطس
+Month08=أغسطس
 Month09=سبتمبر
-Month10=أكتوبر
-Month11=تشرين الثاني / نوفمبر
-Month12=كانون الأول / ديسمبر
+Month10=تشرين اول
+Month11=تشرين الثاني
+Month12=ديسمبر
 MonthShort01=يناير
 MonthShort02=فبراير
 MonthShort03=مارس
 MonthShort04=أبريل
-MonthShort05=ربما
+MonthShort05=قد
 MonthShort06=يونيو
 MonthShort07=يوليو
 MonthShort08=أغسطس
@@ -506,11 +510,11 @@ MonthShort09=سبتمبر
 MonthShort10=أكتوبر
 MonthShort11=نوفمبر
 MonthShort12=ديسمبر
-AttachedFiles=الملفات والوثائق المرفقة
+AttachedFiles=الملفات والمستندات المرفقة
 FileTransferComplete=تم تحميل الملف بنجاح
-DateFormatYYYYMM=سنة ملم
-DateFormatYYYYMMDD=سنة ملم - دال
-DateFormatYYYYMMDDHHMM=سنة ملم بين سمو دال : س.
+DateFormatYYYYMM=YYYY-MM
+DateFormatYYYYMMDD=YYYY-MM-DD
+DateFormatYYYYMMDDHHMM=YYYY-MM-DD HH: SS
 ReportName=اسم التقرير
 ReportPeriod=فترة التقرير
 ReportDescription=وصف
@@ -518,14 +522,14 @@ Report=تقرير
 Keyword=الفحص السنوي clé
 Legend=أسطورة
 FillTownFromZip=شغل البلدة من الرمز البريدي
-Fill=Fill
-Reset=Reset
+Fill=تعبئة
+Reset=إعادة تعيين
 ShowLog=وتظهر الدخول
 File=ملف
 Files=ملفات
 NotAllowed=غير مسموح
 ReadPermissionNotAllowed=إذن لا يسمح للقراءة
-AmountInCurrency=المبلغ بالعملة ق ٪
+AmountInCurrency=Amount in %s currency
 Example=مثال
 Examples=أمثلة
 NoExample=على سبيل المثال لا
@@ -534,14 +538,14 @@ NbOfThirdParties=عدد من الأطراف الثالثة
 NbOfCustomers=عدد من العملاء
 NbOfLines=عدد الخطوط
 NbOfObjects=عدد الأجسام
-NbOfReferers=Number of referrers
-Referers=Refering objects
+NbOfReferers=عدد المشيرين
+Referers=اشارة الأجسام
 TotalQuantity=الكمية الإجمالية
-DateFromTo=ل٪ من ق ق ٪
-DateFrom=من ق ٪
-DateUntil=حتى ق ٪
+DateFromTo=From %s to %s
+DateFrom=From %s
+DateUntil=Until %s
 Check=فحص
-Uncheck=Uncheck
+Uncheck=قم بإلغاء التحديد
 Internal=الداخلية
 External=الخارجية
 Internals=الداخلية
@@ -579,9 +583,9 @@ SendByMail=أرسل عن طريق البريد الالكتروني
 MailSentBy=البريد الإلكتروني التي بعث بها
 TextUsedInTheMessageBody=هيئة البريد الإلكتروني
 SendAcknowledgementByMail=ارسال Ack. عن طريق البريد الإلكتروني
-EMail=E-mail
+EMail=البريد الإلكتروني
 NoEMail=أي بريد إلكتروني
-NoMobilePhone=No mobile phone
+NoMobilePhone=لا هاتف المحمول
 Owner=مالك
 DetectedVersion=اكتشاف نسخة
 FollowingConstantsWillBeSubstituted=الثوابت التالية ستكون بديلا المقابلة القيمة.
@@ -595,7 +599,7 @@ RecordsModified=%s records modified
 AutomaticCode=مدونة الآلي
 NotManaged=لم يفلح
 FeatureDisabled=سمة المعوقين
-MoveBox=تحرك المربع ٪ ق
+MoveBox=Move box %s
 Offered=عرض
 NotEnoughPermissions=ليس لديك إذن لهذا العمل
 SessionName=اسم الدورة
@@ -607,7 +611,8 @@ TotalWoman=المجموع
 TotalMan=المجموع
 NeverReceived=لم يتلق
 Canceled=ألغى
-YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanChangeValuesForThisListFromDictionarySetup=يمكنك تغيير قيم هذه القائمة من إعداد القائمة - القاموس
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=لون
 Documents=ربط الملفات
 DocumentsNb=ملفات مرتبطة (%s)
@@ -618,11 +623,11 @@ MenuECM=وثائق
 MenuAWStats=AWStats
 MenuMembers=أعضاء
 MenuAgendaGoogle=جوجل جدول الأعمال
-ThisLimitIsDefinedInSetup=Dolibarr الحد (القائمة المنزل الإعداد للأمن) : ٪ ق كيلو بايت ، PHP الحد : ٪ ق كيلو بايت
+ThisLimitIsDefinedInSetup= 
 NoFileFound=لا الوثائق المحفوظة في هذا المجلد
 CurrentUserLanguage=الصيغة الحالية
 CurrentTheme=الموضوع الحالي
-CurrentMenuManager=Current menu manager
+CurrentMenuManager=مدير القائمة الحالي
 DisabledModules=والمعوقين وحدات
 For=لأجل
 ForCustomer=الزبون
@@ -636,13 +641,13 @@ Notes=وتلاحظ
 AddNewLine=إضافة خط جديد
 AddFile=إضافة ملف
 ListOfFiles=قائمة الملفات المتوفرة
-FreeZone=Free entry
-FreeLineOfType=Free entry of type
+FreeZone=الدخول مجانا
+FreeLineOfType=دخول مجاني من نوع
 CloneMainAttributes=استنساخ وجوه مع السمات الرئيسية
 PDFMerge=دمج الشعبي
 Merge=دمج
 PrintContentArea=وتظهر الصفحة الرئيسية لطباعة ناحية المحتوى
-MenuManager=Menu manager
+MenuManager=مدير القائمة
 NoMenu=لا القائمة الفرعية
 WarningYouAreInMaintenanceMode=انذار ، كنت في وضع الصيانة ، <b>%s</b> الدخول فقط بحيث يتم السماح لاستخدام التطبيق في الوقت الراهن.
 CoreErrorTitle=نظام خطأ
@@ -672,9 +677,9 @@ NewAttribute=جديد السمة
 AttributeCode=السمة رمز
 OptionalFieldsSetup=اضافية سمات الإعداد
 URLPhoto=للتسجيل من الصورة / الشعار
-SetLinkToAnotherThirdParty=Link to another third party
-CreateDraft=خلق مشروع
-SetToDraft=Back to draft
+SetLinkToAnotherThirdParty=تصل إلى طرف ثالث آخر
+CreateDraft=إنشاء مشروع
+SetToDraft=العودة إلى مشروع
 ClickToEdit=انقر للتحرير
 ObjectDeleted=%s الكائن المحذوف
 ByCountry=حسب البلد
@@ -685,47 +690,48 @@ ByYear=بحلول العام
 ByMonth=من قبل شهر
 ByDay=بعد يوم
 BySalesRepresentative=بواسطة مندوب مبيعات
-LinkedToSpecificUsers=Linked to a particular user contact
-DeleteAFile=Delete a file
-ConfirmDeleteAFile=Are you sure you want to delete file
-NoResults=No results
-SystemTools=System tools
-ModulesSystemTools=Modules tools
-Test=Test
-Element=Element
-NoPhotoYet=No pictures available yet
-HomeDashboard=Home summary
-Deductible=Deductible
-from=from
-toward=toward
-Access=Access
-SelectAction=Select action
-HelpCopyToClipboard=Use Ctrl+C to copy to clipboard
-SaveUploadedFileWithMask=Save file on server with name "<strong>%s</strong>" (otherwise "%s")
-OriginFileName=Original filename
-SetDemandReason=Set source
-SetBankAccount=Define Bank Account
-AccountCurrency=Account Currency
-ViewPrivateNote=View notes
+LinkedToSpecificUsers=يرتبط اسم مستخدم معين
+DeleteAFile=حذف ملف
+ConfirmDeleteAFile=هل أنت متأكد أنك تريد حذف الملف
+NoResults=لا نتائج
+SystemTools=ادوات النظام
+ModulesSystemTools=أدوات حدات
+Test=اختبار
+Element=العنصر
+NoPhotoYet=أي صور متوفرة حتى الآن
+HomeDashboard=الرئيسية ملخص 
+Dashboard=Dashboard
+Deductible=خصم
+from=من عند
+toward=نحو
+Access=وصول
+SelectAction=حدد العمل
+HelpCopyToClipboard=استخدم Ctrl + C لنسخ إلى الحافظة
+SaveUploadedFileWithMask=حفظ الملف على الخادم مع اسم <strong>"%s"</strong> (otherwise "%s")
+OriginFileName=اسم الملف الأصلي
+SetDemandReason=مجموعة مصدر
+SetBankAccount=تحديد الحساب المصرفي
+AccountCurrency=عملة الحساب
+ViewPrivateNote=عرض الملاحظات
 XMoreLines=%s line(s) hidden
-PublicUrl=Public URL
-AddBox=Add box
-SelectElementAndClickRefresh=Select an element and click Refresh
+PublicUrl=URL العام
+AddBox=إضافة مربع
+SelectElementAndClickRefresh=حدد عنصر وانقر فوق تحديث
 PrintFile=Print File %s
-ShowTransaction=Show transaction on bank account
-GoIntoSetupToChangeLogo=Go into Home - Setup - Company to change logo or go into Home - Setup - Display to hide.
-Deny=Deny
-Denied=Denied
-ListOfTemplates=List of templates
-Gender=Gender
-Genderman=Man
-Genderwoman=Woman
-ViewList=List view
-Mandatory=Mandatory
-Hello=Hello
-Sincerely=Sincerely
-DeleteLine=Delete line
-ConfirmDeleteLine=Are you sure you want to delete this line ?
+ShowTransaction=عرض الصفقة على حساب مصرفي
+GoIntoSetupToChangeLogo=اذهب إلى الصفحة الرئيسية - إعداد - شركة لتغيير شعار أو الذهاب إلى الصفحة الرئيسية - إعداد - عرض للاختباء.
+Deny=رفض
+Denied=رفض
+ListOfTemplates=قائمة القوالب
+Gender=جنس
+Genderman=رجل
+Genderwoman=امرأة
+ViewList=عرض القائمة
+Mandatory=إلزامي
+Hello=أهلا
+Sincerely=بإخلاص
+DeleteLine=حذف الخط
+ConfirmDeleteLine=هل أنت متأكد أنك تريد حذف هذا الخط؟
 
 # Week day
 Monday=يوم الاثنين
@@ -756,26 +762,26 @@ ShortThursday=تي
 ShortFriday=واو
 ShortSaturday=دإ
 ShortSunday=دإ
-SelectMailModel=Select email template
-SetRef=Set ref
+SelectMailModel=قالب البريد الإلكتروني حدد
+SetRef=تعيين المرجع
 Select2ResultFoundUseArrows=
-Select2NotFound=No result found
-Select2Enter=Enter
-Select2MoreCharacters=or more characters
-Select2LoadingMoreResults=Loading more results...
-Select2SearchInProgress=Search in progress...
-SearchIntoThirdparties=Thirdparties
-SearchIntoContacts=Contacts
-SearchIntoMembers=Members
-SearchIntoUsers=Users
-SearchIntoProductsOrServices=Products or services
-SearchIntoProjects=Projects
-SearchIntoCustomerInvoices=Customer invoices
-SearchIntoSupplierInvoices=Supplier invoices
-SearchIntoCustomerOrders=Customer orders
-SearchIntoSupplierOrders=Supplier orders
-SearchIntoCustomerProposals=Customer proposals
-SearchIntoSupplierProposals=Supplier proposals
-SearchIntoInterventions=Interventions
-SearchIntoContracts=Contracts
-SearchIntoExpenseReports=Expense reports
+Select2NotFound=لا نتائج لبحثك
+Select2Enter=أدخل
+Select2MoreCharacters=أحرف أو أكثر
+Select2LoadingMoreResults=تحميل المزيد من النتائج ...
+Select2SearchInProgress=بحث في التقدم ...
+SearchIntoThirdparties=الأطراف الثالثة
+SearchIntoContacts=جهات الاتصال
+SearchIntoMembers=أعضاء
+SearchIntoUsers=المستخدمين
+SearchIntoProductsOrServices=المنتجات أو الخدمات
+SearchIntoProjects=مشاريع
+SearchIntoCustomerInvoices=فواتير العملاء
+SearchIntoSupplierInvoices=فواتير الموردين
+SearchIntoCustomerOrders=طلبات العملاء
+SearchIntoSupplierOrders=أوامر المورد
+SearchIntoCustomerProposals=مقترحات العملاء
+SearchIntoSupplierProposals=مقترحات المورد
+SearchIntoInterventions=التدخلات
+SearchIntoContracts=عقود
+SearchIntoExpenseReports=تقارير المصاريف
diff --git a/htdocs/langs/ar_SA/margins.lang b/htdocs/langs/ar_SA/margins.lang
index 736a9f575540338a5c3d838dfd75da634ac2d6c8..c5dee72b875ddca8190051983c604c17883b4ff7 100644
--- a/htdocs/langs/ar_SA/margins.lang
+++ b/htdocs/langs/ar_SA/margins.lang
@@ -1,48 +1,49 @@
 # Dolibarr language file - Source file is en_US - marges
 
-Margin=Margin
-Margins=Margins
-TotalMargin=Total Margin
-MarginOnProducts=Margin / Products
-MarginOnServices=Margin / Services
-MarginRate=Margin rate
-MarkRate=Mark rate
-DisplayMarginRates=Display margin rates
-DisplayMarkRates=Display mark rates
-InputPrice=Input price
-margin=Profit margins management
-margesSetup=Profit margins management setup
-MarginDetails=Margin details
-ProductMargins=Product margins
-CustomerMargins=Customer margins
-SalesRepresentativeMargins=Sales representative margins
-UserMargins=User margins
+Margin=هامش
+Margins=هوامش
+TotalMargin=إجمالي الهامش
+MarginOnProducts=هامش / المنتجات
+MarginOnServices=هامش / الخدمات
+MarginRate=معدل الهامش
+MarkRate=معدل علامة
+DisplayMarginRates=معدلات هامش العرض
+DisplayMarkRates=أسعار عرض علامة
+InputPrice=أسعار المدخلات
+margin=إدارة هوامش الربح
+margesSetup=هوامش الربح الإعداد إدارة
+MarginDetails=تفاصيل الهامش
+ProductMargins=هوامش المنتج
+CustomerMargins=هوامش العملاء
+SalesRepresentativeMargins=مبيعات هوامش التمثيلية
+UserMargins=هوامش المستخدم
 ProductService=المنتج أو الخدمة
-AllProducts=All products and services
-ChooseProduct/Service=Choose product or service
+AllProducts=جميع المنتجات والخدمات
+ChooseProduct/Service=اختيار المنتج أو الخدمة
 StartDate=تاريخ البدء
 EndDate=نهاية التاريخ
 Launch=يبدأ
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
-MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
-UseDiscountAsProduct=As a product
-UseDiscountAsService=As a service
-UseDiscountOnTotal=On subtotal
-MARGIN_METHODE_FOR_DISCOUNT_DETAILS=Defines if a global discount is treated as a product, a service, or only on subtotal for margin calculation.
-MARGIN_TYPE=Buying/Cost price suggested by default for margin calculation
-MargeBrute=Raw margin
-MargeNette=Net margin
-MargeType1=Margin on Best supplier price
-MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
-CostPrice=Cost price
-BuyingCost=Cost price
-UnitCharges=Unit charges
-Charges=Charges
-AgentContactType=Commercial agent contact type
-AgentContactTypeDetails=Define what contact type (linked on invoices) will be used for margin report per sale representative
-rateMustBeNumeric=Rate must be a numeric value
-markRateShouldBeLesserThan100=Mark rate should be lower than 100
-ShowMarginInfos=Show margin infos
+ForceBuyingPriceIfNull=شراء قوة السعر / التكلفة إلى سعر البيع إذا لم تحدد
+ForceBuyingPriceIfNullDetails=إن لم يكن سعر الشراء / تكلفة محددة، وهذا الخيار "ON"، سوف يكون هامش الصفر على خط (شراء / تكلفة سعر = سعر البيع)، وإلا ("OFF")، زبدة نباتية سوف يكون مساويا لالافتراضية المقترحة.
+MARGIN_METHODE_FOR_DISCOUNT=طريقة هامش للحصول على تخفيضات عالمية
+UseDiscountAsProduct=كمنتج
+UseDiscountAsService=كخدمة
+UseDiscountOnTotal=على المجموع الفرعي
+MARGIN_METHODE_FOR_DISCOUNT_DETAILS=يحدد إذا يتم التعامل مع الخصم العالمي كمنتج أو خدمة، أو فقط على المجموع الفرعي لحساب الهامش.
+MARGIN_TYPE=شراء / سعر التكلفة اقترح افتراضيا لحساب الهامش
+MargeBrute=هامش الخام
+MargeNette=هامش صافي
+MargeType1=هامش على أفضل سعر المورد
+MargeType2=هامش على المتوسط ​​المرجح لسعر (WAP)
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
+CostPrice=سعر الكلفة
+BuyingCost=سعر الكلفة
+UnitCharges=رسوم حدة
+Charges=الرسوم
+AgentContactType=وكيل تجاري نوع الاتصال
+AgentContactTypeDetails=سوف تحدد ما نوع (مرتبط على الفواتير) الاتصال أن تستخدم لتقرير هامش لكل ممثل بيع
+rateMustBeNumeric=سعر يجب أن تكون قيمة رقمية
+markRateShouldBeLesserThan100=وينبغي أن يكون معدل علامة أقل من 100
+ShowMarginInfos=عرض بقية المقال الهامش
diff --git a/htdocs/langs/ar_SA/members.lang b/htdocs/langs/ar_SA/members.lang
index 3e1be05b84ffb32fa5cc2ee4813aa94e576df7e5..aaadc8223e7c84b97978457fe008f3a5492422c0 100644
--- a/htdocs/langs/ar_SA/members.lang
+++ b/htdocs/langs/ar_SA/members.lang
@@ -8,7 +8,7 @@ Members=أعضاء
 MemberAccount=دخول الأعضاء
 ShowMember=وتظهر بطاقة عضو
 UserNotLinkedToMember=المستخدم لا ترتبط عضو
-ThirdpartyNotLinkedToMember=Third-party not linked to a member
+ThirdpartyNotLinkedToMember=طرف ثالث لا علاقة لعضو
 MembersTickets=أعضاء التذاكر
 FundationMembers=أعضاء المؤسسة
 Attributs=الصفات
@@ -85,7 +85,7 @@ SubscriptionLateShort=متأخر
 SubscriptionNotReceivedShort=لم يتلق
 ListOfSubscriptions=قائمة الاشتراكات
 SendCardByMail=أرسل بطاقة
-AddMember=Create member
+AddMember=إنشاء عضو
 NoTypeDefinedGoToSetup=لا يجوز لأي عضو في أنواع محددة. الذهاب إلى الإعداد -- أنواع الأعضاء
 NewMemberType=عضو جديد من نوع
 WelcomeEMail=مرحبا بك في البريد الإلكتروني
@@ -124,12 +124,12 @@ Int=Int
 DateAndTime=التاريخ والوقت
 PublicMemberCard=عضو بطاقة العامة
 MemberNotOrNoMoreExpectedToSubscribe=أو ليست عضوا في أي أكثر من المتوقع للاكتتاب
-AddSubscription=Create subscription
+AddSubscription=إنشاء الاشتراك
 ShowSubscription=وتظهر اكتتاب
 MemberModifiedInDolibarr=عضو في تعديل Dolibarr
 SendAnEMailToMember=البريد الإلكتروني لإرسال معلومات العضو
-DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Subject of the e-mail received in case of auto-inscription of a guest
-DescADHERENT_AUTOREGISTER_NOTIF_MAIL=E-mail received in case of auto-inscription of a guest
+DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=موضوع البريد الإلكتروني وردت في حالة لصناعة السيارات في نقش أحد النزلاء
+DescADHERENT_AUTOREGISTER_NOTIF_MAIL=البريد الإلكتروني وردت في حالة لصناعة السيارات في نقش أحد النزلاء
 DescADHERENT_AUTOREGISTER_MAIL_SUBJECT=بريد إلكتروني الموضوع لautosubscription الأعضاء
 DescADHERENT_AUTOREGISTER_MAIL=البريد الإلكتروني لعضو autosubscription
 DescADHERENT_MAIL_VALID_SUBJECT=البريد الإلكتروني لعضو في موضوع المصادقة
@@ -140,7 +140,7 @@ DescADHERENT_MAIL_RESIL_SUBJECT=موضوع البريد الإلكتروني ل
 DescADHERENT_MAIL_RESIL=البريد الإلكتروني لعضو resiliation
 DescADHERENT_MAIL_FROM=البريد الإلكتروني للمرسل البريد الإلكتروني التلقائي
 DescADHERENT_ETIQUETTE_TYPE=علامات الشكل
-DescADHERENT_ETIQUETTE_TEXT=Text printed on member address sheets
+DescADHERENT_ETIQUETTE_TEXT=النص المطبوع على أوراق عنوان الأعضاء
 DescADHERENT_CARD_TYPE=شكل بطاقات صفحة
 DescADHERENT_CARD_HEADER_TEXT=نص مطبوع على رأس عضو البطاقات
 DescADHERENT_CARD_TEXT=نص مطبوع على بطاقات الأعضاء
@@ -154,7 +154,7 @@ NoThirdPartyAssociatedToMember=لم يرتبط بها من طرف ثالث له
 ThirdPartyDolibarr=Dolibarr طرف ثالث
 MembersAndSubscriptions= وأعضاء Subscriptions
 MoreActions=تكميلية العمل على تسجيل
-MoreActionsOnSubscription=Complementary action, suggested by default when recording a subscription
+MoreActionsOnSubscription=الإجراءات التكميلية، اقترح افتراضيا عند تسجيل الاشتراك
 MoreActionBankDirect=إنشاء سجل المعاملات مباشرة على حساب
 MoreActionBankViaInvoice=إنشاء الفاتورة والدفع على حساب
 MoreActionInvoiceOnly=إنشاء فاتورة مع دفع أي مبلغ
@@ -169,8 +169,8 @@ LastSubscriptionAmount=آخر مبلغ الاشتراك
 MembersStatisticsByCountries=أعضاء إحصاءات حسب البلد
 MembersStatisticsByState=أعضاء إحصاءات الولاية / المقاطعة
 MembersStatisticsByTown=أعضاء إحصاءات بلدة
-MembersStatisticsByRegion=Members statistics by region
-MemberByRegion=Members by region
+MembersStatisticsByRegion=إحصائيات الأعضاء حسب المنطقة
+MemberByRegion=الأعضاء حسب المنطقة
 NbOfMembers=عدد الأعضاء
 NoValidatedMemberYet=العثور على أي أعضاء التحقق من صحة
 MembersByCountryDesc=هذه الشاشة تظهر لك إحصاءات عن أعضاء من الدول. لكن الرسم يعتمد على خدمة غوغل الرسم البياني على الإنترنت ويتوفر فقط إذا كان على اتصال بالإنترنت ويعمل.
@@ -196,11 +196,11 @@ Collectivités=المنظمات
 Particuliers=الشخصية
 Entreprises=الشركات
 DOLIBARRFOUNDATION_PAYMENT_FORM=أن يسدد الاشتراك باستخدام حوالة مصرفية، راجع صفحة <a target="_blank" href="http://wiki.dolibarr.org/index.php/Subscribe#To_subscribe_making_a_bank_transfer">http://wiki.dolibarr.org/index.php/Subscribe</a> . <br> الدفع باستخدام بطاقة ائتمان أو باي بال، وانقر على زر في أسفل هذه الصفحة. <br>
-ByProperties=By characteristics
-MembersStatisticsByProperties=Members statistics by characteristics
-MembersByNature=This screen show you statistics on members by nature.
-MembersByRegion=This screen show you statistics on members by region.
-VATToUseForSubscriptions=VAT rate to use for subscriptions
-NoVatOnSubscription=No TVA for subscriptions
-MEMBER_PAYONLINE_SENDEMAIL=Email to warn when Dolibarr receive a confirmation of a validated payment for subscription
-ADHERENT_PRODUCT_ID_FOR_SUBSCRIPTIONS=Product used for subscription line into invoice: %s
+ByProperties=حسب الخصائص
+MembersStatisticsByProperties=إحصائيات الأعضاء حسب الخصائص
+MembersByNature=هذه الشاشة تظهر لك إحصاءات عن أعضاء من الطبيعة.
+MembersByRegion=هذه الشاشة تظهر لك إحصاءات عن أعضاء حسب المنطقة.
+VATToUseForSubscriptions=معدل ضريبة القيمة المضافة لاستخدامه في اشتراكات
+NoVatOnSubscription=لا TVA للاشتراكات
+MEMBER_PAYONLINE_SENDEMAIL=البريد الإلكتروني للتحذير عندما Dolibarr تتلقى تأكيدا لدفع التحقق من صحتها للاكتتاب
+ADHERENT_PRODUCT_ID_FOR_SUBSCRIPTIONS=المنتج يستخدم لخط الاشتراك في فاتورة و:٪ الصورة
diff --git a/htdocs/langs/ar_SA/oauth.lang b/htdocs/langs/ar_SA/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..b55f9f5329907d0f2eea014423312969b8825aa9 100644
--- a/htdocs/langs/ar_SA/oauth.lang
+++ b/htdocs/langs/ar_SA/oauth.lang
@@ -1,14 +1,14 @@
 # Dolibarr language file - Source file is en_US - oauth
-ConfigOAuth=Oauth Configuration
-NoAccessToken=No access token saved into local database
-HasAccessToken=A token was generated and saved into local database
-NewTokenStored=Token received ans saved
-ToCheckDeleteTokenOnProvider=To check/delete authorization saved by %s OAuth provider
-TokenDeleted=Token deleted
-RequestAccess=Click here to request/renew access and receive a new token to save
-DeleteAccess=Click here to delete token
-UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
-OAUTH_GOOGLE_NAME=Api Google
-OAUTH_GOOGLE_ID=Api Google Id
-OAUTH_GOOGLE_SECRET=Api Google Secret
+ConfigOAuth=تكوين أوث
+NoAccessToken=لا رمز وصول حفظها في قاعدة البيانات المحلية
+HasAccessToken=تم إنشاء رمز مميز وحفظها في قاعدة البيانات المحلية
+NewTokenStored=الجواب تلقى رمزية حفظ
+ToCheckDeleteTokenOnProvider=للتحقق / حذف إذن هي التي انقذت%s مزود أوث
+TokenDeleted=حذف رمز
+RequestAccess=انقر هنا لطلب / تجديد الوصول والحصول على رمز جديد لإنقاذ
+DeleteAccess=انقر هنا لحذف رمز
+UseTheFollowingUrlAsRedirectURI=استخدام URL التالية باعتبارها إعادة توجيه URI عند إنشاء الاعتماد الخاص على مزود أوث الخاص بك:
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
+OAUTH_GOOGLE_NAME=جوجل API
+OAUTH_GOOGLE_ID=جوجل API معرف
+OAUTH_GOOGLE_SECRET=جوجل API السرية
diff --git a/htdocs/langs/ar_SA/opensurvey.lang b/htdocs/langs/ar_SA/opensurvey.lang
index 7d27651338e9f4ab5e89ef4894a6e3e54b6e2b63..07fe5f88c521196a02a7c835507cf625dfbbfbae 100644
--- a/htdocs/langs/ar_SA/opensurvey.lang
+++ b/htdocs/langs/ar_SA/opensurvey.lang
@@ -1,66 +1,66 @@
 # Dolibarr language file - Source file is en_US - opensurvey
-# Survey=Poll
-# Surveys=Polls
-# OrganizeYourMeetingEasily=Organize your meetings and polls easily. First select type of poll...
-# NewSurvey=New poll
-# NoSurveysInDatabase=%s poll(s) into database.
-# OpenSurveyArea=Polls area
-# AddACommentForPoll=You can add a comment into poll...
-# AddComment=Add comment
-# CreatePoll=Create poll
-# PollTitle=Poll title
-# ToReceiveEMailForEachVote=Receive an email for each vote
-# TypeDate=Type date
-# TypeClassic=Type standard
-# OpenSurveyStep2=Select your dates amoung the free days (grey). The selected days are green. You can unselect a day previously selected by clicking again on it
-# RemoveAllDays=Remove all days
-# CopyHoursOfFirstDay=Copy hours of first day
-# RemoveAllHours=Remove all hours
-# SelectedDays=Selected days
-# TheBestChoice=The best choice currently is
-# TheBestChoices=The best choices currently are
-# with=with
-# OpenSurveyHowTo=If you agree to vote in this poll, you have to give your name, choose the values that fit best for you and validate with the plus button at the end of the line.
-# CommentsOfVoters=Comments of voters
-# ConfirmRemovalOfPoll=Are you sure you want to remove this poll (and all votes)
-# RemovePoll=Remove poll
-# UrlForSurvey=URL to communicate to get a direct access to poll
-# PollOnChoice=You are creating a poll to make a multi-choice for a poll. First enter all possible choices for your poll:
-# CreateSurveyDate=Create a date poll
-# CreateSurveyStandard=Create a standard poll
-# CheckBox=Simple checkbox
-# YesNoList=List (empty/yes/no)
-# PourContreList=List (empty/for/against)
-# AddNewColumn=Add new column
-# TitleChoice=Choice label
-# ExportSpreadsheet=Export result spreadsheet
+Survey=تصويت
+Surveys=استطلاعات الرأي
+OrganizeYourMeetingEasily=تنظيم لقاءات واستطلاعات الرأي الخاصة بك بسهولة. أولا تحديد نوع استطلاع ...
+NewSurvey=استطلاع جديد
+NoSurveysInDatabase=استطلاع%s (ق) في قاعدة البيانات.
+OpenSurveyArea=منطقة استطلاعات الرأي
+AddACommentForPoll=يمكنك إضافة تعليق إلى استطلاع ...
+AddComment=أضف تعليق
+CreatePoll=إنشاء الإستطلاع
+PollTitle=عنوان الإستطلاع
+ToReceiveEMailForEachVote=تتلقى رسالة بريد إلكتروني لكل صوت
+TypeDate=تاريخ نوع
+TypeClassic=نوع القياسية
+OpenSurveyStep2=تحديد التواريخ amoung الأيام مجانية (الرمادي). في الأيام المحددة هي الخضراء. يمكنك إلغاء تحديد اليوم المحدد مسبقا من خلال النقر مرة أخرى على ذلك
+RemoveAllDays=إزالة جميع أيام
+CopyHoursOfFirstDay=نسخة ساعات من اليوم الأول
+RemoveAllHours=إزالة كل ساعة
+SelectedDays=أيام محددة
+TheBestChoice=الخيار الأفضل حاليا
+TheBestChoices=أفضل الخيارات حاليا
+with=مع
+OpenSurveyHowTo=إذا كنت توافق على التصويت في هذا الاستطلاع، لديك لإعطاء اسمك، واختيار القيم التي تناسب أفضل بالنسبة لك وتحقق مع زر زائد في نهاية السطر.
+CommentsOfVoters=تعليقات الناخبين
+ConfirmRemovalOfPoll=هل أنت متأكد أنك تريد إزالة هذا الإستطلاع (وجميع الأصوات)
+RemovePoll=إزالة الإستطلاع
+UrlForSurvey=URL للاتصال للحصول على الوصول المباشر إلى استطلاع
+PollOnChoice=إنك لعلى إنشاء استطلاع لجعل متعددة الاختيار للاستطلاع. أولا إدخال جميع الخيارات الممكنة لاستطلاع الرأي الخاص بك:
+CreateSurveyDate=إنشاء إستطلاع التاريخ
+CreateSurveyStandard=إنشاء استطلاع القياسية
+CheckBox=مربع بسيط
+YesNoList=قائمة (فارغ / نعم / لا)
+PourContreList=قائمة (فارغ / ل/ ضد)
+AddNewColumn=إضافة عمود جديد
+TitleChoice=تسمية الاختيار
+ExportSpreadsheet=نتيجة تصدير جدول
 ExpireDate=الحد من التاريخ
-# NbOfSurveys=Number of polls
-# NbOfVoters=Nb of voters
-# SurveyResults=Results
-# PollAdminDesc=You are allowed to change all vote lines of this poll with button "Edit". You can, as well, remove a column or a line with %s. You can also add a new column with %s.
-# 5MoreChoices=5 more choices
-# Abstention=Abstention
-# Against=Against
-# YouAreInivitedToVote=You are invited to vote for this poll
-# VoteNameAlreadyExists=This name was already used for this poll
-# ErrorPollDoesNotExists=Error, poll <strong>%s</strong> does not exists.
-# OpenSurveyNothingToSetup=There is no specific setup to do.
-# PollWillExpire=Your poll will expire automatically <strong>%s</strong> days after the last date of your poll.
-# AddADate=Add a date
-# AddStartHour=Add start hour
-# AddEndHour=Add end hour
-# votes=vote(s)
-# NoCommentYet=No comments have been posted for this poll yet
-# CanEditVotes=Can change vote of others
-# CanComment=Voters can comment in the poll
-# CanSeeOthersVote=Voters can see other people's vote
-# SelectDayDesc=For each selected day, you can choose, or not, meeting hours in the following format :<br>- empty,<br>- "8h", "8H" or "8:00" to give a meeting's start hour,<br>- "8-11", "8h-11h", "8H-11H" or "8:00-11:00" to give a meeting's start and end hour,<br>- "8h15-11h15", "8H15-11H15" or "8:15-11:15" for the same thing but with minutes.
-# BackToCurrentMonth=Back to current month
-# ErrorOpenSurveyFillFirstSection=You haven't filled the first section of the poll creation
-# ErrorOpenSurveyOneChoice=Enter at least one choice
-# ErrorOpenSurveyDateFormat=Date must have the format YYYY-MM-DD
-# ErrorInsertingComment=There was an error while inserting your comment
-# MoreChoices=Enter more choices for the voters
-# SurveyExpiredInfo=The voting time of this poll has expired.
-# EmailSomeoneVoted=%s has filled a line.\nYou can find your poll at the link: \n%s
+NbOfSurveys=عدد من استطلاعات الرأي
+NbOfVoters=ملحوظة الناخبين
+SurveyResults=النتائج
+PollAdminDesc=يسمح لك بتغيير جميع خطوط التصويت على هذا الاستطلاع مع زر "تحرير". يمكنك، أيضا، إزالة عمود أو خط مع٪ الصورة. يمكنك أيضا إضافة عمود جديد مع٪ الصورة.
+5MoreChoices=5 المزيد من الخيارات
+Abstention=امتناع
+Against=ضد
+YouAreInivitedToVote=أنت مدعو للتصويت لصالح هذا الإستطلاع
+VoteNameAlreadyExists=وقد استخدم هذا الاسم بالفعل في هذا الاستطلاع
+ErrorPollDoesNotExists=خطأ، لا يوجد <strong>استطلاع٪ الصورة.</strong>
+OpenSurveyNothingToSetup=ليس هناك الإعداد معينة للقيام به.
+PollWillExpire=واستطلاع الرأي الخاص بك تنتهي <strong>تلقائيا٪ الصورة</strong> يوما بعد آخر موعد لاستطلاع الرأي الخاص بك.
+AddADate=إضافة التاريخ
+AddStartHour=إضافة البداية ساعة
+AddEndHour=إضافة نهاية ساعة
+votes=التصويت (ق)
+NoCommentYet=لم يتم نشر تعليقات لهذا الاستطلاع حتى الآن
+CanEditVotes=يمكن تغيير صوت الآخرين
+CanComment=يمكن للناخبين التعليق في استطلاع
+CanSeeOthersVote=يمكن للناخبين التصويت يرى الآخرين
+SelectDayDesc=عن كل يوم المحدد، يمكنك اختيار، أو لم يكن كذلك، لقاء ساعات في الشكل التالي: <br> - فارغة، <br> - "8H"، "8H" أو "08:00" لإعطاء انطلاقة ساعة في الاجتماع، <br> - "11/08"، "8H-11H"، "8H-11H" أو "8: 00-11: 00" لإعطاء البداية والنهاية ساعة في الاجتماع، <br> - "8h15-11h15"، "8H15-11H15" أو "8: 15-11: 15" لنفس الشيء ولكن مع دقائق.
+BackToCurrentMonth=العودة إلى الشهر الحالي
+ErrorOpenSurveyFillFirstSection=هل لا شغل في القسم الأول من إنشاء الإستطلاع
+ErrorOpenSurveyOneChoice=أدخل خيار واحد على الأقل
+ErrorOpenSurveyDateFormat=يجب أن يكون تاريخ شكل YYYY-MM-DD
+ErrorInsertingComment=كان هناك خطأ أثناء إدخال تعليقك
+MoreChoices=إدخال المزيد من الخيارات للناخبين
+SurveyExpiredInfo=انتهت صلاحية فترة التصويت في هذا الاستطلاع.
+EmailSomeoneVoted=قد ملأت%s خط. يمكنك العثور على استطلاع الرأي الخاص بك على الرابط:٪ الصورة
diff --git a/htdocs/langs/ar_SA/orders.lang b/htdocs/langs/ar_SA/orders.lang
index bd535031c262afa1f012891a72d21c38582c4f94..3e25da97039d89a3f532d2408a34ad887a47e255 100644
--- a/htdocs/langs/ar_SA/orders.lang
+++ b/htdocs/langs/ar_SA/orders.lang
@@ -2,7 +2,7 @@
 OrdersArea=أوامر منطقة العملاء
 SuppliersOrdersArea=الموردين أوامر المنطقة
 OrderCard=من أجل بطاقة
-OrderId=Order Id
+OrderId=رقم التعريف الخاص بالطلب
 Order=ترتيب
 Orders=أوامر
 OrderLine=من أجل خط
@@ -16,78 +16,78 @@ SupplierOrder=من أجل المورد
 SuppliersOrders=الموردين أوامر
 SuppliersOrdersRunning=الحالية الموردين أوامر
 CustomerOrder=عملاء النظام
-CustomersOrders=Customer orders
-CustomersOrdersRunning=Current customer orders
-CustomersOrdersAndOrdersLines=Customer orders and order lines
-OrdersToValid=Customer orders to validate
-OrdersToBill=Customer orders delivered
-OrdersInProcess=Customer orders in process
-OrdersToProcess=Customer orders to process
-SuppliersOrdersToProcess=Supplier orders to process
+CustomersOrders=طلبات العملاء
+CustomersOrdersRunning=أوامر العملاء الحالية
+CustomersOrdersAndOrdersLines=طلبات العملاء وخطوط أجل
+OrdersToValid=طلبات العملاء للتحقق من صحة
+OrdersToBill=تسليم أوامر العملاء
+OrdersInProcess=طلبات العملاء في عملية
+OrdersToProcess=طلبات العملاء لمعالجة
+SuppliersOrdersToProcess=أوامر المورد لمعالجة
 StatusOrderCanceledShort=ألغى
 StatusOrderDraftShort=مسودة
 StatusOrderValidatedShort=صادق
 StatusOrderSentShort=في عملية
-StatusOrderSent=Shipment in process
-StatusOrderOnProcessShort=Ordered
+StatusOrderSent=شحنة في عملية
+StatusOrderOnProcessShort=أمر
 StatusOrderProcessedShort=تجهيز
-StatusOrderDelivered=Delivered
+StatusOrderDelivered=تم التوصيل
 StatusOrderToBillShort=على مشروع قانون
 StatusOrderToBill2Short=على مشروع قانون
 StatusOrderApprovedShort=وافق
 StatusOrderRefusedShort=رفض
-StatusOrderBilledShort=Billed
+StatusOrderBilledShort=المنقار
 StatusOrderToProcessShort=لعملية
 StatusOrderReceivedPartiallyShort=تلقى جزئيا
 StatusOrderReceivedAllShort=وتلقى كل شيء
 StatusOrderCanceled=ألغى
 StatusOrderDraft=مشروع (لا بد من التحقق من صحة)
 StatusOrderValidated=صادق
-StatusOrderOnProcess=Ordered - Standby reception
-StatusOrderOnProcessWithValidation=Ordered - Standby reception or validation
+StatusOrderOnProcess=أمر - استقبال الاستعداد
+StatusOrderOnProcessWithValidation=أمر - استقبال الاستعداد أو التحقق من صحة
 StatusOrderProcessed=تجهيز
 StatusOrderToBill=على مشروع قانون
 StatusOrderToBill2=على مشروع قانون
 StatusOrderApproved=وافق
 StatusOrderRefused=رفض
-StatusOrderBilled=Billed
+StatusOrderBilled=المنقار
 StatusOrderReceivedPartially=تلقى جزئيا
 StatusOrderReceivedAll=وتلقى كل شيء
 ShippingExist=شحنة موجود
-ProductQtyInDraft=Product quantity into draft orders
-ProductQtyInDraftOrWaitingApproved=Product quantity into draft or approved orders, not yet ordered
+ProductQtyInDraft=كمية المنتج في مشاريع المراسيم
+ProductQtyInDraftOrWaitingApproved=كمية المنتج إلى مشروع أو الأوامر المعتمدة، لا يأمر بعد
 DraftOrWaitingApproved=الموافقة على مشروع أو لم يأمر بعد
 DraftOrWaitingShipped=مشروع مصادق عليه أو لم تشحن
 MenuOrdersToBill=أوامر لمشروع قانون
-MenuOrdersToBill2=Billable orders
+MenuOrdersToBill2=أوامر للفوترة
 SearchOrder=من أجل البحث
-SearchACustomerOrder=Search a customer order
-SearchASupplierOrder=Search a supplier order
+SearchACustomerOrder=ابحث عن النظام العميل
+SearchASupplierOrder=بحث أمر المورد
 ShipProduct=سفينة المنتج
-CreateOrder=خلق أمر
+CreateOrder=إنشاء أمر
 RefuseOrder=رفض النظام
-ApproveOrder=Approve order
-Approve2Order=Approve order (second level)
+ApproveOrder=الموافقة على النظام
+Approve2Order=الموافقة على النظام (المستوى الثاني)
 ValidateOrder=من أجل التحقق من صحة
 UnvalidateOrder=Unvalidate النظام
 DeleteOrder=من أجل حذف
 CancelOrder=من أجل إلغاء
-OrderReopened= Order %s Reopened
-AddOrder=Create order
+OrderReopened= ترتيب%s إعادة فتح
+AddOrder=إنشاء النظام
 AddToMyOrders=أضف إلى أوامر
 AddToOtherOrders=إضافة إلى أوامر أخرى
-AddToDraftOrders=Add to draft order
+AddToDraftOrders=إضافة إلى مشروع النظام
 ShowOrder=وتبين من أجل
-OrdersOpened=Orders to process
-NoOpenedOrders=No open orders
-NoOtherOpenedOrders=No other open orders
-NoDraftOrders=No draft orders
-NoOrder=No Order
-NoSupplierOrder=No supplier order
+OrdersOpened=أوامر لمعالجة
+NoOpenedOrders=لا أوامر مفتوحة
+NoOtherOpenedOrders=أية أوامر أخرى مفتوحة
+NoDraftOrders=لا مشاريع المراسيم
+NoOrder=No order
+NoSupplierOrder=لا مورد طلبات
 OtherOrders=أوامر أخرى
-LastOrders=Last %s customer orders
-LastCustomerOrders=Last %s customer orders
-LastSupplierOrders=Last %s supplier orders
+LastOrders=مشاركة الصورة٪ طلبات العملاء
+LastCustomerOrders=مشاركة الصورة٪ طلبات العملاء
+LastSupplierOrders=مشاركة الصورة٪ أوامر المورد
 LastModifiedOrders=آخر تعديل أوامر ق ٪
 LastClosedOrders=٪ ق الماضي أوامر مغلقة
 AllOrders=جميع أوامر
@@ -95,7 +95,7 @@ NbOfOrders=عدد الأوامر
 OrdersStatistics=أوامر إحصاءات
 OrdersStatisticsSuppliers=المورد أوامر إحصاءات
 NumberOfOrdersByMonth=عدد أوامر الشهر
-AmountOfOrdersByMonthHT=Amount of orders by month (net of tax)
+AmountOfOrdersByMonthHT=كمية أوامر من شهر (صافية من الضرائب)
 ListOfOrders=قائمة الأوامر
 CloseOrder=وثيق من أجل
 ConfirmCloseOrder=هل أنت متأكد من أجل اقفال هذا؟ مرة واحدة أمر قد انتهى ، فإنه لا يمكن إلا أن يكون فواتير.
@@ -106,14 +106,14 @@ ConfirmUnvalidateOrder=هل أنت متأكد أنك تريد استعادة <b>
 ConfirmCancelOrder=هل أنت متأكد من أنك تريد إلغاء هذا النظام؟
 ConfirmMakeOrder=هل أنت متأكد من أن يؤكد لك هذا النظام على <b>٪ ق؟</b>
 GenerateBill=توليد الفاتورة
-ClassifyShipped=Classify delivered
+ClassifyShipped=تصنيف تسليمها
 ClassifyBilled=تصنيف "فواتير"
 ComptaCard=بطاقة المحاسبة
 DraftOrders=مشروع أوامر
-DraftSuppliersOrders=Draft suppliers orders
+DraftSuppliersOrders=أوامر مشروع الموردين
 RelatedOrders=الأوامر ذات الصلة
-RelatedCustomerOrders=Related customer orders
-RelatedSupplierOrders=Related supplier orders
+RelatedCustomerOrders=طلبات العملاء ذات صلة
+RelatedSupplierOrders=أوامر المورد ذات صلة
 OnProcessOrders=على عملية أوامر
 RefOrder=المرجع. ترتيب
 RefCustomerOrder=المرجع. عملاء النظام
@@ -130,8 +130,8 @@ PaymentOrderRef=من أجل دفع ق ٪
 CloneOrder=استنساخ النظام
 ConfirmCloneOrder=هل أنت متأكد من أن هذا الأمر استنساخ <b>٪ ق؟</b>
 DispatchSupplierOrder=%s استقبال النظام مورد
-FirstApprovalAlreadyDone=First approval already done
-SecondApprovalAlreadyDone=Second approval already done
+FirstApprovalAlreadyDone=الموافقة الأولى فعلت
+SecondApprovalAlreadyDone=الموافقة الثانية فعلت
 ##### Types de contacts #####
 TypeContact_commande_internal_SALESREPFOLL=ممثل العميل متابعة النظام
 TypeContact_commande_internal_SHIPPING=ممثل الشحن متابعة
@@ -148,7 +148,7 @@ Error_COMMANDE_SUPPLIER_ADDON_NotDefined=لم تعرف COMMANDE_SUPPLIER_ADDON 
 Error_COMMANDE_ADDON_NotDefined=لم تعرف COMMANDE_ADDON مستمر
 Error_FailedToLoad_COMMANDE_SUPPLIER_ADDON_File=لم يتم تحميل الملف وحدة '٪ ق'
 Error_FailedToLoad_COMMANDE_ADDON_File=لم يتم تحميل الملف وحدة '٪ ق'
-Error_OrderNotChecked=No orders to invoice selected
+Error_OrderNotChecked=لا أوامر إلى فاتورة مختارة
 # Sources
 OrderSource0=اقتراح التجارية
 OrderSource1=الإنترنت
@@ -162,19 +162,19 @@ AddDeliveryCostLine=تضاف تكلفة توصيل خط يبين الوزن من
 # Documents models
 PDFEinsteinDescription=من أجل نموذج كامل (logo...)
 PDFEdisonDescription=نموذج النظام بسيطة
-PDFProformaDescription=A complete proforma invoice (logo…)
+PDFProformaDescription=فاتورة أولية كاملة (شعار ...)
 # Orders modes
 OrderByMail=بريد
 OrderByFax=الفاكس
 OrderByEMail=بريد إلكتروني
 OrderByWWW=على الانترنت
 OrderByPhone=هاتف
-CreateInvoiceForThisCustomer=Bill orders
-NoOrdersToInvoice=No orders billable
-CloseProcessedOrdersAutomatically=Classify "Processed" all selected orders.
-OrderCreation=Order creation
-Ordered=Ordered
-OrderCreated=Your orders have been created
-OrderFail=An error happened during your orders creation
-CreateOrders=Create orders
-ToBillSeveralOrderSelectCustomer=To create an invoice for several orders, click first onto customer, then choose "%s".
+CreateInvoiceForThisCustomer=أوامر بيل
+NoOrdersToInvoice=لا أوامر فوترة
+CloseProcessedOrdersAutomatically=تصنيف "المصنعة" جميع أوامر المحدد.
+OrderCreation=إنشاء ترتيب
+Ordered=أمر
+OrderCreated=وقد تم إنشاء طلباتكم
+OrderFail=حدث خطأ أثناء إنشاء طلباتكم
+CreateOrders=إنشاء أوامر
+ToBillSeveralOrderSelectCustomer=لإنشاء فاتورة لعدة أوامر، انقر أولا على العملاء، ثم اختر "٪ الصورة".
diff --git a/htdocs/langs/ar_SA/other.lang b/htdocs/langs/ar_SA/other.lang
index 7b4d06fdde859ae3eab0557691b39fddcb0eb8d2..50bc483567990bdd966b775b0096fcab839c93eb 100644
--- a/htdocs/langs/ar_SA/other.lang
+++ b/htdocs/langs/ar_SA/other.lang
@@ -9,64 +9,64 @@ DateToBirth=تاريخ الميلاد
 BirthdayAlertOn= عيد ميلاد النشطة في حالة تأهب
 BirthdayAlertOff= عيد الميلاد فى حالة تأهب الخاملة
 Notify_FICHINTER_VALIDATE=تدخل المصادق
-Notify_FICHINTER_SENTBYMAIL=Intervention sent by mail
+Notify_FICHINTER_SENTBYMAIL=تدخل ترسل عن طريق البريد
 Notify_ORDER_VALIDATE=التحقق من صحة النظام العميل
 Notify_ORDER_SENTBYMAIL=النظام العميل ترسل عن طريق البريد
 Notify_ORDER_SUPPLIER_SENTBYMAIL=النظام مزود ترسل عن طريق البريد
-Notify_ORDER_SUPPLIER_VALIDATE=Supplier order recorded
+Notify_ORDER_SUPPLIER_VALIDATE=أجل المورد تسجيل
 Notify_ORDER_SUPPLIER_APPROVE=من أجل الموافقة على المورد
 Notify_ORDER_SUPPLIER_REFUSE=من أجل رفض الموردين
 Notify_PROPAL_VALIDATE=التحقق من صحة اقتراح العملاء
-Notify_PROPAL_CLOSE_SIGNED=Customer propal closed signed
-Notify_PROPAL_CLOSE_REFUSED=Customer propal closed refused
+Notify_PROPAL_CLOSE_SIGNED=propal العملاء مغلقة وقع
+Notify_PROPAL_CLOSE_REFUSED=propal العملاء مغلقة رفض
 Notify_PROPAL_SENTBYMAIL=اقتراح التجارية المرسلة عن طريق البريد
 Notify_WITHDRAW_TRANSMIT=انتقال انسحاب
 Notify_WITHDRAW_CREDIT=انسحاب الائتمان
 Notify_WITHDRAW_EMIT=Isue انسحاب
-Notify_COMPANY_CREATE=طرف ثالث خلق
-Notify_COMPANY_SENTBYMAIL=Mails sent from third party card
+Notify_COMPANY_CREATE=طرف ثالث إنشاء
+Notify_COMPANY_SENTBYMAIL=الرسائل المرسلة من بطاقة طرف ثالث
 Notify_BILL_VALIDATE=فاتورة مصادق
-Notify_BILL_UNVALIDATE=Customer invoice unvalidated
+Notify_BILL_UNVALIDATE=فاتورة العميل unvalidated
 Notify_BILL_PAYED=دفعت فاتورة العميل
 Notify_BILL_CANCEL=فاتورة الزبون إلغاء
 Notify_BILL_SENTBYMAIL=فاتورة الزبون إرسالها عن طريق البريد
 Notify_BILL_SUPPLIER_VALIDATE=فاتورة المورد المصادق
 Notify_BILL_SUPPLIER_PAYED=دفعت فاتورة المورد
 Notify_BILL_SUPPLIER_SENTBYMAIL=فاتورة المورد ترسل عن طريق البريد
-Notify_BILL_SUPPLIER_CANCELED=Supplier invoice cancelled
+Notify_BILL_SUPPLIER_CANCELED=فاتورة المورد ألغت
 Notify_CONTRACT_VALIDATE=التحقق من صحة العقد
 Notify_FICHEINTER_VALIDATE=التحقق من التدخل
 Notify_SHIPPING_VALIDATE=التحقق من صحة الشحن
 Notify_SHIPPING_SENTBYMAIL=الشحن ترسل عن طريق البريد
 Notify_MEMBER_VALIDATE=عضو مصدق
-Notify_MEMBER_MODIFY=Member modified
+Notify_MEMBER_MODIFY=تعديل الأعضاء
 Notify_MEMBER_SUBSCRIPTION=عضو المكتتب
 Notify_MEMBER_RESILIATE=عضو resiliated
 Notify_MEMBER_DELETE=عضو حذف
-Notify_PROJECT_CREATE=Project creation
-Notify_TASK_CREATE=Task created
-Notify_TASK_MODIFY=Task modified
-Notify_TASK_DELETE=Task deleted
-SeeModuleSetup=See setup of module %s
+Notify_PROJECT_CREATE=إنشاء مشروع
+Notify_TASK_CREATE=مهمة إنشاء
+Notify_TASK_MODIFY=تعديل مهمة
+Notify_TASK_DELETE=حذف المهمة
+SeeModuleSetup=انظر إعداد وحدة٪ الصورة
 NbOfAttachedFiles=عدد الملفات المرفقة / وثائق
 TotalSizeOfAttachedFiles=اجمالى حجم الملفات المرفقة / وثائق
 MaxSize=الحجم الأقصى
 AttachANewFile=إرفاق ملف جديد / وثيقة
 LinkedObject=ربط وجوه
 Miscellaneous=متفرقات
-NbOfActiveNotifications=Number of notifications (nb of recipient emails)
+NbOfActiveNotifications=عدد الإخطارات (ملحوظة من رسائل البريد الإلكتروني المستلم)
 PredefinedMailTest=هذا هو الاختبار الإلكتروني. تكون مفصولة \\ nThe سطرين من قبل حرف إرجاع.
 PredefinedMailTestHtml=هذا هو البريد <b>الاختبار</b> (الاختبار يجب أن تكون في كلمة جريئة). <br> وتفصل بين الخطين من قبل حرف إرجاع.
-PredefinedMailContentSendInvoice=__CONTACTCIVNAME__\n\nYou will find here the invoice __REF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
-PredefinedMailContentSendInvoiceReminder=__CONTACTCIVNAME__\n\nWe would like to warn you that the invoice  __REF__ seems to not being payed. So this is the invoice in attachment again, as a reminder.\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
-PredefinedMailContentSendProposal=__CONTACTCIVNAME__\n\nYou will find here the commercial proposal __PROPREF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
-PredefinedMailContentSendSupplierProposal=__CONTACTCIVNAME__\n\nYou will find here the price request __ASKREF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
-PredefinedMailContentSendOrder=__CONTACTCIVNAME__\n\nYou will find here the order __ORDERREF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
-PredefinedMailContentSendSupplierOrder=__CONTACTCIVNAME__\n\nYou will find here our order __ORDERREF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
-PredefinedMailContentSendSupplierInvoice=__CONTACTCIVNAME__\n\nYou will find here the invoice __REF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
-PredefinedMailContentSendShipping=__CONTACTCIVNAME__\n\nYou will find here the shipping __SHIPPINGREF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
-PredefinedMailContentSendFichInter=__CONTACTCIVNAME__\n\nYou will find here the intervention __FICHINTERREF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
-PredefinedMailContentThirdparty=__CONTACTCIVNAME__\n\n__PERSONALIZED__\n\n__SIGNATURE__
+PredefinedMailContentSendInvoice=__CONTACTCIVNAME__ سوف تجد هنا الفاتورة __REF__ __PERSONALIZED__Sincerely __SIGNATURE__
+PredefinedMailContentSendInvoiceReminder=__CONTACTCIVNAME__ نود أن نحذر لكم أن __REF__ فاتورة يبدو أن لا يتم سيولي. لذلك هذا هو الفاتورة في المرفق مرة أخرى، بمثابة تذكير. __PERSONALIZED__Sincerely __SIGNATURE__
+PredefinedMailContentSendProposal=__CONTACTCIVNAME__ سوف تجد هنا اقتراح التجاري __PROPREF__ __PERSONALIZED__Sincerely __SIGNATURE__
+PredefinedMailContentSendSupplierProposal=__CONTACTCIVNAME__ سوف تجد هنا طلب السعر __ASKREF__ __PERSONALIZED__Sincerely __SIGNATURE__
+PredefinedMailContentSendOrder=__CONTACTCIVNAME__ سوف تجد هنا ترتيب __ORDERREF__ __PERSONALIZED__Sincerely __SIGNATURE__
+PredefinedMailContentSendSupplierOrder=__CONTACTCIVNAME__ سوف تجد هنا نظامنا __ORDERREF__ __PERSONALIZED__Sincerely __SIGNATURE__
+PredefinedMailContentSendSupplierInvoice=__CONTACTCIVNAME__ سوف تجد هنا الفاتورة __REF__ __PERSONALIZED__Sincerely __SIGNATURE__
+PredefinedMailContentSendShipping=__CONTACTCIVNAME__ سوف تجد هنا الشحن __SHIPPINGREF__ __PERSONALIZED__Sincerely __SIGNATURE__
+PredefinedMailContentSendFichInter=__CONTACTCIVNAME__ سوف تجد هنا تدخل __FICHINTERREF__ __PERSONALIZED__Sincerely __SIGNATURE__
+PredefinedMailContentThirdparty=__CONTACTCIVNAME__ __PERSONALIZED__ __SIGNATURE__
 DemoDesc=Dolibarr الاتفاق هو تخطيط موارد المؤسسات وإدارة علاقات العملاء وتتكون من عدة وحدات وظيفية. وقال ان العرض يشمل جميع وحدات لا يعني اي شيء يحدث هذا أبدا. بذلك ، عرض عدة ملامح المتاحة.
 ChooseYourDemoProfil=اختيار عرض ملف المباراة التي أنشطتك...
 DemoFundation=أعضاء في إدارة مؤسسة
@@ -81,16 +81,16 @@ ModifiedBy=المعدلة ق ٪
 ValidatedBy=يصادق عليها ق ٪
 CanceledBy=ألغى به ق ٪
 ClosedBy=أغلقت ٪ ق
-CreatedById=User id who created
-ModifiedById=User id who made last change
-ValidatedById=User id who validated
-CanceledById=User id who canceled
-ClosedById=User id who closed
-CreatedByLogin=User login who created
-ModifiedByLogin=User login who made last change
-ValidatedByLogin=User login who validated
-CanceledByLogin=User login who canceled
-ClosedByLogin=User login who closed
+CreatedById=هوية المستخدم الذي إنشاء
+ModifiedById=هوية المستخدم الذي جعل التغيير الأخير
+ValidatedById=هوية المستخدم الذي التحقق من صحة
+CanceledById=هوية المستخدم الذي ألغى
+ClosedById=هوية المستخدم الذي أغلق
+CreatedByLogin=تسجيل دخول المستخدم الذي إنشاء
+ModifiedByLogin=تسجيل دخول المستخدم الذي جعل التغيير الأخير
+ValidatedByLogin=تسجيل دخول المستخدم الذي التحقق من صحة
+CanceledByLogin=تسجيل دخول المستخدم الذي ألغى
+ClosedByLogin=تسجيل دخول المستخدم الذي أغلق
 FileWasRemoved=تم حذف الملف
 DirWasRemoved=دليل أزيل
 FeatureNotYetAvailableShort=متاحة في الإصدار التالي
@@ -120,20 +120,20 @@ LengthUnitdm=مارك ألماني
 LengthUnitcm=الطول
 LengthUnitmm=مم
 Surface=منطقة
-SurfaceUnitm2=m²
+SurfaceUnitm2=متر مربع
 SurfaceUnitdm2=dm²
-SurfaceUnitcm2=cm²
-SurfaceUnitmm2=mm²
-SurfaceUnitfoot2=ft²
+SurfaceUnitcm2=سم ²
+SurfaceUnitmm2=مم ²
+SurfaceUnitfoot2=قدم مربع
 SurfaceUnitinch2=in²
 Volume=حجم
 TotalVolume=الحجم الإجمالي
-VolumeUnitm3=m³
+VolumeUnitm3=متر مكعب
 VolumeUnitdm3=dm³ (L)
-VolumeUnitcm3=cm³ (ml)
-VolumeUnitmm3=mm³ (µl)
+VolumeUnitcm3=سم مكعب (مل)
+VolumeUnitmm3=mm³ (ميكرولتر)
 VolumeUnitfoot3=ft³
-VolumeUnitinch3=in³
+VolumeUnitinch3=في بوابة
 VolumeUnitounce=أوقية
 VolumeUnitlitre=لتر
 VolumeUnitgallon=غالون
@@ -143,7 +143,7 @@ SizeUnitcm=سم
 SizeUnitmm=مم
 SizeUnitinch=بوصة
 SizeUnitfoot=قدم
-SizeUnitpoint=point
+SizeUnitpoint=نقطة
 BugTracker=علة تعقب
 SendNewPasswordDesc=هذا الشكل يتيح لك طلب كلمة مرور جديدة. سيكون من إرسالها إلى عنوان البريد الإلكتروني الخاص بك. <br> التغيير لن تكون فعالة إلا بعد النقر على تأكيد الصلة داخل هذه الرسالة. <br> تحقق من بريدك الالكتروني القارئ البرمجيات.
 BackToLoginPage=عودة إلى صفحة تسجيل الدخول
@@ -157,23 +157,23 @@ StatsByNumberOfEntities=إحصاءات في عدد من الكيانات في ا
 NumberOfProposals=عددا من المقترحات بشأن 12 الشهر الماضي
 NumberOfCustomerOrders=عدد طلبات الزبائن على 12 في الشهر الماضي
 NumberOfCustomerInvoices=عدد من العملاء والفواتير على 12 الشهر الماضي
-NumberOfSupplierOrders=Number of supplier orders on last 12 month
+NumberOfSupplierOrders=عدد أوامر المورد في آخر 12 شهرا
 NumberOfSupplierInvoices=عدد من فواتير الموردين على 12 الشهر الماضي
 NumberOfUnitsProposals=عدد من الوحدات على مقترحات بشأن 12 الشهر الماضي
 NumberOfUnitsCustomerOrders=عدد من الوحدات على طلبات الزبائن على 12 في الشهر الماضي
 NumberOfUnitsCustomerInvoices=عدد من الوحدات على فواتير العملاء على 12 الشهر الماضي
-NumberOfUnitsSupplierOrders=Number of units on supplier orders on last 12 month
+NumberOfUnitsSupplierOrders=عدد الوحدات بناء على أوامر المورد في آخر 12 شهرا
 NumberOfUnitsSupplierInvoices=عدد من الوحدات على فواتير الموردين على 12 الشهر الماضي
 EMailTextInterventionValidated=التدخل ٪ ق المصادق
 EMailTextInvoiceValidated=فاتورة ٪ ق المصادق
 EMailTextProposalValidated=وقد تم اقتراح %s التحقق من صحة.
 EMailTextOrderValidated=وقد تم التحقق من صحة %s النظام.
 EMailTextOrderApproved=من أجل الموافقة على ق ٪
-EMailTextOrderValidatedBy=The order %s has been recorded by %s.
+EMailTextOrderValidatedBy=وقد سجلت النظام٪ s ب٪ الصورة.
 EMailTextOrderApprovedBy=من أجل ٪ ق ق ٪ وافقت عليها
 EMailTextOrderRefused=من أجل رفض ق ٪
 EMailTextOrderRefusedBy=من أجل أن ترفض ٪ ق ق ٪
-EMailTextExpeditionValidated=The shipping %s has been validated.
+EMailTextExpeditionValidated=تم التحقق من صحة%s الشحن.
 ImportedWithSet=استيراد مجموعة البيانات
 DolibarrNotification=إشعار تلقائي
 ResizeDesc=أدخل عرض جديدة <b>أو</b> ارتفاع جديد. وستبقى نسبة خلال تغيير حجم...
@@ -195,37 +195,37 @@ StartUpload=بدء التحميل
 CancelUpload=إلغاء التحميل
 FileIsTooBig=ملفات كبيرة جدا
 PleaseBePatient=يرجى التحلي بالصبر...
-RequestToResetPasswordReceived=A request to change your Dolibarr password has been received
-NewKeyIs=This is your new keys to login
-NewKeyWillBe=Your new key to login to software will be
-ClickHereToGoTo=Click here to go to %s
-YouMustClickToChange=You must however first click on the following link to validate this password change
-ForgetIfNothing=If you didn't request this change, just forget this email. Your credentials are kept safe.
-IfAmountHigherThan=If amount higher than <strong>%s</strong>
-SourcesRepository=Repository for sources
+RequestToResetPasswordReceived=وقد وردت طلب لتغيير كلمة المرور الخاصة بك Dolibarr
+NewKeyIs=هذا هو مفاتيح جديدة لتسجيل الدخول
+NewKeyWillBe=والمفتاح الجديد الخاص بك للدخول إلى برنامج يكون
+ClickHereToGoTo=انقر هنا للذهاب إلى٪ s
+YouMustClickToChange=ولكن يجب النقر فوق لأول مرة على الرابط التالي للتحقق من صحة هذا تغيير كلمة المرور
+ForgetIfNothing=إذا كنت لم تطلب هذا التغيير، أن ينسوا هذا البريد الإلكتروني. يتم الاحتفاظ بيانات الاعتماد الخاصة بك آمنة.
+IfAmountHigherThan=إذا قدر أعلى <strong>من٪ الصورة</strong>
+SourcesRepository=مستودع للمصادر
 
 ##### Calendar common #####
 AddCalendarEntry=إضافة الدخول في التقويم ق ٪
-NewCompanyToDolibarr=Company %s added
-ContractValidatedInDolibarr=Contract %s validated
-ContractCanceledInDolibarr=Contract %s canceled
-ContractClosedInDolibarr=Contract %s closed
-PropalClosedSignedInDolibarr=Proposal %s signed
-PropalClosedRefusedInDolibarr=Proposal %s refused
-PropalValidatedInDolibarr=Proposal %s validated
-PropalClassifiedBilledInDolibarr=Proposal %s classified billed
-InvoiceValidatedInDolibarr=Invoice %s validated
-InvoicePaidInDolibarr=Invoice %s changed to paid
-InvoiceCanceledInDolibarr=Invoice %s canceled
-PaymentDoneInDolibarr=Payment %s done
-CustomerPaymentDoneInDolibarr=Customer payment %s done
-SupplierPaymentDoneInDolibarr=Supplier payment %s done
-MemberValidatedInDolibarr=Member %s validated
-MemberResiliatedInDolibarr=Member %s resiliated
-MemberDeletedInDolibarr=Member %s deleted
-MemberSubscriptionAddedInDolibarr=Subscription for member %s added
-ShipmentValidatedInDolibarr=Shipment %s validated
-ShipmentDeletedInDolibarr=Shipment %s deleted
+NewCompanyToDolibarr=شركة٪ الصورة بإضافة
+ContractValidatedInDolibarr=عقد%s التأكد من صلاحيتها
+ContractCanceledInDolibarr=عقد%s إلغاء
+ContractClosedInDolibarr=عقد٪ الصورة مغلقة
+PropalClosedSignedInDolibarr=اقتراح٪ الصورة قعت
+PropalClosedRefusedInDolibarr=اقتراح%s رفض
+PropalValidatedInDolibarr=اقتراح%s التأكد من صلاحيتها
+PropalClassifiedBilledInDolibarr=اقتراح%s تصنف المنقار
+InvoiceValidatedInDolibarr=فاتورة%s التحقق من صحة
+InvoicePaidInDolibarr=تغيير فاتورة%s لدفع
+InvoiceCanceledInDolibarr=فاتورة%s إلغاء
+PaymentDoneInDolibarr=دفع٪ القيام به
+CustomerPaymentDoneInDolibarr=دفع العملاء٪ القيام به الصورة
+SupplierPaymentDoneInDolibarr=دفع المورد٪ القيام به الصورة
+MemberValidatedInDolibarr=عضو%s التأكد من صلاحيتها
+MemberResiliatedInDolibarr=عضو٪ الصورة resiliated
+MemberDeletedInDolibarr=عضو٪ الصورة حذفها
+MemberSubscriptionAddedInDolibarr=وأضاف الاشتراك لعضو٪ الصورة
+ShipmentValidatedInDolibarr=شحنة%s التأكد من صلاحيتها
+ShipmentDeletedInDolibarr=شحنة٪ الصورة حذفها
 ##### Export #####
 Export=تصدير
 ExportsArea=صادرات المنطقة
@@ -238,3 +238,8 @@ ToExport=الصادرات
 NewExport=تصديرية جديدة
 ##### External sites #####
 ExternalSites=المواقع الخارجية
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/ar_SA/paybox.lang b/htdocs/langs/ar_SA/paybox.lang
index 61759e77d97a23f5ca6a4c58c7c0a2c8d9e696b7..2f6327e0adff5ea034ec85adec9c15706d4da84a 100644
--- a/htdocs/langs/ar_SA/paybox.lang
+++ b/htdocs/langs/ar_SA/paybox.lang
@@ -31,9 +31,9 @@ VendorName=اسم البائع
 CSSUrlForPaymentForm=عزيزي ورقة النمط المغلق للنموذج الدفع
 MessageOK=رسالة على الصفحة التحقق من صحة الدفع عودة
 MessageKO=رسالة في إلغاء دفع الصفحة عودة
-NewPayboxPaymentReceived=New Paybox payment received
-NewPayboxPaymentFailed=New Paybox payment tried but failed
-PAYBOX_PAYONLINE_SENDEMAIL=EMail to warn after a payment (success or failed)
-PAYBOX_PBX_SITE=Value for PBX SITE
-PAYBOX_PBX_RANG=Value for PBX Rang
-PAYBOX_PBX_IDENTIFIANT=Value for PBX ID
+NewPayboxPaymentReceived=دفع Paybox الجديدة التي وردت
+NewPayboxPaymentFailed=دفع Paybox جديد حاول ولكنه فشل
+PAYBOX_PAYONLINE_SENDEMAIL=البريد الإلكتروني لتحذير بعد دفع (نجاح أو فشل)
+PAYBOX_PBX_SITE=قيمة PBX SITE
+PAYBOX_PBX_RANG=قيمة PBX رانج
+PAYBOX_PBX_IDENTIFIANT=قيمة PBX ID
diff --git a/htdocs/langs/ar_SA/paypal.lang b/htdocs/langs/ar_SA/paypal.lang
index 62821242571f2331c70e076482b8bceb6991fcb2..a1d2e6dc6321a973c90bbbc4520d4258964a4c9c 100644
--- a/htdocs/langs/ar_SA/paypal.lang
+++ b/htdocs/langs/ar_SA/paypal.lang
@@ -8,24 +8,25 @@ PAYPAL_API_SANDBOX=وضع الاختبار / رمل
 PAYPAL_API_USER=API المستخدم
 PAYPAL_API_PASSWORD=API كلمة السر
 PAYPAL_API_SIGNATURE=API توقيع
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=تقدم الدفع &quot;لا يتجزأ&quot; (بطاقة الائتمان + باي بال) أو &quot;باي بال&quot; فقط
-PaypalModeIntegral=Integral
-PaypalModeOnlyPaypal=PayPal only
+PaypalModeIntegral=التكامل
+PaypalModeOnlyPaypal=باي بال فقط
 PAYPAL_CSS_URL=Optionnal عنوان الموقع من ورقة أنماط CSS في صفحة الدفع
 ThisIsTransactionId=هذا هو معرف من الصفقة: <b>%s</b>
 PAYPAL_ADD_PAYMENT_URL=إضافة رابط الدفع باي بال عند إرسال مستند عبر البريد
 PAYPAL_IPN_MAIL_ADDRESS=عنوان البريد الإلكتروني للإخطار لحظة الدفع (IPN)
-PredefinedMailContentLink=You can click on the secure link below to make your payment (PayPal) if it is not already done.\n\n%s\n\n
+PredefinedMailContentLink=يمكنك النقر على الرابط أدناه آمن لجعل الدفع (باي بال) إذا لم تكن قد فعلت ذلك. ٪ الصورة
 YouAreCurrentlyInSandboxMode=أنت حاليا في وضع &quot;رمل&quot;
-NewPaypalPaymentReceived=New Paypal payment received
-NewPaypalPaymentFailed=New Paypal payment tried but failed
-PAYPAL_PAYONLINE_SENDEMAIL=EMail to warn after a payment (success or not)
-ReturnURLAfterPayment=Return URL after payment
-ValidationOfPaypalPaymentFailed=Validation of Paypal payment failed
-PaypalConfirmPaymentPageWasCalledButFailed=Payment confirmation page for Paypal was called by Paypal but confirmation failed
-SetExpressCheckoutAPICallFailed=SetExpressCheckout API call failed.
-DoExpressCheckoutPaymentAPICallFailed=DoExpressCheckoutPayment API call failed.
-DetailedErrorMessage=Detailed Error Message
-ShortErrorMessage=Short Error Message
-ErrorCode=Error Code
-ErrorSeverityCode=Error Severity Code
+NewPaypalPaymentReceived=جديد بال تلقى الدفع
+NewPaypalPaymentFailed=جديد باي بال الدفع حاول ولكنه فشل
+PAYPAL_PAYONLINE_SENDEMAIL=البريد الإلكتروني لتحذير بعد دفع (النجاح أو لا)
+ReturnURLAfterPayment=العودة URL بعد دفع
+ValidationOfPaypalPaymentFailed=التحقق من باي بال دفع فشل
+PaypalConfirmPaymentPageWasCalledButFailed=دفع صفحة تأكيد لباي بال كان يسمى من قبل باي بال ولكن فشل تأكيد
+SetExpressCheckoutAPICallFailed=فشل استدعاء API SetExpressCheckout.
+DoExpressCheckoutPaymentAPICallFailed=فشل استدعاء API DoExpressCheckoutPayment.
+DetailedErrorMessage=رسالة خطأ مفصلة
+ShortErrorMessage=رسالة خطأ قصيرة
+ErrorCode=رمز الخطأ
+ErrorSeverityCode=خطأ خطورة مدونة
diff --git a/htdocs/langs/ar_SA/printing.lang b/htdocs/langs/ar_SA/printing.lang
index a81355efe38036b77292ddb22083ff870a7d0222..2ac4b6ef9ca92b95b5eab1727d8360b603eb19da 100644
--- a/htdocs/langs/ar_SA/printing.lang
+++ b/htdocs/langs/ar_SA/printing.lang
@@ -1,76 +1,86 @@
 # Dolibarr language file - Source file is en_US - printing
-Module64000Name=Direct Printing
-Module64000Desc=Enable Direct Printing System
-PrintingSetup=Setup of Direct Printing System
-PrintingDesc=This module adds a Print button to send documents directly to a printer (without opening document into an application) with various module.
-MenuDirectPrinting=Direct Printing
-DirectPrint=Direct print
-ModuleDriverSetup=Setup Module Driver
-PrintingDriverDesc=Configuration variables for printing driver.
-ListDrivers=List of drivers
-PrintTestDesc=List of Printers.
-FileWasSentToPrinter=File %s was sent to printer
-NoActivePrintingModuleFound=No active module to print document
-PleaseSelectaDriverfromList=Please select a driver from list.
-PleaseConfigureDriverfromList=Please configure the selected driver from list.
-SetupDriver=Driver setup
-TestDriver=Test
-TargetedPrinter=Targeted printer
-UserConf=Setup per user
-PRINTGCP=Google Cloud Print
-PrintGCPDesc=This driver allow to send documents directly to a printer with Google Cloud Print.
-PrintingDriverDescprintgcp=Configuration variables for printing driver Google Cloud Print.
-PrintTestDescprintgcp=List of Printers for Google Cloud Print.
-PRINTGCP_LOGIN=Google Account Login
-PRINTGCP_PASSWORD=Google Account Password
-STATE_ONLINE=Online
-STATE_UNKNOWN=Unknown
-STATE_OFFLINE=Offline
-STATE_DORMANT=Offline for quite a while
-TYPE_GOOGLE=Google
-TYPE_HP=HP Printer
-TYPE_DOCS=DOCS
-TYPE_DRIVE=Google Drive
-TYPE_FEDEX=Fedex
-TYPE_ANDROID_CHROME_SNAPSHOT=Android
+Module64000Name=الطباعة المباشرة
+Module64000Desc=تمكين نظام الطباعة المباشرة
+PrintingSetup=إعداد نظام الطباعة المباشرة
+PrintingDesc=هذه الوحدة يضيف زر الطباعة لإرسال المستندات مباشرة إلى طابعة (بدون فتح مستند إلى التطبيق) مع وحدة مختلفة.
+MenuDirectPrinting=وظائف الطباعة المباشرة
+DirectPrint=الطباعة المباشرة
+ModuleDriverSetup=وحدة إعداد برنامج تشغيل
+PrintingDriverDesc=المتغيرات التكوين للطباعة السائق.
+ListDrivers=قائمة برامج التشغيل
+PrintTestDesc=قائمة الطابعات.
+FileWasSentToPrinter=وأرسل ملف٪ s إلى طابعة
+NoActivePrintingModuleFound=لا وحدة نشطة لطباعة المستند
+PleaseSelectaDriverfromList=يرجى تحديد برنامج تشغيل من القائمة.
+PleaseConfigureDriverfromList=يرجى تكوين برنامج التشغيل المحدد من القائمة.
+SetupDriver=إعداد برنامج التشغيل
+TestDriver=اختبار
+TargetedPrinter=طابعة المستهدفة
+UserConf=الإعداد لكل مستخدم
+PRINTGCP=جوجل الغيمة طباعة
+PRINTGCP_INFO=جوجل أوث الإعداد API
+PRINTGCP_AUTHLINK=المصادقة
+PRINTGCP_TOKEN_ACCESS=جوجل الغيمة طباعة أوث رمز
+PRINTGCP_TOKEN_REFRESH=رمزي تحميل الحاضر
+PRINTGCP_TOKEN_EXPIRED=رمز منتهي الصلاحية
+PRINTGCP_TOKEN_EXPIRE_AT=رمز تنتهي في
+PRINTGCP_DELETE_TOKEN=حذف رمز المحفوظة
+PrintGCPDesc=برنامج التشغيل هذا يسمح لإرسال المستندات مباشرة إلى طابعة مع جوجل الغيمة طباعة.
+PrintingDriverDescprintgcp=المتغيرات التكوين للسائق الطباعة في السحاب من Google طباعة.
+PrintTestDescprintgcp=قائمة طابعات جوجل الغيمة طباعة.
+PRINTGCP_LOGIN=جوجل حسابي الدخول
+PRINTGCP_PASSWORD=كلمة مرور حساب Google
+STATE_ONLINE=عبر الانترنت
+STATE_UNKNOWN=غير معروف
+STATE_OFFLINE=حاليا
+STATE_DORMANT=حاليا لفترة طويلة
+TYPE_GOOGLE=البحث على الإنترنت
+TYPE_HP=طابعة HP
+TYPE_DOCS=مستندات
+TYPE_DRIVE=محرك جوجل
+TYPE_FEDEX=فيديكس
+TYPE_ANDROID_CHROME_SNAPSHOT=الروبوت
 TYPE_IOS_CHROME_SNAPSHOT=IOS
-GCP_Name=Name
-GCP_displayName=Display Name
-GCP_Id=Printer Id
-GCP_OwnerName=Owner Name
-GCP_State=Printer State
-GCP_connectionStatus=Online State
-GCP_Type=Printer Type
-PRINTIPP=PrintIPP Driver
-PrintIPPSetup=Setup of Direct Print module
-PrintIPPDesc=This driver allow to send documents directly to a printer. It requires a Linux system with CUPS installed.
-PrintingDriverDescprintipp=Configuration variables for printing driver PrintIPP.
-PrintTestDescprintipp=List of Printers for driver PrintIPP.
-PRINTIPP_ENABLED=Show "Direct print" icon in document lists
-PRINTIPP_HOST=Print server
-PRINTIPP_PORT=Port
-PRINTIPP_USER=Login
-PRINTIPP_PASSWORD=Password
-NoPrinterFound=No printers found (check your CUPS setup)
-NoDefaultPrinterDefined=No default printer defined
-DefaultPrinter=Default printer
-Printer=Printer
-CupsServer=CUPS Server
-IPP_Uri=Printer Uri
-IPP_Name=Printer Name
-IPP_State=Printer State
-IPP_State_reason=State reason
-IPP_State_reason1=State reason1
+GCP_Name=اسم
+GCP_displayName=اسم العرض
+GCP_Id=طابعة معرف
+GCP_OwnerName=اسم المالك
+GCP_State=الدولة طابعة
+GCP_connectionStatus=الدولة عبر الإنترنت
+GCP_Type=نوع الطابعة
+PRINTIPP=PrintIPP سائق
+PrintIPPSetup=الإعداد من وحدة الطباعة المباشرة
+PrintIPPDesc=برنامج التشغيل هذا يسمح لإرسال المستندات مباشرة إلى الطابعة. فإنه يتطلب نظام لينكس مع الكؤوس مثبتة.
+PrintingDriverDescprintipp=المتغيرات التكوين للسائق الطباعة PrintIPP.
+PrintTestDescprintipp=قائمة طابعات سائق PrintIPP.
+PRINTIPP_ENABLED=مشاهدة "الطباعة المباشرة" أيقونة في قوائم الوثيقة
+PRINTIPP_HOST=ملقم الطباعة
+PRINTIPP_PORT=ميناء
+PRINTIPP_USER=تسجيل الدخول
+PRINTIPP_PASSWORD=الرمز السري
+NoPrinterFound=لا توجد طابعات (التحقق من إعداد الكؤوس الخاص بك)
+NoDefaultPrinterDefined=لا الطابعة الافتراضية المحددة
+DefaultPrinter=الطابعة الافتراضية
+Printer=طابعة
+CupsServer=خادم الكؤوس
+IPP_Uri=طابعة أوري
+IPP_Name=اسم الطابعة
+IPP_State=الدولة طابعة
+IPP_State_reason=السبب الدولة
+IPP_State_reason1=reason1 الدولة
 IPP_BW=BW
-IPP_Color=Color
-IPP_Device=Device
-IPP_Media=Printer media
-IPP_Supported=Type of media
-STATE_IPP_idle=Idle
-STATE_IPP_stopped=Stopped
-STATE_IPP_paused=Paused
-STATE_IPP_toner-low-report=Low Toner
-STATE_IPP_none=None
-MEDIA_IPP_stationery=Stationery
-MEDIA_IPP_thermal=Thermal
-IPP_COLOR_print-black=BW Printer
+IPP_Color=اللون
+IPP_Device=جهاز
+IPP_Media=وسائل الإعلام طابعة
+IPP_Supported=نوع من وسائل الإعلام
+STATE_IPP_idle=خامل
+STATE_IPP_stopped=توقفت
+STATE_IPP_paused=توقف
+STATE_IPP_toner-low-report=انخفاض الحبر
+STATE_IPP_none=لا شيء
+MEDIA_IPP_stationery=القرطاسية
+MEDIA_IPP_thermal=حراري
+IPP_COLOR_print-black=طابعة BW
+DirectPrintingJobsDesc=هذا عمل القوائم صفحة الطباعة تم العثور عليها ل الطابعات المتوفرة.
+GoogleAuthNotConfigured=الإعداد جوجل أوث لم تفعل. تمكين وحدة أوث ووضع جوجل ID / السرية.
+GoogleAuthConfigured=أوراق جوجل أوث وجدت في الإعداد وحدة أوث.
diff --git a/htdocs/langs/ar_SA/productbatch.lang b/htdocs/langs/ar_SA/productbatch.lang
index 37ceaa49b382be34c3ec4577cc01d40d91c61efe..1a37d12537212d5063cc761c94ccb52bc3a6e8ba 100644
--- a/htdocs/langs/ar_SA/productbatch.lang
+++ b/htdocs/langs/ar_SA/productbatch.lang
@@ -1,22 +1,22 @@
 # ProductBATCH language file - en_US - ProductBATCH
-ManageLotSerial=Use lot/serial number
-ProductStatusOnBatch=Yes (lot/serial required)
-ProductStatusNotOnBatch=No (lot/serial not used)
-ProductStatusOnBatchShort=Yes
-ProductStatusNotOnBatchShort=No
-Batch=Lot/Serial
-atleast1batchfield=Eat-by date or Sell-by date or Lot/Serial number
-batch_number=Lot/Serial number
-BatchNumberShort=Lot/Serial
-l_eatby=Eat-by date
-l_sellby=Sell-by date
-DetailBatchNumber=Lot/Serial details
-DetailBatchFormat=Lot/Serial: %s - Eat by: %s - Sell by: %s (Qty : %d)
-printBatch=Lot/Serial: %s
-printEatby=Eat-by: %s
-printSellby=Sell-by: %s
-printQty=Qty: %d
-AddDispatchBatchLine=Add a line for Shelf Life dispatching
-BatchDefaultNumber=Undefined
-WhenProductBatchModuleOnOptionAreForced=When module Lot/Serial is on, increase/decrease stock mode is forced to last choice and can't be edited. Other options can be defined as you want.
-ProductDoesNotUseBatchSerial=This product does not use lot/serial number
+ManageLotSerial=استخدام الكثير / الرقم التسلسلي
+ProductStatusOnBatch=نعم (الكثير / مسلسل مطلوب)
+ProductStatusNotOnBatch=رقم (الكثير / المسلسل لم تستخدم)
+ProductStatusOnBatchShort=نعم فعلا
+ProductStatusNotOnBatchShort=لا
+Batch=الكثير / المسلسل
+atleast1batchfield=أكل حسب التاريخ أو بيع حسب التاريخ أو لوط / الرقم التسلسلي
+batch_number=الكثير / الرقم التسلسلي
+BatchNumberShort=الكثير / المسلسل
+l_eatby=أكل حسب التاريخ
+l_sellby=بيع من قبل التاريخ
+DetailBatchNumber=الكثير / تفاصيل المسلسل
+DetailBatchFormat=الكثير / المسلسل:٪ ق - تناول بواسطة:٪ ق - للبيع عن طريق:٪ ق (الكمية:٪ د)
+printBatch=الكثير / التسلسلي:٪ الصورة
+printEatby=تناول الطعام عن طريق:٪ الصورة
+printSellby=بيع عن طريق:٪ الصورة
+printQty=الكمية:٪ د
+AddDispatchBatchLine=إضافة سطر لالصلاحية إيفاد
+BatchDefaultNumber=غير محدد
+WhenProductBatchModuleOnOptionAreForced=عندما وحدة لوط / المسلسل على، وزيادة / نقصان تضطر وضع الأسهم إلى الخيار الاخير ولا يمكن تحريرها. خيارات أخرى يمكن تعريفها على النحو الذي تريد.
+ProductDoesNotUseBatchSerial=هذا المنتج لا يستخدم الكثير / الرقم التسلسلي
diff --git a/htdocs/langs/ar_SA/products.lang b/htdocs/langs/ar_SA/products.lang
index 984176a490f4a26406ea0b13e1e3c4b1f6184137..f38451a72815f869ef38c216ee3453e40d352f3b 100644
--- a/htdocs/langs/ar_SA/products.lang
+++ b/htdocs/langs/ar_SA/products.lang
@@ -1,40 +1,40 @@
 # Dolibarr language file - Source file is en_US - products
 ProductRef=المرجع المنتج.
 ProductLabel=وصف المنتج
-ProductLabelTranslated=Translated product label
-ProductDescriptionTranslated=Translated product description
-ProductNoteTranslated=Translated product note
+ProductLabelTranslated=تسمية المنتج مترجمة
+ProductDescriptionTranslated=ترجم وصف المنتج
+ProductNoteTranslated=ترجم مذكرة المنتج
 ProductServiceCard=منتجات / خدمات البطاقات
 Products=المنتجات
 Services=الخدمات
 Product=المنتج
 Service=الخدمة
 ProductId=المنتجات / الخدمات معرف
-Create=خلق
+Create=إنشاء
 Reference=المرجعية
 NewProduct=منتجات جديدة
 NewService=خدمة جديدة
 ProductCode=رمز المنتج
 ServiceCode=قانون الخدمة
-ProductVatMassChange=Mass VAT change
-ProductVatMassChangeDesc=This page can be used to modify a VAT rate defined on products or services from a value to another. Warning, this change is done on all database.
-MassBarcodeInit=Mass barcode init
-MassBarcodeInitDesc=This page can be used to initialize a barcode on objects that does not have barcode defined. Check before that setup of module barcode is complete.
+ProductVatMassChange=تغيير VAT الشامل
+ProductVatMassChangeDesc=هذه الصفحة يمكن استخدامها لتعديل نسبة الضريبة على القيمة المضافة المحددة على المنتجات أو الخدمات من قيمة إلى أخرى. تحذير، ويتم هذا التغيير على كل قاعدة البيانات.
+MassBarcodeInit=الحرف الأول الباركود الشامل
+MassBarcodeInitDesc=هذه الصفحة يمكن استخدامها لتهيئة الباركود على الكائنات التي لا يكون الباركود تعريف. تحقق قبل أن الإعداد وحدة الباركود كاملة.
 ProductAccountancyBuyCode=المحاسبة الرمز (شراء)
 ProductAccountancySellCode=المحاسبة الرمز (بيع)
 ProductOrService=المنتج أو الخدمة
 ProductsAndServices=المنتجات والخدمات
 ProductsOrServices=منتجات أو خدمات
-ProductsAndServicesOnSell=Products and Services for sale or for purchase
-ProductsAndServicesNotOnSell=Products and Services not for sale
+ProductsAndServicesOnSell=المنتجات والخدمات للبيع أو للشراء
+ProductsAndServicesNotOnSell=المنتجات والخدمات ليس للبيع
 ProductsAndServicesStatistics=المنتجات والخدمات والإحصاءات
 ProductsStatistics=المنتجات إحصاءات
-ProductsOnSell=Product for sale or for purchase
-ProductsNotOnSell=Product not for sale and not for purchase
-ProductsOnSellAndOnBuy=Products for sale and for purchase
-ServicesOnSell=Services for sale or for purchase
-ServicesNotOnSell=Services not for sale
-ServicesOnSellAndOnBuy=Services for sale and for purchase
+ProductsOnSell=المنتجات للبيع أو للشراء
+ProductsNotOnSell=المنتج ليس للبيع ولا للشراء
+ProductsOnSellAndOnBuy=المنتجات للبيع والشراء
+ServicesOnSell=خدمات للبيع أو للشراء
+ServicesNotOnSell=الخدمات ليس للبيع
+ServicesOnSellAndOnBuy=خدمات للبيع والشراء
 InternalRef=إشارة الداخلية
 LastRecorded=آخر المنتجات والخدمات المسجلة على بيع
 LastRecordedProductsAndServices=٪ ق الماضي سجلت المنتجات / الخدمات
@@ -47,7 +47,7 @@ CardProduct1=بطاقة الخدمة
 CardContract=عقد بطاقة
 Warehouse=مخزن
 Warehouses=المستودعات
-WarehouseOpened=Warehouse open
+WarehouseOpened=مستودع مفتوح
 WarehouseClosed=مخزن مغلق
 Stock=الأسهم
 Stocks=الاسهم
@@ -67,33 +67,33 @@ ProductStatusNotOnBuy=عفا عليها الزمن
 ProductStatusOnBuyShort=متاح
 ProductStatusNotOnBuyShort=عفا عليها الزمن
 UpdatePrice=آخر التطورات في الأسعار
-UpdateVAT=Update vat
-UpdateDefaultPrice=Update default price
-UpdateLevelPrices=Update prices for each level
+UpdateVAT=تحديث الضريبة على القيمة المضافة
+UpdateDefaultPrice=تحديث السعر الافتراضي
+UpdateLevelPrices=أسعار التحديث لكل مستوى
 AppliedPricesFrom=تطبق الأسعار من
 SellingPrice=سعر البيع
 SellingPriceHT=سعر البيع (صافي الضرائب)
 SellingPriceTTC=سعر البيع (شركة الضريبية)
 PublicPrice=السعر العام
 CurrentPrice=السعر الحالي
-CostPriceDescription=This price (net of tax) can be used to store the average amount this product cost to your company. It may be any price you calculate yourself, for example from the average buying price plus average production and distribution cost.
-CostPriceUsage=In a future version, this value could be used for margin calculation.
+CostPriceDescription=هذا السعر (صافية من الضرائب) يمكن استخدامها لتخزين متوسط ​​كمية هذا تكلفة المنتج لشركتك. قد يكون بأي ثمن على حساب نفسك، على سبيل المثال من متوسط ​​سعر الشراء بالإضافة إلى متوسط ​​إنتاج وتوزيع التكاليف.
+CostPriceUsage=في النسخة المقبلة، ويمكن استخدام هذه القيمة لحساب الهامش.
 NewPrice=السعر الجديد
-MinPrice=Min. selling price
-MinPriceHT=Min. selling price (net of tax)
-MinPriceTTC=Min. selling price (inc. tax)
+MinPrice=دقيقة. سعر البيع
+MinPriceHT=دقيقة. سعر البيع (صافي الضريبة)
+MinPriceTTC=دقيقة. سعر البيع (شركة الضريبة)
 CantBeLessThanMinPrice=سعر البيع لا يمكن أن يكون أقل من الحد الأدنى المسموح لهذا المنتج (٪ ق بدون الضرائب)
 ContractStatus=عقد مركز
 ContractStatusClosed=مغلقة
-ContractStatusRunning=Ongoing
+ContractStatusRunning=جاري التنفيذ
 ContractStatusExpired=انتهى
-ContractStatusOnHold=On hold
-ContractStatusToRun=Make ongoing
-ContractNotRunning=This contract is not ongoing
+ContractStatusOnHold=في الانتظار
+ContractStatusToRun=جعل مستمرة
+ContractNotRunning=هذا العقد غير مستمر
 ErrorProductAlreadyExists=منتج مع الإشارة ٪ ق موجود بالفعل.
 ErrorProductBadRefOrLabel=قيمة خاطئة لإشارة أو علامة.
-ErrorProductClone=There was a problem while trying to clone the product or service.
-ErrorPriceCantBeLowerThanMinPrice=Error, price can't be lower than minimum price.
+ErrorProductClone=كان هناك مشكلة أثناء محاولة استنساخ المنتج أو الخدمة.
+ErrorPriceCantBeLowerThanMinPrice=خطأ، سعر لا يمكن أن يكون أقل من الحد الأدنى السعر.
 Suppliers=الموردين
 SupplierRef=المرجع المورد.
 ShowProduct=وتظهر المنتج
@@ -108,8 +108,8 @@ AddToOtherBills=إضافة إلى غيرها من مشاريع القوانين
 CorrectStock=تصحيح الأوراق المالية
 ListOfStockMovements=قائمة الحركات الأسهم
 BuyingPrice=سعر الشراء
-PriceForEachProduct=Products with specific prices
-NoPriceSpecificToCustomer=This customer has no specific prices. All standard prices for products/services will be used.
+PriceForEachProduct=المنتجات بأسعار محددة
+NoPriceSpecificToCustomer=هذا العميل ليس لديه أسعار محددة. وسيتم استخدام جميع الأسعار القياسية للمنتجات / الخدمات.
 SupplierCard=بطاقة المورد
 CommercialCard=بطاقة تجارية
 AllWays=الطريق إلى إيجاد منتجك في الأسهم
@@ -121,17 +121,17 @@ BarcodeType=نوع الباركود
 SetDefaultBarcodeType=حدد نوع الباركود
 BarcodeValue=قيمة الباركود
 NoteNotVisibleOnBill=علما) على الفواتير غير مرئي ، واقتراحات...)
-CreateCopy=خلق صورة
+CreateCopy=إنشاء صورة
 ServiceLimitedDuration=إذا كان المنتج هو خدمة لفترة محدودة :
-MultiPricesAbility=Several level of prices per product/service
+MultiPricesAbility=مستوى العديد من الأسعار لكل المنتجات / الخدمات
 MultiPricesNumPrices=عدد من السعر
 MultiPriceLevelsName=سعر الفئات
-AssociatedProductsAbility=Activate the package feature
-AssociatedProducts=Package product
-AssociatedProductsNumber=Number of products composing this package product
-ParentProductsNumber=Number of parent packaging product
-IfZeroItIsNotAVirtualProduct=If 0, this product is not a package product
-IfZeroItIsNotUsedByVirtualProduct=If 0, this product is not used by any package product
+AssociatedProductsAbility=تفعيل ميزة حزمة
+AssociatedProducts=المنتج حزمة
+AssociatedProductsNumber=عدد من المنتجات التي يتألف منها هذا المنتج حزمة
+ParentProductsNumber=عدد الوالد منتجات التعبئة والتغليف
+IfZeroItIsNotAVirtualProduct=إذا 0، هذا المنتج غير منتج حزمة
+IfZeroItIsNotUsedByVirtualProduct=إذا 0، لا يستخدم هذا المنتج من قبل أي منتج حزمة
 EditAssociate=المنتسبون
 Translation=الترجمة
 KeywordFilter=الكلمة الرئيسية فلتر
@@ -139,8 +139,8 @@ CategoryFilter=فئة فلتر
 ProductToAddSearch=إضافة إلى البحث عن المنتج
 AddDel=إضافة / حذف
 NoMatchFound=العثور على أي مباراة
-ProductAssociationList=List of products/services that are component of this virtual product/package
-ProductParentList=List of package products/services with this product as a component
+ProductAssociationList=قائمة المنتجات / الخدمات التي هي مكون من مكونات هذا المنتج الظاهري / حزمة
+ProductParentList=قائمة منتجات / خدمات الحزمة مع هذا المنتج كمكون
 ErrorAssociationIsFatherOfThis=واحد من اختيار المنتج الأم الحالية المنتج
 DeleteProduct=حذف المنتجات / الخدمات
 ConfirmDeleteProduct=هل أنت متأكد من حذف هذه المنتجات / الخدمات؟
@@ -159,22 +159,22 @@ NoStockForThisProduct=لا رصيد لهذا المنتج
 NoStock=اي للاسهم
 Restock=اعادة
 ProductSpecial=خاص
-QtyMin=Minimum Qty
+QtyMin=الحد الأدنى من الكمية
 PriceQty=ثمن هذه الكمية
-PriceQtyMin=Price for this min. qty (w/o discount)
-VATRateForSupplierProduct=VAT Rate (for this supplier/product)
-DiscountQtyMin=Default discount for qty
+PriceQtyMin=ثمن هذا دقيقة. الكمية (ث / س الخصم)
+VATRateForSupplierProduct=معدل ضريبة القيمة المضافة (لهذا المورد / المنتج)
+DiscountQtyMin=خصم الكمية الافتراضية ل
 NoPriceDefinedForThisSupplier=لا السعر الكمية المحددة لهذا المورد / المنتج
 NoSupplierPriceDefinedForThisProduct=لا مورد السعر الكمية المحددة لهذا المنتج
 RecordedProducts=المنتجات المسجلة
-RecordedServices=Services recorded
+RecordedServices=الخدمات المسجلة
 RecordedProductsAndServices=المنتجات / الخدمات المسجلة
-PredefinedProductsToSell=Predefined products to sell
-PredefinedServicesToSell=Predefined services to sell
-PredefinedProductsAndServicesToSell=Predefined products/services to sell
-PredefinedProductsToPurchase=Predefined product to purchase
-PredefinedServicesToPurchase=Predefined services to purchase
-PredefinedProductsAndServicesToPurchase=Predefined products/services to puchase
+PredefinedProductsToSell=منتجات محددة مسبقا للبيع
+PredefinedServicesToSell=خدمات محددة مسبقا للبيع
+PredefinedProductsAndServicesToSell=منتجات محددة مسبقا / خدمات للبيع
+PredefinedProductsToPurchase=المنتج مسبقا لشراء
+PredefinedServicesToPurchase=خدمات محددة مسبقا لشراء
+PredefinedProductsAndServicesToPurchase=منتجات محددة مسبقا / خدمات أن puchase
 GenerateThumb=يولد الإبهام
 ProductCanvasAbility=خاصة استخدام "قماش" addons
 ServiceNb=خدمة ق # ٪
@@ -187,128 +187,129 @@ CloneProduct=استنساخ المنتجات أو الخدمات
 ConfirmCloneProduct=هل أنت متأكد من أن المنتج أو الخدمة استنساخ <b>٪ ق؟</b>
 CloneContentProduct=استنساخ جميع المعلومات الرئيسية من المنتجات / الخدمات
 ClonePricesProduct=استنساخ الرئيسية معلومات والأسعار
-CloneCompositionProduct=Clone packaged product/service
+CloneCompositionProduct=استنساخ حزم المنتج / الخدمة
 ProductIsUsed=ويستخدم هذا المنتج
 NewRefForClone=المرجع. من المنتجات الجديدة / خدمة
-SellingPrices=Selling prices
-BuyingPrices=Buying prices
-CustomerPrices=Customer prices
-SuppliersPrices=Supplier prices
-SuppliersPricesOfProductsOrServices=Supplier prices (of products or services)
+SellingPrices=أسعار بيع
+BuyingPrices=شراء أسعار
+CustomerPrices=أسعار العملاء
+SuppliersPrices=أسعار المورد
+SuppliersPricesOfProductsOrServices=أسعار المورد (منتجات أو خدمات)
 CustomCode=قانون الجمارك
 CountryOrigin=بلد المنشأ
 HiddenIntoCombo=مخبأة في قوائم مختارة
 Nature=طبيعة
-ShortLabel=Short label
-Unit=Unit
-p=u.
-set=set
-se=set
-second=second
-s=s
-hour=hour
-h=h
-day=day
-d=d
-kilogram=kilogram
-kg=Kg
-gram=gram
-g=g
-meter=meter
-m=m
-linearmeter=linear meter
-lm=lm
-squaremeter=square meter
-m2=m²
-cubicmeter=cubic meter
-m3=m³
-liter=liter
+ShortLabel=التسمية قصيرة
+Unit=وحدة
+p=ش.
+set=مجموعة
+se=مجموعة
+second=الثاني
+s=الصورة
+hour=ساعة
+h=ح
+day=يوم
+d=د
+kilogram=كيلوغرام
+kg=كغ
+gram=غرام
+g=ز
+meter=متر
+m=م
+linearmeter=متر طولي
+lm=LM
+squaremeter=متر مربع
+m2=متر مربع
+cubicmeter=متر مكعب
+m3=متر مكعب
+liter=لتر
 l=L
-ProductCodeModel=Product ref template
-ServiceCodeModel=Service ref template
-AddThisProductCard=Create product card
-HelpAddThisProductCard=This option allows you to create or clone a product if it does not exist.
-AddThisServiceCard=Create service card
-HelpAddThisServiceCard=This option allows you to create or clone a service if it does not exist.
-CurrentProductPrice=Current price
-AlwaysUseNewPrice=Always use current price of product/service
-AlwaysUseFixedPrice=Use the fixed price
-PriceByQuantity=Different prices by quantity
-PriceByQuantityRange=Quantity range
-ProductsDashboard=Products/Services summary
-UpdateOriginalProductLabel=Modify original label
-HelpUpdateOriginalProductLabel=Allows to edit the name of the product
-MultipriceRules=Price level rules
-UseMultipriceRules=Use price level rules (defined into product module setup) to autocalculate prices of all other level according to first level
-PercentVariationOver=%% variation over %s
-PercentDiscountOver=%% discount over %s
+ProductCodeModel=قالب المرجع المنتج
+ServiceCodeModel=قالب المرجع الخدمة
+AddThisProductCard=إنشاء بطاقة المنتج
+HelpAddThisProductCard=يتيح لك هذا الخيار لإنشاء أو استنساخ المنتج إذا كان غير موجود.
+AddThisServiceCard=إنشاء بطاقة الخدمة
+HelpAddThisServiceCard=يتيح لك هذا الخيار لإنشاء أو استنساخ الخدمة إذا كان غير موجود.
+CurrentProductPrice=السعر الحالي
+AlwaysUseNewPrice=دائما استخدام السعر الحالي للمنتج / خدمة
+AlwaysUseFixedPrice=استخدام سعر ثابت
+PriceByQuantity=أسعار مختلفة حسب الكمية
+PriceByQuantityRange=كمية مجموعة
+ProductsDashboard=المنتجات / الخدمات ملخص
+UpdateOriginalProductLabel=تعديل التسمية الأصلية
+HelpUpdateOriginalProductLabel=يسمح لتحرير اسم المنتج
+MultipriceRules=قواعد مستوى الأسعار
+UseMultipriceRules=قواعد مستوى استخدام السعر (المعرفة في إعداد وحدة المنتج) إلى autocalculate أسعار جميع مستوى آخر وفقا لمستوى الأول
+PercentVariationOver=٪٪ الاختلاف على الصورة٪
+PercentDiscountOver=٪٪ خصم أكثر من٪ الصورة
 ### composition fabrication
-Building=Production and items dispatchment
-Build=Produce
-BuildIt=Produce & Dispatch
-BuildindListInfo=Available quantity for production per warehouse (set it to 0 for no further action)
+Building=إنتاج ومواد dispatchment
+Build=إنتاج
+BuildIt=إنتاج والإرسال
+BuildindListInfo=الكمية المتاحة للإنتاج في مستودع (تعيينها إلى 0 لاتخاذ أي إجراء آخر)
 QtyNeed=الكمية
-UnitPmp=Net unit VWAP
-CostPmpHT=Net total VWAP
-ProductUsedForBuild=Auto consumed by production
-ProductBuilded=Production completed
-ProductsMultiPrice=Product multi-price
-ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
-ProductSellByQuarterHT=Products turnover quarterly before tax
-ServiceSellByQuarterHT=Services turnover quarterly before tax
-Quarter1=1st. Quarter
-Quarter2=2nd. Quarter
-Quarter3=3rd. Quarter
-Quarter4=4th. Quarter
-BarCodePrintsheet=Print bar code
-PageToGenerateBarCodeSheets=With this tool, you can print sheets of bar code stickers. Choose format of your sticker page, type of barcode and value of barcode, then click on button <b>%s</b>.
-NumberOfStickers=Number of stickers to print on page
-PrintsheetForOneBarCode=Print several stickers for one barcode
-BuildPageToPrint=Generate page to print
-FillBarCodeTypeAndValueManually=Fill barcode type and value manually.
-FillBarCodeTypeAndValueFromProduct=Fill barcode type and value from barcode of a product.
-FillBarCodeTypeAndValueFromThirdParty=Fill barcode type and value from barcode of a thirdparty.
-DefinitionOfBarCodeForProductNotComplete=Definition of type or value of bar code not complete for product %s.
-DefinitionOfBarCodeForThirdpartyNotComplete=Definition of type or value of bar code non complete for thirdparty %s.
-BarCodeDataForProduct=Barcode information of product %s :
-BarCodeDataForThirdparty=Barcode information of thirdparty %s :
-ResetBarcodeForAllRecords=Define barcode value for all records (this will also reset barcode value already defined with new values)
-PriceByCustomer=Different price for each customer
-PriceCatalogue=Unique price per product/service
-PricingRule=Rules for customer prices
-AddCustomerPrice=Add price by customer
-ForceUpdateChildPriceSoc=Set same price on customer subsidiaries
-PriceByCustomerLog=Log of previous customer prices
-MinimumPriceLimit=Minimum price can't be lower then %s
-MinimumRecommendedPrice=Minimum recommended price is : %s
-PriceExpressionEditor=Price expression editor
-PriceExpressionSelected=Selected price expression
-PriceExpressionEditorHelp1="price = 2 + 2" or "2 + 2" for setting the price. Use ; to separate expressions
-PriceExpressionEditorHelp2=You can access ExtraFields with variables like <b>#extrafield_myextrafieldkey#</b> and global variables with <b>#global_mycode#</b>
-PriceExpressionEditorHelp3=In both product/service and supplier prices there are these variables available:<br><b>#tva_tx# #localtax1_tx# #localtax2_tx# #weight# #length# #surface# #price_min#</b>
-PriceExpressionEditorHelp4=In product/service price only: <b>#supplier_min_price#</b><br>In supplier prices only: <b>#supplier_quantity# and #supplier_tva_tx#</b>
-PriceExpressionEditorHelp5=Available global values:
-PriceMode=Price mode
-PriceNumeric=Number
-DefaultPrice=Default price
-ComposedProductIncDecStock=Increase/Decrease stock on parent change
-ComposedProduct=Sub-product
-MinSupplierPrice=Minimum supplier price
-DynamicPriceConfiguration=Dynamic price configuration
-GlobalVariables=Global variables
-GlobalVariableUpdaters=Global variable updaters
-GlobalVariableUpdaterType0=JSON data
-GlobalVariableUpdaterHelp0=Parses JSON data from specified URL, VALUE specifies the location of relevant value,
-GlobalVariableUpdaterHelpFormat0=format is {"URL": "http://example.com/urlofjson", "VALUE": "array1,array2,targetvalue"}
-GlobalVariableUpdaterType1=WebService data
-GlobalVariableUpdaterHelp1=Parses WebService data from specified URL, NS specifies the namespace, VALUE specifies the location of relevant value, DATA should contain the data to send and METHOD is the calling WS method
-GlobalVariableUpdaterHelpFormat1=format is {"URL": "http://example.com/urlofws", "VALUE": "array,targetvalue", "NS": "http://example.com/urlofns", "METHOD": "myWSMethod", "DATA": {"your": "data, "to": "send"}}
-UpdateInterval=Update interval (minutes)
-LastUpdated=Last updated
-CorrectlyUpdated=Correctly updated
-PropalMergePdfProductActualFile=Files use to add into PDF Azur are/is
-PropalMergePdfProductChooseFile=Select PDF files
-IncludingProductWithTag=Including product/service with tag
-DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
-WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+UnitPmp=صافي وحدة VWAP
+CostPmpHT=صافي VWAP الكلي
+ProductUsedForBuild=السيارات التي يستهلكها الإنتاج
+ProductBuilded=أكملت إنتاج
+ProductsMultiPrice=Products and prices for each price level
+ProductsOrServiceMultiPrice=أسعار العملاء (منتجات أو خدمات، أسعار متعددة)
+ProductSellByQuarterHT=منتجات دوران الفصلية قبل الضرائب
+ServiceSellByQuarterHT=خدمات دوران الفصلية قبل الضرائب
+Quarter1=1. ربع
+Quarter2=2. ربع
+Quarter3=3. ربع
+Quarter4=4. ربع
+BarCodePrintsheet=طباعة قانون نقابة المحامين
+PageToGenerateBarCodeSheets=مع هذه الأداة، يمكنك طباعة ورقة من الملصقات الرمز الشريطي. اختيار شكل الصفحة ملصقا، ونوع الباركود وقيمة الباركود، ثم انقر على <b>زر٪ الصورة.</b>
+NumberOfStickers=عدد من الملصقات للطباعة على الصفحة
+PrintsheetForOneBarCode=طباعة عدة ملصقات لالباركود واحد
+BuildPageToPrint=توليد الصفحة لطباعة
+FillBarCodeTypeAndValueManually=ملء نوع الباركود والقيمة يدويا.
+FillBarCodeTypeAndValueFromProduct=ملء نوع الباركود وقيمة من الباركود للمنتج.
+FillBarCodeTypeAndValueFromThirdParty=ملء نوع الباركود وقيمة من الباركود لمرشحين عن.
+DefinitionOfBarCodeForProductNotComplete=تعريف نوع أو قيمة الرمز الشريطي يست كاملة للمنتج٪ الصورة.
+DefinitionOfBarCodeForThirdpartyNotComplete=تعريف نوع أو قيمة الرمز الشريطي غير كامل للمرشحين عن٪ الصورة.
+BarCodeDataForProduct=معلومات الباركود من الناتج٪ الصورة:
+BarCodeDataForThirdparty=معلومات الباركود من مرشحين عن٪ الصورة:
+ResetBarcodeForAllRecords=تحديد قيمة الباركود لكافة السجلات (هذه القيمة الباركود سيتم إعادة تعيين أيضا يعرف بالفعل مع القيم الجديدة)
+PriceByCustomer=سعر مختلف لكل عميل
+PriceCatalogue=سعر فريدة من نوعها لكل منتج / خدمة
+PricingRule=قواعد لاجل اسعارها العملاء
+AddCustomerPrice=إضافة السعر من قبل العملاء
+ForceUpdateChildPriceSoc=تعيين نفس السعر على الشركات التابعة العملاء
+PriceByCustomerLog=سجل الأسعار العملاء السابقة
+MinimumPriceLimit=سعر الحد الأدنى لا يمكن أن يكون أقل ثم٪ الصورة
+MinimumRecommendedPrice=سعر الحد الأدنى الموصى به هو:٪ الصورة
+PriceExpressionEditor=محرر السعر التعبير
+PriceExpressionSelected=اختيار التعبير السعر
+PriceExpressionEditorHelp1="السعر = 2 + 2" أو "2 + 2" لتحديد السعر. استخدام ؛ لفصل التعبيرات
+PriceExpressionEditorHelp2=يمكنك الوصول إلى ExtraFields مع المتغيرات <b>مثل</b> # <b># extrafield_myextrafieldkey</b> والمتغيرات العالمية مع <b># global_mycode #</b>
+PriceExpressionEditorHelp3=أسعار المنتج / الخدمة والموردين على حد سواء هناك هذه المتغيرات المتاحة: <br> <b># # # localtax1_tx tva_tx # # # # localtax2_tx الوزن # # # # طول سطح # # # price_min</b>
+PriceExpressionEditorHelp4=في المنتج / الخدمة فقط <b>السعر:</b> # <b>supplier_min_price #</b> <br> أسعار المورد <b>فقط:</b> # <b>supplier_quantity # و # supplier_tva_tx #</b>
+PriceExpressionEditorHelp5=القيم العالمية المتاحة:
+PriceMode=وضع السعر
+PriceNumeric=عدد
+DefaultPrice=سعر افتراضي
+ComposedProductIncDecStock=زيادة / نقصان الأسهم على التغيير الأم
+ComposedProduct=المنتج الفرعي
+MinSupplierPrice=الحد الأدنى لسعر المورد
+DynamicPriceConfiguration=التكوين سعر ديناميكي
+GlobalVariables=المتغيرات العالمية
+GlobalVariableUpdaters=updaters متغير العالمية
+GlobalVariableUpdaterType0=البيانات JSON
+GlobalVariableUpdaterHelp0=يوزع البيانات JSON من URL محددة، تحدد قيمة الموقع من القيمة ذات الصلة،
+GlobalVariableUpdaterHelpFormat0=الشكل هو {"URL": "http://example.com/urlofjson"، "VALUE": "array1، array2، targetvalue"}
+GlobalVariableUpdaterType1=بيانات خدمة ويب
+GlobalVariableUpdaterHelp1=يوزع بيانات خدمة ويب من URL المحدد، NS يحدد مساحة الاسم، تحدد قيمة الموقع من القيمة ذات الصلة، يجب أن تحتوي على بيانات البيانات لإرسال والطريقة هي الطريقة WS الدعوة
+GlobalVariableUpdaterHelpFormat1=الشكل هو {"URL": "http://example.com/urlofws"، "VALUE": "مجموعة، targetvalue"، "NS": "http://example.com/urlofns"، "أسلوب": " myWSMethod "،" البيانات ": {" بك ":" البيانات "إلى": "إرسال"}}
+UpdateInterval=تحديث الفاصل الزمني (دقائق)
+LastUpdated=آخر تحديث
+CorrectlyUpdated=تحديثها بشكل صحيح
+PropalMergePdfProductActualFile=استخدام الملفات لإضافة إلى PDF دازور هي / هو
+PropalMergePdfProductChooseFile=اختر ملفات PDF
+IncludingProductWithTag=بما في ذلك المنتجات / الخدمات مع العلامة
+DefaultPriceRealPriceMayDependOnCustomer=سعر افتراضي، السعر الحقيقي قد تعتمد على العملاء
+WarningSelectOneDocument=يرجى تحديد وثيقة واحدة على الأقل
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/ar_SA/projects.lang b/htdocs/langs/ar_SA/projects.lang
index 8f81d4a1fa4bab63003fca4da1b8cb963d6c39b4..c5e2d64a36df3e193de7e1fb40f01ff034bee700 100644
--- a/htdocs/langs/ar_SA/projects.lang
+++ b/htdocs/langs/ar_SA/projects.lang
@@ -1,23 +1,24 @@
 # Dolibarr language file - Source file is en_US - projects
-RefProject=Ref. project
-ProjectRef=Project ref.
-ProjectId=Project Id
-ProjectLabel=Project label
+RefProject=المرجع. مشروع
+ProjectRef=المرجع المشروع.
+ProjectId=رقم المشروع
+ProjectLabel=تسمية المشروع
 Project=المشروع
 Projects=المشاريع
-ProjectStatus=Project status
+ProjectStatus=حالة المشروع
 SharedProject=مشاريع مشتركة
 PrivateProject=اتصالات من المشروع
 MyProjectsDesc=ويقتصر هذا الرأي على المشاريع التي تقوم على الاتصال (كل ما هو نوع).
 ProjectsPublicDesc=هذا الرأي يعرض جميع المشاريع ويسمح لك قراءة.
-ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed to read.
+ProjectsPublicTaskDesc=يمثل هذا العرض جميع المشاريع والمهام يسمح لك للقراءة.
 ProjectsDesc=ويعرض هذا الرأي جميع المشاريع (أذونات المستخدم الخاص أعطى الصلاحية لعرض كل شيء).
 MyTasksDesc=ويقتصر هذا الرأي على المشروعات أو المهام التي هي الاتصال للحصول على (ما هو نوع).
-OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+OnlyOpenedProject=المشاريع المفتوحة فقط مرئية (المشاريع في مشروع أو وضع مغلقة غير مرئية).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=هذا الرأي يعرض جميع المشاريع والمهام ويسمح لك قراءة.
 TasksDesc=هذا الرأي يعرض جميع المشاريع والمهام (أذونات المستخدم الخاص أعطى الصلاحية لعرض كل شيء).
-AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
-OnlyYourTaskAreVisible=Only tasks you are assigned on are visible. Assign task to you if you want to enter time on it.
+AllTaskVisibleButEditIfYouAreAssigned=جميع المهام لهذا المشروع واضحة، ولكن يمكنك إدخال الوقت فقط لمهمة تم تعيينك على. تعيين مهمة لك إذا كنت تريد أن تدخل من الوقت على ذلك.
+OnlyYourTaskAreVisible=فقط المهام الموكلة لك على مرئية. تعيين مهمة لك إذا كنت تريد أن تدخل من الوقت على ذلك.
 ProjectsArea=مشاريع المنطقة
 NewProject=مشروع جديد
 AddProject=إنشاء مشروع
@@ -28,36 +29,38 @@ ConfirmDeleteATask=هل أنت متأكد من أنك تريد حذف هذه ا
 OfficerProject=ضابط المشروع
 LastProjects=آخر مشاريع ق ٪
 AllProjects=جميع المشاريع
-OpenedProjects=Opened projects
-OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpenedProjects=مشاريع فتح
+OpenedTasks=Opened tasks
+OpportunitiesStatusForOpenedProjects=فرص كمية من المشاريع فتحت حسب الحالة
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=قائمة المشاريع
 ShowProject=وتبين للمشروع
 SetProject=وضع المشروع
 NoProject=لا يعرف أو المملوكة للمشروع
-NbOpenTasks=Nb of open tasks
+NbOpenTasks=ملحوظة من المهام المفتوحة
 NbOfProjects=ملاحظة : للمشاريع
 TimeSpent=الوقت الذي تستغرقه
-TimeSpentByYou=Time spent by you
-TimeSpentByUser=Time spent by user
+TimeSpentByYou=الوقت الذي يقضيه من قبلك
+TimeSpentByUser=الوقت الذي يقضيه المستخدم
 TimesSpent=قضى وقتا
 RefTask=المرجع. مهمة
 LabelTask=علامة مهمة
-TaskTimeSpent=Time spent on tasks
-TaskTimeUser=User
-TaskTimeNote=Note
+TaskTimeSpent=الوقت المستغرق في المهام
+TaskTimeUser=المستعمل
+TaskTimeNote=ملاحظة
 TaskTimeDate=Date
-TasksOnOpenedProject=Tasks on open projects
-WorkloadNotDefined=Workload not defined
+TasksOnOpenedProject=المهام على المشاريع المفتوحة
+WorkloadNotDefined=عبء العمل غير محددة
 NewTimeSpent=جديد الوقت الذي يقضيه
 MyTimeSpent=وقتي قضى
 MyTasks=مهمتي
 Tasks=المهام
 Task=مهمة
-TaskDateStart=Task start date
-TaskDateEnd=Task end date
-TaskDescription=Task description
+TaskDateStart=تاريخ بدء العمل
+TaskDateEnd=تاريخ انتهاء المهمة
+TaskDescription=وصف المهمة
 NewTask=مهمة جديدة
-AddTask=خلق مهمة
+AddTask=إنشاء مهمة
 AddDuration=تضاف المدة
 Activity=النشاط
 Activities=المهام والأنشطة
@@ -66,8 +69,8 @@ MyActivities=بلدي المهام والأنشطة
 MyProjects=بلدي المشاريع
 DurationEffective=فعالة لمدة
 Progress=تقدم
-ProgressDeclared=Declared progress
-ProgressCalculated=Calculated progress
+ProgressDeclared=أعلن التقدم
+ProgressCalculated=تقدم تحسب
 Time=وقت
 ListProposalsAssociatedProject=قائمة المقترحات التجارية المرتبطة بالمشروع.
 ListOrdersAssociatedProject=قائمة الزبائن المرتبطة بالمشروع.
@@ -77,13 +80,13 @@ ListSupplierOrdersAssociatedProject=قائمة الموردين الأوامر 
 ListSupplierInvoicesAssociatedProject=قائمة الموردين المرتبطة بالمشروع.
 ListContractAssociatedProject=قائمة العقود المرتبطة بالمشروع.
 ListFichinterAssociatedProject=قائمة التدخلات المرتبطة بالمشروع
-ListExpenseReportsAssociatedProject=List of expense reports associated with the project
-ListDonationsAssociatedProject=List of donations associated with the project
+ListExpenseReportsAssociatedProject=قائمة تقارير المصاريف المرتبطة بالمشروع
+ListDonationsAssociatedProject=قائمة التبرعات المرتبطة بالمشروع
 ListActionsAssociatedProject=قائمة الإجراءات المرتبطة بالمشروع
-ListTaskTimeUserProject=List of time consumed on tasks of project
-TaskTimeUserProject=Time consumed on tasks of project
-ActivityOnProjectToday=Activity on project today
-ActivityOnProjectYesterday=Activity on project yesterday
+ListTaskTimeUserProject=قائمة الوقت المستهلك في مهام المشروع
+TaskTimeUserProject=الوقت المستهلك في مهام المشروع
+ActivityOnProjectToday=النشاط على المشروع اليوم
+ActivityOnProjectYesterday=النشاط على المشروع أمس
 ActivityOnProjectThisWeek=نشاط المشروع هذا الاسبوع
 ActivityOnProjectThisMonth=نشاط المشروع هذا الشهر
 ActivityOnProjectThisYear=نشاط المشروع هذا العام
@@ -104,7 +107,7 @@ DeleteATimeSpent=قضى الوقت حذف
 ConfirmDeleteATimeSpent=هل أنت متأكد أنك تريد حذف هذا الوقت الذي يقضيه؟
 DoNotShowMyTasksOnly=انظر أيضا المهام  الغير موكلة الي
 ShowMyTasksOnly=عرض فقط المهام الموكلة الي
-TaskRessourceLinks=Resources
+TaskRessourceLinks=مصادر
 ProjectsDedicatedToThisThirdParty=مشاريع مخصصة لهذا الطرف الثالث
 NoTasks=أية مهام لهذا المشروع
 LinkedToAnotherCompany=ربط طرف ثالث آخر
@@ -114,76 +117,79 @@ ThisWillAlsoRemoveTasks=وهذا العمل أيضا حذف كافة مهام ا
 IfNeedToUseOhterObjectKeepEmpty=إذا كانت بعض الكائنات (فاتورة، والنظام، ...)، الذين ينتمون إلى طرف ثالث آخر، يجب أن تكون مرتبطة بمشروع لإنشاء، والحفاظ على هذا فارغة لديها مشروع كونها متعددة الأطراف الثالثة.
 CloneProject=استنساخ المشروع
 CloneTasks=استنساخ المهام
-CloneContacts=Clone contacts
-CloneNotes=Clone notes
-CloneProjectFiles=Clone project joined files
-CloneTaskFiles=Clone task(s) joined files (if task(s) cloned)
-CloneMoveDate=Update project/tasks dates from now ?
-ConfirmCloneProject=Are you sure to clone this project ?
-ProjectReportDate=Change task date according project start date
-ErrorShiftTaskDate=Impossible to shift task date according to new project start date
-ProjectsAndTasksLines=Projects and tasks
-ProjectCreatedInDolibarr=Project %s created
-TaskCreatedInDolibarr=Task %s created
-TaskModifiedInDolibarr=Task %s modified
-TaskDeletedInDolibarr=Task %s deleted
-OpportunityStatus=Opportunity status
-OpportunityStatusShort=Opp. status
-OpportunityAmount=Opportunity amount
-OpportunityAmountShort=Opp. amount
+CloneContacts=الاتصالات استنساخ
+CloneNotes=ملاحظات استنساخ
+CloneProjectFiles=انضم مشروع استنساخ ملفات
+CloneTaskFiles=مهمة استنساخ (ق) انضم الملفات (إن مهمة (ق) المستنسخة)
+CloneMoveDate=يعود تاريخ تحديث مشروع / المهام من الآن؟
+ConfirmCloneProject=هل أنت متأكد من استنساخ هذا المشروع؟
+ProjectReportDate=تغيير موعد المهمة وفقا المشروع تاريخ بداية
+ErrorShiftTaskDate=من المستحيل تحويل التاريخ المهمة وفقا لتاريخ بدء المشروع الجديد
+ProjectsAndTasksLines=المشاريع والمهام
+ProjectCreatedInDolibarr=مشروع٪ الصورة التي تم إنشاؤها
+TaskCreatedInDolibarr=مهمة٪ الصورة التي تم إنشاؤها
+TaskModifiedInDolibarr=مهمة٪ الصورة المعدلة
+TaskDeletedInDolibarr=مهمة٪ الصورة حذف
+OpportunityStatus=الوضع فرصة
+OpportunityStatusShort=مقابل. الحالة
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
+OpportunityAmount=مبلغ فرصة
+OpportunityAmountShort=مقابل. كمية
 ##### Types de contacts #####
 TypeContact_project_internal_PROJECTLEADER=مشروع زعيم
 TypeContact_project_external_PROJECTLEADER=مشروع زعيم
-TypeContact_project_internal_PROJECTCONTRIBUTOR=Contributor
-TypeContact_project_external_PROJECTCONTRIBUTOR=Contributor
+TypeContact_project_internal_PROJECTCONTRIBUTOR=مساهم
+TypeContact_project_external_PROJECTCONTRIBUTOR=مساهم
 TypeContact_project_task_internal_TASKEXECUTIVE=المهمة التنفيذية
 TypeContact_project_task_external_TASKEXECUTIVE=المهمة التنفيذية
-TypeContact_project_task_internal_TASKCONTRIBUTOR=Contributor
-TypeContact_project_task_external_TASKCONTRIBUTOR=Contributor
-SelectElement=Select element
-AddElement=Link to element
-UnlinkElement=Unlink element
+TypeContact_project_task_internal_TASKCONTRIBUTOR=مساهم
+TypeContact_project_task_external_TASKCONTRIBUTOR=مساهم
+SelectElement=حدد العنصر
+AddElement=تصل إلى العنصر
+UnlinkElement=عنصر فك ارتباط
 # Documents models
-DocumentModelBeluga=Project template for linked objects overview
-DocumentModelBaleine=Project report template for tasks
-PlannedWorkload=Planned workload
-PlannedWorkloadShort=Workload
-WorkloadOccupation=Workload assignation
-ProjectReferers=Refering objects
-SearchAProject=Search a project
-SearchATask=Search a task
-ProjectMustBeValidatedFirst=Project must be validated first
-ProjectDraft=Draft projects
-FirstAddRessourceToAllocateTime=Associate a resource to allocate time
-InputPerDay=Input per day
-InputPerWeek=Input per week
-InputPerAction=Input per action
-TimeAlreadyRecorded=Time spent already recorded for this task/day and user %s
-ProjectsWithThisUserAsContact=Projects with this user as contact
-TasksWithThisUserAsContact=Tasks assigned to this user
-ResourceNotAssignedToProject=Not assigned to project
-ResourceNotAssignedToTask=Not assigned to task
-AssignTaskToMe=Assign task to me
-AssignTask=Assign
-ProjectOverview=Overview
-ManageTasks=Use projects to follow tasks and time
-ManageOpportunitiesStatus=Use projects to follow leads/opportinuties
-ProjectNbProjectByMonth=Nb of created projects by month
-ProjectOppAmountOfProjectsByMonth=Amount of opportunities by month
-ProjectWeightedOppAmountOfProjectsByMonth=Weighted amount of opportunities by month
-ProjectOpenedProjectByOppStatus=Opened project/lead by opportunity status
-ProjectsStatistics=Statistics on projects/leads
-TaskAssignedToEnterTime=Task assigned. Entering time on this task should be possible.
-IdTaskTime=Id task time
-YouCanCompleteRef=If you want to complete the ref with some information (to use it as search filters), it is recommanded to add a - character to separate it, so the automatic numbering will still work correctly for next projects. For example %s-ABC. You may also prefer to add search keys into label.
-OpenedProjectsByThirdparties=Opened projects by thirdparties
-OpportunityTotalAmount=Opportunities total amount
-OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
-OppStatusPROSP=Prospection
-OppStatusQUAL=Qualification
-OppStatusPROPO=Proposal
+DocumentModelBeluga=قالب مشروع لربط الأشياء نظرة عامة
+DocumentModelBaleine=مشروع نموذج تقرير عن المهام
+PlannedWorkload=عبء العمل المخطط لها
+PlannedWorkloadShort=عبء العمل
+WorkloadOccupation=عبء العمل الرذيلة
+ProjectReferers=اشارة الأجسام
+SearchAProject=بحث مشروع
+SearchATask=بحث مهمة
+ProjectMustBeValidatedFirst=يجب التحقق من صحة المشروع أولا
+ProjectDraft=مشروع المشاريع
+FirstAddRessourceToAllocateTime=ربط الموارد إلى تخصيص وقت
+InputPerDay=إدخال يوميا
+InputPerWeek=مساهمة في الأسبوع
+InputPerAction=مساهمة في عمل
+TimeAlreadyRecorded=الوقت الذي يقضيه سجلت بالفعل لهذه المهمة / يوم والمستخدم٪ الصورة
+ProjectsWithThisUserAsContact=مشاريع مع هذا العضو عن الاتصال
+TasksWithThisUserAsContact=المهام الموكلة إلى هذا المستخدم
+ResourceNotAssignedToProject=لم يتم تعيين إلى المشروع
+ResourceNotAssignedToTask=لم يتم تعيين المهمة
+ResourceNotAssignedToTheTask=Not assigned to the task
+AssignTaskToMe=تعيين مهمة بالنسبة لي
+AssignTask=عين
+ProjectOverview=نظرة عامة
+ManageTasks=استخدام المشاريع لمتابعة المهام والوقت
+ManageOpportunitiesStatus=استخدام مشاريع متابعة القرائن / opportinuties
+ProjectNbProjectByMonth=ملحوظة من المشاريع التي تم إنشاؤها من قبل شهر
+ProjectOppAmountOfProjectsByMonth=كمية الفرص الشهر
+ProjectWeightedOppAmountOfProjectsByMonth=كمية المرجح الفرص من قبل شهر
+ProjectOpenedProjectByOppStatus=افتتح المشروع / بقيادة الوضع فرصة
+ProjectsStatistics=إحصاءات عن المشاريع / يؤدي
+TaskAssignedToEnterTime=المهمة الموكلة. يجب دخول الوقت على هذه المهمة يكون ممكنا.
+IdTaskTime=الوقت مهمة معرف
+YouCanCompleteRef=إذا كنت ترغب في استكمال المرجع مع بعض المعلومات (لاستخدامه بمثابة مرشحات البحث)، وريكومانديد لإضافة - شخصية لفصلها، وبالتالي فإن الترقيم التلقائي سوف لا تزال تعمل بشكل صحيح للمشاريع المقبلة. على سبيل المثال٪ S-ABC. قد تفضل أيضا لإضافة مفاتيح البحث في التسمية.
+OpenedProjectsByThirdparties=مشاريع افتتحه thirdparties
+OpportunityTotalAmount=فرص المبلغ الإجمالي
+OpportunityPonderatedAmount=كمية الفرص المرجحة
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
+OppStatusPROSP=التنقيب
+OppStatusQUAL=المؤهل العلمى
+OppStatusPROPO=مقترح
 OppStatusNEGO=Negociation
-OppStatusPENDING=Pending
-OppStatusWIN=Won
-OppStatusLOST=Lost
+OppStatusPENDING=بانتظار
+OppStatusWIN=فاز
+OppStatusLOST=ضائع
diff --git a/htdocs/langs/ar_SA/propal.lang b/htdocs/langs/ar_SA/propal.lang
index e602d4cca5cf110e24a428bd36c91332b3127d82..aaa45d2c6b5742b6f13f6d06e4de8845e84f25b5 100644
--- a/htdocs/langs/ar_SA/propal.lang
+++ b/htdocs/langs/ar_SA/propal.lang
@@ -4,7 +4,7 @@ Proposal=اقتراح التجارية
 ProposalShort=اقتراح
 ProposalsDraft=مقترحات مشاريع تجارية
 ProposalDraft=اقتراح لمشروع تجاري
-ProposalsOpened=Open commercial proposals
+ProposalsOpened=مقترحات التجارية المفتوحة
 Prop=مقترحات تجارية
 CommercialProposal=اقتراح التجارية
 CommercialProposals=مقترحات تجارية
@@ -16,7 +16,7 @@ Prospect=احتمال
 ProspectList=احتمال قائمة
 DeleteProp=اقتراح حذف التجارية
 ValidateProp=مصادقة على اقتراح التجارية
-AddProp=Create proposal
+AddProp=إنشاء اقتراح
 ConfirmDeleteProp=هل أنت متأكد من أنك تريد حذف هذا التجارية الاقتراح؟
 ConfirmValidateProp=هل أنت متأكد من هذا التجارية للمصادقة على الاقتراح؟
 LastPropals=آخر مقترحات ٪
@@ -25,13 +25,14 @@ LastModifiedProposals=آخر تعديل المقترحات ق ٪
 AllPropals=جميع المقترحات
 LastProposals=آخر مقترحات
 SearchAProposal=بحث اقتراح
+NoProposal=No proposal
 ProposalsStatistics=مقترحات تجارية 'إحصاءات
 NumberOfProposalsByMonth=عدد شهر
 AmountOfProposalsByMonthHT=المبلغ في الشهر (بعد خصم الضريبة)
 NbOfProposals=عدد من المقترحات والتجاري
 ShowPropal=وتظهر اقتراح
 PropalsDraft=المسودات
-PropalsOpened=Open
+PropalsOpened=فتح
 PropalsNotBilled=مغلقة لا توصف
 PropalStatusDraft=مشروع (لا بد من التحقق من صحة)
 PropalStatusValidated=صادق (اقتراح فتح)
@@ -42,7 +43,7 @@ PropalStatusNotSigned=لم يتم التوقيع (مغلقة)
 PropalStatusBilled=فواتير
 PropalStatusDraftShort=مسودة
 PropalStatusValidatedShort=صادق
-PropalStatusOpenedShort=Open
+PropalStatusOpenedShort=فتح
 PropalStatusClosedShort=مغلقة
 PropalStatusSignedShort=وقعت
 PropalStatusNotSignedShort=لم يتم التوقيع
@@ -51,9 +52,9 @@ PropalsToClose=مقترحات ليقفل التجارية
 PropalsToBill=ووقع على مشروع القانون التجاري مقترحات
 ListOfProposals=قائمة مقترحات تجارية
 ActionsOnPropal=الإجراءات على الاقتراح
-NoOpenedPropals=No open commercial proposals
-NoOtherOpenedPropals=No other open commercial proposals
-NoPropal=No commercial proposal
+NoOpenedPropals=لا توجد أية عروض تجارية مفتوحة
+NoOtherOpenedPropals=لا توجد أية عروض تجارية أخرى مفتوحة
+NoPropal=أي اقتراح التجاري
 RefProposal=اقتراح المرجع التجارية
 SendPropalByMail=اقتراح ارسال التجارية عن طريق البريد
 AssociatedDocuments=الوثائق المرتبطة الاقتراح :
@@ -62,17 +63,18 @@ DatePropal=تاريخ الاقتراح
 DateEndPropal=تاريخ انتهاء الصلاحية
 DateEndPropalShort=نهاية التاريخ
 ValidityDuration=ومدة صلاحيتها
-CloseAs=وثيق مع مركز
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=تصنيف الفواتير
 BuildBill=بناء الفاتورة
 ErrorPropalNotFound=Propal ق لم يتم العثور على ٪
 Estimate=التقدير :
 EstimateShort=التقدير
 OtherPropals=مقترحات أخرى
-AddToDraftProposals=Add to draft proposal
-NoDraftProposals=No draft proposals
+AddToDraftProposals=إضافة إلى صياغة اقتراح
+NoDraftProposals=أي مشاريع اقتراحات
 CopyPropalFrom=اقتراح إنشاء التجارية عن طريق نسخ وجود اقتراح
-CreateEmptyPropal=خلق خاليا التجارية vierge مقترحات أو من قائمة المنتجات / الخدمات
+CreateEmptyPropal=إنشاء خاليا التجارية vierge مقترحات أو من قائمة المنتجات / الخدمات
 DefaultProposalDurationValidity=تقصير مدة صلاحية اقتراح التجارية (أيام)
 UseCustomerContactAsPropalRecipientIfExist=استخدام العميل عنوان الاتصال إذا حددت بدلا من التصدي لطرف ثالث حسب الاقتراح المستفيدة معالجة
 ClonePropal=اقتراح استنساخ التجارية
@@ -96,7 +98,8 @@ TypeContact_propal_external_CUSTOMER=اتصل العملاء اقتراح متا
 # Document models
 DocModelAzurDescription=اقتراح نموذج كامل (logo...)
 DocModelJauneDescription=اقتراح نموذج اليد الصفراء
-DefaultModelPropalCreate=Default model creation
-DefaultModelPropalToBill=Default template when closing a business proposal (to be invoiced)
-DefaultModelPropalClosed=Default template when closing a business proposal (unbilled)
-ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+DefaultModelPropalCreate=إنشاء نموذج افتراضي
+DefaultModelPropalToBill=القالب الافتراضي عند إغلاق الأعمال المقترح (أن الفاتورة)
+DefaultModelPropalClosed=القالب الافتراضي عند إغلاق الأعمال المقترح (فواتير)
+ProposalCustomerSignature=قبول كتابي، ختم الشركة والتاريخ والتوقيع
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/ar_SA/receiptprinter.lang b/htdocs/langs/ar_SA/receiptprinter.lang
index 28b63d7de792c0b34ddb98af50936450fd611f11..96e1ee8f4b81d36c35038489bd2de71091d86c8f 100644
--- a/htdocs/langs/ar_SA/receiptprinter.lang
+++ b/htdocs/langs/ar_SA/receiptprinter.lang
@@ -1,96 +1,96 @@
 # Dolibarr language file - Source file is en_US - receiptprinter
-PrinterAdded=Printer %s added
-PrinterUpdated=Printer %s updated
-PrinterDeleted=Printer %s deleted
-TestSentToPrinter=Test Sent To Printer %s
-ReceiptPrinterDesc=Setup of printers
-ReceiptPrinterTemplateDesc=Setup of Templates
-ReceiptPrinterTypeDesc=Description of Receipt Printer's type
-ReceiptPrinterProfileDesc=Description of Receipt Printer's Profile
-ListPrinters=List of Printers
-SetupReceiptTemplate=Template Setup
-CONNECTOR_DUMMY=Dummy Printer
-CONNECTOR_NETWORK_PRINT=Network Printer
-CONNECTOR_FILE_PRINT=Local Printer
-CONNECTOR_WINDOWS_PRINT=Local Windows Printer
-CONNECTOR_DUMMY_HELP=Fake Printer for test, does nothing
-CONNECTOR_NETWORK_PRINT_HELP=10.x.x.x:9100
-CONNECTOR_FILE_PRINT_HELP=/dev/usb/lp0, /dev/usb/lp1
-CONNECTOR_WINDOWS_PRINT_HELP=LPT1, COM1, smb://FooUser:secret@computername/workgroup/Receipt Printer
-PROFILE_DEFAULT=Default Profile
-PROFILE_SIMPLE=Simple Profile
-PROFILE_EPOSTEP=Epos Tep Profile
-PROFILE_P822D=P822D Profile
-PROFILE_STAR=Star Profile
-PROFILE_DEFAULT_HELP=Default Profile suitable for Epson printers
-PROFILE_SIMPLE_HELP=Simple Profile No Graphics
-PROFILE_EPOSTEP_HELP=Epos Tep Profile Help
-PROFILE_P822D_HELP=P822D Profile No Graphics
-PROFILE_STAR_HELP=Star Profile
-DOL_ALIGN_LEFT=Left align text
-DOL_ALIGN_CENTER=Center text
-DOL_ALIGN_RIGHT=Right align text
-DOL_USE_FONT_A=Use font A of printer
-DOL_USE_FONT_B=Use font B of printer
-DOL_USE_FONT_C=Use font C of printer
-DOL_BOLD=Text Bold
-/DOL_BOLD=End of Text Bold
-DOL_DOUBLE_HEIGHT=Text double height
-/DOL_DOUBLE_HEIGHT=End of Text double height
-DOL_DOUBLE_WIDTH=Text double width
-/DOL_DOUBLE_WIDTH=End of Text double width
-DOL_UNDERLINE=Underline text
-/DOL_UNDERLINE=End of Underline text
-DOL_UNDERLINE_2DOTS=Underline with double line
-/DOL_UNDERLINE_2DOTS=End of Underline with double line
-DOL_EMPHASIZED=Emphasized text
-/DOL_EMPHASIZED=End of Emphasized text
-DOL_SWITCH_COLORS=Print in white on black
-/DOL_SWITCH_COLORS=End of Print in white on black
-DOL_PRINT_BARCODE=Print barcode
-DOL_PRINT_BARCODE_CUSTOMER_ID=Print barcode customer id
-DOL_SET_PRINT_WIDTH_57=Ticket print width of 57mm
-DOL_CUT_PAPER_FULL=Cut ticket completely
-DOL_CUT_PAPER_PARTIAL=Cut ticket partially
-DOL_OPEN_DRAWER=Open cash drawer
-DOL_ACTIVATE_BUZZER=Activate buzzer
-DOL_PRINT_QRCODE=Print QR Code
-DOL_PRINT_DATE=Print date AAAA-MM-DD
-DOL_PRINT_DATE_TIME=Print date and time AAAA-MM-DD HH:MM:SS
-DOL_PRINT_YEAR=Print Year
-DOL_PRINT_MONTH_LETTERS=Print month in letters (example : november)
-DOL_PRINT_MONTH=Print month number
-DOL_PRINT_DAY=Print day number
-DOL_PRINT_DAY_LETTERS=Print day number
-DOL_PRINT_TABLE=Print table number (for restaurant, bar...)
-DOL_PRINT_CUTLERY=Print number of cutlery (for restaurant)
-DOL_PRINT_PAYMENT=Print payment method
-DOL_PRINT_LOGO=Print logo stored on printer. Example : 32|32
-DOL_PRINT_LOGO_OLD=Print logo stored on printer. Must be followed by logo code. For old printers.
-DOL_PRINT_ORDER_LINES=Print order lines
-DOL_PRINT_ORDER_TAX=Print order total tax
-DOL_PRINT_ORDER_LOCAL_TAX=Print order local tax
-DOL_PRINT_ORDER_TOTAL=Print order total
-DOL_PRINT_ORDER_NUMBER=Print order number
-DOL_PRINT_ORDER_NUMBER_UNIQUE=Print order number after validation
-DOL_PRINT_CUSTOMER_FIRSTNAME=Print customer firstname
-DOL_PRINT_CUSTOMER_LASTNAME=Print customer name
-DOL_PRINT_CUSTOMER_MAIL=Print customer mail
-DOL_PRINT_CUSTOMER_PHONE=Print customer phone
-DOL_PRINT_CUSTOMER_MOBILE=Print customer mobile
-DOL_PRINT_CUSTOMER_SKYPE=Print customer skype
-DOL_PRINT_CUSTOMER_TAX_NUMBER=Print customer VAT number
-DOL_PRINT_CUSTOMER_ACCOUNT_BALANCE=Print customer account balance
-DOL_PRINT_VENDOR_LASTNAME=Print vendor name
-DOL_PRINT_VENDOR_FIRSTNAME=Print vendor firstname
-DOL_PRINT_VENDOR_MAIL=Print vendor mail
-DOL_PRINT_CUSTOMER_POINTS=Print customer points
-DOL_PRINT_ORDER_POINTS=Print number of points for this order
-DOL_PRINT_IF_CUSTOMER=Print the line IF a customer is affected to the order
-DOL_PRINT_IF_VENDOR=Print the line IF a vendor is affected to the order
-DOL_PRINT_IF_HAPPY_HOUR=Print the line IF Happy Hour
-DOL_PRINT_IF_NUM_ORDER_UNIQUE=Print the line IF order is validated
-DOL_PRINT_IF_CUSTOMER_POINTS=Print the line IF customer points > 0
-DOL_PRINT_IF_ORDER_POINTS=Print the line IF points of the order > 0
-DOL_PRINT_IF_CUSTOMER_TAX_NUMBER=Print the line IF customer has vat number
-DOL_PRINT_IF_CUSTOMER_ACCOUNT_BALANCE_POSITIVE=Print the line IF customer balance > 0
+PrinterAdded=طابعة٪ الصورة بإضافة
+PrinterUpdated=طابعة%s تجديد
+PrinterDeleted=طابعة٪ الصورة حذفها
+TestSentToPrinter=اختبار المرسلة إلى الطابعة٪ الصورة
+ReceiptPrinterDesc=إعداد الطابعات
+ReceiptPrinterTemplateDesc=إعداد قوالب
+ReceiptPrinterTypeDesc=وصف نوع استلام الطابعة
+ReceiptPrinterProfileDesc=وصف الملف استلام الطابعة
+ListPrinters=قائمة طابعات
+SetupReceiptTemplate=إعداد قالب
+CONNECTOR_DUMMY=طابعة وهمية
+CONNECTOR_NETWORK_PRINT=طابعة الشبكة
+CONNECTOR_FILE_PRINT=الطابعة المحلية
+CONNECTOR_WINDOWS_PRINT=طابعة ويندوز المحلية
+CONNECTOR_DUMMY_HELP=طابعة وهمية لاختبار، لا يفعل شيئا
+CONNECTOR_NETWORK_PRINT_HELP=10.xxx:9100
+CONNECTOR_FILE_PRINT_HELP=/ ديف / USB / lp0، / ديف / USB / LP1
+CONNECTOR_WINDOWS_PRINT_HELP=LPT1، COM1، فلان: // FooUser: السر @ الكمبيوتر / مجموعة العمل / استلام الطابعة
+PROFILE_DEFAULT=الملف التعريف الافتراضي
+PROFILE_SIMPLE=ملف التعريف بسيط
+PROFILE_EPOSTEP=ملحمة تيب الملف الشخصي
+PROFILE_P822D=الملف P822D
+PROFILE_STAR=نجمة الشخصي
+PROFILE_DEFAULT_HELP=الملف الافتراضي مناسبة للطابعات إبسون
+PROFILE_SIMPLE_HELP=لمحة بسيطة لا الرسومات
+PROFILE_EPOSTEP_HELP=ملحمة تيب الملف المساعدة
+PROFILE_P822D_HELP=P822D الشخصي لا الرسومات
+PROFILE_STAR_HELP=نجمة الشخصي
+DOL_ALIGN_LEFT=ترك النص محاذاة
+DOL_ALIGN_CENTER=نص المركز
+DOL_ALIGN_RIGHT=النص محاذاة إلى اليمين
+DOL_USE_FONT_A=استخدام الخط A الطابعة
+DOL_USE_FONT_B=استخدام B الخط الطابعة
+DOL_USE_FONT_C=استخدام الخط C الطابعة
+DOL_BOLD=نص عريض
+/DOL_BOLD=نهاية النص بولد
+DOL_DOUBLE_HEIGHT=نص ارتفاع مزدوج
+/DOL_DOUBLE_HEIGHT=نهاية النص ارتفاع مزدوج
+DOL_DOUBLE_WIDTH=النص عرض مزدوج
+/DOL_DOUBLE_WIDTH=نهاية النص عرض مزدوج
+DOL_UNDERLINE=تسطير النص
+/DOL_UNDERLINE=نهاية النص تحته خط
+DOL_UNDERLINE_2DOTS=نؤكد مع خط مزدوج
+/DOL_UNDERLINE_2DOTS=نهاية تسطير مع خط مزدوج
+DOL_EMPHASIZED=أكد النص
+/DOL_EMPHASIZED=نهاية النص شددت
+DOL_SWITCH_COLORS=طباعة باللون الأبيض على الأسود
+/DOL_SWITCH_COLORS=نهاية طباعة باللون الأبيض على الأسود
+DOL_PRINT_BARCODE=طباعة الباركود
+DOL_PRINT_BARCODE_CUSTOMER_ID=طباعة الباركود العملاء معرف
+DOL_SET_PRINT_WIDTH_57=عرض الطباعة تذكرة من 57MM
+DOL_CUT_PAPER_FULL=تذكرة قطع تماما
+DOL_CUT_PAPER_PARTIAL=تذكرة قطع جزئيا
+DOL_OPEN_DRAWER=فتح درج النقود
+DOL_ACTIVATE_BUZZER=تفعيل صفارة
+DOL_PRINT_QRCODE=طباعة رمز الاستجابة السريعة
+DOL_PRINT_DATE=تاريخ الطباعة AAAA-MM-DD
+DOL_PRINT_DATE_TIME=تاريخ الطباعة والوقت AAAA-MM-DD HH: MM: SS
+DOL_PRINT_YEAR=طباعة السنة
+DOL_PRINT_MONTH_LETTERS=طباعة الشهر بحروف (مثلا: نوفمبر)
+DOL_PRINT_MONTH=عدد الطباعة الشهر
+DOL_PRINT_DAY=طباعة عدد اليوم
+DOL_PRINT_DAY_LETTERS=طباعة عدد اليوم
+DOL_PRINT_TABLE=الجدول رقم الطباعة (على مطعم وبار ...)
+DOL_PRINT_CUTLERY=عدد الطباعة من السكاكين (لمطعم)
+DOL_PRINT_PAYMENT=طباعة طريقة الدفع
+DOL_PRINT_LOGO=طباعة شعار تخزينها على الطابعة. مثال: 32 | 32
+DOL_PRINT_LOGO_OLD=طباعة شعار تخزينها على الطابعة. يجب أن يكون متبوعا برمز الشعار. للطابعات القديمة.
+DOL_PRINT_ORDER_LINES=خطوط ترتيب الطباعة
+DOL_PRINT_ORDER_TAX=ترتيب الطباعة مجموع الضريبة
+DOL_PRINT_ORDER_LOCAL_TAX=ترتيب الطباعة الضرائب المحلية
+DOL_PRINT_ORDER_TOTAL=مجموعه ترتيب الطباعة
+DOL_PRINT_ORDER_NUMBER=عدد ترتيب الطباعة
+DOL_PRINT_ORDER_NUMBER_UNIQUE=رقم الطلب الطباعة بعد التحقق من صحة
+DOL_PRINT_CUSTOMER_FIRSTNAME=طباعة العملاء الاسم الأول
+DOL_PRINT_CUSTOMER_LASTNAME=طباعة اسم العميل
+DOL_PRINT_CUSTOMER_MAIL=البريد عملاء الطباعة
+DOL_PRINT_CUSTOMER_PHONE=الهاتف عملاء الطباعة
+DOL_PRINT_CUSTOMER_MOBILE=طباعة العملاء المحمول
+DOL_PRINT_CUSTOMER_SKYPE=سكايب عملاء الطباعة
+DOL_PRINT_CUSTOMER_TAX_NUMBER=طباعة عدد العملاء VAT
+DOL_PRINT_CUSTOMER_ACCOUNT_BALANCE=طباعة رصيد حساب العميل
+DOL_PRINT_VENDOR_LASTNAME=طباعة اسم البائع
+DOL_PRINT_VENDOR_FIRSTNAME=طباعة بائع الاسم الأول
+DOL_PRINT_VENDOR_MAIL=إرسال إلى صديق طباعة بائع
+DOL_PRINT_CUSTOMER_POINTS=نقاط عملاء الطباعة
+DOL_PRINT_ORDER_POINTS=عدد الطباعة من النقاط لهذا النظام
+DOL_PRINT_IF_CUSTOMER=طباعة خط IF يتأثر العميل للنظام
+DOL_PRINT_IF_VENDOR=طباعة خط IF يتأثر بائع للنظام
+DOL_PRINT_IF_HAPPY_HOUR=طباعة خط IF ساعة سعيدة
+DOL_PRINT_IF_NUM_ORDER_UNIQUE=طباعة خط إذا تم التحقق من صحة النظام
+DOL_PRINT_IF_CUSTOMER_POINTS=طباعة خط IF نقطة العملاء> 0
+DOL_PRINT_IF_ORDER_POINTS=طباعة خط IF نقاط النظام> 0
+DOL_PRINT_IF_CUSTOMER_TAX_NUMBER=طباعة خط IF العميل لديه عدد الضريبة على القيمة المضافة
+DOL_PRINT_IF_CUSTOMER_ACCOUNT_BALANCE_POSITIVE=طباعة خط إذا كان رصيد العميل> 0
diff --git a/htdocs/langs/ar_SA/resource.lang b/htdocs/langs/ar_SA/resource.lang
index cdff0391c3072913a08fd1c7606c45d3b48ebdf2..d5cb037c38840f6493fa3a23c8b6717690486c1c 100644
--- a/htdocs/langs/ar_SA/resource.lang
+++ b/htdocs/langs/ar_SA/resource.lang
@@ -1,35 +1,35 @@
 # Dolibarr language file - Source file is en_US - resource
-MenuResourceIndex=Resources
-MenuResourceAdd=New resource
-MenuResourcePlanning=Resource planning
-DeleteResource=Delete resource
-ConfirmDeleteResourceElement=Confirm delete the resource for this element
-NoResourceInDatabase=No resource in database.
-NoResourceLinked=No resource linked
+MenuResourceIndex=مصادر
+MenuResourceAdd=مورد جديد
+MenuResourcePlanning=تخطيط الموارد
+DeleteResource=حذف الموارد
+ConfirmDeleteResourceElement=تأكيد حذف المورد لهذا العنصر
+NoResourceInDatabase=أي مورد في قاعدة البيانات.
+NoResourceLinked=ربط أي مورد
 
-ResourcePageIndex=Resources list
-ResourceSingular=Resource
-ResourceCard=Resource card
-AddResource=Create a resource
-ResourceFormLabel_ref=Resource name
-ResourceType=Resource type
-ResourceFormLabel_description=Resource description
+ResourcePageIndex=قائمة الموارد
+ResourceSingular=مورد
+ResourceCard=بطاقة الموارد
+AddResource=إنشاء مورد
+ResourceFormLabel_ref=اسم المورد
+ResourceType=نوع المورد
+ResourceFormLabel_description=وصف المصادر
 
-ResourcesLinkedToElement=Resources linked to element
+ResourcesLinkedToElement=موارد مرتبطة عنصر
 
-ShowResource=Show resource
-ShowResourcePlanning=Show resource planning
-GotoDate=Go to date
+ShowResource=مشاهدة الموارد
+ShowResourcePlanning=تخطيط الموارد مشاهدة
+GotoDate=إذهب إلى تاريخ
 
-ResourceElementPage=Element resources
-ResourceCreatedWithSuccess=Resource successfully created
-RessourceLineSuccessfullyDeleted=Resource line successfully deleted
-RessourceLineSuccessfullyUpdated=Resource line successfully updated
-ResourceLinkedWithSuccess=Resource linked with success
+ResourceElementPage=الموارد العنصر
+ResourceCreatedWithSuccess=الموارد التي تم إنشاؤها بنجاح
+RessourceLineSuccessfullyDeleted=خط الموارد حذف بنجاح
+RessourceLineSuccessfullyUpdated=تحديث خط الموارد بنجاح
+ResourceLinkedWithSuccess=ربط الموارد بنجاح
 
-TitleResourceCard=Resource card
-ConfirmDeleteResource=Confirm to delete this resource
-RessourceSuccessfullyDeleted=Resource successfully deleted
-DictionaryResourceType=Type of resources
+TitleResourceCard=بطاقة الموارد
+ConfirmDeleteResource=تأكيد لحذف هذا المورد
+RessourceSuccessfullyDeleted=الموارد حذف بنجاح
+DictionaryResourceType=نوع الموارد
 
-SelectResource=Select resource
+SelectResource=حدد الموارد
diff --git a/htdocs/langs/ar_SA/salaries.lang b/htdocs/langs/ar_SA/salaries.lang
index 953a9c7540cbb06d6209140b32aaa0d23261e324..3fdb7791334ae3bb0d708acaacb0168f26a54efd 100644
--- a/htdocs/langs/ar_SA/salaries.lang
+++ b/htdocs/langs/ar_SA/salaries.lang
@@ -1,15 +1,14 @@
-# Dolibarr language file - Source file is en_US - users
-SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
-SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
-Salary=Salary
-Salaries=Salaries
-Employee=Employee
-NewSalaryPayment=New salary payment
-SalaryPayment=Salary payment
-SalariesPayments=Salaries payments
-ShowSalaryPayment=Show salary payment
-THM=Average hourly price
-TJM=Average daily price
-CurrentSalary=Current salary
-THMDescription=This value may be used to calculate cost of time consumed on a project entered by users if module project is used
-TJMDescription=This value is currently as information only and is not used for any calculation
+# Dolibarr language file - Source file is en_US - salaries
+SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=كود المحاسبة لدفع رواتب
+SALARIES_ACCOUNTING_ACCOUNT_CHARGE=كود المحاسبة للدفع المالي
+Salary=الراتب
+Salaries=الرواتب
+NewSalaryPayment=دفع الرواتب جديد
+SalaryPayment=دفع الرواتب
+SalariesPayments=مدفوعات الرواتب
+ShowSalaryPayment=مشاهدة دفع الرواتب
+THM=متوسط ​​سعر ساعة
+TJM=متوسط ​​السعر اليومي
+CurrentSalary=الراتب الحالي
+THMDescription=يمكن استخدام هذه القيمة لحساب تكلفة الوقت المستهلك في المشروع المدخل من قبل المستخدمين إذا تم استخدام وحدة مشروع 
+TJMDescription=هذه القيمة هي حاليا فقط كمعلومات وليس لاستخدامها في أي حساب
diff --git a/htdocs/langs/ar_SA/sendings.lang b/htdocs/langs/ar_SA/sendings.lang
index d856278a5468a956352e7184debbc850efc19f5f..810ae36a11b90b777ae3bebaef8facdd05cf07d2 100644
--- a/htdocs/langs/ar_SA/sendings.lang
+++ b/htdocs/langs/ar_SA/sendings.lang
@@ -2,11 +2,11 @@
 RefSending=المرجع. إرسال
 Sending=إرسال
 Sendings=الإرسال
-AllSendings=All Shipments
+AllSendings=كل الشحنات
 Shipment=إرسال
 Shipments=شحنات
-ShowSending=Show Shipments
-Receivings=Receipts
+ShowSending=مشاهدة الشحنات
+Receivings=Delivery Receipts
 SendingsArea=منطقة الإرسال
 ListOfSendings=قائمة الإرسال
 SendingMethod=طريقة إرسال
@@ -15,19 +15,19 @@ LastSendings=ق الماضي ٪ الإرسال
 SearchASending=البحث المرسلة
 StatisticsOfSendings=إحصاءات الإرسال
 NbOfSendings=عدد الإرسال
-NumberOfShipmentsByMonth=Number of shipments by month
-SendingCard=Shipment card
+NumberOfShipmentsByMonth=عدد الشحنات خلال الشهر
+SendingCard=بطاقة شحن
 NewSending=ارسال جديدة
-CreateASending=خلق إرسال
-CreateSending=خلق إرسال
+CreateASending=إنشاء إرسال
+CreateSending=إنشاء إرسال
 QtyOrdered=الكمية أمرت
 QtyShipped=الكمية المشحونة
 QtyToShip=لشحن الكمية
 QtyReceived=الكمية الواردة
-KeepToShip=Remain to ship
+KeepToShip=تبقى على السفينة
 OtherSendingsForSameOrder=الإرسال الأخرى لهذا النظام
-DateSending=Shipping date
-DateSendingShort=Shipping date
+DateSending=تاريخ الشحن
+DateSendingShort=تاريخ الشحن
 SendingsForSameOrder=الإرسال لهذا النظام
 SendingsAndReceivingForSameOrder=الإرسال وreceivings لهذا النظام
 SendingsToValidate=للمصادقة على إرسال
@@ -39,7 +39,7 @@ StatusSendingCanceledShort=ألغيت
 StatusSendingDraftShort=مسودة
 StatusSendingValidatedShort=صادق
 StatusSendingProcessedShort=معالجة
-SendingSheet=Shipment sheet
+SendingSheet=ورقة الشحن
 Carriers=شركات الطيران
 Carrier=الناقل
 CarriersArea=ناقلات المنطقة
@@ -52,24 +52,24 @@ Enlevement=حصلت من قبل العميل
 DocumentModelSimple=وثيقة نموذج بسيط
 DocumentModelMerou=Mérou A5 نموذج
 WarningNoQtyLeftToSend=تحذير ، لا تنتظر أن المنتجات المشحونة.
-StatsOnShipmentsOnlyValidated=Statistics conducted on shipments only validated. Date used is date of validation of shipment (planed delivery date is not always known).
-DateDeliveryPlanned=Planned date of delivery
+StatsOnShipmentsOnlyValidated=الإحصاءات التي أجريت على شحنات التحقق من صحة فقط. التاريخ الذي يستخدم هو تاريخ المصادقة على شحنة (تاريخ التسليم مسوى لا يعرف دائما).
+DateDeliveryPlanned=التاريخ المحدد للتسليم
 DateReceived=تلقى تاريخ التسليم
 SendShippingByEMail=ارسال شحنة عن طريق البريد الالكتروني
-SendShippingRef=Submission of shipment %s
+SendShippingRef=تقديم شحنة٪ الصورة
 ActionsOnShipping=الأحداث على شحنة
 LinkToTrackYourPackage=رابط لتتبع الحزمة الخاصة بك
 ShipmentCreationIsDoneFromOrder=لحظة، ويتم إنشاء لشحنة جديدة من أجل بطاقة.
-RelatedShippings=Related shipments
-ShipmentLine=Shipment line
-CarrierList=List of transporters
-SendingRunning=Product from ordered customer orders
-SuppliersReceiptRunning=Product from ordered supplier orders
-ProductQtyInCustomersOrdersRunning=Product quantity into opened customers orders
-ProductQtyInSuppliersOrdersRunning=Product quantity into opened suppliers orders
-ProductQtyInShipmentAlreadySent=Product quantity from opened customer order already sent
-ProductQtyInSuppliersShipmentAlreadyRecevied=Product quantity from opened supplier order already received
-NoProductToShipFoundIntoStock=No product to ship found into warehouse <b>%s</b>. Correct stock or go back to choose another warehouse.
+RelatedShippings=شحنات ذات صلة
+ShipmentLine=خط الشحن
+CarrierList=قائمة النقل
+SendingRunning=المنتج من طلبات العملاء أمر
+SuppliersReceiptRunning=المنتج من أوامر المورد أمر
+ProductQtyInCustomersOrdersRunning=كمية المنتج إلى أوامر العملاء فتح
+ProductQtyInSuppliersOrdersRunning=كمية المنتج إلى أوامر الموردين افتتح
+ProductQtyInShipmentAlreadySent=كمية المنتج من فتح النظام العميل ارسلت بالفعل
+ProductQtyInSuppliersShipmentAlreadyRecevied=كمية المنتج من فتح المورد النظام وردت بالفعل
+NoProductToShipFoundIntoStock=لا يوجد منتج للسفينة وجدت في <b>مستودع٪ الصورة.</b> الأسهم الصحيح أو العودة إلى اختيار مستودع آخر.
 
 # Sending methods
 SendingMethodCATCH=القبض على العملاء
@@ -79,9 +79,9 @@ SendingMethodCOLSUI=Colissimo
 DocumentModelSirocco=نموذج بسيط لتسليم وثيقة من وثائق وإيصالات
 DocumentModelTyphon=أكمل نموذج لتسليم وثيقة من وثائق الإيصالات (logo...)
 Error_EXPEDITION_ADDON_NUMBER_NotDefined=EXPEDITION_ADDON_NUMBER ثابت لم تحدد
-SumOfProductVolumes=Sum of product volumes
-SumOfProductWeights=Sum of product weights
+SumOfProductVolumes=مجموع أحجام المنتج
+SumOfProductWeights=مجموع الأوزان المنتج
 
 # warehouse details
-DetailWarehouseNumber= Warehouse details
-DetailWarehouseFormat= W:%s (Qty : %d)
+DetailWarehouseNumber= تفاصيل مستودع
+DetailWarehouseFormat= W:٪ ق (الكمية:٪ د)
diff --git a/htdocs/langs/ar_SA/sms.lang b/htdocs/langs/ar_SA/sms.lang
index e71fdff26087cda1ee367335f9023ba4326c02b9..19f248c127254f73ec93c885485c4903b094b92f 100644
--- a/htdocs/langs/ar_SA/sms.lang
+++ b/htdocs/langs/ar_SA/sms.lang
@@ -49,5 +49,6 @@ SendSms=ارسال الرسائل القصيرة
 SmsInfoCharRemain=ملحوظة من الأحرف المتبقية
 SmsInfoNumero= (تنسيق دولي أي: +33899701761)
 DelayBeforeSending=تأخير قبل إرسال (دقائق)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=لا هدف متاح. تحقق الإعداد من مزود خدمات الرسائل القصيرة.
 
diff --git a/htdocs/langs/ar_SA/stocks.lang b/htdocs/langs/ar_SA/stocks.lang
index 460dc49b3c74e3b1e3d4a3306dfd77dfd570bfba..d364f753a9dd7d7e8beb623db9f3cc759cb84b6d 100644
--- a/htdocs/langs/ar_SA/stocks.lang
+++ b/htdocs/langs/ar_SA/stocks.lang
@@ -5,18 +5,18 @@ Warehouses=المستودعات
 NewWarehouse=المستودع الجديد / بورصة المنطقة
 WarehouseEdit=تعديل مستودع
 MenuNewWarehouse=مستودع جديد
-WarehouseOpened=Warehouse open
+WarehouseOpened=مستودع مفتوح
 WarehouseClosed=مخزن مغلق
 WarehouseSource=مصدر مخزن
-WarehouseSourceNotDefined=No warehouse defined,
-AddOne=Add one
+WarehouseSourceNotDefined=لا يعرف مستودع،
+AddOne=أضف واحدا
 WarehouseTarget=الهدف مخزن
 ValidateSending=حذف ارسال
 CancelSending=الغاء ارسال
 DeleteSending=حذف ارسال
 Stock=الأسهم
 Stocks=الاسهم
-StocksByLotSerial=Stock by lot/serial
+StocksByLotSerial=الأسهم عن طريق القرعة / المسلسل
 Movement=الحركة
 Movements=حركات
 ErrorWarehouseRefRequired=مستودع الاشارة اسم مطلوب
@@ -24,50 +24,50 @@ ErrorWarehouseLabelRequired=مستودع العلامة مطلوبة
 CorrectStock=تصحيح الأوراق المالية
 ListOfWarehouses=لائحة المخازن
 ListOfStockMovements=قائمة الحركات الأسهم
-StocksArea=Warehouses area
+StocksArea=منطقة المستودعات
 Location=عوضا عن
 LocationSummary=باختصار اسم الموقع
-NumberOfDifferentProducts=Number of different products
+NumberOfDifferentProducts=عدد من المنتجات المختلفة
 NumberOfProducts=العدد الإجمالي للمنتجات
 LastMovement=الماضي حركة
 LastMovements=التحركات الأخيرة
 Units=الوحدات
 Unit=وحدة
 StockCorrection=تصحيح الأوراق المالية
-StockTransfer=Stock transfer
-StockMovement=نقل
-StockMovements=تحويلات الأوراق المالية
-LabelMovement=Movement label
+StockTransfer=حركة الأسهم
+StockMovement=حركة الأسهم
+StockMovements=تحركات الأسهم
+LabelMovement=تسمية الحركة
 NumberOfUnit=عدد الوحدات
-UnitPurchaseValue=Unit purchase price
+UnitPurchaseValue=وحدة سعر الشراء
 TotalStock=إجمالي المخزون
 StockTooLow=الاسهم منخفضة جدا
-StockLowerThanLimit=Stock lower than alert limit
+StockLowerThanLimit=الأسهم أقل من الحد في حالة تأهب
 EnhancedValue=القيمة
 PMPValue=المتوسط المرجح لسعر
 PMPValueShort=الواب
 EnhancedValueOfWarehouses=قيمة المستودعات
-UserWarehouseAutoCreate=خلق مخزون تلقائيا عند إنشاء مستخدم
-IndependantSubProductStock=Product stock and subproduct stock are independant
+UserWarehouseAutoCreate=إنشاء مخزون تلقائيا عند إنشاء مستخدم
+IndependantSubProductStock=الأسهم المنتجات والأوراق المالية subproduct ومستقل
 QtyDispatched=ارسال كمية
-QtyDispatchedShort=Qty dispatched
-QtyToDispatchShort=Qty to dispatch
+QtyDispatchedShort=أرسل الكمية
+QtyToDispatchShort=الكمية إلى إيفاد
 OrderDispatch=ارسال الأسهم
-RuleForStockManagementDecrease=قاعدة لإدارة المخزون النقصان
-RuleForStockManagementIncrease=قاعدة لإدارة المخزون وزيادة
+RuleForStockManagementDecrease=حكم لالتلقائي انخفاض إدارة المخزون (النقص اليدوي من الممكن دائما، حتى إذا تم تنشيط قاعدة الانخفاض التلقائي)
+RuleForStockManagementIncrease=حكم لآلية الزيادة إدارة المخزون (زيادة اليدوية هي دائما ممكنة، حتى إذا تم تنشيط زيادة قاعدة تلقائية)
 DeStockOnBill=خفض مخزونات حقيقية على فواتير الزبائن / الائتمان التحقق من صحة الملاحظات
 DeStockOnValidateOrder=خفض مخزونات حقيقية على التحقق من صحة أوامر العملاء
-DeStockOnShipment=Decrease real stocks on shipping validation
+DeStockOnShipment=انخفاض أسهم حقيقي على التحقق من صحة الشحن
 ReStockOnBill=زيادة المخزون الحقيقي في فواتير الموردين / الائتمان التحقق من صحة الملاحظات
 ReStockOnValidateOrder=زيادة مخزونات حقيقية على استحسان أوامر الموردين
 ReStockOnDispatchOrder=زيادة مخزونات دليل حقيقي على إيفاد في المستودعات ، وبعد تلقي أمر المورد
-ReStockOnDeleteInvoice=Increase real stocks on invoice deletion
+ReStockOnDeleteInvoice=زيادة أسهم حقيقي على حذف الفاتورة
 OrderStatusNotReadyToDispatch=أمر لم يتم بعد أو لا أكثر من ذلك الوضع الذي يسمح بإرسال من المنتجات في مخازن المخزون.
-StockDiffPhysicTeoric=Explanation for difference between physical and theoretical stock
+StockDiffPhysicTeoric=تفسير الفرق بين المخزون المادي والنظري
 NoPredefinedProductToDispatch=لا توجد منتجات محددة سلفا لهذا الكائن. لذلك لا إرسال في المخزون المطلوب.
 DispatchVerb=إيفاد
-StockLimitShort=Limit for alert
-StockLimit=Stock limit for alert
+StockLimitShort=الحد الأقصى لتنبيه
+StockLimit=حد الأسهم للتنبيه
 PhysicalStock=المخزون المادي
 RealStock=الحقيقية للاسهم
 VirtualStock=الأسهم الافتراضية
@@ -79,12 +79,12 @@ IdWarehouse=معرف مخزن
 DescWareHouse=وصف المخزن
 LieuWareHouse=المكان مخزن
 WarehousesAndProducts=والمستودعات والمنتجات
-WarehousesAndProductsBatchDetail=Warehouses and products (with detail per lot/serial)
+WarehousesAndProductsBatchDetail=مستودعات والمنتجات (مع التفاصيل في الكثير / مسلسل)
 AverageUnitPricePMPShort=متوسط أسعار المدخلات
 AverageUnitPricePMP=متوسط أسعار المدخلات
 SellPriceMin=بيع سعر الوحدة
-EstimatedStockValueSellShort=قيمة لبيع
-EstimatedStockValueSell=قيمة لبيع
+EstimatedStockValueSellShort=قيمة للبيع
+EstimatedStockValueSell=قيمة للبيع
 EstimatedStockValueShort=وتقدر قيمة المخزون
 EstimatedStockValue=وتقدر قيمة المخزون
 DeleteAWarehouse=حذف مستودع
@@ -93,48 +93,48 @@ PersonalStock=%s طبيعة الشخصية
 ThisWarehouseIsPersonalStock=هذا يمثل مستودع للطبيعة الشخصية لل%s %s
 SelectWarehouseForStockDecrease=اختيار مستودع لاستخدامها لانخفاض الأسهم
 SelectWarehouseForStockIncrease=اختيار مستودع لاستخدامها لزيادة المخزون
-NoStockAction=No stock action
-LastWaitingSupplierOrders=Orders waiting for receptions
-DesiredStock=Desired minimum stock
-DesiredMaxStock=Desired maximum stock
-StockToBuy=To order
-Replenishment=Replenishment
-ReplenishmentOrders=Replenishment orders
-VirtualDiffersFromPhysical=According to increase/decrease stock options, physical stock and virtual stock (physical + current orders) may differ
-UseVirtualStockByDefault=Use virtual stock by default, instead of physical stock, for replenishment feature
-UseVirtualStock=Use virtual stock
-UsePhysicalStock=Use physical stock
-CurentSelectionMode=Current selection mode
-CurentlyUsingVirtualStock=Virtual stock
-CurentlyUsingPhysicalStock=Physical stock
-RuleForStockReplenishment=Rule for stocks replenishment
-SelectProductWithNotNullQty=Select at least one product with a qty not null and a supplier
-AlertOnly= Alerts only
-WarehouseForStockDecrease=The warehouse <b>%s</b> will be used for stock decrease
-WarehouseForStockIncrease=The warehouse <b>%s</b> will be used for stock increase
-ForThisWarehouse=For this warehouse
-ReplenishmentStatusDesc=This is a list of all products with a stock lower than desired stock (or lower than alert value if checkbox "alert only" is checked), and suggest you to create supplier orders to fill the difference.
-ReplenishmentOrdersDesc=This is a list of all opened supplier orders including predefined products. Only opened orders with predefined products, so orders that may affect stocks, are visible here.
-Replenishments=Replenishments
-NbOfProductBeforePeriod=Quantity of product %s in stock before selected period (< %s)
-NbOfProductAfterPeriod=Quantity of product %s in stock after selected period (> %s)
-MassMovement=Mass movement
-MassStockMovement=Mass stock movement
-SelectProductInAndOutWareHouse=Select a product, a quantity, a source warehouse and a target warehouse, then click "%s". Once this is done for all required movements, click onto "%s".
-RecordMovement=Record transfert
-ReceivingForSameOrder=Receipts for this order
-StockMovementRecorded=Stock movements recorded
-RuleForStockAvailability=Rules on stock requirements
-StockMustBeEnoughForInvoice=Stock level must be enough to add product/service to invoice
-StockMustBeEnoughForOrder=Stock level must be enough to add product/service to order
-StockMustBeEnoughForShipment= Stock level must be enough to add product/service to shipment
-MovementLabel=Label of movement
-InventoryCode=Movement or inventory code
-IsInPackage=Contained into package
-ShowWarehouse=Show warehouse
-MovementCorrectStock=Stock correction for product %s
-MovementTransferStock=Stock transfer of product %s into another warehouse
-WarehouseMustBeSelectedAtFirstStepWhenProductBatchModuleOn=Source warehouse must be defined here when "Product lot" module is on. It will be used to list which lot/serial are available for products requiring lot/serial data for movement. If you want to send products from different warehouses, just make the shipment into several steps.
-InventoryCodeShort=Inv./Mov. code
-NoPendingReceptionOnSupplierOrder=No pending reception due to open supplier order
-ThisSerialAlreadyExistWithDifferentDate=This lot/serial number (<strong>%s</strong>) already exists but with different eatby or sellby date (found <strong>%s</strong> but you enter <strong>%s</strong>).
+NoStockAction=أي إجراء الأسهم
+LastWaitingSupplierOrders=أوامر الانتظار لحفلات
+DesiredStock=الحد الأدنى المطلوب الأسهم
+DesiredMaxStock=الحد الأقصى الأسهم المطلوب
+StockToBuy=أن تأمر
+Replenishment=التجديد
+ReplenishmentOrders=أوامر التجديد
+VirtualDiffersFromPhysical=وفقا للزيادة / نقصان خيارات الأسهم، والمخزون المادي والأسهم الظاهري (الطلبات الحالية المادية +) قد تختلف
+UseVirtualStockByDefault=استخدام الأسهم الظاهري افتراضيا، بدلا من المخزون المادي، لميزة تجديد
+UseVirtualStock=استخدام الأسهم الظاهري
+UsePhysicalStock=استخدام المخزون المادي
+CurentSelectionMode=وضع التحديد الحالي
+CurentlyUsingVirtualStock=الأسهم الظاهري
+CurentlyUsingPhysicalStock=المخزون المادي
+RuleForStockReplenishment=حكم شراء أسهم التجديد
+SelectProductWithNotNullQty=اختيار منتج واحد على الأقل مع الكمية غير فارغة ومورد
+AlertOnly= التنبيهات فقط
+WarehouseForStockDecrease=سيتم استخدام <b>مستودع٪ الصورة</b> لانخفاض الأسهم
+WarehouseForStockIncrease=سيتم استخدام <b>مستودع٪ s للزيادة</b> المخزون
+ForThisWarehouse=لهذا المستودع
+ReplenishmentStatusDesc=هذه هي قائمة من جميع المنتجات مع مخزون أقل من الأسهم المطلوب (أو أقل من قيمة التنبيه إذا مربع "التنبيه فقط" يتم التحقق). باستخدام مربع، يمكنك إنشاء أوامر المورد لملء الفرق.
+ReplenishmentOrdersDesc=هذه قائمة لجميع أوامر المورد افتتح بما في ذلك المنتجات المحددة مسبقا. فتح فقط أوامر مع منتجات محددة مسبقا، لذلك الأوامر التي قد تؤثر على الأسهم ومرئية هنا.
+Replenishments=التجديد
+NbOfProductBeforePeriod=كمية من الناتج٪ الصورة في الأوراق المالية قبل الفترة المختارة (<٪ ق)
+NbOfProductAfterPeriod=كمية من الناتج٪ الصورة في الأوراق المالية بعد الفترة المختارة (>٪ ق)
+MassMovement=حركة جماهيرية
+MassStockMovement=حركة المخزون الجماعية
+SelectProductInAndOutWareHouse=حدد المنتج، والكمية، ومستودع مصدر ومستودع الهدف، ثم انقر فوق "٪ الصورة". حالما يتم ذلك لجميع الحركات المطلوبة، انقر على "٪ الصورة".
+RecordMovement=سجل TRANSFERT
+ReceivingForSameOrder=إيصالات لهذا النظام
+StockMovementRecorded=تحركات الأسهم سجلت
+RuleForStockAvailability=القواعد المتعلقة بمتطلبات الأسهم
+StockMustBeEnoughForInvoice=يجب أن يكون مستوى مخزون كاف لإضافة منتج / خدمة الفاتورة
+StockMustBeEnoughForOrder=يجب أن يكون مستوى مخزون كاف لإضافة منتج / خدمة النظام
+StockMustBeEnoughForShipment= يجب أن يكون مستوى مخزون كاف لإضافة منتج / خدمة للشحن
+MovementLabel=تسمية الحركة
+InventoryCode=حركة المخزون أو كود
+IsInPackage=الواردة في حزمة
+ShowWarehouse=مشاهدة مستودع
+MovementCorrectStock=تصحيح الأسهم للمنتج٪ الصورة
+MovementTransferStock=نقل الأسهم من الناتج٪ الصورة إلى مستودع آخر
+WarehouseMustBeSelectedAtFirstStepWhenProductBatchModuleOn=يجب تعريف مستودع المصدر هنا عندما "الكثير المنتج" الوحدة هي جرا. سيتم استخدامها لسرد الكثير الذي / مسلسل المتاحة للمنتجات التي تتطلب الكثير / البيانات التسلسلية للحركة. إذا كنت تريد أن ترسل المنتجات من المستودعات المختلفة، وجعل مجرد شحنة إلى العديد من الخطوات.
+InventoryCodeShort=الجرد. / وسائل التحقق. رمز
+NoPendingReceptionOnSupplierOrder=لا استقبال في انتظار المقرر أن يفتتح المورد أجل
+ThisSerialAlreadyExistWithDifferentDate=هذا الكثير / الرقم التسلسلي <strong>(٪ ق)</strong> موجودة بالفعل ولكن مع eatby مختلفة أو تاريخ sellby <strong>(وجدت٪ الصورة</strong> ولكن قمت <strong>بإدخال%s).</strong>
diff --git a/htdocs/langs/ar_SA/supplier_proposal.lang b/htdocs/langs/ar_SA/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..328f2c3ffc86bbd49f2c012fa44c0186d889741a 100644
--- a/htdocs/langs/ar_SA/supplier_proposal.lang
+++ b/htdocs/langs/ar_SA/supplier_proposal.lang
@@ -1,60 +1,59 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
-SupplierProposal=Supplier commercial proposals
-supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
-CommRequest=Price request
-CommRequests=Price requests
-SearchRequest=Find a request
-DraftRequests=Draft requests
-LastModifiedRequests=Last %s modified price requests
-RequestsOpened=Open price requests
-SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
-SupplierProposals=Supplier proposals
-NewAskPrice=New price request
-NewAsk=New request
-ShowSupplierProposal=Show price request
-AddSupplierProposal=Create a price request
-SupplierProposalRefFourn=Supplier ref
-SupplierProposalDate=Delivery date
-SupplierProposalRefFournNotice=Before closing to "Accepted", think to grasp suppliers references.
-RelatedSupplierProposal=Related price requests suppliers
-ConfirmValidateAsk=Are you sure you want to validate this price request under name <b>%s</b> ?
-DateAsk=Date of request
-DeleteAsk=Delete request
-ValidateAsk=Validate request
-AddAsk=Create a request
-SupplierProposalDraft=Drafts
-SupplierProposalOpened=Open
-SupplierProposalStatusDraft=Draft (needs to be validated)
-SupplierProposalStatusValidated=Validated (request is open)
-SupplierProposalStatusOpened=Validated (request is open)
-SupplierProposalStatusClosed=Closed
-SupplierProposalStatusSigned=Accepted
-SupplierProposalStatusNotSigned=Refused
-SupplierProposalStatusBilled=Billed
-SupplierProposalStatusDraftShort=Draft
-SupplierProposalStatusValidatedShort=Validated
-SupplierProposalStatusOpenedShort=Open
-SupplierProposalStatusClosedShort=Closed
-SupplierProposalStatusSignedShort=Accepted
-SupplierProposalStatusNotSignedShort=Refused
-SupplierProposalStatusBilledShort=Billed
-CopyAskFrom=Create price request by copying existing a request
-CreateEmptyAsk=Create blank request
-CloneAsk=Clone price request
-ConfirmCloneAsk=Are you sure you want to clone the price request <b>%s</b> ?
-ConfirmReOpenAsk=Are you sure you want to open back the price request <b>%s</b> ?
-SendAskByMail=Send price request by mail
-SendAskRef=Sending the price request %s
-SupplierProposalCard=Request card
-ConfirmDeleteAsk=Are you sure you want to delete this price request ?
-ActionsOnSupplierProposal=Events on price request
-DocModelAuroreDescription=A complete request model (logo...)
-CommercialAsk=Price request
-DefaultModelSupplierProposalCreate=Default model creation
-DefaultModelSupplierProposalToBill=Default template when closing a price request (accepted)
-DefaultModelSupplierProposalClosed=Default template when closing a price request (refused)
-ListOfSupplierProposal=List of supplier proposal requests
+SupplierProposal=مقترحات التجارية المورد
+supplier_proposalDESC=إدارة طلبات السعر للموردين
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
+CommRequest=طلب السعر
+CommRequests=طلبات الأسعار
+SearchRequest=العثور على الطلب
+DraftRequests=مشروع طلبات
+LastModifiedRequests=مشاركة الصورة٪ طلبات تعديل السعر
+RequestsOpened=طلبات السعر المفتوحة
+SupplierProposalArea=منطقة مقترحات المورد
+SupplierProposalShort=Supplier proposals
+SupplierProposals=مقترحات المورد
+NewAskPrice=طلب السعر الجديد
+NewAsk=طلب جديد
+ShowSupplierProposal=طلب عرض أسعار
+AddSupplierProposal=إنشاء طلب السعر
+SupplierProposalRefFourn=المورد المرجع
+SupplierProposalDate=تاريخ التسليم او الوصول
+SupplierProposalRefFournNotice=قبل أن يغلق على "مقبول"، والتفكير لفهم الموردين المراجع.
+RelatedSupplierProposal=يطلب سعر ذات صلة الموردين
+ConfirmValidateAsk=هل أنت متأكد أنك تريد التحقق من صحة الطلب سعر هذا تحت <b>اسم%s؟</b>
+DateAsk=تاريخ الطلب
+DeleteAsk=حذف الطلب
+ValidateAsk=التحقق من صحة الطلب
+AddAsk=إنشاء طلب
+SupplierProposalDraft=الداما
+SupplierProposalOpened=فتح
+SupplierProposalStatusDraft=مشروع (يجب التحقق من صحة)
+SupplierProposalStatusValidated=التحقق من صحة (طلب مفتوح)
+SupplierProposalStatusOpened=التحقق من صحة (طلب مفتوح)
+SupplierProposalStatusClosed=مغلق
+SupplierProposalStatusSigned=قبلت
+SupplierProposalStatusNotSigned=رفض
+SupplierProposalStatusBilled=المنقار
+SupplierProposalStatusDraftShort=مسودة
+SupplierProposalStatusValidatedShort=التحقق من صحة
+SupplierProposalStatusOpenedShort=فتح
+SupplierProposalStatusClosedShort=مغلق
+SupplierProposalStatusSignedShort=قبلت
+SupplierProposalStatusNotSignedShort=رفض
+SupplierProposalStatusBilledShort=المنقار
+CopyAskFrom=إنشاء طلب السعر عن طريق نسخ طلب القائمة
+CreateEmptyAsk=إنشاء طلب فارغة
+CloneAsk=طلب السعر استنساخ
+ConfirmCloneAsk=هل أنت متأكد أنك تريد استنساخ طلب <b>السعر%s؟</b>
+ConfirmReOpenAsk=هل أنت متأكد أنك تريد فتح إعادة طلب <b>السعر%s؟</b>
+SendAskByMail=إرسال طلب السعر عن طريق البريد
+SendAskRef=إرسال سعر الطلب٪ الصورة
+SupplierProposalCard=طلب بطاقة
+ConfirmDeleteAsk=هل أنت متأكد أنك تريد حذف طلب السعر هذا؟
+ActionsOnSupplierProposal=الأحداث على طلب السعر
+DocModelAuroreDescription=نموذج طلب كامل (شعار ...)
+CommercialAsk=طلب السعر
+DefaultModelSupplierProposalCreate=إنشاء نموذج افتراضي
+DefaultModelSupplierProposalToBill=القالب الافتراضي عند إغلاق طلب السعر (مقبول)
+DefaultModelSupplierProposalClosed=القالب الافتراضي عند إغلاق طلب السعر (رفض)
+ListOfSupplierProposal=قائمة الطلبات اقتراح المورد
diff --git a/htdocs/langs/ar_SA/suppliers.lang b/htdocs/langs/ar_SA/suppliers.lang
index c1fce8ba96c6c62689f44e33eac3573c6d4ed400..8d15845c1d189d747bb337e87bb7bf8897e905db 100644
--- a/htdocs/langs/ar_SA/suppliers.lang
+++ b/htdocs/langs/ar_SA/suppliers.lang
@@ -1,8 +1,9 @@
 # Dolibarr language file - Source file is en_US - suppliers
 Suppliers=الموردين
-AddSupplier=Create a supplier
+AddSupplier=إنشاء المورد
 SupplierRemoved=إزالة المورد
 SuppliersInvoice=فاتورة الموردين
+ShowSupplierInvoice=مشاهدة فاتورة المورد
 NewSupplier=مورد جديد
 History=التاريخ
 ListOfSuppliers=قائمة الموردين
@@ -11,8 +12,8 @@ OrderDate=من أجل التاريخ
 BuyingPrice=سعر الشراء
 BuyingPriceMin=الحد الأدنى من سعر الشراء
 BuyingPriceMinShort=يوجد سعر الشراء
-TotalBuyingPriceMin=Total of subproducts buying prices
-SomeSubProductHaveNoPrices=Some sub-products have no price defined
+TotalBuyingPriceMin=مجموعه subproducts شراء أسعار
+SomeSubProductHaveNoPrices=بعض المنتجات الفرعية التي لا تعرف السعر
 AddSupplierPrice=إضافة مورد الأسعار
 ChangeSupplierPrice=تغيير سعر المورد
 ErrorQtyTooLowForThisSupplier=كمية منخفضة جدا لهذا المورد أو لا يعرف سعر هذا المنتج لهذا المورد
@@ -26,21 +27,21 @@ RefSupplierShort=المرجع. المورد
 Availability=توفر
 ExportDataset_fournisseur_1=قائمة فواتير الموردين والفواتير 'خطوط
 ExportDataset_fournisseur_2=فواتير الموردين والمدفوعات
-ExportDataset_fournisseur_3=Supplier orders and order lines
+ExportDataset_fournisseur_3=أوامر المورد وخطوط أجل
 ApproveThisOrder=الموافقة على هذا النظام
 ConfirmApproveThisOrder=هل أنت متأكد من أن يوافق على هذا الأمر؟
-DenyingThisOrder=Deny this order
+DenyingThisOrder=إنكار هذا النظام
 ConfirmDenyingThisOrder=هل أنت متأكد من إنكار هذا الأمر؟
 ConfirmCancelThisOrder=هل أنت متأكد من أنك تريد إلغاء هذا النظام؟
-AddCustomerOrder=العملاء من أجل خلق
+AddCustomerOrder=العملاء من أجل إنشاء
 AddCustomerInvoice=إنشاء فاتورة المستهلك
-AddSupplierOrder=من أجل خلق مورد
-AddSupplierInvoice=خلق مورد فاتورة
+AddSupplierOrder=من أجل إنشاء مورد
+AddSupplierInvoice=إنشاء مورد فاتورة
 ListOfSupplierProductForSupplier=قائمة المنتجات والأسعار لمورد <b>ق ٪</b>
 NoneOrBatchFileNeverRan=أو لا شيء دفعة <b>٪ ق</b> لا يتعارض مؤخرا
-SentToSuppliers=Sent to suppliers
-ListOfSupplierOrders=List of supplier orders
-MenuOrdersSupplierToBill=Supplier orders to invoice
-NbDaysToDelivery=Delivery delay in days
-DescNbDaysToDelivery=The biggest deliver delay of the products from this order
-UseDoubleApproval=Use double approval when amount (without tax) is higher than (The second approval can be done by any user with the dedicated permission. Set to 0 for no double approval)
+SentToSuppliers=أرسلت للموردين
+ListOfSupplierOrders=قائمة الطلبات المورد
+MenuOrdersSupplierToBill=أوامر مورد للفاتورة
+NbDaysToDelivery=تأخير التسليم في أيام
+DescNbDaysToDelivery=أكبر تسليم تأخير من المنتجات من هذا النظام
+UseDoubleApproval=استخدام موافقة مزدوجة عندما مبلغ (بدون ضريبة) أعلى من (ويمكن أن يتم الموافقة الثانية من قبل أي مستخدم بإذن مخصص. تعيين إلى 0 من دون موافقة مزدوجة)
diff --git a/htdocs/langs/ar_SA/trips.lang b/htdocs/langs/ar_SA/trips.lang
index 1366ce6c77425620db54260f069326c0e162242e..bd4243cd63f7e5ef5e3cc4411b5c782810f1d71e 100644
--- a/htdocs/langs/ar_SA/trips.lang
+++ b/htdocs/langs/ar_SA/trips.lang
@@ -1,102 +1,103 @@
 # Dolibarr language file - Source file is en_US - trips
-ExpenseReport=Expense report
-ExpenseReports=Expense reports
-Trip=Expense report
-Trips=Expense reports
-TripsAndExpenses=Expenses reports
-TripsAndExpensesStatistics=Expense reports statistics
-TripCard=Expense report card
-AddTrip=Create expense report
-ListOfTrips=List of expense reports
+ExpenseReport=تقرير حساب
+ExpenseReports=تقارير المصاريف
+Trip=تقرير حساب
+Trips=تقارير المصاريف
+TripsAndExpenses=تقارير النفقات
+TripsAndExpensesStatistics=إحصاءات تقارير المصاريف
+TripCard=حساب بطاقة تقرير
+AddTrip=إنشاء تقرير حساب
+ListOfTrips=قائمة التقارير حساب
 ListOfFees=قائمة الرسوم
-ShowTrip=Show expense report
-NewTrip=New expense report
+ShowTrip=عرض تقرير حساب
+NewTrip=تقرير حساب جديد
 CompanyVisited=الشركة / المؤسسة زارت
 Kilometers=كم
 FeesKilometersOrAmout=كم المبلغ أو
-DeleteTrip=Delete expense report
-ConfirmDeleteTrip=Are you sure you want to delete this expense report ?
-ListTripsAndExpenses=List of expense reports
-ListToApprove=Waiting for approval
-ExpensesArea=Expense reports area
-SearchATripAndExpense=Search an expense report
-ClassifyRefunded=Classify 'Refunded'
-ExpenseReportWaitingForApproval=A new expense report has been submitted for approval
-ExpenseReportWaitingForApprovalMessage=A new expense report has been submitted and is waiting for approval.\n- User: %s\n- Period: %s\nClick here to validate: %s
-TripId=Id expense report
-AnyOtherInThisListCanValidate=Person to inform for validation.
-TripSociete=Information company
-TripSalarie=Informations user
-TripNDF=Informations expense report
-PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
-ExpenseReportLine=Expense report line
+DeleteTrip=حذف تقرير حساب
+ConfirmDeleteTrip=هل أنت متأكد أنك تريد حذف هذا التقرير حساب؟
+ListTripsAndExpenses=قائمة التقارير حساب
+ListToApprove=تنتظر الموافقة
+ExpensesArea=منطقة تقارير المصاريف
+SearchATripAndExpense=بحث تقرير مصروفات
+ClassifyRefunded=تصنيف "ردها"
+ExpenseReportWaitingForApproval=وقد قدم تقرير حساب جديد للموافقة عليها
+ExpenseReportWaitingForApprovalMessage=وقد تم تقديم تقرير حساب جديد وينتظر للموافقة عليها. - العضو:٪ ق - الفترة:٪ الصورة انقر هنا للتحقق من صحة:٪ الصورة
+TripId=تقرير حساب الهوية
+AnyOtherInThisListCanValidate=شخص إبلاغ عن التحقق من الصحة.
+TripSociete=شركة المعلومات
+TripSalarie=معلومات المستخدم
+TripNDF=المعلومات تقرير حساب
+PDFStandardExpenseReports=قالب قياسي لتوليد وثيقة PDF لتقرير حساب
+ExpenseReportLine=خط تقرير حساب
 TF_OTHER=أخرى
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=غداء
-TF_METRO=Metro
-TF_TRAIN=Train
-TF_BUS=Bus
-TF_CAR=Car
-TF_PEAGE=Toll
-TF_ESSENCE=Fuel
-TF_HOTEL=Hotel
-TF_TAXI=Taxi
+TF_METRO=مترو
+TF_TRAIN=قطار
+TF_BUS=حافلة
+TF_CAR=سيارة
+TF_PEAGE=رسوم
+TF_ESSENCE=وقود
+TF_HOTEL=الفندق
+TF_TAXI=سيارة اجره
 
-ErrorDoubleDeclaration=You have declared another expense report into a similar date range.
-AucuneNDF=No expense reports found for this criteria
-AucuneLigne=There is no expense report declared yet
-AddLine=Add a line
-AddLineMini=Add
+ErrorDoubleDeclaration=لقد أعلن تقرير حساب آخر في نطاق تاريخ مماثل.
+AucuneNDF=لم ترد تقارير عن حساب تم العثور عليها ل هذه المعايير
+AucuneLigne=لا يوجد تقرير مصروفات تعلن بعد
+AddLine=إضافة سطر
+AddLineMini=إضافة
 
-Date_DEBUT=Period date start
-Date_FIN=Period date end
-ModePaiement=Payment mode
+Date_DEBUT=تاريخ بداية الفترة
+Date_FIN=تاريخ انتهاء الفترة
+ModePaiement=طريقة الدفع
 
-VALIDATOR=User responsible for approval
-VALIDOR=Approved by
-AUTHOR=Recorded by
-AUTHORPAIEMENT=Paid by
-REFUSEUR=Denied by
-CANCEL_USER=Deleted by
+VALIDATOR=العضو المسؤول عن الموافقة
+VALIDOR=التي وافقت عليها
+AUTHOR=تم تسجيلها عن طريق
+AUTHORPAIEMENT=يتحملها
+REFUSEUR=نفتها
+CANCEL_USER=حذف من قبل
 
-MOTIF_REFUS=Reason
-MOTIF_CANCEL=Reason
+MOTIF_REFUS=سبب
+MOTIF_CANCEL=سبب
 
-DATE_REFUS=Deny date
-DATE_SAVE=Validation date
-DATE_VALIDE=Validation date
-DATE_CANCEL=Cancelation date
-DATE_PAIEMENT=Payment date
+DATE_REFUS=تاريخ ينكر
+DATE_SAVE=تاريخ التحقق من الصحة
+DATE_VALIDE=تاريخ التحقق من الصحة
+DATE_CANCEL=تاريخ الإلغاء
+DATE_PAIEMENT=تاريخ الدفع
 
-TO_PAID=Pay
-BROUILLONNER=Reopen
-SendToValid=Sent on approval
-ModifyInfoGen=Edit
-ValidateAndSubmit=Validate and submit for approval
-ValidatedWaitingApproval=Validated (waiting for approval)
+TO_PAID=دفع
+BROUILLONNER=إعادة فتح
+SendToValid=أرسلت على موافقة
+ModifyInfoGen=تحرير
+ValidateAndSubmit=التحقق من صحة ويقدم للموافقة عليها
+ValidatedWaitingApproval=التحقق من صحة (في انتظار الموافقة)
 
-NOT_VALIDATOR=You are not allowed to approve this expense report
-NOT_AUTHOR=You are not the author of this expense report. Operation cancelled.
+NOT_VALIDATOR=لا يسمح لك الموافقة على هذا التقرير حساب
+NOT_AUTHOR=أنت لست صاحب هذا التقرير حساب. إلغاء العملية.
 
-RefuseTrip=Deny an expense report
-ConfirmRefuseTrip=Are you sure you want to deny this expense report ?
+RefuseTrip=ينفي تقريرا للحساب
+ConfirmRefuseTrip=هل أنت متأكد أنك تريد أن تنكر هذا التقرير حساب؟
 
-ValideTrip=Approve expense report
-ConfirmValideTrip=Are you sure you want to approve this expense report ?
+ValideTrip=الموافقة على تقرير النفقات
+ConfirmValideTrip=هل أنت متأكد أنك تريد قبول هذا التقرير حساب؟
 
-PaidTrip=Pay an expense report
-ConfirmPaidTrip=Are you sure you want to change status of this expense report to "Paid" ?
+PaidTrip=دفع تقرير مصروفات
+ConfirmPaidTrip=هل أنت متأكد أنك تريد تغيير وضع هذا التقرير لحساب "مدفوع"؟
 
-CancelTrip=Cancel an expense report
-ConfirmCancelTrip=Are you sure you want to cancel this expense report ?
+CancelTrip=إلغاء تقرير مصروفات
+ConfirmCancelTrip=هل أنت متأكد أنك تريد إلغاء هذا التقرير حساب؟
 
-BrouillonnerTrip=Move back expense report to status "Draft"
-ConfirmBrouillonnerTrip=Are you sure you want to move this expense report to status "Draft" ?
+BrouillonnerTrip=الرجوع تقرير نفقة لوضع "مسودة"
+ConfirmBrouillonnerTrip=هل أنت متأكد أنك تريد نقل هذا التقرير حساب لوضع "مسودة"؟
 
-SaveTrip=Validate expense report
-ConfirmSaveTrip=Are you sure you want to validate this expense report ?
+SaveTrip=التحقق من صحة التقرير حساب
+ConfirmSaveTrip=هل أنت متأكد أنك تريد التحقق من صحة هذا التقرير حساب؟
 
-NoTripsToExportCSV=No expense report to export for this period.
-ExpenseReportPayment=Expense report payment
+NoTripsToExportCSV=أي تقرير نفقة لتصدير لهذه الفترة.
+ExpenseReportPayment=دفع تقرير حساب
 
-ExpenseReportsToPay=Expense reports to pay
+ExpenseReportsToApprove=Expense reports to approve
+ExpenseReportsToPay=تقارير النفقات لدفع
diff --git a/htdocs/langs/ar_SA/users.lang b/htdocs/langs/ar_SA/users.lang
index beb160e95a5a0fecf597063d35d19d4f7be453cf..fe8afd4b406265e11ea60821f1d35727278d3ae6 100644
--- a/htdocs/langs/ar_SA/users.lang
+++ b/htdocs/langs/ar_SA/users.lang
@@ -1,5 +1,5 @@
 # Dolibarr language file - Source file is en_US - users
-HRMArea=HRM area
+HRMArea=منطقة HRM
 UserCard=بطاقة مستخدم
 ContactCard=بطاقة الاتصال
 GroupCard=مجموعة البطاقات
@@ -43,10 +43,10 @@ NameNotDefined=اسم غير محدد.
 ListOfUsers=قائمة المستخدمين
 SuperAdministrator=مدير السوبر
 SuperAdministratorDesc=مدير كل الحقوق
-AdministratorDesc=Administrator
-AdministratorDescEntity=Administrator (for its company)
+AdministratorDesc=مدير
+AdministratorDescEntity=المسؤول (لشركتها)
 DefaultRights=الافتراضي أذونات
-DefaultRightsDesc=التقصير هنا تحديد الاذونات التي تمنح تلقائيا للمستخدم خلق جديد.
+DefaultRightsDesc=التقصير هنا تحديد الاذونات التي تمنح تلقائيا للمستخدم إنشاء جديد.
 DolibarrUsers=Dolibarr المستخدمين
 LastName=اسم
 FirstName=الاسم الأول
@@ -57,9 +57,9 @@ RemoveFromGroup=إزالة من المجموعة
 PasswordChangedAndSentTo=تم تغيير كلمة المرور وترسل إلى <b>٪ ق.</b>
 PasswordChangeRequestSent=طلب تغيير كلمة السر لإرسالها إلى <b>٪ ق ٪ ق.</b>
 MenuUsersAndGroups=مجموعات المستخدمين
-MenuMyUserCard=My user card
-LastGroupsCreated=ق الماضي خلق مجموعات ٪
-LastUsersCreated=آخر مستخدمين خلق ق ٪
+MenuMyUserCard=بطاقة المستخدم بلدي
+LastGroupsCreated=ق الماضي إنشاء مجموعات ٪
+LastUsersCreated=آخر مستخدمين إنشاء ق ٪
 ShowGroup=وتبين لفريق
 ShowUser=وتظهر للمستخدم
 NonAffectedUsers=غير المتأثرة المستخدمين
@@ -73,7 +73,7 @@ GroupsToAdd=إضافة إلى مجموعات لهذا المستخدم
 NoLogin=لم ادخل
 LinkToCompanyContact=ربط طرف ثالث / اتصالات
 LinkedToDolibarrMember=وصلة عضو
-LinkedToDolibarrUser=وصلة مستخدم Dolibarr
+LinkedToDolibarrUser=رابط لمستخدم Dolibarr
 LinkedToDolibarrThirdParty=Dolibarr الارتباط لطرف ثالث
 CreateDolibarrLogin=انشاء مستخدم
 CreateDolibarrThirdParty=إيجاد طرف ثالث
@@ -87,37 +87,38 @@ MyInformations=بي البيانات
 ExportDataset_user_1=Dolibarr مستخدمي وممتلكاتهم
 DomainUser=النطاق المستخدم ق ٪
 Reactivate=تنشيط
-CreateInternalUserDesc=This form allows you to create an user internal to your company/foundation. To create an external user (customer, supplier, ...), use the button 'Create Dolibarr user' from third party's contact card.
+CreateInternalUserDesc=هذا النموذج يسمح لك بإنشاء مستخدم داخلية لشركتك / المؤسسة. لإنشاء مستخدم خارجي (عميل أو مورد، ...)، استخدم زر 'إنشاء Dolibarr المستخدم من بطاقة الاتصال طرف ثالث.
 InternalExternalDesc=<b>داخلي</b> المستخدم المستخدم الذي يشكل جزءا من الشركة / المؤسسة. <br> مستخدم <b>خارجي</b> هو عميل أو مورد أو غيرها. <br><br> وفي كلتا الحالتين ، ويحدد الحقوق على أذونات Dolibarr ، كما يمكن للمستخدم خارجي له قائمة من مدير المستخدم الداخلي (انظر الصفحة الرئيسية -- إعداد -- عرض)
 PermissionInheritedFromAGroup=منح إذن لأن الموروث من واحد من المستخدم.
 Inherited=موروث
 UserWillBeInternalUser=وسوف يكون المستخدم إنشاء مستخدم داخلية (لأنه لا يرتبط طرف ثالث خاص)
 UserWillBeExternalUser=وسوف يكون المستخدم إنشاء مستخدم خارجي (لأنه مرتبط إلى طرف ثالث خاص)
 IdPhoneCaller=رقم تعريف الهاتف المتصل
-UserLogged=ق صلة مستخدم ٪
+UserLogged=تسجيل دخول مستخدم %s
 UserLogoff=%s المستخدم الخروج
-NewUserCreated=مستخدم ٪ ق خلق
+NewUserCreated=مستخدم ٪ ق إنشاء
 NewUserPassword=لتغيير كلمة المرور ل ٪
 EventUserModified=مستخدم تعديل ق ٪
 UserDisabled=مستخدم ٪ ق المعوقين
 UserEnabled=مستخدم ٪ ق تفعيلها
 UserDeleted=ق إزالة المستخدم ٪
 NewGroupCreated=أنشأت مجموعة ق ٪
-GroupModified=Group %s modified
+GroupModified=المجموعة٪ الصورة المعدلة
 GroupDeleted=فريق ازالة ق ٪
-ConfirmCreateContact=هل أنت متأكد من خلق Dolibarr حساب هذا الاتصال؟
-ConfirmCreateLogin=هل أنت متأكد من خلق Dolibarr حساب هذا؟
-ConfirmCreateThirdParty=هل أنت متأكد من خلق لهذا الطرف الثالث؟
+ConfirmCreateContact=هل أنت متأكد من إنشاء Dolibarr حساب هذا الاتصال؟
+ConfirmCreateLogin=هل أنت متأكد من إنشاء Dolibarr حساب هذا؟
+ConfirmCreateThirdParty=هل أنت متأكد من إنشاء لهذا الطرف الثالث؟
 LoginToCreate=ادخل لخلق
 NameToCreate=اسم طرف ثالث لخلق
 YourRole=الأدوار الخاص
 YourQuotaOfUsersIsReached=يتم التوصل إلى حصة الخاص بك من المستخدمين النشطين!
 NbOfUsers=ملحوظة من المستخدمين
 DontDowngradeSuperAdmin=يمكن فقط superadmin تقليله a superadmin
-HierarchicalResponsible=Supervisor
-HierarchicView=Hierarchical view
-UseTypeFieldToChange=Use field Type to change
-OpenIDURL=OpenID URL
-LoginUsingOpenID=Use OpenID to login
-WeeklyHours=Weekly hours
-ColorUser=Color of the user
+HierarchicalResponsible=المشرف
+HierarchicView=الهرمي
+UseTypeFieldToChange=استخدام نوع الحقل لتغيير
+OpenIDURL=URL هوية OpenID
+LoginUsingOpenID=استخدام هوية OpenID للدخول
+WeeklyHours=الساعات الأسبوعية
+ColorUser=اللون المستخدم
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/ar_SA/withdrawals.lang b/htdocs/langs/ar_SA/withdrawals.lang
index 3e07893b2ffc616481e216dfa67f980dbfb7b4dc..b2e11abf462b896ac8f36bf3ea4ef8e141c790a6 100644
--- a/htdocs/langs/ar_SA/withdrawals.lang
+++ b/htdocs/langs/ar_SA/withdrawals.lang
@@ -14,13 +14,13 @@ WithdrawalReceiptShort=ورود
 LastWithdrawalReceipts=ق الماضي سحب إيصالات ٪
 WithdrawedBills=Withdrawed الفواتير
 WithdrawalsLines=خطوط السحب
-RequestStandingOrderToTreat=Request for standing orders to process
-RequestStandingOrderTreated=Request for standing orders processed
-NotPossibleForThisStatusOfWithdrawReceiptORLine=Not yet possible. Withdraw status must be set to 'credited' before declaring reject on specific lines.
+RequestStandingOrderToTreat=طلب لأوامر إلى معالجة دائمة
+RequestStandingOrderTreated=طلب الأوامر الدائمة معالجة
+NotPossibleForThisStatusOfWithdrawReceiptORLine=لم يكن ممكنا حتى الآن. سحب يجب أن يتم تعيين الحالة إلى "الفضل" قبل أن يعلن رفض على خطوط محددة.
 CustomersStandingOrders=الزبون أوامر دائمة
 CustomerStandingOrder=يقف النظام العميل
-NbOfInvoiceToWithdraw=Nb. of invoice with withdraw request
-NbOfInvoiceToWithdrawWithInfo=Nb. of invoice with withdraw request for customers having defined bank account information
+NbOfInvoiceToWithdraw=ملحوظة. من فاتورة مع سحب الطلب
+NbOfInvoiceToWithdrawWithInfo=ملحوظة. من فاتورة مع سحب الطلب للعملاء الحصول على معلومات الحساب المصرفي المحدد
 InvoiceWaitingWithdraw=فاتورة انتظار الانسحاب
 AmountToWithdraw=سحب المبلغ
 WithdrawsRefused=ورفض سحب
@@ -47,7 +47,7 @@ RefusedData=تاريخ الرفض
 RefusedReason=أسباب الرفض
 RefusedInvoicing=رفض الفواتير
 NoInvoiceRefused=لا تهمة الرفض
-InvoiceRefused=Invoice refused (Charge the rejection to customer)
+InvoiceRefused=رفضت فاتورة (اشحن الرفض للعملاء)
 StatusUnknown=غير معروف
 StatusWaiting=انتظار
 StatusTrans=أحال
@@ -75,19 +75,19 @@ WithBankUsingRIB=عن الحسابات المصرفية باستخدام RIB
 WithBankUsingBANBIC=عن الحسابات المصرفية باستخدام IBAN / BIC / SWIFT
 BankToReceiveWithdraw=حساب مصرفي لتلقي تنسحب
 CreditDate=الائتمان على
-WithdrawalFileNotCapable=Unable to generate withdrawal receipt file for your country %s (Your country is not supported)
+WithdrawalFileNotCapable=غير قادر على توليد ملف استلام الانسحاب لبلدكم٪ الصورة (لا يتم اعتماد البلد)
 ShowWithdraw=وتظهر سحب
 IfInvoiceNeedOnWithdrawPaymentWontBeClosed=ومع ذلك، إذا فاتورة واحدة على الأقل دفع انسحاب لا تتم معالجتها حتى الآن، فإنه لن يكون كما سيولي للسماح لإدارة الانسحاب قبل.
-DoStandingOrdersBeforePayments=This tab allows you to request a standing order. Once done, go into menu Bank->Withdrawal to manage the standing order. When standing order is closed, payment on invoice will be automatically recorded, and invoice closed if remainder to pay is null.
-WithdrawalFile=Withdrawal file
-SetToStatusSent=Set to status "File Sent"
-ThisWillAlsoAddPaymentOnInvoice=This will also apply payments to invoices and will classify them as "Paid"
-StatisticsByLineStatus=Statistics by status of lines
-RUM=RUM
-RUMWillBeGenerated=RUM number will be generated once bank account information are saved
-WithdrawMode=Withdraw mode (FRST or RECUR)
-WithdrawRequestAmount=Withdraw request amount:
-WithdrawRequestErrorNilAmount=Unable to create withdraw request for nil amount.
+DoStandingOrdersBeforePayments=هذا التبويب يسمح لك لطلب أمر مستديم. وبمجرد القيام به، انتقل إلى القائمة Bank-> سحب لإدارة النظام واقفا. عندما أمر يقف مغلق، سيتم تسجيلها تلقائيا الدفع على الفاتورة، وأغلقت الفاتورة إذا تبقى لدفع فارغة.
+WithdrawalFile=ملف الانسحاب
+SetToStatusSent=تعيين إلى حالة "المرسلة ملف"
+ThisWillAlsoAddPaymentOnInvoice=وهذا أيضا ينطبق على الفواتير والمدفوعات وتصنيفها على أنها "تدفع"
+StatisticsByLineStatus=إحصاءات عن طريق وضع خطوط
+RUM=رم
+RUMWillBeGenerated=سيتم إنشاء عدد رم مرة واحدة يتم حفظ معلومات الحساب المصرفي
+WithdrawMode=وضع (FRST أو تتكرر) سحب
+WithdrawRequestAmount=سحب طلب كمية:
+WithdrawRequestErrorNilAmount=غير قادر على إنشاء سحب طلب مبلغ لا شيء.
 
 ### Notifications
 InfoCreditSubject=دفع %s النظام الدائمة من قبل البنك
@@ -97,5 +97,5 @@ InfoTransMessage=وقد transmited في %s أجل الوقوف على البنك
 InfoTransData=المبلغ: %s <br> Metode: %s <br> تاريخ: %s
 InfoFoot=هذه رسالة تلقائية ترسل من قبل Dolibarr
 InfoRejectSubject=ورفض النظام واقفا
-InfoRejectMessage=Hello,<br><br>the standing order of invoice %s related to the company %s, with an amount of %s has been refused by the bank.<br><br>--<br>%s
+InfoRejectMessage=أهلا، <br><br> وقد رفض النظام مكانة فاتورة%s المتعلقة بالشركة٪ الصورة، مع مبلغ٪ الصورة من قبل البنك. <br><br> - <br> ٪ الصورة
 ModeWarning=لم يتم تعيين خيار الوضع الحقيقي، ونحن بعد توقف هذه المحاكاة
diff --git a/htdocs/langs/ar_SA/workflow.lang b/htdocs/langs/ar_SA/workflow.lang
index 0c6e03e602c59b3f25297e0841decf3483cbb40e..349bcf7403cb289b9fb6c4f35179fd6025759908 100644
--- a/htdocs/langs/ar_SA/workflow.lang
+++ b/htdocs/langs/ar_SA/workflow.lang
@@ -1,11 +1,11 @@
 # Dolibarr language file - Source file is en_US - admin
 WorkflowSetup=سير العمل وحدة الإعداد
-WorkflowDesc=This module is designed to modify the behaviour of automatic actions into application. By default, workflow is open (you can do things in the order you want). You can activate the automatic actions you are interested in.
-ThereIsNoWorkflowToModify=There is no workflow modifications available with the activated modules.
-descWORKFLOW_PROPAL_AUTOCREATE_ORDER=Automatically create a customer order after a commercial proposal is signed
-descWORKFLOW_PROPAL_AUTOCREATE_INVOICE=Automatically create a customer invoice after a commercial proposal is signed
-descWORKFLOW_CONTRACT_AUTOCREATE_INVOICE=Automatically create a customer invoice after a contract is validated
-descWORKFLOW_ORDER_AUTOCREATE_INVOICE=Automatically create a customer invoice after a customer order is closed
-descWORKFLOW_ORDER_CLASSIFY_BILLED_PROPAL=Classify linked source proposal to billed when customer order is set to paid
-descWORKFLOW_INVOICE_CLASSIFY_BILLED_ORDER=Classify linked source customer order(s) to billed when customer invoice is set to paid
-descWORKFLOW_INVOICE_AMOUNT_CLASSIFY_BILLED_ORDER=Classify linked source customer order(s) to billed when customer invoice is validated
+WorkflowDesc=تم تصميم هذه الوحدة لتعديل السلوك من الإجراءات الآلية إلى التطبيق. افتراضيا، سير العمل مفتوح (يمكنك أن تفعل أشياء في النظام الذي تريد). يمكنك تفعيل الإجراءات الآلية كنت مهتما في.
+ThereIsNoWorkflowToModify=لا يوجد أي تعديلات سير العمل المتاحة مع وحدات تفعيلها.
+descWORKFLOW_PROPAL_AUTOCREATE_ORDER=إنشاء النظام العميل تلقائيا بعد التوقيع على اقتراح التجاري
+descWORKFLOW_PROPAL_AUTOCREATE_INVOICE=إنشاء فاتورة العميل تلقائيا بعد التوقيع على اقتراح التجاري
+descWORKFLOW_CONTRACT_AUTOCREATE_INVOICE=إنشاء فاتورة العميل تلقائيا بعد التحقق من صحة العقد
+descWORKFLOW_ORDER_AUTOCREATE_INVOICE=إنشاء فاتورة العميل تلقائيا بعد إغلاق النظام العميل
+descWORKFLOW_ORDER_CLASSIFY_BILLED_PROPAL=تصنيف مقترح مصدر على صلة وصفت عند تعيين النظام العميل لدفع
+descWORKFLOW_INVOICE_CLASSIFY_BILLED_ORDER=تصنيف المصدر المرتبط النظام العميل (ق) إلى المنقار عند تعيين فاتورة العملاء لدفع
+descWORKFLOW_INVOICE_AMOUNT_CLASSIFY_BILLED_ORDER=تصنيف ربط مصدر النظام العميل (ق) إلى المنقار عند التحقق من صحة الفاتورة العملاء
diff --git a/htdocs/langs/bg_BG/accountancy.lang b/htdocs/langs/bg_BG/accountancy.lang
index ffee0c7aabfbb409a06e33daa49b1d8b86b708d2..1010bc09c580a062d0c25a47a8cf000255443728 100644
--- a/htdocs/langs/bg_BG/accountancy.lang
+++ b/htdocs/langs/bg_BG/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Return
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sells journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,22 +147,28 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Валидирайте автоматично
 
 ErrorAccountancyCodeIsAlreadyUse=Възникна грешка, вие не можете да изтриете тази счетоводна сметка, защото се използва.
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
 ##Export Journal Feature
-ExportFormat=Format of Export
+ExportFormat=Формат за Експорт
 Prefixname=Prefix of export File
 Separate=Export separator
-Textframe=Frame of text value
+Textframe=Рамка на текстовата стойност
 Headercol=Colname in header of file
-Fieldname=Name of Field
-Headername=Name in header
-Type=Type of fields
-Param=Additionnal parameters
-EnabledProduct=In Product
-EnabledTiers=In Tiers
+Fieldname=Име на Полето
+Headername=Име в горния колонтитул
+Type=Тип на полетата
+Param=Допълнителни параметри
+EnabledProduct=В Продукт
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/bg_BG/admin.lang b/htdocs/langs/bg_BG/admin.lang
index a7b736c4d9c64c014455612dc3e6aea8b11efd07..809a97e8669af8f5494b2e685b0c4ee08befb20c 100644
--- a/htdocs/langs/bg_BG/admin.lang
+++ b/htdocs/langs/bg_BG/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Скриване на цялата информаци
 HideDescOnPDF=Скриване на продуктите описание на генерирани PDF
 HideRefOnPDF=Скриване на продуктите код. генерирани PDF
 HideDetailsOnPDF=Скриване на продукти линии подробности относно генерирани PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Библиотека
 UrlGenerationParameters=Параметри за осигуряване на URL адреси
 SecurityTokenIsUnique=Използвайте уникална параметър securekey за всеки URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Потребители и групи
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Известия
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Дарения
 Module700Desc=Управление на дарения
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Закъснения предупреждение
 DelaysOfToleranceBeforeWarning=Толерантност закъснение преди предупреждение
 DelaysOfToleranceDesc=Този екран ви позволява да дефинирате толерирани забавяне преди сигнал се съобщава на екрана с %s икони за всяка края на елемент.
 Delays_MAIN_DELAY_ACTIONS_TODO=Толеранс на изчакване (в дни) преди сигнал за планираните събития, които все още не са реализирани
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Толеранс на изчакване (в дни) преди сигнал за поръчки, които не са обработени
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Толеранс на изчакване (в дни) преди сигнал за доставчици поръчки, които все още не са преработени
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Толеранс на изчакване (в дни), преди сигнал за предложения, за да затворите
@@ -1087,6 +1089,7 @@ PathDirectory=Директория
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Конфигурация на превода
 TranslationDesc=Езика на интерфейса може да бъде променен:<br> * Глобално от менюто <strong>Начало - Настройки - Екран</strong> <br> * Само за потребителя от таба <strong>Изглед</strong> в картата на потребителя (кликнете върху потребителското име в горната част на екрана).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Общия брой на активираните модули е: <b>%s</b>
 YouMustEnableOneModule=Трябва да даде възможност на най-малко 1 модул
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Цвят за подчертаване на линията, когато мишката мине отгоре (оставете празно за без подчертаване)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/bg_BG/agenda.lang b/htdocs/langs/bg_BG/agenda.lang
index 73a19ee0bd87f801e5201599a15cc7fb570143f2..d30f440ca442040337a0fcffe4407561c12bae1a 100644
--- a/htdocs/langs/bg_BG/agenda.lang
+++ b/htdocs/langs/bg_BG/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Всички събития/задачи
 ViewCal=Месечен изглед
 ViewDay=Дневен изглед
 ViewWeek=Седмичен изглед
+ViewYear=Year view
 ViewPerUser=Изглед по потребител
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Изглед с предварително дефинирани филтри
 AutoActions= Автоматично попълване
 AgendaAutoActionDesc= Определете тук събития, за които искате Dolibarr да създадете автоматично събитие в дневния ред. Ако нищо не се проверява (по подразбиране), само ръчни действия ще бъдат включени в дневния ред.
diff --git a/htdocs/langs/bg_BG/bills.lang b/htdocs/langs/bg_BG/bills.lang
index 01189a1d0e505f6eb808a11d80cc7d5b7a97a248..ae63c28d14d0d2ce0216e5eff7cc6a220458f453 100644
--- a/htdocs/langs/bg_BG/bills.lang
+++ b/htdocs/langs/bg_BG/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Вече направени плащания
 PaymentsBackAlreadyDone=Вече направени обратни плащания
 PaymentRule=Правило за плащане
 PaymentMode=Тип на плащане
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Начин на плащане
 PaymentTerm=Условие за плащане
 PaymentConditions=Условия за плащане
@@ -184,6 +186,7 @@ ShowInvoice=Покажи фактура
 ShowInvoiceReplace=Покажи заменяща фактура
 ShowInvoiceAvoir=Покажи кредитно известие
 ShowInvoiceDeposit=Покажи депозитна фактура
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Покажи плащане
 AlreadyPaid=Вече е платена
 AlreadyPaidBack=Вече е платена обратно
@@ -221,6 +224,7 @@ NonPercuRecuperable=Невъзстановими
 SetConditions=Задайте условията за плащане
 SetMode=Задайте тип на плащане
 Billed=Фактурирано
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Шаблон за фактура
 RepeatableInvoices=Шаблони за фактури
 Repeatable=Шаблон
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Тази сума е изоставена (клиентъ
 HelpAbandonOther=Тази сума е изоставена, тъй като тя е грешка (грешен клиент или фактура, заменен от друг например)
 IdSocialContribution=Id за плащане на социален/фискален данък
 PaymentId=Плащане ID
+PaymentRef=Payment ref.
 InvoiceId=Фактура ID
 InvoiceRef=Фактура код
 InvoiceDateCreation=Фактура дата създаване
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Свързани доставни фактури
 LatestRelatedBill=Последна свързана фактура
 WarningBillExist=Внимание, една или повече актури вече съществуват
 MergingPDFTool=Инструмент за sliwane на PDF
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Веднага
@@ -393,6 +402,7 @@ Reported=Закъснение
 DisabledBecausePayments=Не е възможно, тъй като има някои плащания
 CantRemovePaymentWithOneInvoicePaid=Не може да се премахне плащането, тъй като има най-малко една фактура, класифицирана като платена
 ExpectedToPay=Очаквано плащане
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Плаща от това плащане
 ClosePaidInvoicesAutomatically=Класифицирай "Платени" всички стандартни, ситуирани или заменящи фактури изцяло платени.
 ClosePaidCreditNotesAutomatically=Класифицирай "Платени" всички кредитни известия изцяло обратно платени.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Бележка: Този списък съдърж
 RevenueStamp=Приходен печат
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Фактурен PDF шаблон. Пълен шаблон за фактура (препоръчителен шаблон)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Върнете номер с формат %syymm-nnnn за стандартни фактури и %syymm-nnnn за кредитни известия, където уу е година, mm е месец и NNNN е последователност, без прекъсване и без 0
 MarsNumRefModelDesc1=Върнете номер с формат %syymm-nnnn за стандартни фактури, %syymm-nnnn за заменящи фактури, %syymm-nnnn за кредитни известия и %syymm-nnnn за кредитни известия, където уу е година, mm е месец и NNNN е последователност, без прекъсване и без 0
 TerreNumRefModelError=Документ започващ с $syymm вече съществува и не е съвместим с този модел на последователност. Извадете го или го преименувайте за да се активира този модул.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=Тази ситуация е финална.
 CantBeLessThanMinPercent=Прогресът не може да бъде по-малък от стойността в предишната ситуация.
 NoSituations=Няма отворени ситуации
 InvoiceSituationLast=Последна и обща фактура
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/bg_BG/boxes.lang b/htdocs/langs/bg_BG/boxes.lang
index 6b6c6cc9d7b16ae9227199ec51ce7f857766fdc0..63703865c52a99295dbc8cf688272b1467814a84 100644
--- a/htdocs/langs/bg_BG/boxes.lang
+++ b/htdocs/langs/bg_BG/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Клиента фактури
 ForCustomersOrders=Клиентски поръчки
 ForProposals=Предложения
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/bg_BG/categories.lang b/htdocs/langs/bg_BG/categories.lang
index 7f6d15c33dd88a49fecc76297580dd49b8f3b6be..80464532a3cdf1e210c50c2e4012687734c63c42 100644
--- a/htdocs/langs/bg_BG/categories.lang
+++ b/htdocs/langs/bg_BG/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Етикет/категория Продукти
 MembersCategoryShort=Етикет/категория Членове
 SuppliersCategoriesShort=Етикети/категории Доставчици
 CustomersCategoriesShort=Етикети/категории Клиенти
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo / Prosp. категории
 ProductsCategoriesShort=Етикети/категории Продукти
 MembersCategoriesShort=Етикети/категории Членове
diff --git a/htdocs/langs/bg_BG/companies.lang b/htdocs/langs/bg_BG/companies.lang
index 0b493bd18e713705a9aa4da3b050bbd923f7fc51..0ad111232832487f16d88b6d9edaf4662421b3d4 100644
--- a/htdocs/langs/bg_BG/companies.lang
+++ b/htdocs/langs/bg_BG/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (R.C.)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (R.F.C).
 ProfId2MX=Prof Id 2 (R..P. IMSS)
diff --git a/htdocs/langs/bg_BG/compta.lang b/htdocs/langs/bg_BG/compta.lang
index 123cd75545429311118efd6236b3ed70a305ff5e..5250c2a0866308307b19a462238c234f2c7e9741 100644
--- a/htdocs/langs/bg_BG/compta.lang
+++ b/htdocs/langs/bg_BG/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Депозит фактури не са включен
 DepositsAreIncluded=- Депозит фактури са включени
 LT2ReportByCustomersInInputOutputModeES=Доклад от контрагент IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/bg_BG/cron.lang b/htdocs/langs/bg_BG/cron.lang
index a498d8e88bb3c32623c952d559e06177d30e93b3..cf1ebf3be08b08605a2360b447e408697725d729 100644
--- a/htdocs/langs/bg_BG/cron.lang
+++ b/htdocs/langs/bg_BG/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=В Unix среда би трябвало да изпол
 CronExplainHowToRunWin=В Microsoft(tm)-ска среда може да използвате инструментите за планирани задачи, за да се изпълни командния ред на всеки 5 минути
 # Menu
 CronJobs=Планирани задачи
-CronListActive=Списък на активните/планирани задачи
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=Списък на неактивираните задачи
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Последно изпълнение
 CronLastOutput=Изходен резултат от последно изпълнени 
@@ -35,8 +36,8 @@ CronInfo=Модул Планирана задача позволява да се
 CronWaitingJobs=Чакащи задачи
 CronTask=Задача
 CronNone=Няма
-CronDtStart=Начална дата
-CronDtEnd=Крайна дата
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Следващо изпълнение
 CronDtLastLaunch=Последно изпълнение
 CronFrequency=Честота
@@ -51,6 +52,7 @@ CronNoJobs=Няма регистрирани задачи
 CronPriority=Приоритет
 CronLabel=Описание
 CronNbRun=Nb. зареждане
+CronMaxRun=Max nb. launch
 CronEach=Всеки
 JobFinished=Задачи заредени и приключили
 #Page card
diff --git a/htdocs/langs/bg_BG/deliveries.lang b/htdocs/langs/bg_BG/deliveries.lang
index 2116a80f0577c3ab81a1d2e58c896cdb25bcfb01..6a75de08b23576c6bc0011689fa86b6f8ffffdec 100644
--- a/htdocs/langs/bg_BG/deliveries.lang
+++ b/htdocs/langs/bg_BG/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Сигурен ли сте, че искате да
 DeliveryMethod=Начин
 TrackingNumber=Проследяващ номер
 DeliveryNotValidated=Доставката не валидирани
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Име и подпис:
 ToAndDate=To___________________________________ на ____ / _____ / __________
diff --git a/htdocs/langs/bg_BG/holiday.lang b/htdocs/langs/bg_BG/holiday.lang
index 4e9b73ba8aa948ec18840e05eff74fcbb62e411f..95705851198f7e8b32cf76cc1074b53527e846ff 100644
--- a/htdocs/langs/bg_BG/holiday.lang
+++ b/htdocs/langs/bg_BG/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=Трябва да активирате модула за отпу
 NotConfigModCP=Необходимо е да конфигурирате модула за отпуски за да видите тази страница. За да направите това,  <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> кликнете тук </ a>.
 NoCPforUser=Нямате никакви налични дни.
 AddCP=Кандидатстване за отпуск
-Employe=Служител
 DateDebCP=Начална дата
 DateFinCP=Крайна дата
 DateCreateCP=Дата на създаване
@@ -23,7 +22,7 @@ ReviewedByCP=Ще бъде утвърден от
 DescCP=Описание
 SendRequestCP=Създаване на молба за отпуск
 DelayToRequestCP=Молбите за отпуски трябва да бъдат направени най-малко <b>%s ден(а)</b> преди началната им дата.
-MenuConfCP=Редактиране на баланса на отпуските
+MenuConfCP=Balance of leaves
 UpdateAllCP=Актуализиране на отпуските
 SoldeCPUser=Баланса на отпуските е <b>%s</b> дни.
 ErrorEndDateCP=Трябва да изберете крайната дата, по-голяма от началната дата.
@@ -79,9 +78,9 @@ PrevSoldeCP=Предишен баланс
 NewSoldeCP=Нов баланс
 alreadyCPexist=Вече е направена молба за отпуск за този период.
 UserName=Име
-Employee=Служители
 FirstDayOfHoliday=Първи ден от отпуска
 LastDayOfHoliday=Последен ден на отпуска
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Месечна актуализация
 ManualUpdate=Ръчна акуализация
 HolidaysCancelation=Отказване на молба за отпуск
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Вашата молба за отпуск от %s до %s е
 HolidaysCanceled=Отказани молби за отпуск
 HolidaysCanceledBody=Вашата молба за отпуск от %s до %s е била отказана.
 NewByMonth=Добавени за месец
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Отидете на <strong>Начало - Настройки - Речници - Тип на отпуски</strong> за настройка на различните типове на отпуски.
diff --git a/htdocs/langs/bg_BG/hrm.lang b/htdocs/langs/bg_BG/hrm.lang
index 0ef51094769985e904315ef83b7e4ae51a279874..0759a4d06cd7f489008ac43f2641ba1567fd5f28 100644
--- a/htdocs/langs/bg_BG/hrm.lang
+++ b/htdocs/langs/bg_BG/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=Списък на служителите
 Employees=Служители
 Employee=Служител
+Employe=Employe
 NewEmployee=Нов служител
 EmployeeCard=Служител досие
diff --git a/htdocs/langs/bg_BG/interventions.lang b/htdocs/langs/bg_BG/interventions.lang
index d65e1bed79bb53ba6ff666670874996294c58956..8e53841f8b216a68ee2da558f8687c802cdce971 100644
--- a/htdocs/langs/bg_BG/interventions.lang
+++ b/htdocs/langs/bg_BG/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Връщане Numero с формат %syymm-NNNN, къ
 PacificNumRefModelError=Интервенционната карта започва с $ syymm вече съществува и не е съвместим с този модел на последователност. Извадете го или го преименувайте да се активира този модул.
 PrintProductsOnFichinter=Принтиране на продукти от картона на намеса
 PrintProductsOnFichinterDetails=намеси генерирани от поръчки
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/bg_BG/mails.lang b/htdocs/langs/bg_BG/mails.lang
index de901f656f1545ec64223a2e5aa9a119f74f9eda..8fa8a3791af6fd99d6ab8eb3defff228027be86c 100644
--- a/htdocs/langs/bg_BG/mails.lang
+++ b/htdocs/langs/bg_BG/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Ключ използван за криптиране на
 EMailSentToNRecipients=Имейл изпратен до %s получатели.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=Документ използващ шаблон по подразбиране за фактура ще бъде създаден и прикачен към електронно писмо.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Напомняне за фактура %s (%s)
 SendRemind=Изпращане на напомняне по електронна поща
 RemindSent=%s напомняне(ия) изпратени
diff --git a/htdocs/langs/bg_BG/main.lang b/htdocs/langs/bg_BG/main.lang
index f9d60a0f565021027692ca2222adc2997811f901..1c786f4154c2e327b7e087ec117ff98bac224dd1 100644
--- a/htdocs/langs/bg_BG/main.lang
+++ b/htdocs/langs/bg_BG/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%d.%m.%Y %H:%M:%S
 FormatDateHourTextShort=%d %b %Y, %H:%M
 FormatDateHourText=%d %B %Y, %H:%M
 DatabaseConnection=Свързване с базата данни
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Няма превод
 NoRecordFound=Няма открити записи
 NoError=Няма грешка
@@ -105,6 +106,7 @@ NotePrivate=Бележка (частна)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr е настроен да ограничи точността единичните цени до <b>%s</b> знака след десетичната запетая.
 DoTest=Тест
 ToFilter=Филтър
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Внимание, имате поне един елемент, който е превишил допустимото забавяне.
 yes=да
 Yes=Да
@@ -228,6 +230,8 @@ Now=Сега
 HourStart=Начален час
 Date=Дата
 DateAndHour=Дата и час
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Начална дата
 DateEnd=Крайна дата
 DateCreation=Дата на създаване
@@ -608,6 +612,7 @@ TotalMan=Общо
 NeverReceived=Никога не получено
 Canceled=Отменен
 YouCanChangeValuesForThisListFromDictionarySetup=Можете да промените стойностите за този списък от меню Настройки - речник
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Цвят
 Documents=Свързани файлове
 DocumentsNb=Свързани файлове (%s)
@@ -695,6 +700,7 @@ Test=Тест
 Element=Елемент
 NoPhotoYet=Все още няма налични снимки
 HomeDashboard=Начало резюме
+Dashboard=Dashboard
 Deductible=Удържаем
 from=от
 toward=към
diff --git a/htdocs/langs/bg_BG/margins.lang b/htdocs/langs/bg_BG/margins.lang
index 8194efe044b437e32316263e736daac389673440..1c5f6492495a50b2d38c2434fd6b168efc880171 100644
--- a/htdocs/langs/bg_BG/margins.lang
+++ b/htdocs/langs/bg_BG/margins.lang
@@ -23,11 +23,11 @@ ChooseProduct/Service=Изберете продукт или услуга
 StartDate=Начална дата
 EndDate=Крайна дата
 Launch=Начало
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
-UseDiscountAsProduct=As a product
-UseDiscountAsService=As a service
+UseDiscountAsProduct=Като продукт
+UseDiscountAsService=Като услуга
 UseDiscountOnTotal=On subtotal
 MARGIN_METHODE_FOR_DISCOUNT_DETAILS=Defines if a global discount is treated as a product, a service, or only on subtotal for margin calculation.
 MARGIN_TYPE=Buying/Cost price suggested by default for margin calculation
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/bg_BG/oauth.lang b/htdocs/langs/bg_BG/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/bg_BG/oauth.lang
+++ b/htdocs/langs/bg_BG/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/bg_BG/orders.lang b/htdocs/langs/bg_BG/orders.lang
index ab707fda5fdc7a6c20842ae1fd5988885890f113..65fe5799ab38a2463e87d6f7e69253af36c2db1c 100644
--- a/htdocs/langs/bg_BG/orders.lang
+++ b/htdocs/langs/bg_BG/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Поръчки за обработка
 NoOpenedOrders=Няма отворени поръчки
 NoOtherOpenedOrders=Няма други отворени поръчки
 NoDraftOrders=Няма поръчки чернови
-NoOrder=Няма поръчка
+NoOrder=No order
 NoSupplierOrder=Няма поръчка доставчик
 OtherOrders=Други поръчки
 LastOrders=Последните %s поръчки от клиенти
diff --git a/htdocs/langs/bg_BG/other.lang b/htdocs/langs/bg_BG/other.lang
index 16a0aadd4b0a2237d892522bfe3c5a4d08da15da..f88f98a0307cb2797716bf81ddc29b761c634c80 100644
--- a/htdocs/langs/bg_BG/other.lang
+++ b/htdocs/langs/bg_BG/other.lang
@@ -238,3 +238,8 @@ ToExport=Експорт
 NewExport=Нов експорт
 ##### External sites #####
 ExternalSites=Външни сайтове
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/bg_BG/paypal.lang b/htdocs/langs/bg_BG/paypal.lang
index d0a8f4627b18b4e0b3402c99343c6ebfa8133c68..8f4222718e98a0fe8bd135eeff2be1f5936bca27 100644
--- a/htdocs/langs/bg_BG/paypal.lang
+++ b/htdocs/langs/bg_BG/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Mode тест / пясък
 PAYPAL_API_USER=API потребителско име
 PAYPAL_API_PASSWORD=API парола
 PAYPAL_API_SIGNATURE=API подпис
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Оферта плащане &quot;неразделна&quot; (кредитна карта + Paypal) или &quot;Paypal&quot;
 PaypalModeIntegral=Интеграл
 PaypalModeOnlyPaypal=Paypal само
diff --git a/htdocs/langs/bg_BG/products.lang b/htdocs/langs/bg_BG/products.lang
index bbd1b9cdf2b880e440894ba4f7606a4b2dba76b2..3d7aeb676ab6f5cc178cd2d47a0a64be4a35da64 100644
--- a/htdocs/langs/bg_BG/products.lang
+++ b/htdocs/langs/bg_BG/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Автоматично употребени при продукция
 ProductBuilded=Продукцията е завършена
-ProductsMultiPrice=Продукт мулти цена
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Клиентски цени (за продукт или услуги, мулти цени)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Избиране на PDF файлове
 IncludingProductWithTag=Включително продукт/услуга с таг
 DefaultPriceRealPriceMayDependOnCustomer=Цена по подразбиране, реалната цена може да зависи от клиента
 WarningSelectOneDocument=Моля изберете поне един документ
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/bg_BG/projects.lang b/htdocs/langs/bg_BG/projects.lang
index 9fdf3904e645e191113a027d3d3dcac33ba8b769..63fb20e4508305f4e2c3fb8c90adeefcd7cc41eb 100644
--- a/htdocs/langs/bg_BG/projects.lang
+++ b/htdocs/langs/bg_BG/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=Този изглед показва всички про
 ProjectsDesc=Този възглед представя всички проекти (потребителски разрешения ви даде разрешение да видите всичко).
 MyTasksDesc=Тази гледна точка е ограничена до проекти или задачи, които са контакт (какъвто и да е тип).
 OnlyOpenedProject=Само отворени проекти са видими (планирани проекти или със затворен статус не са видими).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Този възглед представя всички проекти и задачи, които може да чете.
 TasksDesc=Този възглед представя всички проекти и задачи (потребителски разрешения ви даде разрешение да видите всичко).
 AllTaskVisibleButEditIfYouAreAssigned=Всички задачи за такъв проект са видими, но можете да въвеждате време само за задача, към която сте причислен. Причислете задача към себе си ако искате да въведете време за нея.
@@ -29,7 +30,9 @@ OfficerProject=Директор проект
 LastProjects=Последни проекти %s
 AllProjects=Всички проекти
 OpenedProjects=Отворени проекти
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Списък на проектите
 ShowProject=Покажи проект
 SetProject=Задайте проект
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Задача %s е променена
 TaskDeletedInDolibarr=Задача %s е изтрита
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Проекти с този потребител к
 TasksWithThisUserAsContact=Задачи възложени на този потребител
 ResourceNotAssignedToProject=Не е зададено към проект
 ResourceNotAssignedToTask=Не е зададено към задача
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Възлагане на задача към мен
 AssignTask=Възлагане
 ProjectOverview=Общ преглед
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Отворени проекти от трети лица
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Предложение
diff --git a/htdocs/langs/bg_BG/propal.lang b/htdocs/langs/bg_BG/propal.lang
index d92bfb5bce7e6c1e158fa83248bfe2f969a9254b..6205ba8da42a92f19718d1b68cc8bfc258becd58 100644
--- a/htdocs/langs/bg_BG/propal.lang
+++ b/htdocs/langs/bg_BG/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Последните %s променени предлож
 AllPropals=Всички предложения
 LastProposals=Последни предложения
 SearchAProposal=Търсене предложение
+NoProposal=No proposal
 ProposalsStatistics=Търговския предложението статистика
 NumberOfProposalsByMonth=Брой от месеца
 AmountOfProposalsByMonthHT=Сума от месец (нетно от данъци)
@@ -62,7 +63,8 @@ DatePropal=Дата на предложението
 DateEndPropal=Крайната дата на валидност
 DateEndPropalShort=Крайна дата
 ValidityDuration=Валидност продължителността
-CloseAs=Затворете със статут
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Класифицирайте таксувани
 BuildBill=Изграждане фактура
 ErrorPropalNotFound=Propal %s не е намерена
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Създаване на модел по подразб
 DefaultModelPropalToBill=Шаблон по подразбиране, когато се затваря бизнес предложение (да бъде фактурирано)
 DefaultModelPropalClosed=Шаблон по подразбиране, когато се затваря бизнес предложение (не осчетоводено)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/bg_BG/salaries.lang b/htdocs/langs/bg_BG/salaries.lang
index 42a0f558e81f5f315df35c390bc07b50551d4951..9aad1ceca7a2b9f1d599b737a1d5117964f33209 100644
--- a/htdocs/langs/bg_BG/salaries.lang
+++ b/htdocs/langs/bg_BG/salaries.lang
@@ -3,7 +3,6 @@ SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Счетоводен код за запла
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Счетоводен код за финансова такса
 Salary=Заплата
 Salaries=Заплати
-Employee=Служител
 NewSalaryPayment=Ново заплащане на заплата
 SalaryPayment=Плащане на заплата
 SalariesPayments=Заплащания заплати
diff --git a/htdocs/langs/bg_BG/sendings.lang b/htdocs/langs/bg_BG/sendings.lang
index fe5241c2b50c165e10942be6ae1eaf2e8f673367..b8341e277120e705714a951cc099b6731f5d4d01 100644
--- a/htdocs/langs/bg_BG/sendings.lang
+++ b/htdocs/langs/bg_BG/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=Всички Пратки
 Shipment=Пратка
 Shipments=Превозите
 ShowSending=Показване на Пратки
-Receivings=Потвърждения
+Receivings=Delivery Receipts
 SendingsArea=Превозите област
 ListOfSendings=Списък на пратки
 SendingMethod=Начин на доставка
diff --git a/htdocs/langs/bg_BG/sms.lang b/htdocs/langs/bg_BG/sms.lang
index eaa00d5e7ef804eed59685a7ed267b7db2fd1f73..3bab8fdd466f74f33fd15b40319d8a4a5f2ede57 100644
--- a/htdocs/langs/bg_BG/sms.lang
+++ b/htdocs/langs/bg_BG/sms.lang
@@ -49,5 +49,6 @@ SendSms=Изпращане на SMS
 SmsInfoCharRemain=Nb на останалите герои
 SmsInfoNumero= (Формат международната т.е.: 33899701761)
 DelayBeforeSending=Забавяне преди изпращане (минути)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Целта на разположение. Проверете настройките на вашия доставчик на SMS.
 
diff --git a/htdocs/langs/bg_BG/supplier_proposal.lang b/htdocs/langs/bg_BG/supplier_proposal.lang
index 8c85b52132654cb19ab3bb71f4dc212bd06ec46b..3bd5c8dfee453f40834eb94e6d04d10c0122d9c3 100644
--- a/htdocs/langs/bg_BG/supplier_proposal.lang
+++ b/htdocs/langs/bg_BG/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Търговски предложения от доставчици
 supplier_proposalDESC=Управление на запитвания за цени към доставчици
-supplier_proposalMENU_LEFT_TITLE=Предложения доставчици
-supplier_proposalMENU_LEFT_TITLE_NEW=Ново запитване
-supplier_proposalMENU_LEFT_TITLE_LIST=Списък
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Запитване за цена
 CommRequests=Запитвания за цени
 SearchRequest=Намиране на запитване
@@ -11,7 +10,7 @@ DraftRequests=Чернови на запитвания
 LastModifiedRequests=Последни %s редактирани запитвания за цени
 RequestsOpened=Отваряне на запитване за цена
 SupplierProposalArea=Зона предложения от доставчици
-SupplierProposalShort=Предложение от доставчик
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Предложения доставчици
 NewAskPrice=Ново запитване за цена
 NewAsk=Ново запитване
diff --git a/htdocs/langs/bg_BG/trips.lang b/htdocs/langs/bg_BG/trips.lang
index e496fcd5414e763b1ea2aa5bb9ee6e55f80cd338..c709e265be113c860de4017b1c3a0df7fb73f6c3 100644
--- a/htdocs/langs/bg_BG/trips.lang
+++ b/htdocs/langs/bg_BG/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Информации доклад за разходи
 PDFStandardExpenseReports=Стандартен шаблон за генериране на PDF документ за доклад за разходи
 ExpenseReportLine=Линия на доклад за разходи
 TF_OTHER=Друг
-TF_TRANSPORTATION=Превоз
+TF_TRIP=Transportation
 TF_LUNCH=Обяд
 TF_METRO=Метро
 TF_TRAIN=Влак
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Сигурни ли сте, че искате да валиди
 NoTripsToExportCSV=Няма доклад за разходи за експортиране за този период.
 ExpenseReportPayment=Плащане на доклад за разходи
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Доклади за разходи за плащане
diff --git a/htdocs/langs/bg_BG/users.lang b/htdocs/langs/bg_BG/users.lang
index 93c955d5fbdfdeff3e3407bac994481f328a43ec..b310aa4a2d1fb4502d1b903674feea28e18ec4d1 100644
--- a/htdocs/langs/bg_BG/users.lang
+++ b/htdocs/langs/bg_BG/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Използвай OpenID за вход
 WeeklyHours=Часове седмично
 ColorUser=Цвят на потребителя
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/bn_BD/accountancy.lang b/htdocs/langs/bn_BD/accountancy.lang
index 5ee7e8de9f54f863782f095d33e3d4f43b2e78d2..87e3200f57c3544cb69c4a4d2a00867fbc5af632 100644
--- a/htdocs/langs/bn_BD/accountancy.lang
+++ b/htdocs/langs/bn_BD/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Return
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sells journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/bn_BD/admin.lang b/htdocs/langs/bn_BD/admin.lang
index c81fe4c28afda6683163ea69aba69202b77179ec..9cff117f74abd2a9b1a059a41efe0b7e74134f95 100644
--- a/htdocs/langs/bn_BD/admin.lang
+++ b/htdocs/langs/bn_BD/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Hide all information related to VAT on generated PDF
 HideDescOnPDF=Hide products description on generated PDF
 HideRefOnPDF=Hide products ref. on generated PDF
 HideDetailsOnPDF=Hide products lines details on generated PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Library
 UrlGenerationParameters=Parameters to secure URLs
 SecurityTokenIsUnique=Use a unique securekey parameter for each URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Users & groups
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Notifications
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Donations
 Module700Desc=Donation management
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Delays before warning
 DelaysOfToleranceBeforeWarning=Tolerance delays before warning
 DelaysOfToleranceDesc=This screen allows you to define the tolerated delays before an alert is reported on screen with picto %s for each late element.
 Delays_MAIN_DELAY_ACTIONS_TODO=Delay tolerance (in days) before alert on planned events not yet realised
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on orders not yet processed
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on suppliers orders not yet processed
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Delay tolerance (in days) before alert on proposals to close
@@ -1087,6 +1089,7 @@ PathDirectory=Directory
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/bn_BD/agenda.lang b/htdocs/langs/bn_BD/agenda.lang
index d8776508edcf523910ab3b06f56e1c9feb947af3..a0ccdfd26ea417d55219526b58c9ec073df47938 100644
--- a/htdocs/langs/bn_BD/agenda.lang
+++ b/htdocs/langs/bn_BD/agenda.lang
@@ -35,7 +35,9 @@ AllActions= All events/tasks
 ViewCal=Month view
 ViewDay=Day view
 ViewWeek=Week view
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= View with predefined filters
 AutoActions= Automatic filling
 AgendaAutoActionDesc= Define here events for which you want Dolibarr to create automatically an event in agenda. If nothing is checked (by default), only manual actions will be included in agenda.
diff --git a/htdocs/langs/bn_BD/bills.lang b/htdocs/langs/bn_BD/bills.lang
index 6a474886ee903714c336a4cec9f301bc999b989d..a4f919a6f49bb096b27addc8ef61adb5ebf42c9a 100644
--- a/htdocs/langs/bn_BD/bills.lang
+++ b/htdocs/langs/bn_BD/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Payments already done
 PaymentsBackAlreadyDone=Payments back already done
 PaymentRule=Payment rule
 PaymentMode=Payment type
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=Show invoice
 ShowInvoiceReplace=Show replacing invoice
 ShowInvoiceAvoir=Show credit note
 ShowInvoiceDeposit=Show deposit invoice
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Show payment
 AlreadyPaid=Already paid
 AlreadyPaidBack=Already paid back
@@ -221,6 +224,7 @@ NonPercuRecuperable=Non-recoverable
 SetConditions=Set payment terms
 SetMode=Set payment mode
 Billed=Billed
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=This amount has been abandoned (customer said to be a bad
 HelpAbandonOther=This amount has been abandoned since it was an error (wrong customer or invoice replaced by an other for example)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Payment id
+PaymentRef=Payment ref.
 InvoiceId=Invoice id
 InvoiceRef=Invoice ref.
 InvoiceDateCreation=Invoice creation date
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Immediate
@@ -393,6 +402,7 @@ Reported=Delayed
 DisabledBecausePayments=Not possible since there are some payments
 CantRemovePaymentWithOneInvoicePaid=Can't remove payment since there is at least one invoice classified paid
 ExpectedToPay=Expected payment
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Paid by this payment
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third pa
 RevenueStamp=Revenue stamp
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Invoice PDF template Crabe. A complete invoice template (recommended Template)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=A bill starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/bn_BD/boxes.lang b/htdocs/langs/bn_BD/boxes.lang
index 634b058f6d40f39c5434322b8c1ee431c6efccfa..8595403dc30264fc25e0890343920207a3b2fcc2 100644
--- a/htdocs/langs/bn_BD/boxes.lang
+++ b/htdocs/langs/bn_BD/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Customers invoices
 ForCustomersOrders=Customers orders
 ForProposals=Proposals
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/bn_BD/categories.lang b/htdocs/langs/bn_BD/categories.lang
index 81c73356c9313f8f6b58ca91fb632a9d894f335b..ccf22bb5003ca9dd4d684ff764aeb69eef7f739b 100644
--- a/htdocs/langs/bn_BD/categories.lang
+++ b/htdocs/langs/bn_BD/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo./Prosp. categories
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/bn_BD/companies.lang b/htdocs/langs/bn_BD/companies.lang
index e31c347605e091b48daeb2403b0c36b513540c0e..292fcafe238315d5e9cb6c07e0574a9f3979f7ba 100644
--- a/htdocs/langs/bn_BD/companies.lang
+++ b/htdocs/langs/bn_BD/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (R.C.)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (R.F.C).
 ProfId2MX=Prof Id 2 (R..P. IMSS)
diff --git a/htdocs/langs/bn_BD/compta.lang b/htdocs/langs/bn_BD/compta.lang
index d73f580cc8b8a84426e53b5a0c38c03dc8511bb6..07b609a17e428435a16e70932ee1763b18a0a7fa 100644
--- a/htdocs/langs/bn_BD/compta.lang
+++ b/htdocs/langs/bn_BD/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Deposit invoices are nor included
 DepositsAreIncluded=- Deposit invoices are included
 LT2ReportByCustomersInInputOutputModeES=Report by third party IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/bn_BD/cron.lang b/htdocs/langs/bn_BD/cron.lang
index bd85715642ec700a51b7365535762b2760ae54e5..21786df66cfcf912dd12c81c03fbb604e2255c26 100644
--- a/htdocs/langs/bn_BD/cron.lang
+++ b/htdocs/langs/bn_BD/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=List of disabled jobs
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Last run
 CronLastOutput=Last run output
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Job
 CronNone=None
-CronDtStart=Start date
-CronDtEnd=End date
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Next execution
 CronDtLastLaunch=Last execution
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=No jobs registered
 CronPriority=Priority
 CronLabel=Description
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
diff --git a/htdocs/langs/bn_BD/deliveries.lang b/htdocs/langs/bn_BD/deliveries.lang
index c513f3e347c28f0df14813efd7136bc833d51445..47e210744704ae9f083d6f1cf6630f7037ad794b 100644
--- a/htdocs/langs/bn_BD/deliveries.lang
+++ b/htdocs/langs/bn_BD/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Are you sure you want to delete delivery receipt <b
 DeliveryMethod=Delivery method
 TrackingNumber=Tracking number
 DeliveryNotValidated=Delivery not validated
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Name and Signature :
 ToAndDate=To___________________________________ on ____/_____/__________
diff --git a/htdocs/langs/bn_BD/holiday.lang b/htdocs/langs/bn_BD/holiday.lang
index 4beedf7021fa5d57420d3598b776c0af633abbed..a15b2d97224d732e1eceb7b84ff0947dd62e1cff 100644
--- a/htdocs/langs/bn_BD/holiday.lang
+++ b/htdocs/langs/bn_BD/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Employee
 DateDebCP=Start date
 DateFinCP=End date
 DateCreateCP=Creation date
@@ -23,7 +22,7 @@ ReviewedByCP=Will be reviewed by
 DescCP=Description
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=You must select an end date greater than the start date.
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Name
-Employee=Employee
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Monthly update
 ManualUpdate=Manual update
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/bn_BD/hrm.lang b/htdocs/langs/bn_BD/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/bn_BD/hrm.lang
+++ b/htdocs/langs/bn_BD/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/bn_BD/interventions.lang b/htdocs/langs/bn_BD/interventions.lang
index 5c08c3063534c07d4eea4a2096402a33cccadd41..cbcba219f1139b397fa8fe54ef5292c2ddf22248 100644
--- a/htdocs/langs/bn_BD/interventions.lang
+++ b/htdocs/langs/bn_BD/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Return numero with format %syymm-nnnn where yy is year,
 PacificNumRefModelError=An intervention card starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
 PrintProductsOnFichinter=Print products on intervention card
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/bn_BD/mails.lang b/htdocs/langs/bn_BD/mails.lang
index 87a1bd3c4d77c148a4c9554f25e94c5ca4becd9e..fbd7a14cd0471869ac1a1a0f1ec364a41ab9a244 100644
--- a/htdocs/langs/bn_BD/mails.lang
+++ b/htdocs/langs/bn_BD/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail sent to %s recipients.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/bn_BD/main.lang b/htdocs/langs/bn_BD/main.lang
index 3e24856e8f8b115a2fba5301a607933c36a3ecda..4afa461226b1ead0e11fa342cccef48c4075b024 100644
--- a/htdocs/langs/bn_BD/main.lang
+++ b/htdocs/langs/bn_BD/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=Database connection
+NoTemplateDefined=No template defined for this email type
 NoTranslation=No translation
 NoRecordFound=No record found
 NoError=No error
@@ -105,6 +106,7 @@ NotePrivate=Note (private)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr was setup to limit precision of unit prices to <b>%s</b> decimals.
 DoTest=Test
 ToFilter=Filter
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Warning, you have at least one element that has exceeded the tolerance delay.
 yes=yes
 Yes=Yes
@@ -228,6 +230,8 @@ Now=Now
 HourStart=Start hour
 Date=Date
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Date start
 DateEnd=Date end
 DateCreation=Creation date
@@ -608,6 +612,7 @@ TotalMan=Total
 NeverReceived=Never received
 Canceled=Canceled
 YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Color
 Documents=Linked files
 DocumentsNb=Linked files (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=No pictures available yet
 HomeDashboard=Home summary
+Dashboard=Dashboard
 Deductible=Deductible
 from=from
 toward=toward
diff --git a/htdocs/langs/bn_BD/margins.lang b/htdocs/langs/bn_BD/margins.lang
index 7db5ea4892e47d38f81f47f47b7beb00e1177280..27bb4de9fa34bef827f4501268d659670a983767 100644
--- a/htdocs/langs/bn_BD/margins.lang
+++ b/htdocs/langs/bn_BD/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Choose product or service
 StartDate=Start date
 EndDate=End date
 Launch=Start
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=As a product
 UseDiscountAsService=As a service
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/bn_BD/oauth.lang b/htdocs/langs/bn_BD/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/bn_BD/oauth.lang
+++ b/htdocs/langs/bn_BD/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/bn_BD/orders.lang b/htdocs/langs/bn_BD/orders.lang
index 29c2a0b5e21d6c38fe10363675a1bc04bdd5b309..c0bfc3ccce39be48af6c839b61305244d9261c47 100644
--- a/htdocs/langs/bn_BD/orders.lang
+++ b/htdocs/langs/bn_BD/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=No draft orders
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Other orders
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/bn_BD/other.lang b/htdocs/langs/bn_BD/other.lang
index 5fff107fde9aef8b5b102b11516d063214201ce7..c53f32346fe31f4f3ab22fa18f5933e33d5e97e2 100644
--- a/htdocs/langs/bn_BD/other.lang
+++ b/htdocs/langs/bn_BD/other.lang
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=New export
 ##### External sites #####
 ExternalSites=External sites
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/bn_BD/paypal.lang b/htdocs/langs/bn_BD/paypal.lang
index a4204f919825385332e460f03280067caa62dbb4..c6905f2ecc4299f59205dda7302732f0f7e67666 100644
--- a/htdocs/langs/bn_BD/paypal.lang
+++ b/htdocs/langs/bn_BD/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Mode test/sandbox
 PAYPAL_API_USER=API username
 PAYPAL_API_PASSWORD=API password
 PAYPAL_API_SIGNATURE=API signature
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Offer payment "integral" (Credit card+Paypal) or "Paypal" only
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/bn_BD/products.lang b/htdocs/langs/bn_BD/products.lang
index 0faea3691b0bd0e55ac1001d24cb88993cab4347..3926759fccadd1d5d9a3e2b3caf0d17fda789b7f 100644
--- a/htdocs/langs/bn_BD/products.lang
+++ b/htdocs/langs/bn_BD/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Production completed
-ProductsMultiPrice=Product multi-price
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/bn_BD/projects.lang b/htdocs/langs/bn_BD/projects.lang
index 7c94e3eb257ae07dea71f32084407e741fd94b1b..f6f6dd8ecaf09ead7b9c5d088f9ce307da860db9 100644
--- a/htdocs/langs/bn_BD/projects.lang
+++ b/htdocs/langs/bn_BD/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=This view presents all projects (your user permissions grant you permission to view everything).
 MyTasksDesc=This view is limited to projects or tasks you are a contact for (whatever is the type).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=This view presents all projects and tasks you are allowed to read.
 TasksDesc=This view presents all projects and tasks (your user permissions grant you permission to view everything).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Officer project
 LastProjects=Last %s projects
 AllProjects=All projects
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=List of projects
 ShowProject=Show project
 SetProject=Set project
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/bn_BD/propal.lang b/htdocs/langs/bn_BD/propal.lang
index d12d7595f94d6a48a961cc635329e86ed543a7ea..79ae1f1cd50add8ebf9f9f1275481055ed84ce06 100644
--- a/htdocs/langs/bn_BD/propal.lang
+++ b/htdocs/langs/bn_BD/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Last %s modified proposals
 AllPropals=All proposals
 LastProposals=Last proposals
 SearchAProposal=Search a proposal
+NoProposal=No proposal
 ProposalsStatistics=Commercial proposal's statistics
 NumberOfProposalsByMonth=Number by month
 AmountOfProposalsByMonthHT=Amount by month (net of tax)
@@ -62,7 +63,8 @@ DatePropal=Date of proposal
 DateEndPropal=Validity ending date
 DateEndPropalShort=Date end
 ValidityDuration=Validity duration
-CloseAs=Close with status
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Classify billed
 BuildBill=Build invoice
 ErrorPropalNotFound=Propal %s not found
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Default model creation
 DefaultModelPropalToBill=Default template when closing a business proposal (to be invoiced)
 DefaultModelPropalClosed=Default template when closing a business proposal (unbilled)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/bn_BD/salaries.lang b/htdocs/langs/bn_BD/salaries.lang
index 953a9c7540cbb06d6209140b32aaa0d23261e324..da177410860fb80d4d2d0872ec3b258ed787ba0e 100644
--- a/htdocs/langs/bn_BD/salaries.lang
+++ b/htdocs/langs/bn_BD/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Salary
 Salaries=Salaries
-Employee=Employee
 NewSalaryPayment=New salary payment
 SalaryPayment=Salary payment
 SalariesPayments=Salaries payments
diff --git a/htdocs/langs/bn_BD/sendings.lang b/htdocs/langs/bn_BD/sendings.lang
index fa7da0b00794647c45f8777bbc68fb23a31e1c0e..fb7b9c08868e29621711a9651a94ed955c6b223f 100644
--- a/htdocs/langs/bn_BD/sendings.lang
+++ b/htdocs/langs/bn_BD/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Shipment
 Shipments=Shipments
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Shipments area
 ListOfSendings=List of shipments
 SendingMethod=Shipping method
diff --git a/htdocs/langs/bn_BD/sms.lang b/htdocs/langs/bn_BD/sms.lang
index 4e89bb247308eb692eef9e40892f306dda5dd27b..70066caac96971420d7c55b09879e200888763c2 100644
--- a/htdocs/langs/bn_BD/sms.lang
+++ b/htdocs/langs/bn_BD/sms.lang
@@ -49,5 +49,6 @@ SendSms=Send SMS
 SmsInfoCharRemain=Nb of remaining characters
 SmsInfoNumero= (format international ie : +33899701761)
 DelayBeforeSending=Delay before sending (minutes)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=No target available. Check setup of your SMS provider.
 
diff --git a/htdocs/langs/bn_BD/supplier_proposal.lang b/htdocs/langs/bn_BD/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/bn_BD/supplier_proposal.lang
+++ b/htdocs/langs/bn_BD/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/bn_BD/trips.lang b/htdocs/langs/bn_BD/trips.lang
index ce9f0970e7c331996ee194c7613983060795a647..5ccdf8d0e37dcf680cc33691fdce1fd5644f2d53 100644
--- a/htdocs/langs/bn_BD/trips.lang
+++ b/htdocs/langs/bn_BD/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Other
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Lunch
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/bn_BD/users.lang b/htdocs/langs/bn_BD/users.lang
index 5b85ec80cf7e8a65d24d83c7359f831f9d150669..8a7dfcfe78753c5bda61b8d82208350a9e362652 100644
--- a/htdocs/langs/bn_BD/users.lang
+++ b/htdocs/langs/bn_BD/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Use OpenID to login
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/bs_BA/accountancy.lang b/htdocs/langs/bs_BA/accountancy.lang
index 275b0250abee18248b945b330ba461d57ac06222..9d6ac45ef889b769ea8aee722bf90332ed5035ea 100644
--- a/htdocs/langs/bs_BA/accountancy.lang
+++ b/htdocs/langs/bs_BA/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Return
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sells journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/bs_BA/admin.lang b/htdocs/langs/bs_BA/admin.lang
index ba90cc0414dc3abbebf7891ed406e7a7b0e41e0a..b921ec4c8a6434c7db3df859708a81d0cb068f80 100644
--- a/htdocs/langs/bs_BA/admin.lang
+++ b/htdocs/langs/bs_BA/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Hide all information related to VAT on generated PDF
 HideDescOnPDF=Hide products description on generated PDF
 HideRefOnPDF=Hide products ref. on generated PDF
 HideDetailsOnPDF=Hide products lines details on generated PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Library
 UrlGenerationParameters=Parameters to secure URLs
 SecurityTokenIsUnique=Use a unique securekey parameter for each URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Users & groups
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Notifications
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Donations
 Module700Desc=Donation management
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Delays before warning
 DelaysOfToleranceBeforeWarning=Tolerance delays before warning
 DelaysOfToleranceDesc=This screen allows you to define the tolerated delays before an alert is reported on screen with picto %s for each late element.
 Delays_MAIN_DELAY_ACTIONS_TODO=Delay tolerance (in days) before alert on planned events not yet realised
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on orders not yet processed
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on suppliers orders not yet processed
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Delay tolerance (in days) before alert on proposals to close
@@ -1087,6 +1089,7 @@ PathDirectory=Directory
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/bs_BA/agenda.lang b/htdocs/langs/bs_BA/agenda.lang
index 50872810d807272d5d8108b857be8395cfc69b81..b82eb660b37419f5146e0b226830abc53eef824b 100644
--- a/htdocs/langs/bs_BA/agenda.lang
+++ b/htdocs/langs/bs_BA/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Svi događaji/zadaci
 ViewCal=Mjesečni pregled
 ViewDay=Dnevni pregled
 ViewWeek=Sedmični pregled
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Pogledaj sa unaprijed definiranim filterima
 AutoActions= Automatsko popunjavanje
 AgendaAutoActionDesc= Ovdje definirajte događaje za koje želite da Dolibarr automatski kreira događaj u agendi. Ukoliko se ništa ne provjerava (po defaultu), samo manualne akcije će biti uključeni u dnevni red.
diff --git a/htdocs/langs/bs_BA/bills.lang b/htdocs/langs/bs_BA/bills.lang
index a66fbea3ae0243261e802301b1f9e07718c218eb..ca6955081f43fed6ce08020fa8e99d043d98b579 100644
--- a/htdocs/langs/bs_BA/bills.lang
+++ b/htdocs/langs/bs_BA/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Izvršene uplate
 PaymentsBackAlreadyDone=Izvršeni povrati uplata
 PaymentRule=Pravilo plaćanja
 PaymentMode=Način plaćanja
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=Prikaži fakturu
 ShowInvoiceReplace=Prikaži zamjensku fakturu
 ShowInvoiceAvoir=Show credit note
 ShowInvoiceDeposit=Prikaži fakture za avans
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Prikaži uplatu
 AlreadyPaid=Već plaćeno
 AlreadyPaidBack=Već izvršen povrat uplate
@@ -221,6 +224,7 @@ NonPercuRecuperable=Nepovratno
 SetConditions=Postaviti uslova plaćanja
 SetMode=Postaviti način plaćanja
 Billed=Fakturisano
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Ovaj iznos je otkazan (kupac je loš kupac) i smatra se k
 HelpAbandonOther=Ovaj iznos je otkazan jer je došlo do greške (naprimjer pogrešan kupac ili faktura zamijenjena sa nekom drugom)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=ID uplate
+PaymentRef=Payment ref.
 InvoiceId=ID fakture
 InvoiceRef=Referenca fakture
 InvoiceDateCreation=Datum kreiranja fakture
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Odmah
@@ -393,6 +402,7 @@ Reported=Odgođeno
 DisabledBecausePayments=Nije moguće jer ima nekoliko uplata
 CantRemovePaymentWithOneInvoicePaid=Ne može se obrisati uplata jer ima bar jedna faktura klasifikovana kao plaćena
 ExpectedToPay=Očekivano plaćanje
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Plaćeno ovom uplatom
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third pa
 RevenueStamp=Carinski pečat
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Predloga računa Crabe. Predloga kompletnega računa (Podpora PDV opcije, popusti, pogoji plačila, logo, itd...)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Predlaga številko v formatu %syymm-nnnn za standardne račune in %syymm-nnnn za dobropise kjer je yy leto, mm mesec in nnnn zaporedna broj brez presledkov in večja od 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=A bill starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/bs_BA/boxes.lang b/htdocs/langs/bs_BA/boxes.lang
index eac704664745c802c9ed2811592a50851b3504d9..f7ebb6d1b4d5aec1b11d22ae12e1d1b60a548dc2 100644
--- a/htdocs/langs/bs_BA/boxes.lang
+++ b/htdocs/langs/bs_BA/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Fakture kupaca
 ForCustomersOrders=Narudžbe kupaca
 ForProposals=Prijedlozi
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/bs_BA/categories.lang b/htdocs/langs/bs_BA/categories.lang
index 710c8742b9d2eb4fc2157f8a578c65acc140d913..fe89017c5fbbe67035dc37321462adf0d4688b98 100644
--- a/htdocs/langs/bs_BA/categories.lang
+++ b/htdocs/langs/bs_BA/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo./Prosp. categories
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/bs_BA/companies.lang b/htdocs/langs/bs_BA/companies.lang
index b0e888c1aa0a5954dc3b987827097df3b97c935e..ca6e538c678f6bc7123973d7127b98e36f230f18 100644
--- a/htdocs/langs/bs_BA/companies.lang
+++ b/htdocs/langs/bs_BA/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (R.C.)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (R.F.C).
 ProfId2MX=Prof Id 2 (R..P. IMSS)
diff --git a/htdocs/langs/bs_BA/compta.lang b/htdocs/langs/bs_BA/compta.lang
index a1409f836836bef44a692cdeb432bc7b36fd9095..3c2c4b231663d33a840318183db0286611531fcc 100644
--- a/htdocs/langs/bs_BA/compta.lang
+++ b/htdocs/langs/bs_BA/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Deposit invoices are nor included
 DepositsAreIncluded=- Deposit invoices are included
 LT2ReportByCustomersInInputOutputModeES=Report by third party IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/bs_BA/cron.lang b/htdocs/langs/bs_BA/cron.lang
index 7503afe9119e8523343db386999dca4db40a305f..d649cf9381f43371bff047739399ff17bd5edcf1 100644
--- a/htdocs/langs/bs_BA/cron.lang
+++ b/htdocs/langs/bs_BA/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=Lista onemogućenih poslova
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Zadnje pokretanje
 CronLastOutput=Izvještaj o zadnjem pokretanju
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Job
 CronNone=Ništa
-CronDtStart=Datum početka
-CronDtEnd=End date
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Sljedeće izvršenje
 CronDtLastLaunch=Zadnje izvršenje
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=Nema registrovanih poslova
 CronPriority=Prioritet
 CronLabel=Opis
 CronNbRun=Broj pokretanja
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
diff --git a/htdocs/langs/bs_BA/deliveries.lang b/htdocs/langs/bs_BA/deliveries.lang
index ae44b821cb82516b61af6c5f9e4f6a0c82137320..1cbd3593b3aaa1a688fc3821192bf909f6244dac 100644
--- a/htdocs/langs/bs_BA/deliveries.lang
+++ b/htdocs/langs/bs_BA/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Jeste li sigurni da želite obrisati dostavnicu <b>
 DeliveryMethod=Način dostave
 TrackingNumber=Broj za praćenje
 DeliveryNotValidated=Dostava nije potvrđena
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Ime i potpis:
 ToAndDate=Za ___________________________________ na ____/____/__________
diff --git a/htdocs/langs/bs_BA/holiday.lang b/htdocs/langs/bs_BA/holiday.lang
index bed4c488ca573d613eeaffb45fec991ff3e9d254..ff0a4bce7d0e0f3658f689cb1c74436aa10085f4 100644
--- a/htdocs/langs/bs_BA/holiday.lang
+++ b/htdocs/langs/bs_BA/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Zaposlenik
 DateDebCP=Datum početka
 DateFinCP=Datum završetka
 DateCreateCP=Datum kreiranja
@@ -23,7 +22,7 @@ ReviewedByCP=Bit će pregledano od strane
 DescCP=Opis
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=Datum završetka mora biti poslije datuma početka.
@@ -79,9 +78,9 @@ PrevSoldeCP=Prethodno stanje
 NewSoldeCP=Novo stanje
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Naziv
-Employee=Zaposlenik
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Mjesečno ažuriranje
 ManualUpdate=Ručno ažuriranje
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/bs_BA/hrm.lang b/htdocs/langs/bs_BA/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/bs_BA/hrm.lang
+++ b/htdocs/langs/bs_BA/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/bs_BA/interventions.lang b/htdocs/langs/bs_BA/interventions.lang
index 4074bffaf45b43c80814caf37bf54991f9c74c8c..ce5f3b81766e317b4cc990ff9fa94440896e1b94 100644
--- a/htdocs/langs/bs_BA/interventions.lang
+++ b/htdocs/langs/bs_BA/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Vratiti broj sa formatom %syymm-nnnn, gdje je yy godina,
 PacificNumRefModelError=Kartica intervencije koja počinje sa $syymm već postoji i nije kompatibilna sa ovim modelom nizda. Odstrani ili promijeni da bi se modul mogao aktivirati.
 PrintProductsOnFichinter=Isprintaj proizvode sa kartice intervencije
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/bs_BA/mails.lang b/htdocs/langs/bs_BA/mails.lang
index 0c50857e26fbb823f01b3c0c39aa43ee50a6fb34..e1b8ae0ccaaa9d9548608c3bbbe7aa520de23b70 100644
--- a/htdocs/langs/bs_BA/mails.lang
+++ b/htdocs/langs/bs_BA/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=E-pošta poslana %s primaocima
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/bs_BA/main.lang b/htdocs/langs/bs_BA/main.lang
index 3617972a29debd43f14cb5c5f906417fac119393..c6bb459ee2fcfd2dd5ef81485c067db763716d57 100644
--- a/htdocs/langs/bs_BA/main.lang
+++ b/htdocs/langs/bs_BA/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=Database connection
+NoTemplateDefined=No template defined for this email type
 NoTranslation=No translation
 NoRecordFound=No record found
 NoError=No error
@@ -105,6 +106,7 @@ NotePrivate=Note (private)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr was setup to limit precision of unit prices to <b>%s</b> decimals.
 DoTest=Test
 ToFilter=Filter
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Warning, you have at least one element that has exceeded the tolerance delay.
 yes=yes
 Yes=Yes
@@ -228,6 +230,8 @@ Now=Now
 HourStart=Start hour
 Date=Date
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Date start
 DateEnd=Date end
 DateCreation=Creation date
@@ -608,6 +612,7 @@ TotalMan=Total
 NeverReceived=Never received
 Canceled=Canceled
 YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Color
 Documents=Linked files
 DocumentsNb=Linked files (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=No pictures available yet
 HomeDashboard=Home summary
+Dashboard=Dashboard
 Deductible=Deductible
 from=from
 toward=toward
diff --git a/htdocs/langs/bs_BA/margins.lang b/htdocs/langs/bs_BA/margins.lang
index 7db5ea4892e47d38f81f47f47b7beb00e1177280..27bb4de9fa34bef827f4501268d659670a983767 100644
--- a/htdocs/langs/bs_BA/margins.lang
+++ b/htdocs/langs/bs_BA/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Choose product or service
 StartDate=Start date
 EndDate=End date
 Launch=Start
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=As a product
 UseDiscountAsService=As a service
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/bs_BA/oauth.lang b/htdocs/langs/bs_BA/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/bs_BA/oauth.lang
+++ b/htdocs/langs/bs_BA/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/bs_BA/orders.lang b/htdocs/langs/bs_BA/orders.lang
index 29c2a0b5e21d6c38fe10363675a1bc04bdd5b309..c0bfc3ccce39be48af6c839b61305244d9261c47 100644
--- a/htdocs/langs/bs_BA/orders.lang
+++ b/htdocs/langs/bs_BA/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=No draft orders
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Other orders
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/bs_BA/other.lang b/htdocs/langs/bs_BA/other.lang
index 5fff107fde9aef8b5b102b11516d063214201ce7..c53f32346fe31f4f3ab22fa18f5933e33d5e97e2 100644
--- a/htdocs/langs/bs_BA/other.lang
+++ b/htdocs/langs/bs_BA/other.lang
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=New export
 ##### External sites #####
 ExternalSites=External sites
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/bs_BA/paypal.lang b/htdocs/langs/bs_BA/paypal.lang
index a4204f919825385332e460f03280067caa62dbb4..c6905f2ecc4299f59205dda7302732f0f7e67666 100644
--- a/htdocs/langs/bs_BA/paypal.lang
+++ b/htdocs/langs/bs_BA/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Mode test/sandbox
 PAYPAL_API_USER=API username
 PAYPAL_API_PASSWORD=API password
 PAYPAL_API_SIGNATURE=API signature
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Offer payment "integral" (Credit card+Paypal) or "Paypal" only
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/bs_BA/products.lang b/htdocs/langs/bs_BA/products.lang
index 1cca7a029e95e3af142e18c981dd24bab1327133..4d934cc608003a37f6ca3f8d1eafd75624cd6e72 100644
--- a/htdocs/langs/bs_BA/products.lang
+++ b/htdocs/langs/bs_BA/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Production completed
-ProductsMultiPrice=Product multi-price
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/bs_BA/projects.lang b/htdocs/langs/bs_BA/projects.lang
index 0e82067d43b0252d6567a952ebb39516178dae5e..6cd98e8d7eb49b7c4e046ac5e143e152ccc7bd2e 100644
--- a/htdocs/langs/bs_BA/projects.lang
+++ b/htdocs/langs/bs_BA/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=Ovaj pregled predstavlja sve projekte (postavke vaših korisničkih dozvola vam omogućavaju da vidite sve).
 MyTasksDesc=Ovaj pregled predstavlja sve projekte ili zadatke za koje ste kontakt (bilo koji tip).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Ovaj pregled predstavlja sve projekte ili zadatke koje možete čitati.
 TasksDesc=Ovaj pregled predstavlja sve projekte i zadatke (postavke vaših korisničkih dozvola vam omogućavaju da vidite sve).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Službenik projekta
 LastProjects=Zadnjih %s projekata
 AllProjects=Svi projekti
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Lista projekata
 ShowProject=Prikaži projekt
 SetProject=Postavi projekat
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/bs_BA/propal.lang b/htdocs/langs/bs_BA/propal.lang
index 83047c08576b2f9b6b467f7d4830eed39894de02..b49d00b8041f3e41699d26f48b3dc147a563037a 100644
--- a/htdocs/langs/bs_BA/propal.lang
+++ b/htdocs/langs/bs_BA/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Lista %s izmijenjenih prijedloga
 AllPropals=Svi prijedlozi
 LastProposals=Zadnji prijedlozi
 SearchAProposal=Traži prijedlog
+NoProposal=No proposal
 ProposalsStatistics=Statistika poslovnog prijedloga
 NumberOfProposalsByMonth=Broj po mjesecu
 AmountOfProposalsByMonthHT=Amount by month (net of tax)
@@ -62,7 +63,8 @@ DatePropal=Date of proposal
 DateEndPropal=Validity ending date
 DateEndPropalShort=Date end
 ValidityDuration=Validity duration
-CloseAs=Close with status
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Classify billed
 BuildBill=Build invoice
 ErrorPropalNotFound=Propal %s not found
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Default model creation
 DefaultModelPropalToBill=Default template when closing a business proposal (to be invoiced)
 DefaultModelPropalClosed=Default template when closing a business proposal (unbilled)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/bs_BA/salaries.lang b/htdocs/langs/bs_BA/salaries.lang
index 953a9c7540cbb06d6209140b32aaa0d23261e324..da177410860fb80d4d2d0872ec3b258ed787ba0e 100644
--- a/htdocs/langs/bs_BA/salaries.lang
+++ b/htdocs/langs/bs_BA/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Salary
 Salaries=Salaries
-Employee=Employee
 NewSalaryPayment=New salary payment
 SalaryPayment=Salary payment
 SalariesPayments=Salaries payments
diff --git a/htdocs/langs/bs_BA/sendings.lang b/htdocs/langs/bs_BA/sendings.lang
index 9822df21905a76e050afeaa96fa075d5d144bde5..2d96407d3fbecfeedea7b6c54c9c50661fef1fb9 100644
--- a/htdocs/langs/bs_BA/sendings.lang
+++ b/htdocs/langs/bs_BA/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Pošiljka
 Shipments=Pošiljke
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Područje za pošiljke
 ListOfSendings=Lista pošiljki
 SendingMethod=Način slanja
diff --git a/htdocs/langs/bs_BA/sms.lang b/htdocs/langs/bs_BA/sms.lang
index 8ce2fa8db8a489195f18604ab1bb53c51cd81743..5592e473ca626d9595dbfcaa5cee3f5bd188c4c8 100644
--- a/htdocs/langs/bs_BA/sms.lang
+++ b/htdocs/langs/bs_BA/sms.lang
@@ -49,5 +49,6 @@ SendSms=Pošalji SMS
 SmsInfoCharRemain=Broj preostalih karaktera
 SmsInfoNumero= (međunarodni format: +33899701761)
 DelayBeforeSending=Sačekaj prije slanja (minute)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Nema dostupnih primaoca. Provjerite postavke vašeg SMS provajdera.
 
diff --git a/htdocs/langs/bs_BA/supplier_proposal.lang b/htdocs/langs/bs_BA/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/bs_BA/supplier_proposal.lang
+++ b/htdocs/langs/bs_BA/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/bs_BA/trips.lang b/htdocs/langs/bs_BA/trips.lang
index 73953c91ceae7c03448befbc719c7278c638e25f..471ce10d654a842b950326ec8f7baf059ce76392 100644
--- a/htdocs/langs/bs_BA/trips.lang
+++ b/htdocs/langs/bs_BA/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Ostalo
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Ručak
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/bs_BA/users.lang b/htdocs/langs/bs_BA/users.lang
index e097e7c41348dca41e4ba99ba102b4e63f161c97..b81241776d01b8dad22aee660072aa367531889c 100644
--- a/htdocs/langs/bs_BA/users.lang
+++ b/htdocs/langs/bs_BA/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Koristiti OpenID za login
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/ca_ES/accountancy.lang b/htdocs/langs/ca_ES/accountancy.lang
index e9b7470308eb2a27323eaeed9c27b0a89a0dcc16..cd5b19abb499ec6647cc08e5c826c4314ba66f60 100644
--- a/htdocs/langs/ca_ES/accountancy.lang
+++ b/htdocs/langs/ca_ES/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Selecciona un model d'exportació
 Modelcsv_normal=Exportació clàssica
 Modelcsv_CEGID=Exporta cap a CEGID Expert
 BackToChartofaccounts=Tornar al Pla comptable
-Back=Tornar
 
 Definechartofaccounts=Definir el Pla comptable
 Selectchartofaccounts=Seleccionar el Pla comptable
@@ -109,10 +108,6 @@ DelBookKeeping=Eliminar els registres del llibre major
 
 DescSellsJournal=Diari de vendes
 DescPurchasesJournal=Diari de compres
-BankJournal=Diari del banc
-DescBankJournal=Diari del banc incloent tots els tipus de pagaments diferents de caixa
-CashJournal=Efectiu diari
-DescCashJournal=Efectiu diari inclòs el tipus de pagament al comptat
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,22 +147,28 @@ DescVentilDoneSupplier=Consulta aquí el llistat de línies de factures de prove
 ValidateHistory=Valida automàticament
 
 ErrorAccountancyCodeIsAlreadyUse=Error, no pots eliminar aquest compte comptable perquè està en ús
-
+MvtNotCorrectlyBalanced=Moviment no balancejat correctament. Crèdit = %s. Dèbit = %s
 FicheVentilation=Desglossament de targetes
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
 ##Export Journal Feature
-ExportFormat=Format of Export
-Prefixname=Prefix of export File
-Separate=Export separator
-Textframe=Frame of text value
-Headercol=Colname in header of file
-Fieldname=Name of Field
-Headername=Name in header
-Type=Type of fields
-Param=Additionnal parameters
-EnabledProduct=In Product
-EnabledTiers=In Tiers
-EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+ExportFormat=Format d'exportació
+Prefixname=Prefix del fitxer d'exportació
+Separate=Separador d'exportació
+Textframe=Finestra del valor del text
+Headercol=Nom de columna en capçalera del fitxer
+Fieldname=Nom del camp
+Headername=Nom en la capçalera
+Type=Tipus de camps
+Param=Paràmetres addicionals
+EnabledProduct=En producte
+EnabledTiers=In third party
+EnabledVat=En IVA
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/ca_ES/admin.lang b/htdocs/langs/ca_ES/admin.lang
index 2b551272ad1fad80779f102deabf3f19c1b355d1..adda06f227cbed7f141347306e99384941ed3187 100644
--- a/htdocs/langs/ca_ES/admin.lang
+++ b/htdocs/langs/ca_ES/admin.lang
@@ -262,10 +262,10 @@ MAIN_MAIL_SMTP_PORT_NotAvailableOnLinuxLike=Port del servidor SMTP (No definit e
 MAIN_MAIL_SMTP_SERVER_NotAvailableOnLinuxLike=Nom servidor o ip del servidor SMTP (No definit en PHP en sistemes de tipus Unix)
 MAIN_MAIL_EMAIL_FROM=Correu electrònic de l'emissor per trameses e automàtics (Per defecte en php.ini: <b>%s</b>)
 MAIN_MAIL_ERRORS_TO=E-Mail usat per als retorns d'error dels e-mails enviats
-MAIN_MAIL_AUTOCOPY_TO= Enviar automàticament còpia oculta dels e-mails enviats a
-MAIN_MAIL_AUTOCOPY_PROPOSAL_TO= Enviar automàticament còpia oculta dels pressupostos enviats a
-MAIN_MAIL_AUTOCOPY_ORDER_TO= Enviar una copia oculta de les comandes que s'envien per e-mail a
-MAIN_MAIL_AUTOCOPY_INVOICE_TO= Enviar una copia oculta de les factures que s'envien per e-mail a
+MAIN_MAIL_AUTOCOPY_TO= Envia automàticament una còpia oculta de tots els e-mails enviats a
+MAIN_MAIL_AUTOCOPY_PROPOSAL_TO= Envia automàticament una còpia oculta dels pressupostos enviats per e-mail a
+MAIN_MAIL_AUTOCOPY_ORDER_TO= Envia automàticament una copia oculta de les comandes enviades per e-mail a
+MAIN_MAIL_AUTOCOPY_INVOICE_TO= Envia automàticament una copia oculta de les factures enviades per e-mail a
 MAIN_DISABLE_ALL_MAILS=Desactivar globalment tot enviament de correus electrònics (per mode de proves)
 MAIN_MAIL_SENDMODE=Mètode d'enviament d'e-mails
 MAIN_MAIL_SMTPS_ID=ID d'autenticació SMTP si es requereix autenticació SMTP
@@ -356,13 +356,13 @@ ModuleMustBeEnabledFirst=El mòdul "<b>%s</b>" ha d'habilitar-se primer si neces
 SecurityToken=Clau per encriptar urls
 NoSmsEngine=No hi ha cap gestor d'enviament de SMS. Els gestors d'enviament de SMS no s'instal·len en estàndard (ja que depenen d'un proveïdor), però pot trobar a la plataforma http://www.dolistore.com
 PDF=PDF
-PDFDesc=Podeu definir aquí les opcions globals per a la generació dels PDF
+PDFDesc=Defineix les opcions globals relacionades a la generació de PDF
 PDFAddressForging=Regles de visualització d'adreces
-HideAnyVATInformationOnPDF=Amagar tota la informació relacionada amb l'IVA en la generació dels PDF
+HideAnyVATInformationOnPDF=Amaga tota la informació relacionada amb l'IVA en els PDF generats
 HideDescOnPDF=Amagar descripció dels productes en la generació dels PDF
 HideRefOnPDF=Amagar referència dels productes en la generació dels PDF
 HideDetailsOnPDF=Amagar detalls de les línies de productes en la generació dels PDF
-PlaceCustomerAddressToIsoLocation=Utilitza la posició estàndar francesa (La Posteà per posició d'adresses de client
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Llibreria
 UrlGenerationParameters=Seguretat de les URL
 SecurityTokenIsUnique=Fer servir un paràmetre securekey únic per a cada URL?
@@ -379,7 +379,7 @@ Int=numèric enter
 Float=Decimal
 DateAndTime=Data i hora
 Unique=Unic
-Boolean=Boleano (Casella de verificació)
+Boolean=Boleà (Casella de verificació)
 ExtrafieldPhone = Telèfon
 ExtrafieldPrice = Preu
 ExtrafieldMail = Correu
@@ -388,7 +388,7 @@ ExtrafieldSelectList = Llista de selecció de table
 ExtrafieldSeparator=Separador
 ExtrafieldCheckBox=Casella de verificació
 ExtrafieldRadio=Botó de selecció excloent
-ExtrafieldCheckBoxFromList= Casella de verificació de la taula
+ExtrafieldCheckBoxFromList= Casella de verificació des de taula
 ExtrafieldLink=Enllaç a un objecte
 ExtrafieldParamHelpselect=La llista ha de ser en forma clau, valor<br><br> per exemple : <br>1,text1<br>2,text2<br>3,text3<br>...
 ExtrafieldParamHelpcheckbox=La llista ha de ser en forma clau, valor<br><br> per exemple : <br>1,text1<br>2,text2<br>3,text3<br>...
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Esteu segur que voleu esborrar tots els valors de
 AllBarcodeReset=S'han eliminat tots els valors de codi de barres
 NoBarcodeNumberingTemplateDefined=No hi ha plantilla de codi de barres habilitada a la configuració del mòdul de codi de barres.
 NoRecordWithoutBarcodeDefined=Sense registres sense codis de barres definits
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Usuaris i grups
@@ -499,7 +500,7 @@ Module510Desc=Gestió dels salaris dels empleats i pagaments
 Module520Name=Préstec
 Module520Desc=Gestió de préstecs
 Module600Name=Notificacions
-Module600Desc=Enviar notificacions per correu electrònic sobre alguns esdeveniments de negocis del Dolibarr als contactes de tercers (configuració definida en cada tercer)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Donacions
 Module700Desc=Gestió de donacions
 Module770Name=Informes de despeses
@@ -567,13 +568,13 @@ Permission11=Consulta factures de client
 Permission12=Crear/Modificar factures
 Permission13=Devalidar factures
 Permission14=Validar factures
-Permission15=Enviar factures per correu
+Permission15=Envia factures per e-mail
 Permission16=Crear cobraments per factures de clients
 Permission19=Eliminar factures
 Permission21=Consulta pressupostos
 Permission22=Crear/modificar pressupostos
 Permission24=Validar pressupostos
-Permission25=Enviar els pressupostos
+Permission25=Envia pressupostos
 Permission26=Tancar pressupostos
 Permission27=Eliminar pressupostos
 Permission28=Exportar els pressupostos
@@ -599,7 +600,7 @@ Permission79=Crear/modificar cotitzacions
 Permission81=Consulta comandes de clients
 Permission82=Crear/modificar comandes de clients
 Permission84=Validar comandes de clients
-Permission86=Enviar comandes de clients
+Permission86=Envia comandes de clients
 Permission87=Tancar comandes de clients
 Permission88=Anul·lar comandes de clients
 Permission89=Eliminar comandes de clients
@@ -764,7 +765,7 @@ Permission1231=Consultar factures de proveïdors
 Permission1232=Crear factures de proveïdors
 Permission1233=Validar factures de proveïdors
 Permission1234=Eliminar factures de proveïdors
-Permission1235=Enviar factures de proveïdors per correu
+Permission1235=Envia factures de proveïdors per e-mail
 Permission1236=Exporta factures de proveïdors, atributs i pagaments
 Permission1237=Exporta comandes de proveïdors juntament amb els seus detalls
 Permission1251=Llançar les importacions en massa a la base de dades (càrrega de dades)
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Terminis abans d'alerta
 DelaysOfToleranceBeforeWarning=Terminis de tolerància abans d'alerta
 DelaysOfToleranceDesc=Aquesta pantalla permet configura els terminis de tolerància abans que es alerti amb el símbol %s, sobre cada element en retard.
 Delays_MAIN_DELAY_ACTIONS_TODO=Tolerància de retard abans de l'alerta (en dies) sobre accions planificades no realitzades
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Tolerància de retard abans de l'alerta (en dies) sobre comandes de clients no processades
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Tolerància de retard abans de l'alerta (en dies) sobre comandes a proveïdors no processades
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Tolerància de retard abans de l'alerta (en dies) sobre pressupostos a tancar
@@ -1000,7 +1002,7 @@ AreaForAdminOnly=Aquestes funcions només són accessibles a un usuari administr
 SystemInfoDesc=La informació del sistema és informació tècnica accessible només en només lectura als administradors.
 SystemAreaForAdminOnly=Aquesta àrea només és accessible als usuaris de tipus administradors. Cap permís Dolibarr permet estendre el cercle de usuaris autoritzats a aquesta áera.
 CompanyFundationDesc=Edita en aquesta pàgina tota la informació coneguda sobre l'empresa o entitat a administrar (Feu clic al botó "Modificar" a peu de pàgina)
-DisplayDesc=Podeu trobar aquí tots els paràmetres relacionats amb l'aparença d'Dolibarr
+DisplayDesc=Selecciona els paràmetres relacionats amb l'aparença de Dolibarr
 AvailableModules=Mòduls disponibles
 DeprecatedModules=Mòduls obsolets
 ToActivateModule=Per activar els mòduls, aneu a l'àrea de Configuració (Inici->Configuració->Mòduls).
@@ -1016,7 +1018,7 @@ GeneratedPasswordDesc=Indiqui aquí que norma vol utilitzar per generar les cont
 DictionaryDesc=Indiqui aquí les dades de referència. Pot completar/modificar les dades predefinides amb les seves
 ConstDesc=Qualsevol altre paràmetre no editable en les pàgines anteriors
 OnceSetupFinishedCreateUsers=Atenció, està sota un compte d'administrador de Dolibarr. Els administradors s'utilitzen per configurar Dolibarr. Per a un ús corrent de Dolibarr, es recomana utilitzar un compte no administrador creada des del menú "Usuaris i grups"
-MiscellaneousDesc=Definiu aquí els altres paràmetres relacionats amb la seguretat.
+MiscellaneousDesc=Defineix aquí els altres paràmetres relacionats amb la seguretat.
 LimitsSetup=Configuració de límits i precisions
 LimitsDesc=Podeu definir aquí els límits i precisions utilitzats per Dolibarr
 MAIN_MAX_DECIMALS_UNIT=Decimals màxims per als preus unitaris
@@ -1087,6 +1089,7 @@ PathDirectory=Catàleg
 SendmailOptionMayHurtBuggedMTA=La funcionalitat d'enviar correus electrònics a través del "correu directe PHP" genera una sol·licitud que poden ser mal interpretats per alguns servidors de correu. Això és tradueix en missatges de correu electrònic illegibles per a les persones allotjades a aquestes plataformes. Aquest és el cas de clients en certs proveïdors de serveis d'internet (Ex: Orange). Això no és un problema ni de Dolibarr ni de PHP, però si del servidor de correu. Encara que, pot agregar la opció MAIN_FIX_FOR_BUGGED_MTA amb el valor 1 a la Configuració -> Varis per tractar que Dolibarr eviti l'error. Un altre solució (recomanada) és utilitzar el mètode d'enviament per SMTP que no té aquest inconvenient.
 TranslationSetup=Configuració traducció
 TranslationDesc=L'elecció de l'idioma mostrat en pantalla es modifica:<br>* A nivell global des del menú <strong>Inici - Configuració - Entorn</strong><br>* De manera específica a l'usuari des de la pestanya <strong>interface usuari</strong> de la seva fitxa d'usuari (fer clic al seu login a la part superior esquerra de la pantalla).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Nombre total de mòduls activats: <b>%s</b>
 YouMustEnableOneModule=Ha d'activar almenys 1 mòdul.
 ClassNotFoundIntoPathWarning=No s'ha trobat la classe %s en el seu path PHP
@@ -1368,7 +1371,7 @@ LDAPFieldCompany=Empresa
 LDAPFieldCompanyExample=Exemple : o
 LDAPFieldSid=SID
 LDAPFieldSidExample=Exemple : objectsid
-LDAPFieldEndLastSubscription=Data de finalització d'afiliació
+LDAPFieldEndLastSubscription=Data final d'afiliació
 LDAPFieldTitle=Lloc/Funció
 LDAPFieldTitleExample=Exemple:títol
 LDAPParametersAreStillHardCoded=Els paràmetres LDAP són codificats en dur (a la classe contact)
@@ -1426,7 +1429,7 @@ SyslogFacility=Facilitat
 SyslogLevel=Nivell
 SyslogSimpleFile=Arxiu
 SyslogFilename=Nom i ruta de l'arxiu
-YouCanUseDOL_DATA_ROOT=Podeu utilitzar DOL_DATA_ROOT/dolibarr.log per a un registre a la carpeta documents de Dolibarr. Tanmateix, pot establir una carpeta diferent per guardar aquest arxiu.
+YouCanUseDOL_DATA_ROOT=Utilitza DOL_DATA_ROOT/dolibarr.log per un fitxer de registre en la carpeta documents de Dolibarr. Tanmateix, es pot definir una carpeta diferent per guardar aquest fitxer.
 ErrorUnknownSyslogConstant=La constant %s no és una constant syslog coneguda
 OnlyWindowsLOG_USER=Windows només suporta LOG_USER
 SyslogSentryDSN=DSN Sentry
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=La instal·lació de mòduls externs d
 ConfFileMuseContainCustom=La instal·lació de mòduls externs des de l'aplicació guarda els arxius dels mòduls en el directori <strong>%s</strong>. Per disposar d'aquest directori a Dolibarr, té que configurar l'arxiu <strong>conf/conf.php</strong> per tenir l'opció <br>- <strong>$dolibarr_main_url_root_alt</strong> activat amb el valor <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> activat amb el valor <strong"%s/custom"</strong>
 HighlightLinesOnMouseHover=Remarca línies de la taula quan el ratolí passi per sobre
 HighlightLinesColor=Remarca el color de la línia quan el ratolí hi passa per sobre (deixa-ho buit per a no remarcar)
+TextTitleColor=Color of page title
 LinkColor=Color dels enllaços
 PressF5AfterChangingThis=Prem F5 en el teclat després de canviar aquest valor per fer-ho efectiu
 NotSupportedByAllThemes=Funcionarà amb el tema eldy però no està suportat pels altres temes
diff --git a/htdocs/langs/ca_ES/agenda.lang b/htdocs/langs/ca_ES/agenda.lang
index e6dbe781200fcc2f7cf8de9ff2e907cd5fa7937e..2e7a5a0f20e9d1177082de514937b43cbd90aa6c 100644
--- a/htdocs/langs/ca_ES/agenda.lang
+++ b/htdocs/langs/ca_ES/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Tots els esdeveniments/tasques
 ViewCal=Vista mensual
 ViewDay=Vista diària
 ViewWeek=Vista setmanal
+ViewYear=Year view
 ViewPerUser=Vista d'usuaris
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Veure amb els filtres predefinits
 AutoActions= Inclusió automàtica a l'agenda
 AgendaAutoActionDesc= Indiqueu en aquesta pestanya els esdeveniments per els que desitja que Dolibarr creu automàticament una acció a l'agenda. Si no es marca cap cas (per defecte), només les accions manuals s'han d'incloure en l'agenda.
@@ -49,7 +51,7 @@ InvoiceBackToDraftInDolibarr=Factura %s tornada a borrador
 InvoiceDeleteDolibarr=Factura %s eliminada
 OrderValidatedInDolibarr=Comanda %s validada
 OrderDeliveredInDolibarr=Comanda %s classificada com a enviada
-OrderCanceledInDolibarr=Commanda %s anul·lada
+OrderCanceledInDolibarr=Comanda %s anul·lada
 OrderBilledInDolibarr=Comanda %s classificada com a facturada
 OrderApprovedInDolibarr=Comanda %s aprovada
 OrderRefusedInDolibarr=Comanda %s rebutjada
@@ -90,17 +92,17 @@ ExtSiteUrlAgenda=Url d'accés a l'arxiu. ical
 ExtSiteNoLabel=Sense descripció
 WorkingTimeRange=Rang de temps de treball
 WorkingDaysRange=Rang de dies de treball
-VisibleTimeRange=Visible time range
-VisibleDaysRange=Visible days range
+VisibleTimeRange=Rang de temps visible
+VisibleDaysRange=Rang de dies visible
 AddEvent=Crear esdeveniment
 MyAvailability=La meva disponibilitat
 ActionType=Tipus d'esdeveniment
 DateActionBegin=Data d'inici de l'esdeveniment
-CloneAction=Clone event
-ConfirmCloneEvent=Are you sure you want to clone the event <b>%s</b> ?
-RepeatEvent=Repeat event
-EveryWeek=Every week
-EveryMonth=Every month
-DayOfMonth=Day of month
-DayOfWeek=Day of week
-DateStartPlusOne=Date start + 1 hour
+CloneAction=Clona l'esdeveniment
+ConfirmCloneEvent=Esteu segur de voler clonar l'esdeveniment <b>%s</b>?
+RepeatEvent=Repeteix esdeveniment
+EveryWeek=Cada setmana
+EveryMonth=Cada mes
+DayOfMonth=Dia del mes
+DayOfWeek=Dia de la setmana
+DateStartPlusOne=Data d'inici + 1 hora
diff --git a/htdocs/langs/ca_ES/banks.lang b/htdocs/langs/ca_ES/banks.lang
index e1329df575f7b051cf90bd7134d4f1c377c9c040..09b2f668f53486f787cae4bd436c35c536db8792 100644
--- a/htdocs/langs/ca_ES/banks.lang
+++ b/htdocs/langs/ca_ES/banks.lang
@@ -152,7 +152,7 @@ BackToAccount=Tornar al compte
 ShowAllAccounts=Mostra per a tots els comptes
 FutureTransaction=Transacció futura. No és possible conciliar.
 SelectChequeTransactionAndGenerate=Seleccioneu/filtreu els xecs a incloure a la remesa i feu clic a "Crear".
-InputReceiptNumber=Seleccioneu l'estat del compte bancari relacionat amb la conciliació. Utilitzeu un valor numèric com: AAAAMM o AAAAMMDD
+InputReceiptNumber=Selecciona l'estat del compte bancari relacionat amb la conciliació. Utilitzeu un valor numèric que es pugui ordenar: AAAAMM o AAAAMMDD
 EventualyAddCategory=Eventualment, indiqui una categoria en la qual classificar els registres
 ToConciliate=A conciliar?
 ThenCheckLinesAndConciliate=A continuació, comproveu les línies presents en l'extracte bancari i feu clic
diff --git a/htdocs/langs/ca_ES/bills.lang b/htdocs/langs/ca_ES/bills.lang
index 9dd9950661298cab1bb9fb0a80574e70bc203a50..87ee2b4ab15f1443742d93d82c8997a812ea7772 100644
--- a/htdocs/langs/ca_ES/bills.lang
+++ b/htdocs/langs/ca_ES/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Pagaments efectuats
 PaymentsBackAlreadyDone=Reemborsaments ja efectuats
 PaymentRule=Regla de pagament
 PaymentMode=Forma de pagament
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Forma de pagament
 PaymentTerm=Termini de pagament
 PaymentConditions=Condicions de pagament
@@ -95,7 +97,7 @@ DeleteBill=Eliminar factura
 SearchACustomerInvoice=Cercar una factura a client
 SearchASupplierInvoice=Cercar una factura de proveïdor
 CancelBill=Anul·lar una factura
-SendRemindByMail=Enviar recordatori
+SendRemindByMail=Envia recordatori per e-mail
 DoPayment=Emetre pagament
 DoPaymentBack=Emetre reembossament
 ConvertToReduc=Convertir en reducció futura
@@ -184,6 +186,7 @@ ShowInvoice=Veure factura
 ShowInvoiceReplace=Veure factura rectificativa
 ShowInvoiceAvoir=Veure abonament
 ShowInvoiceDeposit=Mostrar factura d'acompte
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Veure pagament
 AlreadyPaid=Ja pagat
 AlreadyPaidBack=Ja reemborsat
@@ -206,9 +209,9 @@ NoDraftInvoices=Sense factures esborrany
 RefBill=Ref. factura
 ToBill=A facturar
 RemainderToBill=Queda per facturar
-SendBillByMail=Enviar la factura per E-Mail
-SendReminderBillByMail=Enviar un recordatori per E-Mail
-RelatedCommercialProposals=Pressupostos associats
+SendBillByMail=Envia factura per e-mail
+SendReminderBillByMail=Envia recordatori per e-mail
+RelatedCommercialProposals=Pressupostos relacionats
 MenuToValid=A validar
 DateMaxPayment=Data límit de pagament
 DateEcheance=Data venciment
@@ -221,6 +224,7 @@ NonPercuRecuperable=No percebut recuperable
 SetConditions=Definir condicions de pagament
 SetMode=Definir mode de pagament
 Billed=Facturat
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Factura recurrent
 RepeatableInvoices=Factures recurrents
 Repeatable=Recurrent
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Aquest import es va abandonar (client jutjat com morós)
 HelpAbandonOther=Aquest import es va abandonar ja que es tractava d'un error de facturació (mala introducció de dades, factura substituïda per una altra).
 IdSocialContribution=Id. pagament d'impost social
 PaymentId=ID pagament
+PaymentRef=Payment ref.
 InvoiceId=Id factura
 InvoiceRef=Ref. factura
 InvoiceDateCreation=Data creació factura
@@ -289,13 +294,17 @@ ConfirmSplitDiscount=Esteu segur de voler dividir el descompte de <b>%s</b> %s e
 TypeAmountOfEachNewDiscount=Indiqui l'import per a cada part:
 TotalOfTwoDiscountMustEqualsOriginal=La suma de l'import dels 2 nous descomptes deu ser la mateixa que l'import del descompte a dividir.
 ConfirmRemoveDiscount=Esteu segur de voler eliminar aquest descompte?
-RelatedBill=Factura associada
-RelatedBills=Factures associades
-RelatedCustomerInvoices=Factures de clients relacionades
-RelatedSupplierInvoices=Factures de proveïdors relacionades
-LatestRelatedBill=Últimes factura associeades
+RelatedBill=Factura relacionada
+RelatedBills=Factures relacionades
+RelatedCustomerInvoices=Factures de client relacionades
+RelatedSupplierInvoices=Factures de proveïdor relacionades
+LatestRelatedBill=Última factura relacionada
 WarningBillExist=Advertència, una o més factures ja existeixen
 MergingPDFTool=Eina de fusió PDF
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=A la recepció
@@ -393,6 +402,7 @@ Reported=Ajornat
 DisabledBecausePayments=No disponible ja que hi ha pagaments
 CantRemovePaymentWithOneInvoicePaid=Eliminació impossible quan hi ha almenys una factura classificada com a pagada.
 ExpectedToPay=Esperant el pagament
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Pagada per aquest pagament
 ClosePaidInvoicesAutomatically=Classificar com "Pagades" les factures rectificatives completament pagades.
 ClosePaidCreditNotesAutomatically=Classificar automàticament com "Pagats" els abonaments completament reemborsats
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Nota: Aquest llistat inclou només els tercers dels
 RevenueStamp=Timbre fiscal
 YouMustCreateInvoiceFromThird=Aquesta opció només està disponible quan es crea la factura des de la pestanya "client" des de tercers
 PDFCrabeDescription=Model de factura complet (model recomanat per defecte)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Retorna el nombre sota el format %syymm-nnnn per a les factures i %syymm-nnnn per als abonaments on yy és l'any, mm. el mes i nnnn un comptador seqüencial sense ruptura i sense permanència a 0
 MarsNumRefModelDesc1=Retorna el nombre sota el format %syymm-nnnn per a les factures, %syymm-nnnn per a les factures rectificatives, %syymm-nnnn per a les factures de dipòsit i %syymm-nnnn pels abonaments  on yy és l'any, mm el mes i nnnn un comptador seqüencial sense ruptura i sense retorn a 0
 TerreNumRefModelError=Ja hi ha una factura amb $syymm i no és compatible amb aquest model de seqüència. Elimineu o renómbrela per poder activar aquest mòdul
@@ -433,3 +444,11 @@ DisabledBecauseFinal=Aquesta situació és definitiva.
 CantBeLessThanMinPercent=El progrés no pot ser menor que el seu valor en la situació anterior.
 NoSituations=No hi ha situacions obertes
 InvoiceSituationLast=Factura final i general
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/ca_ES/boxes.lang b/htdocs/langs/ca_ES/boxes.lang
index 984566c17a242195b390605a8785d238590ed814..f47aa9d83748fda5f1001c89df6840a48ba6049e 100644
--- a/htdocs/langs/ca_ES/boxes.lang
+++ b/htdocs/langs/ca_ES/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Factures a clientes
 ForCustomersOrders=Comandes de clients
 ForProposals=Pressupostos
 LastXMonthRolling=L'ultim %s mes natural
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/ca_ES/categories.lang b/htdocs/langs/ca_ES/categories.lang
index d59b2dc32863dc498b31c4be8d8a6f0cfdd1635c..113380acabd9e8ee882fe1e329eb789371084b3b 100644
--- a/htdocs/langs/ca_ES/categories.lang
+++ b/htdocs/langs/ca_ES/categories.lang
@@ -1,62 +1,62 @@
 # Dolibarr language file - Source file is en_US - categories
-Rubrique=Etiqueta/categoria
-Rubriques=Etiquetes/categories
-categories=etiquetes/categories
-TheCategorie=La etiqueta/categoria
-NoCategoryYet=Cap tipus d'aquesta etiqueta/categoria creada
+Rubrique=Etiqueta
+Rubriques=Etiquetes
+categories=etiquetes
+TheCategorie=L'etiqueta
+NoCategoryYet=No s'ha creat cap etiqueta d'aquest tipus
 In=En
 AddIn=Afegir en
 modify=Modificar
 Classify=Classificar
-CategoriesArea=Àrea d'etiquetes/categories
-ProductsCategoriesArea=Àrea d'etiquetes/categories de productes/serveis
-SuppliersCategoriesArea=Àrea d'etiquetes/categories de proveïdors
-CustomersCategoriesArea=Àrea etiquetes/categories de clients
-ThirdPartyCategoriesArea=Àrea etiquetes/categories de tercers
-MembersCategoriesArea=Àrea etiquetes/categories de membres
-ContactsCategoriesArea=Àrea etiquetes/categories de contactes
-MainCats=Etiqutes/categories principals
+CategoriesArea=Àrea d'etiquetes
+ProductsCategoriesArea=Àrea d'etiquetes de productes/serveis
+SuppliersCategoriesArea=Àrea d'etiquetes de proveïdors
+CustomersCategoriesArea=Àrea d'etiquetes de clients
+ThirdPartyCategoriesArea=Àrea d'etiquetes de tercers
+MembersCategoriesArea=Àrea d'etiquetes de socis
+ContactsCategoriesArea=Àrea d'etiquetes de contactes
+MainCats=Etiquetes principals
 SubCats=Subcategories
 CatStatistics=Estadístiques
-CatList=Llista d'etiquetes/categories
-AllCats=Totes les etiquetes/categories
-ViewCat=Veure etiqueta/categoria
-NewCat=Afegir etiqueta/categoria
-NewCategory=Nova etiqueta/categoria
-ModifCat=Modificar etiqueta/categoria
-CatCreated=Etiqueta/categoria creada
-CreateCat=Crear etiqueta/categoria
-CreateThisCat=Crear aquesta etiqueta/categoria
+CatList=Llistat d'etiquetes
+AllCats=Totes les etiquetes
+ViewCat=Mostra l'etiqueta
+NewCat=Afegeix etiqueta
+NewCategory=Nova etiqueta
+ModifCat=Modifica l'etiqueta
+CatCreated=Etiqueta creada
+CreateCat=Crea etiqueta
+CreateThisCat=Crea aquesta etiqueta
 ValidateFields=Validar els camps
-NoSubCat=Aquesta categoria no  conté cap subcategoria
-SubCatOf=Subcategories
-FoundCats=Etiquetes/categories trobades
-FoundCatsForName=Etiquetes/categories trobades amb aquest nom:
-FoundSubCatsIn=Etiquetes/categories trobades dintre de les subcategories
-ErrSameCatSelected=Heu seleccionat la mateixa etiqueta/categoria varies vegades
-ErrForgotCat=Ha oblidat escollir l'etiqueta/categoria
+NoSubCat=Cap subcategoria.
+SubCatOf=Subcategoria
+FoundCats=Etiquetes trobades
+FoundCatsForName=Etiquetes trobades pel nom:
+FoundSubCatsIn=S'han trobat subcategories en l'etiqueta
+ErrSameCatSelected=Heu seleccionat la mateixa etiqueta varies vegades
+ErrForgotCat=Heu oblidat escollir l'etiqueta
 ErrForgotField=Ha oblidat reassignar un camp
 ErrCatAlreadyExists=Aquest nom està sent utilitzat
-AddProductToCat=Afegir aquest producte a una etiqueta/categoria?
-ImpossibleAddCat=Impossible afegir l'etiqueta/categoria
-ImpossibleAssociateCategory=Impossible associar l'etiqueta/categoria
+AddProductToCat=Voleu afegir aquest producte a una etiqueta?
+ImpossibleAddCat=Impossible afegir l'etiqueta
+ImpossibleAssociateCategory=Impossible associar l'etiqueta a
 WasAddedSuccessfully=s'ha afegit amb èxit.
-ObjectAlreadyLinkedToCategory=L'element ja està enllaçat a aquesta etiqueta/categoria
-CategorySuccessfullyCreated=L'etiqueta/categoria %s s'ha inserit correctament
-ProductIsInCategories=Product/service is linked to following tags/categories
-SupplierIsInCategories=Third party is linked to following suppliers tags/categories
-CompanyIsInCustomersCategories=This third party is linked to following customers/prospects tags/categories
-CompanyIsInSuppliersCategories=This third party is linked to following suppliers tags/categories
-MemberIsInCategories=This member is linked to following members tags/categories
-ContactIsInCategories=This contact is linked to following contacts tags/categories
-ProductHasNoCategory=Aquest producte/servei no es troba en cap etiqueta/categoria en particular
-SupplierHasNoCategory=Aquest proveïdor no es troba en cap etiqueta/categoria en particular
-CompanyHasNoCategory=This thirdparty is not in any tags/categories
-MemberHasNoCategory=Aquest membre no es troba en cap etiqueta/categoria en particular
-ContactHasNoCategory=Aquest contacte no es troba a ninguna etiqueta/cateogria
-ClassifyInCategory=Add to tag/category
+ObjectAlreadyLinkedToCategory=L'element ja està enllaçat a aquesta etiqueta
+CategorySuccessfullyCreated=L'etiqueta %s s'ha afegit correctament.
+ProductIsInCategories=El producte/servei està enllaçat a les següents etiquetes
+SupplierIsInCategories=El tercer està enllaçat a les següents etiquetes de proveïdors
+CompanyIsInCustomersCategories=Aquest tercer està enllaçat a les següents etiquetes de clients i clients potencials
+CompanyIsInSuppliersCategories=Aquest tercer està enllaçat a les següents etiquetes de proveïdors
+MemberIsInCategories=Aquest soci està enllçat a les següents etiquetes de socis
+ContactIsInCategories=Aquest contacte està enllaçat amb les següents etiquetes de contactes
+ProductHasNoCategory=Aquest producte/servei no es troba en cap etiqueta
+SupplierHasNoCategory=Aquest proveïdor no es troba en cap etiqueta
+CompanyHasNoCategory=Aquest tercer no es troba en cap etiqueta
+MemberHasNoCategory=Aquest soci no es troba en cap etiqueta
+ContactHasNoCategory=Aquest contacte no es troba en cap etiqueta
+ClassifyInCategory=Afegeix a una etiqueta
 NoneCategory=Cap
-NotCategorized=Sense etiqueta/categoria
+NotCategorized=Sense etiqueta
 CategoryExistsAtSameLevel=Aquesta categoria ja existeix per aquesta referència
 ReturnInProduct=Tornar a la fitxa producte/servei
 ReturnInSupplier=Tornar a la fitxa proveïdor
@@ -64,48 +64,49 @@ ReturnInCompany=Tornar a la fitxa client/client potencial
 ContentsVisibleByAll=El contingut serà visible per tots
 ContentsVisibleByAllShort=Contingut visible per tots
 ContentsNotVisibleByAllShort=Contingut no visible per tots
-CategoriesTree=Arbre d'etiquetes/categories
-DeleteCategory=Eliminar etiqueta/categoria
-ConfirmDeleteCategory=Eseu segur de voler eliminar aquesta etiqueta/categoria?
-RemoveFromCategory=Remove link with tag/category
-RemoveFromCategoryConfirm=Are you sure you want to unlink the transaction from the tag/category ?
-NoCategoriesDefined=Nova etiqueta/categoria definida
-SuppliersCategoryShort=Suppliers tag/category
-CustomersCategoryShort=Customers tag/category
-ProductsCategoryShort=Products tag/category
-MembersCategoryShort=Members tag/category
-SuppliersCategoriesShort=Etiquetes/categories de proveïdors
-CustomersCategoriesShort=Etiquetes/categories de clients
+CategoriesTree=Arbre d'etiquetes
+DeleteCategory=Elimina l'etiqueta
+ConfirmDeleteCategory=Esteu segur de voler eliminar aquesta etiqueta?
+RemoveFromCategory=Elimina l'enllaç amb l'etiqueta
+RemoveFromCategoryConfirm=Esteu segur de voler desenllaçar la transacció de l'etiqueta?
+NoCategoriesDefined=Cap etiqueta definida
+SuppliersCategoryShort=Etiqueta de proveïdors
+CustomersCategoryShort=Etiqueta de clients
+ProductsCategoryShort=Etiqueta de productes
+MembersCategoryShort=Etiqueta de socis
+SuppliersCategoriesShort=Etiquetes de proveïdors
+CustomersCategoriesShort=Etiquetes de clients
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Categories clients
-ProductsCategoriesShort=Etiquetes/categories de productes
-MembersCategoriesShort=Etiquetes/categories de membres
-ContactCategoriesShort=Etiquetes/categories de contactes
+ProductsCategoriesShort=Etiquetes de productes
+MembersCategoriesShort=Etiquetes de socis
+ContactCategoriesShort=Etiquetes de contactes
 ThisCategoryHasNoProduct=Aquesta categoria no conté cap producte.
 ThisCategoryHasNoSupplier=Aquesta categoria no conté cap proveïdor.
 ThisCategoryHasNoCustomer=Aquesta categoria no conté cap client.
-ThisCategoryHasNoMember=Aquesta categoria no té cap membre.
+ThisCategoryHasNoMember=Aquesta categoria no té cap soci.
 ThisCategoryHasNoContact=Aquesta categoria no conté contactes
 AssignedToCustomer=Assignar a un client
 AssignedToTheCustomer=Assignat a un client
 InternalCategory=Categoria interna
-CategoryContents=Contingut de l'etiqueta/categoria
-CategId=ID d'etiquetes/categoria
-CatSupList=Llistat de les etiquetes/categories de proveïdors
-CatCusList=Llistat de les etiquetes/categories de clients
-CatProdList=Llistat de les etiquetes/categories de productes
-CatMemberList=Llistat de les etiquetes/categories dels membres
-CatContactList=List of contact tags/categories
-CatSupLinks=Enllaços entre proveïdors i etiquetes/categories
-CatCusLinks=Enllaços entre clients/clients potencials i etiquetes/categories
-CatProdLinks=Enllaços entre productes/serveis i etiquetes/categories
-CatMemberLinks=Enllaços entre membres i etiquetes/categories
-DeleteFromCat=Eliminar de l'etiqueta/categoria
+CategoryContents=Continguts d'etiqueta
+CategId=ID d'etiqueta
+CatSupList=Llistat d'etiquetes de proveïdors
+CatCusList=Llistat d'etiquetes de clients/clients potencials
+CatProdList=Llistat d'etiquetes de productes
+CatMemberList=Llistat d'etiquetes de socis
+CatContactList=Llistat d'etiquetes de contactes
+CatSupLinks=Enllaços entre proveïdors i etiquetes
+CatCusLinks=Enllaços entre clients/clients potencials i etiquetes
+CatProdLinks=Enllaços entre productes/serveis i etiquetes
+CatMemberLinks=Enllaços entre socis i etiquetes
+DeleteFromCat=Elimina de l'etiqueta
 DeletePicture=Eliminar imatge
 ConfirmDeletePicture=Confirmar l'eliminació de la imatge?
 ExtraFieldsCategories=Atributs complementaris
-CategoriesSetup=Configuració d'etiquetes/categories
-CategorieRecursiv=Enllaçar amb l'etiqueta/categoria automàticament
+CategoriesSetup=Configuració d'etiquetes
+CategorieRecursiv=Enllaça amb l'etiqueta mare automàticament
 CategorieRecursivHelp=Si esta activat, el producte s'enllaçara a la categoria pare si l'afegim a una subcategoria
 AddProductServiceIntoCategory=Afegir el següent producte/servei
-ShowCategory=Mostrar etiqueta/categoria
-ByDefaultInList=By default in list
+ShowCategory=Mostra etiqueta
+ByDefaultInList=Per defecte en el llistat
diff --git a/htdocs/langs/ca_ES/commercial.lang b/htdocs/langs/ca_ES/commercial.lang
index 484dfd5da7bf095c5b0b5edba6a1a262408694c8..516acdbfe8317c0c42f78de94c7bc32f790a2d58 100644
--- a/htdocs/langs/ca_ES/commercial.lang
+++ b/htdocs/langs/ca_ES/commercial.lang
@@ -67,19 +67,19 @@ ActionDoneBy=Acció realitzada per
 ActionUserAsk=Registrada per
 ErrorStatusCantBeZeroIfStarted=Si el camp '<b>Data de realització</b>' conté dades l'acció està en curs, per la qual cosa el camp 'Estat' no pot ser 0%%.
 ActionAC_TEL=Trucada telefònica
-ActionAC_FAX=Enviament Fax
-ActionAC_PROP=Enviament pressupost per correu
-ActionAC_EMAIL=Enviament E-Mail
+ActionAC_FAX=Envia Fax
+ActionAC_PROP=Envia pressupost per e-mail
+ActionAC_EMAIL=Envia e-mail
 ActionAC_RDV=Cita
 ActionAC_INT=Lloc d'intervenció
-ActionAC_FAC=Enviament factura a client per correu
-ActionAC_REL=Recordatori factura a client per correu
+ActionAC_FAC=Envia factura de client per e-mail
+ActionAC_REL=Envia factura de client per e-mail (recordatori)
 ActionAC_CLO=Tancament
-ActionAC_EMAILING=Enviament mailing massiu
-ActionAC_COM=Enviament comanda de client per correu
-ActionAC_SHIP=Enviament expedició per correu
-ActionAC_SUP_ORD=Enviament comanda a proveïdor per correu
-ActionAC_SUP_INV=Enviament factura de proveïdor per correu
+ActionAC_EMAILING=Envia mailing massiu
+ActionAC_COM=Envia comanda de client per e-mail
+ActionAC_SHIP=Envia expedició per e-mail
+ActionAC_SUP_ORD=Envia comanda a proveïdor per e-mail
+ActionAC_SUP_INV=Envia factura de proveïdor per e-mail
 ActionAC_OTH=Altra
 ActionAC_OTH_AUTO=Altra (esdeveniments inserits automàticament)
 ActionAC_MANUAL=Esdeveniments creats manualment
diff --git a/htdocs/langs/ca_ES/companies.lang b/htdocs/langs/ca_ES/companies.lang
index 8dec3c52ec33407c9bf6bcc6577da240db1df7ab..e7150e375ad16ff5184d931549838a3a092a846e 100644
--- a/htdocs/langs/ca_ES/companies.lang
+++ b/htdocs/langs/ca_ES/companies.lang
@@ -106,7 +106,7 @@ CustomerCodeModel=Model de codi client
 SupplierCodeModel=Model de codi proveïdor
 Gencod=Codi de barra
 ##### Professional ID #####
-ProfId1Short=Prof. id 1
+ProfId1Short=CIF/NIF
 ProfId2Short=Prof. id 2
 ProfId3Short=Prof. id 3
 ProfId4Short=Prof. id 4
@@ -190,7 +190,7 @@ ProfId3GB=SIC
 ProfId4GB=-
 ProfId5GB=-
 ProfId6GB=-
-ProfId1HN=RTN
+ProfId1HN=CIF/NIF
 ProfId2HN=-
 ProfId3HN=-
 ProfId4HN=-
@@ -202,11 +202,11 @@ ProfId3IN=Id prof. 3 (SRVC TAX)
 ProfId4IN=Id prof. 4
 ProfId5IN=Id prof. 5
 ProfId6IN=-
-ProfId1MA=Id prof. 1 (R.C.)
+ProfId1MA=CIF/NIF
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=R.F.C.
 ProfId2MX=Registre Patronal IMSS
diff --git a/htdocs/langs/ca_ES/compta.lang b/htdocs/langs/ca_ES/compta.lang
index a54a5a2510c50dbe3eeda592f6d4ceb14569764e..46c4e2495a0f683cfcac834851dbd074b24cf6ac 100644
--- a/htdocs/langs/ca_ES/compta.lang
+++ b/htdocs/langs/ca_ES/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Les factures de bestreta no estan incloses
 DepositsAreIncluded=- Les factures de bestreta estan incloses
 LT2ReportByCustomersInInputOutputModeES=Informe per tercer del IRPF
 LT1ReportByCustomersInInputOutputModeES=Informe de RE per tercers
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Informe per clients d'IVA cobrat i pagat
 VATReportByCustomersInDueDebtMode=Informe per clients d'IVA cobrat i pagat
 VATReportByQuartersInInputOutputMode=Informe per tipus d'IVA cobrat i pagat
diff --git a/htdocs/langs/ca_ES/contracts.lang b/htdocs/langs/ca_ES/contracts.lang
index 3d542488d73df2c0a6a7d7f602cce23969864dac..4c2c3b5d233ceb053a66371c9deba4aa4bec18df 100644
--- a/htdocs/langs/ca_ES/contracts.lang
+++ b/htdocs/langs/ca_ES/contracts.lang
@@ -10,7 +10,7 @@ ContractStatusRunning=En servei
 ContractStatusDraft=Esborrany
 ContractStatusValidated=Validat
 ContractStatusClosed=Tancat
-ServiceStatusInitial=Inactiu
+ServiceStatusInitial=Fora de servei
 ServiceStatusRunning=En servei
 ServiceStatusNotLate=En servei, no expirat
 ServiceStatusNotLateShort=No expirat
@@ -88,7 +88,7 @@ ConfirmMoveToAnotherContract=He triat el contracte i confirmo el canvi de servei
 ConfirmMoveToAnotherContractQuestion=Escolliu qualsevol altre contracte del mateix tercer, voleu moure aquest servei?
 PaymentRenewContractId=Renovació servei (número %s)
 ExpiredSince=Expirat des del
-RelatedContracts=Contractes associats
+RelatedContracts=Contractes relacionats
 NoExpiredServices=Sense serveis actius expirats
 ListOfServicesToExpireWithDuration=Llistat de serveis actius a expirar en %s dies
 ListOfServicesToExpireWithDurationNeg=Llistat de serveis expirats més de %s dies
diff --git a/htdocs/langs/ca_ES/cron.lang b/htdocs/langs/ca_ES/cron.lang
index aefd4e63eb67389e0641093bdf87932959ee3468..509de32301cc38aaa8357c56d5e44d9b77dbd280 100644
--- a/htdocs/langs/ca_ES/cron.lang
+++ b/htdocs/langs/ca_ES/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=A entorns Unix s'ha d'utilitzar la següent entrada cron
 CronExplainHowToRunWin=En entorns Microsoft (tm) Windows, pot utilitzar l'eina 'tareas programadas' per executar la comanda cada 5 minuts
 # Menu
 CronJobs=Tasques programades
-CronListActive=Llistat de tasques actives/programades
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=Llistat de tasques planificades inactives
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Últim llançament
 CronLastOutput=Última sortida
@@ -35,8 +36,8 @@ CronInfo=Tasques programades li permet executar tasques que han sigut programade
 CronWaitingJobs=Treballs en espera
 CronTask=Tasca
 CronNone=Ningún
-CronDtStart=Data inici
-CronDtEnd=Data fi
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Propera execució
 CronDtLastLaunch=Darrera execució
 CronFrequency=Freqüència
@@ -51,6 +52,7 @@ CronNoJobs=Sense treballs actualment
 CronPriority=Prioritat
 CronLabel=Descripció
 CronNbRun=Nº ejec.
+CronMaxRun=Max nb. launch
 CronEach=Tota (s)
 JobFinished=Tasques llançades i finalitzades
 #Page card
diff --git a/htdocs/langs/ca_ES/deliveries.lang b/htdocs/langs/ca_ES/deliveries.lang
index 106cc1d5dbc95781ad4446c12618f11dd8ec7989..daa0a91630c875c9cec6da9991b41cd78a7a00cf 100644
--- a/htdocs/langs/ca_ES/deliveries.lang
+++ b/htdocs/langs/ca_ES/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Esteu segur de voler eliminar aquesta nota de lliur
 DeliveryMethod=Mètode d'enviament
 TrackingNumber=Nº de tracking
 DeliveryNotValidated=Nota de recepció no validada
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Nom i signatura:
 ToAndDate=En___________________________________ a ____/_____/__________
diff --git a/htdocs/langs/ca_ES/errors.lang b/htdocs/langs/ca_ES/errors.lang
index 1ea12beb2a03e6c908be62c0d1f0d19235912e8d..588eaf832ed5dc5e63e5c54423a559caae4c2e91 100644
--- a/htdocs/langs/ca_ES/errors.lang
+++ b/htdocs/langs/ca_ES/errors.lang
@@ -59,7 +59,7 @@ ErrorFileSizeTooLarge=La mida del fitxer és massa gran.
 ErrorSizeTooLongForIntType=Longitud del camp massa llarg per al tipus int (màxim %s xifres)
 ErrorSizeTooLongForVarcharType=Longitud del camp massa llarg per al tipus cadena (màxim %s xifres)
 ErrorNoValueForSelectType=Els valors de la llista han de ser indicats
-ErrorNoValueForCheckBoxType=Els valors de la llista han de ser indicats
+ErrorNoValueForCheckBoxType=Els valors de la llista de la casella de verificacó han de ser indicats
 ErrorNoValueForRadioType=Els valors de la llista han de ser indicats
 ErrorBadFormatValueList=La llista de valors no pot tenir més d'una coma: <u>%s</u>, però necessita com a mínim una: clau,valor
 ErrorFieldCanNotContainSpecialCharacters=El camp <b>%s</b> no ha de contenir caràcters especials
diff --git a/htdocs/langs/ca_ES/holiday.lang b/htdocs/langs/ca_ES/holiday.lang
index 6f47bf1ce7fbae14a1ba33dd43485801359131a3..786b872ec1bf8dd71ccbb5ab3823ec0725ce653d 100644
--- a/htdocs/langs/ca_ES/holiday.lang
+++ b/htdocs/langs/ca_ES/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=Ha d'activar el mòdul Dies lliures retribuïts per veure aquesta
 NotConfigModCP=Ha de configurar el mòdul Dies lliures retribuïts per veure aquesta pàgina. Per configurar-lo, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> faci clic aquí </a>.
 NoCPforUser=No té peticions de dies lliures
 AddCP=Realitzar una petició de dies lliures
-Employe=Empleat
 DateDebCP=Data inici
 DateFinCP=Data fi
 DateCreateCP=Data de creació
@@ -23,7 +22,7 @@ ReviewedByCP=Serà revisada per
 DescCP=Descripció
 SendRequestCP=Enviar la petició de dies lliures
 DelayToRequestCP=Les peticions de dies lliures s'han de realitzar al menys <b>%s dies</b> abans.
-MenuConfCP=Definir els dies lliures
+MenuConfCP=Balance of leaves
 UpdateAllCP=Actualitzar els dies lliures
 SoldeCPUser=El seu saldo de dies lliures es de <b>%s dies</b>
 ErrorEndDateCP=Ha d'indicar una data de fi superior a la data d'inici.
@@ -40,9 +39,9 @@ EditCP=Modificar
 DeleteCP=Eliminar
 ActionValidCP=Validar
 ActionRefuseCP=Rebutjar
-ActionCancelCP=Anul·lar
+ActionCancelCP=Cancel·la
 StatutCP=Estat
-SendToValidationCP=Enviar validació
+SendToValidationCP=Envia a validació
 TitleDeleteCP=Eliminar la petició de dies lliures
 ConfirmDeleteCP=Estàs segur de voler eliminar aquesta petició de dies lliures?
 ErrorCantDeleteCP=Error, no te permisos per eliminar aquesta petició de dies lliures
@@ -55,7 +54,7 @@ ErrorDureeCP=La seva petició de dies lliures no conté cap dia hàbil
 TitleValidCP=Aprovar la petició de dies lliures
 ConfirmValidCP=Estàs segur de voler validar aquesta petició de dies lliures?
 DateValidCP=Data de validació
-TitleToValidCP=Enviar la petició de dies lliures
+TitleToValidCP=Envia la petició de dies lliures
 ConfirmToValidCP=Estàs segur de voler enviar la petició de dies lliures?
 TitleRefuseCP=Rebutjar la petició de dies lliures
 ConfirmRefuseCP=Estàs segur de voler rebutjar la petició de dies lliures?
@@ -79,9 +78,9 @@ PrevSoldeCP=Saldo anterior
 NewSoldeCP=Nou saldo
 alreadyCPexist=Ha s'ha efectuat una petició de dies lliures per aquest periode
 UserName=Nom Cognoms
-Employee=Empleat
 FirstDayOfHoliday=Primer dia lliure
 LastDayOfHoliday=Últim dia lliures
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Actualització mensual
 ManualUpdate=Actualització manual
 HolidaysCancelation=Anulació de dies lliures
@@ -141,4 +140,7 @@ HolidaysRefusedBody=La seva sol·licitud de dies lliures retribuïts des de el %
 HolidaysCanceled=Dies lliures retribuïts cancel·lats
 HolidaysCanceledBody=La seva solicitud de dies lliures retribuïts del %s al %s ha sigut cancel·lada.
 NewByMonth=Afegit per mes
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Ves a <strong>Inici - Configuració - Diccionaris - Tipus de dies lliures</strong> per configurar els diferents tipus de dies lliures
diff --git a/htdocs/langs/ca_ES/hrm.lang b/htdocs/langs/ca_ES/hrm.lang
index e9af38ea45309d4ee5e367e3efe00f8f8e1d2486..e74c87679573c19b52ed610f7714bfbb7fd19614 100644
--- a/htdocs/langs/ca_ES/hrm.lang
+++ b/htdocs/langs/ca_ES/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Llistat de funcions
 ListOfEmployees=Llistat d'empleats
 Employees=Empleats
 Employee=Empleat
+Employe=Employe
 NewEmployee=Nou empleat
 EmployeeCard=Fitxa d'empleat
diff --git a/htdocs/langs/ca_ES/interventions.lang b/htdocs/langs/ca_ES/interventions.lang
index e2364026a4c12a393aaf10749846261e61b1674b..47425099f436c5011e4c643a67687f005868f760 100644
--- a/htdocs/langs/ca_ES/interventions.lang
+++ b/htdocs/langs/ca_ES/interventions.lang
@@ -27,10 +27,10 @@ InterventionCardsAndInterventionLines=Fitxes i línies d'intervenció
 InterventionClassifyBilled=Classificar "facturat"
 InterventionClassifyUnBilled=Classificar "no facturat"
 StatusInterInvoiced=Facturada
-RelatedInterventions=Intervencions adjuntes
+RelatedInterventions=Intervencions relacionades
 ShowIntervention=Mostrar intervenció
 SendInterventionRef=Presentar intervenció %s
-SendInterventionByMail=Envia la intervenció per email
+SendInterventionByMail=Envia la intervenció per e-mail
 InterventionCreatedInDolibarr=Intervenció %s creada
 InterventionValidatedInDolibarr=Intervenció %s validada
 InterventionModifiedInDolibarr=Intervenció %s modificada
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Retorna el número amb el format %syymm-nnnn on yy és l
 PacificNumRefModelError=Una factura que comença per # $$syymm existeix en base i és incompatible amb aquesta numeració. Elemínela o renombrela per activar aquest mòdul.
 PrintProductsOnFichinter=Mostrar els productes a la fitxa d'intervenció
 PrintProductsOnFichinterDetails=Intervencions generades des de comandes
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Id. d'intervenció
 InterRef=Ref. d'intervenció
diff --git a/htdocs/langs/ca_ES/mails.lang b/htdocs/langs/ca_ES/mails.lang
index 69fad9bd066ffd3626561adc5ad83a8bb550d01a..9b76f89cba4cb280e94bb3e2c3cd675943eb81f6 100644
--- a/htdocs/langs/ca_ES/mails.lang
+++ b/htdocs/langs/ca_ES/mails.lang
@@ -81,8 +81,9 @@ ActivateCheckReadKey=Clau utilitzada per encriptar la URL utilitzada per les car
 EMailSentToNRecipients=E-Mail enviat a %s destinataris.
 XTargetsAdded=<b>%s</b> destinataris agregats a la llista
 EachInvoiceWillBeAttachedToEmail=Es creara i adjuntara a cada e-mail un document usant el model de factura per defecte.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Recordatori de la factura %s (%s)
-SendRemind=Enviar recordatoris per e-mail
+SendRemind=Envia recordatori per e-mail
 RemindSent=%s recodatori(s) enviats
 AllRecipientSelected=Tots els tercers seleccionats si hi ha un e-mail definit
 NoRemindSent=no s'han enviat recordatoris per e-mail
@@ -112,8 +113,8 @@ TargetsStatistics=Estadístiques destinataris
 NbOfCompaniesContacts=Contactes/adreces únics
 MailNoChangePossible=Destinataris d'un E-Mailing validat no modificables
 SearchAMailing=Cercar un E-Mailing
-SendMailing=Enviar E-Mailing
-SendMail=Enviar e-mail
+SendMailing=Envia e-mailing
+SendMail=Envia e-mail
 SentBy=Enviat por
 MailingNeedCommand=Per raons de seguretat, l'enviament d'un E-Mailing en massa es pot fer en línia de comandes. Demani al seu administrador que llanci la comanda següent per per enviar la correspondència a tots els destinataris:
 MailingNeedCommand2=Podeu enviar en línia afegint el paràmetre MAILING_LIMIT_SENDBYWEB amb un valor nombre que indica el màxim nombre d'e-mails enviats per sessió. Per això aneu a Inici - Configuració - Varis
diff --git a/htdocs/langs/ca_ES/main.lang b/htdocs/langs/ca_ES/main.lang
index 334fb33db4414088b8664aeb27bc5071bd284470..8d2dc705322e8792eeb760ad69fd810c3a2fd53e 100644
--- a/htdocs/langs/ca_ES/main.lang
+++ b/htdocs/langs/ca_ES/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%d/%m/%Y %H:%M:%S
 FormatDateHourTextShort=%d %b %Y %H:%M
 FormatDateHourText=%d %B %Y %H:%M
 DatabaseConnection=Connexió a la base de dades
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Sense traducció
 NoRecordFound=No s'han trobat registres
 NoError=Cap error
@@ -105,6 +106,7 @@ NotePrivate=Nota (privada)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr està configurat per limitar la precisió dels preus unitaris a <b>%s </b> decimals.
 DoTest=Provar
 ToFilter=Filtrar
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Atenció, té almenys un element que ha passat la data de tolerencia.
 yes=sí
 Yes=Sí
@@ -142,7 +144,7 @@ ConfirmSendCardByMail=ConfirmSendCardByMail=Vol enviar el contingut d'aquesta fi
 Delete=Eliminar
 Remove=Retirar
 Resiliate=Dona de baixa
-Cancel=Anul·lar
+Cancel=Cancel·la
 Modify=Modificar
 Edit=Editar
 Validate=Validar
@@ -166,7 +168,7 @@ Valid=Validar
 Approve=Aprovar
 Disapprove=Desaprovar
 ReOpen=Reobrir
-Upload=Enviar arxiu
+Upload=Envia arxiu
 ToLink=Enllaç
 Select=Seleccionar
 Choose=Escollir
@@ -228,6 +230,8 @@ Now=Ara
 HourStart=Hora d'inici
 Date=Data
 DateAndHour=Data i hora
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Data inici
 DateEnd=Data fi
 DateCreation=Data de creació
@@ -565,20 +569,20 @@ ShowProspectPreview=Veure historial client potencial
 RefCustomer=Ref. client
 Currency=Divisa
 InfoAdmin=Informació per als administradors
-Undo=Anul·lar
+Undo=Desfer
 Redo=Refer
 ExpandAll=Expandir tot
-UndoExpandAll=Anul·lar expansió
+UndoExpandAll=Desfer expansió
 Reason=Raó
 FeatureNotYetSupported=Funcionalitat encara no suportada
 CloseWindow=Tancar finestra
 Question=Pregunta
 Response=Resposta
 Priority=Prioritat
-SendByMail=Enviar per e-mail
+SendByMail=Envia per e-mail
 MailSentBy=Mail enviat per
 TextUsedInTheMessageBody=Text utilitzat en el cos del missatge
-SendAcknowledgementByMail=Enviament rec. per e-mail
+SendAcknowledgementByMail=Envia confirmació per e-mail
 EMail=Correu electrònic
 NoEMail=Sense e-mail
 NoMobilePhone=Sense mòbil
@@ -606,8 +610,9 @@ PartialMan=Parcial
 TotalWoman=Total
 TotalMan=Total
 NeverReceived=Mai rebut
-Canceled=Cancel·lat
+Canceled=Anul·lada
 YouCanChangeValuesForThisListFromDictionarySetup=Pot canviar aquestos valors al menú configuració->diccionaris
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Color
 Documents=Documents
 DocumentsNb=Fitxers adjunts (%s)
@@ -695,6 +700,7 @@ Test=Prova
 Element=Element
 NoPhotoYet=No hi ha fotografia disponible
 HomeDashboard=Resum
+Dashboard=Dashboard
 Deductible=Deduïble
 from=de
 toward=cap a
diff --git a/htdocs/langs/ca_ES/margins.lang b/htdocs/langs/ca_ES/margins.lang
index 33b16d75033ffd5f22e30524c4ded65ce4fdd305..b11b8fd143ef7ffe7a0f7a8cc092a978883a8bb1 100644
--- a/htdocs/langs/ca_ES/margins.lang
+++ b/htdocs/langs/ca_ES/margins.lang
@@ -35,8 +35,9 @@ MargeBrute=Marge brut
 MargeNette=Marge net
 MargeType1=Marge en el millor preu de proveïdor
 MargeType2=Marge en Preu mitjà ponderat (PMP)
-MARGIN_TYPE_DETAILS=Marge brut: Preu de venda sense IVA - Preu de compra sense IVA <br/> Marge net: Preu de venda sense IVA - Costos
-MarginTypeDesc=Marge amb millor preu de compra: Preu de venda - El millor preu de proveïdor definit en la fitxa del producte <br/> Marge de Preu Mitj Ponderat (PMP): Preu de venda - Preu Mitj Ponderat del producte (PMP) o el millor preu de proveïdor si encara no té definit cap PMP
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Preu de compra
 BuyingCost=Costos
 UnitCharges=Càrrega unitària
diff --git a/htdocs/langs/ca_ES/members.lang b/htdocs/langs/ca_ES/members.lang
index c0338b1c5d6746a4e97e8e7e29ed71f178226506..7bae05822927d508eb0d8094f6273e3b41fcd717 100644
--- a/htdocs/langs/ca_ES/members.lang
+++ b/htdocs/langs/ca_ES/members.lang
@@ -39,9 +39,9 @@ MembersWithSubscriptionToReceive=Socis amb afiliació per rebre
 DateAbonment=Data afiliació
 DateSubscription=Data afiliació
 DateNextSubscription=Data propera afiliació
-DateEndSubscription=Data fi afiliació
-EndSubscription=Fi afiliació
-SubscriptionId=ID afiliació
+DateEndSubscription=Data final d'afiliació
+EndSubscription=Final d'afiliació
+SubscriptionId=ID d'afiliació
 MemberId=ID de soci
 NewMember=Nou soci
 NewType=Nou tipus de soci
@@ -70,10 +70,10 @@ MembersStatusNotPaid=Afiliacions no al dia
 MembersStatusNotPaidShort=No al dia
 MembersStatusResiliated=Socis donats de baixa
 MembersStatusResiliatedShort=Socis donats de baixa
-NewCotisation=Nova afiliació
+NewCotisation=Nova aportació
 PaymentSubscription=Pagament de quotes
 EditMember=Edita el soci
-SubscriptionEndDate=Data fi afiliació
+SubscriptionEndDate=Data final d'afiliació
 MembersTypeSetup=Configuració dels tipus de socis
 NewSubscription=Nova afiliació
 NewSubscriptionDesc=Utilitzi aquest formulari per registrar-se com un nou soci de l'entitat. Per a una renovació (si ja és soci) poseu-vos en contacte amb l'entitat mitjançant l'e-mail %s.
@@ -84,7 +84,7 @@ SubscriptionNotReceived=Afiliació no rebuda
 SubscriptionLateShort=En retard
 SubscriptionNotReceivedShort=No rebuda
 ListOfSubscriptions=Llista d'afiliacions
-SendCardByMail=Enviar fitxa per e-mail
+SendCardByMail=Envia fitxa per e-mail
 AddMember=Crea soci
 NoTypeDefinedGoToSetup=No s'ha definit cap tipus de soci. Aneu al menú "Tipus de socis"
 NewMemberType=Nou tipus de soci
@@ -127,7 +127,7 @@ MemberNotOrNoMoreExpectedToSubscribe=No sotmesa a cotització
 AddSubscription=Crear afiliació
 ShowSubscription=Mostrar afiliació
 MemberModifiedInDolibarr=Soci modificat en Dolibarr
-SendAnEMailToMember=Enviar e-mail d'informació al soci
+SendAnEMailToMember=Envia e-mail d'informació al soci
 DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Assumpte del e-mail rebut en cas d'auto-inscripció d'un convidat
 DescADHERENT_AUTOREGISTER_NOTIF_MAIL=E-mail rebut en cas d'auto-inscripció d'un convidat
 DescADHERENT_AUTOREGISTER_MAIL_SUBJECT=Assumpte del e-mail enviat quan un convidat es a autoinscrigui
@@ -179,7 +179,7 @@ MembersByTownDesc=Aquesta pantalla presenta una estadística del nombre de socis
 MembersStatisticsDesc=Trieu les estadístiques que voleu consultar...
 MenuMembersStats=Estadístiques
 LastMemberDate=Data de l'últim soci
-Nature=Naturalesa
+Nature=Caràcter
 Public=Informació pública
 Exports=Exportacions
 NewMemberbyWeb=S'ha afegit un nou soci. A l'espera d'aprovació
@@ -198,7 +198,7 @@ Entreprises=Empreses
 DOLIBARRFOUNDATION_PAYMENT_FORM=Per realitzar el pagament de la seva cotització per transferència bancària, visiteu la pàgina <a target="_blank" href="http://wiki.dolibarr.org/index.php/Subscribirse#Para_una_adhesi.C3.B3n_por_transferencia">http://wiki.dolibarr.org/index.php/Subscribirse</a>.<br>Per pagar amb targeta de crèdit o PayPal, feu clic al botó a la part inferior d'aquesta pàgina.<br><br>
 ByProperties=Per característiques
 MembersStatisticsByProperties=Estadístiques dels socis per característiques
-MembersByNature=Aquesta pantalla mostra les estadístiques de socis per naturalesa.
+MembersByNature=Aquesta pantalla mostra estadístiques de socis per caràcter.
 MembersByRegion=Aquesta pantalla mostra les estadístiques de socis per regió.
 VATToUseForSubscriptions=Taxa d'IVA per les afiliacions
 NoVatOnSubscription=Sense IVA per a les afiliacions
diff --git a/htdocs/langs/ca_ES/oauth.lang b/htdocs/langs/ca_ES/oauth.lang
index 83b35b82f0160645cdf9da97ec21c3b1ec16d6d1..7456246c5e68c89931d76b565a35dae4685fa595 100644
--- a/htdocs/langs/ca_ES/oauth.lang
+++ b/htdocs/langs/ca_ES/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token eliminat
 RequestAccess=Clica aquí per demanar/renovar l'accés i rebre un nou token per desar
 DeleteAccess=Faci clic aquí per eliminar token
 UseTheFollowingUrlAsRedirectURI=Utilitza la següent URL com a URI de redirecció quan es crea la teva credencial en el teu proveïdor OAuth:
-ListOfSupportedOauthProviders=Entra aquí la credencial proporcionada pel teu proveïdor OAuth2. Només es mostren els proveïdors que suporten OAuth2. Aquesta configuració es pot utilitzar per altres mòduls que necessitin autentificació OAuth2.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/ca_ES/opensurvey.lang b/htdocs/langs/ca_ES/opensurvey.lang
index 8e4d110b952d4b28f9f9cff7c44c98e054fedc5b..64e315068e7f0767a2bff46f8fd0b7afe750511d 100644
--- a/htdocs/langs/ca_ES/opensurvey.lang
+++ b/htdocs/langs/ca_ES/opensurvey.lang
@@ -28,7 +28,7 @@ UrlForSurvey=URL per indicar l'accés directe a l'enquesta
 PollOnChoice=Està creant una enquesta amb múltiples opcions. Primer introdueixi totes les opcions possibles per aquesta enquesta:
 CreateSurveyDate=Crear una enquesta de data
 CreateSurveyStandard=Crear una enquesta estàndard
-CheckBox=Checkbox simple
+CheckBox=Casella de verificació simple
 YesNoList=Llista (buit/sí/no)
 PourContreList=Llista (buit/a favor/en contra)
 AddNewColumn=Afegir nova columna
diff --git a/htdocs/langs/ca_ES/orders.lang b/htdocs/langs/ca_ES/orders.lang
index 8604cf27cafdff05d5c074e7cf4498cae82d76ae..aec67a14d43c9f351ce9146d33d8f43d9e3d6ea1 100644
--- a/htdocs/langs/ca_ES/orders.lang
+++ b/htdocs/langs/ca_ES/orders.lang
@@ -40,7 +40,7 @@ StatusOrderBilledShort=Facturat
 StatusOrderToProcessShort=A processar
 StatusOrderReceivedPartiallyShort=Rebuda parcialment
 StatusOrderReceivedAllShort=Rebuda
-StatusOrderCanceled=Anul-lada
+StatusOrderCanceled=Anul·lada
 StatusOrderDraft=Esborrany (a validar)
 StatusOrderValidated=Validada
 StatusOrderOnProcess=Comanda - En espera de recepció
@@ -82,7 +82,7 @@ OrdersOpened=Comandes a processar
 NoOpenedOrders=No hi ha comandes obertes
 NoOtherOpenedOrders=No hi ha altres comandes obertes
 NoDraftOrders=Sense comandes esborrany
-NoOrder=Sense comanda
+NoOrder=No order
 NoSupplierOrder=Sense comanda a proveïdor
 OtherOrders=Altres comandes
 LastOrders=Últimes %s comandes de clients
@@ -111,14 +111,14 @@ ClassifyBilled=Classificar facturat
 ComptaCard=Fitxa comptable
 DraftOrders=Comandes esborrany
 DraftSuppliersOrders=Comandes a proveïdors en esborrany
-RelatedOrders=Comandes adjuntes
-RelatedCustomerOrders=Comandes de clients relacionades
-RelatedSupplierOrders=Comandes a clients relacionades
+RelatedOrders=Comandes relacionades
+RelatedCustomerOrders=Comandes de client relacionades
+RelatedSupplierOrders=Comandes de proveïdor relacionades
 OnProcessOrders=Comandes en procés
 RefOrder=Ref. comanda
 RefCustomerOrder=Ref. comanda client
 RefCustomerOrderShort=Ref. com. client
-SendOrderByMail=Enviar comanda per e-mail
+SendOrderByMail=Envia comanda per e-mail
 ActionsOnOrder=Esdeveniments sobre la comanda
 NoArticleOfTypeProduct=No hi ha articles de tipus 'producte' i per tant enviables en aquesta comanda
 OrderMode=Mètode de comanda
diff --git a/htdocs/langs/ca_ES/other.lang b/htdocs/langs/ca_ES/other.lang
index d3d43006d03980882680c0e53f806413332ceaa5..d22af8d23e152aac2f196d40bb8b838e223fa7bb 100644
--- a/htdocs/langs/ca_ES/other.lang
+++ b/htdocs/langs/ca_ES/other.lang
@@ -238,3 +238,8 @@ ToExport=Exportar
 NewExport=Nova exportació
 ##### External sites #####
 ExternalSites=Llocs externs
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/ca_ES/paybox.lang b/htdocs/langs/ca_ES/paybox.lang
index fb9e059a91140faaf5ee8587c5407c421c3e34be..6e2f5c5273324968f95a0e6cb6188bb6dd16ef46 100644
--- a/htdocs/langs/ca_ES/paybox.lang
+++ b/htdocs/langs/ca_ES/paybox.lang
@@ -22,7 +22,7 @@ ToOfferALinkForOnlinePaymentOnMemberSubscription=URL que ofereix una interfície
 YouCanAddTagOnUrl=També pot afegir el paràmetre url <b>&tag=<i>value</i></b> per a qualsevol d'aquestes adreces (obligatori només per al pagament lliure) per veure el seu propi codi de comentari de pagament.
 SetupPayBoxToHavePaymentCreatedAutomatically=Configureu la vostra url Paybox <b>%s</b> per tal que el pagament es creu automàticament al validar.
 YourPaymentHasBeenRecorded=Aquesta pàgina confirma que el pagament s'ha registrat correctament. Gràcies.
-YourPaymentHasNotBeenRecorded=El seu pagament no ha estat registrat i la transacció ha estat anul.lada. Gràcies.
+YourPaymentHasNotBeenRecorded=El pagament no ha estat registrat i la transacció ha estat anul·lada. Gràcies.
 AccountParameter=Paràmetres del compte
 UsageParameter=Paràmetres d'ús
 InformationToFindParameters=Informació per trobar la seva configuració de compte %s
diff --git a/htdocs/langs/ca_ES/paypal.lang b/htdocs/langs/ca_ES/paypal.lang
index 164ec2e658542844e5b53a0f987e9a337323ac4e..a9c507b3b1167bc69ab60bf1e25bb3544a0a1679 100644
--- a/htdocs/langs/ca_ES/paypal.lang
+++ b/htdocs/langs/ca_ES/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Mode de proves(sandbox)
 PAYPAL_API_USER=Nom usuari API
 PAYPAL_API_PASSWORD=Contrasenya usuari API
 PAYPAL_API_SIGNATURE=Signatura API
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Proposar pagament integral (Targeta+Paypal) o només Paypal
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=Només PayPal
diff --git a/htdocs/langs/ca_ES/products.lang b/htdocs/langs/ca_ES/products.lang
index 3c5e98684ef1709a2e0f5883890d1c8d3f3e58d5..c07ef19d343baf93d4209c3aaa793b73df7d2c49 100644
--- a/htdocs/langs/ca_ES/products.lang
+++ b/htdocs/langs/ca_ES/products.lang
@@ -198,7 +198,7 @@ SuppliersPricesOfProductsOrServices=Preus de proveïdors (productes o serveis)
 CustomCode=Codi duaner
 CountryOrigin=País d'origen
 HiddenIntoCombo=Ocult en les llistes
-Nature=Naturalesa
+Nature=Caràcter
 ShortLabel=Etiqueta curta
 Unit=Unitat
 p=u.
@@ -252,7 +252,7 @@ UnitPmp=Preu Compra Unitari
 CostPmpHT=Cost de compra
 ProductUsedForBuild=Auto consumit per producció
 ProductBuilded=Producció completada
-ProductsMultiPrice=Producte multi-preu
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Preus de client (productes o serveis, multi-preus)
 ProductSellByQuarterHT=Facturació de productes trimestral abans d'impostos
 ServiceSellByQuarterHT=Facturació de serveis trimestral abans d'impostos
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Selecciona fitxers PDF
 IncludingProductWithTag=Inclòs productes/serveis amb etiqueta
 DefaultPriceRealPriceMayDependOnCustomer=Preu per defecte, el preu real depén de client
 WarningSelectOneDocument=Selecciona com a mínim un document
-DefaultUnitToShow=Unitats
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/ca_ES/projects.lang b/htdocs/langs/ca_ES/projects.lang
index 04fa456ee57d1c0425b46be639d3e786ab741e17..6612c6c2f596ebd63a61b426a0fa36931d108858 100644
--- a/htdocs/langs/ca_ES/projects.lang
+++ b/htdocs/langs/ca_ES/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=Aquesta vista mostra tots els projectes als que té dret
 ProjectsDesc=Aquesta vista mostra tots els projectes (les seves autoritzacions li ofereixen una visió completa).
 MyTasksDesc=Aquesta vista es limita als projectes i tasques en què vostè és un contacte afectat en almenys una tasca (qualsevol tipus).
 OnlyOpenedProject=Només visibles els projectes oberts (els projectes en estat d'esborrany o tancats no són visibles)
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Aquesta vista mostra tots els projectes i tasques en els que vostè té dret a tenir visibilitat.
 TasksDesc=Aquesta vista mostra tots els projectes i tasques (les sevas autoritzacions li ofereixen una visió completa).
 AllTaskVisibleButEditIfYouAreAssigned=Totes les tasques de cada projecte són visibles, però només pots entrar les hores per les tasques que tens assignades. Assigna't tasques si vols afegir-hi les hores.
@@ -29,7 +30,9 @@ OfficerProject=Responsable del projecte
 LastProjects=Els %s ultims projectes
 AllProjects=Tots els projectes
 OpenedProjects=Projectes oberts
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Quantitat d'oportunitats de projectes oberts per estat
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Llistat de projectes
 ShowProject=Veure projecte
 SetProject=Definir projecte
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=La tasca %s a sigut modificada
 TaskDeletedInDolibarr=La tasca %s a sigut eliminada
 OpportunityStatus=Estat d'oportunitats
 OpportunityStatusShort=Estat d'oportunitat
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Import d'oportunitats
 OpportunityAmountShort=Import d'oportunitat
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projectes amb aquest usuari com a contacte
 TasksWithThisUserAsContact=Tasques asignades a l'usuari
 ResourceNotAssignedToProject=No assignat a cap projecte
 ResourceNotAssignedToTask=No assignat a cap tasca
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assignar-me una tasca
 AssignTask=Assigna
 ProjectOverview=Informació general
@@ -179,7 +185,7 @@ YouCanCompleteRef=Si vols completar la referència amb més informació (per uti
 OpenedProjectsByThirdparties=Projectes oberts per tercers
 OpportunityTotalAmount=Import total d'oportunitats
 OpportunityPonderatedAmount=Quantitat ponderada d'oportunitats
-OpportunityPonderatedAmountDesc=Import d'oportunitats ponderat per probabilitat (depenent de l'estat de l'oportunitat)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Potencial
 OppStatusQUAL=Qualificació
 OppStatusPROPO=Pressupost
diff --git a/htdocs/langs/ca_ES/propal.lang b/htdocs/langs/ca_ES/propal.lang
index 8fdbf201c311ed4f3d187784597fb503619adae4..75d8c33873ac83b2f81c5d61a3c1dbc5c8193ed0 100644
--- a/htdocs/langs/ca_ES/propal.lang
+++ b/htdocs/langs/ca_ES/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Els %s darrers pressupostos modificats
 AllPropals=Tots els pressupostos
 LastProposals=Ultims pressupostos
 SearchAProposal=Cercar un pressupost
+NoProposal=No proposal
 ProposalsStatistics=Estadístiques de pressupostos
 NumberOfProposalsByMonth=Número per mes
 AmountOfProposalsByMonthHT=Import per mes (Sense IVA)
@@ -55,14 +56,15 @@ NoOpenedPropals=Sense pressupostos oberts
 NoOtherOpenedPropals=No hi ha altres pressupostos oberts
 NoPropal=Sense pressupost
 RefProposal=Ref. pressupost
-SendPropalByMail=Enviar pressupost per e-mail
+SendPropalByMail=Envia pressupost per e-mail
 AssociatedDocuments=Documents associats al pressupost:
 ErrorCantOpenDir=Impossible obrir la carpeta
 DatePropal=Data pressupost
 DateEndPropal=Data fi validesa
 DateEndPropalShort=Data fi
 ValidityDuration=Durada de validesa
-CloseAs=Tancar l'estatut
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Classificar facturat
 BuildBill=Crear factura
 ErrorPropalNotFound=Pressupost %s inexistent
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Model per defecte
 DefaultModelPropalToBill=Model per defecte en tancar un pressupost (a facturar)
 DefaultModelPropalClosed=Model per defecte en tancar un pressupost (no facturat)
 ProposalCustomerSignature=Acceptació per escrit, segell de l'empresa, data i signatura
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/ca_ES/salaries.lang b/htdocs/langs/ca_ES/salaries.lang
index 5ca4046e156b4293cbf1e54510d8c00a4633aff8..a0c4eb159261d03de67206129dd69e7f8da46ddb 100644
--- a/htdocs/langs/ca_ES/salaries.lang
+++ b/htdocs/langs/ca_ES/salaries.lang
@@ -3,7 +3,6 @@ SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Codi comptable pagament de salaris
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Codi comptable càrregues financeres
 Salary=Sou
 Salaries=Sous
-Employee=Empleat
 NewSalaryPayment=Nou pagament de sous
 SalaryPayment=Pagament de sous
 SalariesPayments=Pagaments de sous
diff --git a/htdocs/langs/ca_ES/sendings.lang b/htdocs/langs/ca_ES/sendings.lang
index d92427a179555287dfe8826d9c036d0f08b6e769..184022729ef1287ae31d82f7936e8170b340d6d6 100644
--- a/htdocs/langs/ca_ES/sendings.lang
+++ b/htdocs/langs/ca_ES/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=Tots els enviaments
 Shipment=Enviament
 Shipments=Enviaments
 ShowSending=Mostra les expedicions
-Receivings=Recepcions
+Receivings=Delivery Receipts
 SendingsArea=Àrea enviaments
 ListOfSendings=Llista d'enviaments
 SendingMethod=Mètode d'enviament
@@ -31,11 +31,11 @@ DateSendingShort=Data de lliurament
 SendingsForSameOrder=Expedicions d'aquesta comanda
 SendingsAndReceivingForSameOrder=Enviaments i recepcions d'aquesta comanda
 SendingsToValidate=Enviaments a validar
-StatusSendingCanceled=Anul.lat
+StatusSendingCanceled=Anul·lada
 StatusSendingDraft=Esborrany
 StatusSendingValidated=Validat (productes a enviar o enviats)
 StatusSendingProcessed=Processat
-StatusSendingCanceledShort=Anul.lat
+StatusSendingCanceledShort=Anul·lada
 StatusSendingDraftShort=Esborrany
 StatusSendingValidatedShort=Validat
 StatusSendingProcessedShort=Processat
@@ -55,12 +55,12 @@ WarningNoQtyLeftToSend=Alerta, cap producte en espera d'enviament.
 StatsOnShipmentsOnlyValidated=Estadístiques realitzades únicament sobre les expedicions validades
 DateDeliveryPlanned=Data prevista d'entrega
 DateReceived=Data real de recepció
-SendShippingByEMail=Enviament d'expedició per e-mail
+SendShippingByEMail=Envia expedició per e-mail
 SendShippingRef=Enviament de l'expedició %s
 ActionsOnShipping=Events sobre l'expedició
 LinkToTrackYourPackage=Enllaç per al seguiment del seu paquet
 ShipmentCreationIsDoneFromOrder=De moment, la creació d'una nova expedició es realitza des de la fitxa de comanda.
-RelatedShippings=Expedicions asociades
+RelatedShippings=Expedicions relacionades
 ShipmentLine=Línia d'expedició
 CarrierList=Llistat de transportistes
 SendingRunning=Producte de comandes de clients
diff --git a/htdocs/langs/ca_ES/sms.lang b/htdocs/langs/ca_ES/sms.lang
index d021816f84064cffb782c23508dcdf79be640dd2..ae7e8f762278eb053fb1fdcf814ebe7af47c0ae1 100644
--- a/htdocs/langs/ca_ES/sms.lang
+++ b/htdocs/langs/ca_ES/sms.lang
@@ -45,9 +45,10 @@ NbOfRecipients=Nombre de destinataris
 NbOfUniqueSms=Nº de telèfons únics
 NbOfSms=Nº de telèfon
 ThisIsATestMessage=Aquest és un missatge de prova
-SendSms=Enviar SMS
+SendSms=Envia SMS
 SmsInfoCharRemain=Nº restant de caràcters
 SmsInfoNumero= (format internacional ex: +33899701761)
 DelayBeforeSending=Retard abans d'enviar (en minuts)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=No hi ha destinataris. Comproveu la configuració del seu proveïdor d'SMS.
 
diff --git a/htdocs/langs/ca_ES/stocks.lang b/htdocs/langs/ca_ES/stocks.lang
index 13f076d3b650217c1056f4b7079a431727673b51..773b8488da0cb408a3040f5127641fb4c0a0573f 100644
--- a/htdocs/langs/ca_ES/stocks.lang
+++ b/htdocs/langs/ca_ES/stocks.lang
@@ -12,7 +12,7 @@ WarehouseSourceNotDefined=Sense magatzems definits,
 AddOne=Afegir un
 WarehouseTarget=Magatzem destinació
 ValidateSending=Validar enviament
-CancelSending=Anul·lar enviament
+CancelSending=Cancel·la l'enviament
 DeleteSending=Eliminar enviament
 Stock=Estoc
 Stocks=Estocs
@@ -113,7 +113,7 @@ AlertOnly= Només alertes
 WarehouseForStockDecrease=Per la disminució d'estoc s'utilitzara el magatzem <b>%s</b>
 WarehouseForStockIncrease=Pe l'increment d'estoc s'utilitzara el magatzem <b>%s</b>
 ForThisWarehouse=Per aquest magatzem
-ReplenishmentStatusDesc=Aquest és un llistat de tots els productes amb un estoc inferior a l'estoc desitjat (o inferior al valor d'alerta si el checkbox "només alerta" està marcat). Utilitzant el checkbox, pots crear comandes de proveïdors per corregir la diferència.
+ReplenishmentStatusDesc=Aquest és un llistat de tots els productes amb un estoc inferior a l'estoc desitjat (o inferior al valor d'alerta si la casella de verificació "només alerta" està marcat). Utilitzant la casella de verificació, pots crear comandes de proveïdors per corregir la diferència.
 ReplenishmentOrdersDesc=Aquest és un llistat de totes les comandes de proveïdor obertes incloent productes predefinits. Aquí només es poden veure comandes obertes amb productes predefinits que poden afectar l'estoc.
 Replenishments=reaprovisionament
 NbOfProductBeforePeriod=Quantitat del producte %s en estoc abans del periode seleccionat (< %s)
diff --git a/htdocs/langs/ca_ES/supplier_proposal.lang b/htdocs/langs/ca_ES/supplier_proposal.lang
index c9ced9682281dda3330cf825c9b5cdc30b0bddfd..f33e55a9c009adef34006db555df56a5514fe54b 100644
--- a/htdocs/langs/ca_ES/supplier_proposal.lang
+++ b/htdocs/langs/ca_ES/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Pressupostos de proveïdor
 supplier_proposalDESC=Gestiona les peticions de preu de proveïdors
-supplier_proposalMENU_LEFT_TITLE=Pressupost de proveïdor
-supplier_proposalMENU_LEFT_TITLE_NEW=Nova petició
-supplier_proposalMENU_LEFT_TITLE_LIST=Llistat
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Petició de preu
 CommRequests=Peticions de preu
 SearchRequest=Busca una petició
@@ -11,7 +10,7 @@ DraftRequests=Peticions en esborrany
 LastModifiedRequests=Les %s darreres peticions de preu modificades
 RequestsOpened=Obre una petició de preu
 SupplierProposalArea=Àrea de pressupostos de proveïdor
-SupplierProposalShort=Pressupost de proveïdor
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Pressupost de proveïdor
 NewAskPrice=Nova petició de preu
 NewAsk=Nova petició
@@ -47,7 +46,7 @@ CreateEmptyAsk=Crea una petició buida
 CloneAsk=Clona la petició de preu
 ConfirmCloneAsk=Esteu segur de voler clonar la petició de preu <b>%s</b>?
 ConfirmReOpenAsk=Esteu segur de voler reobrir la petició de preu <b>%s</b> ?
-SendAskByMail=Envia la petició de preu per correu
+SendAskByMail=Envia petició de preu per e-mail
 SendAskRef=Enviant la petició de preu %s
 SupplierProposalCard=Fitxa de petició
 ConfirmDeleteAsk=Esteu segur de voler eliminar aquesta petició de preu?
diff --git a/htdocs/langs/ca_ES/trips.lang b/htdocs/langs/ca_ES/trips.lang
index 4fdb5de6daac102ff70644fb734c089b5e732b44..dc45e06e74a3ce097b2cf58b5ac5aff031e6c385 100644
--- a/htdocs/langs/ca_ES/trips.lang
+++ b/htdocs/langs/ca_ES/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informacions de l'informe de despeses
 PDFStandardExpenseReports=Plantilla estàndard per generar un document PDF per l'informe de despeses
 ExpenseReportLine=Línia de l'informe de despeses
 TF_OTHER=Altre
-TF_TRANSPORTATION=Transport
+TF_TRIP=Transportation
 TF_LUNCH=Dieta
 TF_METRO=Metro
 TF_TRAIN=Tren
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Esteu segur de voler validar aquest informe de despeses?
 NoTripsToExportCSV=No hi ha informe de despeses per exportar en aquest període
 ExpenseReportPayment=Informe de despeses pagades
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Informes de despeses a pagar
diff --git a/htdocs/langs/ca_ES/users.lang b/htdocs/langs/ca_ES/users.lang
index 46d45707a6eba12bf24ef6ef204bdd887cc94263..39050a1cac050727adea1d18cf701775ac68e776 100644
--- a/htdocs/langs/ca_ES/users.lang
+++ b/htdocs/langs/ca_ES/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=URL d'OpenID
 LoginUsingOpenID=Utilitzeu OpenID per iniciar sessió
 WeeklyHours=Hores setmanals
 ColorUser=Color d'usuari
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/ca_ES/withdrawals.lang b/htdocs/langs/ca_ES/withdrawals.lang
index dbf234129cff2eb0572be45d3673e2f76c76da58..5cb4d0b572413b0fa9c25650e91848f7da6e8708 100644
--- a/htdocs/langs/ca_ES/withdrawals.lang
+++ b/htdocs/langs/ca_ES/withdrawals.lang
@@ -38,7 +38,7 @@ ClassCredited=Classificar com "Abonada"
 ClassCreditedConfirm=Esteu segur de voler classificar aquesta domiciliació com abonada al seu compte bancari?
 TransData=Data enviament
 TransMetod=Mètode enviament
-Send=Enviar
+Send=Envia
 Lines=línies
 StandingOrderReject=Emetre una devolució
 WithdrawalRefused=Devolució de domiciliació
diff --git a/htdocs/langs/cs_CZ/accountancy.lang b/htdocs/langs/cs_CZ/accountancy.lang
index de3daa6230c6a4baa2b5e554d11b85a6ce5effe4..f44c48a03243c2d95c55be90d2322841aa4cb84f 100644
--- a/htdocs/langs/cs_CZ/accountancy.lang
+++ b/htdocs/langs/cs_CZ/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Vyberte způsob exportu
 Modelcsv_normal=Klasický export
 Modelcsv_CEGID=Export směrem CEGID Expert
 BackToChartofaccounts=Návrat účtové osnovy
-Back=Návrat
 
 Definechartofaccounts=Definovat účtové osnovy
 Selectchartofaccounts=Vyberte účtové osnovy
@@ -109,10 +108,6 @@ DelBookKeeping=Odstranit záznamy hlavní knihy
 
 DescSellsJournal=Prodejní deník
 DescPurchasesJournal=Nákupní deník
-BankJournal=Bankovní deník
-DescBankJournal=Bankovní deník včetně všech typů jiných než hotovostních plateb
-CashJournal=Peněžní deník
-DescCashJournal=Peněžní deník včetně typů platby v hotovosti
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Poraďte se zde se seznamem linek faktur dodavatele a jej
 ValidateHistory=Ověřit automaticky
 
 ErrorAccountancyCodeIsAlreadyUse=Chyba, nelze odstranit tento účetní účet, protože ho zrovna používáte
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Karta členění
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/cs_CZ/admin.lang b/htdocs/langs/cs_CZ/admin.lang
index 38ebd180a2a7379234f15bdf3fa86b172d6b1140..9fd4299abe8b749dcee56a2f9b0a4f1aeb9edb9b 100644
--- a/htdocs/langs/cs_CZ/admin.lang
+++ b/htdocs/langs/cs_CZ/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Skrýt všechny informace týkající se DPH na gener
 HideDescOnPDF=Skrýt popis produktů z vytvořeného PDF
 HideRefOnPDF=Skrýt produkty čj. na vytvořené PDF
 HideDetailsOnPDF=Skrýt produkty linky podrobnosti o generované PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Knihovna
 UrlGenerationParameters=Parametry k zajištění URL
 SecurityTokenIsUnique=Používáme unikátní securekey parametr pro každou adresu URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Jste si jisti, že chcete vymazat všechny aktuál
 AllBarcodeReset=Byly odstraněny všechny hodnoty čárových kódů
 NoBarcodeNumberingTemplateDefined=Žádné šablony číslování čárových kódů aktivované v nastavení modulu čárových kódů.
 NoRecordWithoutBarcodeDefined=Žádný záznam s žádnou hodnotou čárového kódu definována.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Uživatelé a skupiny
@@ -499,7 +500,7 @@ Module510Desc=Řízení výplat zaměstnanců a plateb
 Module520Name=Půjčka
 Module520Desc=Správa úvěrů
 Module600Name=Upozornění
-Module600Desc=Posílat e-mailové upozornění na některé Dolibarr firemních akcí až kontaktů třetích stran (nastavení definován na každém thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Dary
 Module700Desc=Darování řízení
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Zpoždění před varováním
 DelaysOfToleranceBeforeWarning=Tolerance zpoždění před varování
 DelaysOfToleranceDesc=Tato obrazovka umožňuje definovat tolerovat zpoždění před upozornění je hlášen na obrazovce s %s Piktogram pro každý pozdní prvek.
 Delays_MAIN_DELAY_ACTIONS_TODO=Zpoždění tolerance (ve dnech) před záznam o plánovaných akcích dosud realizovaných
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Zpoždění tolerance (ve dnech) před záznam o zakázkách dosud zpracovaných
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Zpoždění tolerance (ve dnech) před záznam o dodavateli zakázkách dosud zpracovaných
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Zpoždění tolerance (ve dnech) před záznam o návrzích zavřete
@@ -1087,6 +1089,7 @@ PathDirectory=Adresář
 SendmailOptionMayHurtBuggedMTA=Funkce se odesílat e-maily pomocí metody "PHP mail direct" bude generovat e-mailové zprávy, které by mohly být není správně analyzovat některými dostávají poštovní servery. Výsledkem je, že některé maily nelze číst lidé hostovaných těmito platformami odposloucháván. To je případ některých poskytovatelů služeb Internetu (Ex: Orange ve Francii). To není problém do Dolibarr ani do PHP, ale na přijímání e-mailový server. Můžete však přidat možnost MAIN_FIX_FOR_BUGGED_MTA do 1 do nastavení - jiné upravovat Dolibarr k tomu nedošlo. Nicméně, může dojít k problému s jinými servery, které respektují přísně standard SMTP. Jiné řešení (doporučeno), je použít metodu "SMTP socket knihovnu", které nemá žádné nevýhody.
 TranslationSetup=Konfigurace de la traduction
 TranslationDesc=Volba jazyka viditelné na obrazovce lze měnit: <br> * Globálně z menu <strong>Domů - Nastavení - Zobrazení</strong> <br> * Pro uživatele pouze ze <strong>zobrazení</strong> na kartě <strong>Uživatelské</strong> uživatelského karty (klikněte na přihlášení v horní části obrazovky).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Celkový počet aktivovaných funkcí modulů: <b>%s</b>
 YouMustEnableOneModule=Musíte povolit alespoň jeden modul
 ClassNotFoundIntoPathWarning=Třída %s nenašli cestu do PHP
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/cs_CZ/agenda.lang b/htdocs/langs/cs_CZ/agenda.lang
index d9eb2b9eb9b49933895f304563e4cc54194cf858..440947e82fcda54211dc06799e2be231d8f4af3b 100644
--- a/htdocs/langs/cs_CZ/agenda.lang
+++ b/htdocs/langs/cs_CZ/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Všechny události / úkoly
 ViewCal=Měsíční zobrazení
 ViewDay=Denní zobrazení
 ViewWeek=Týdenní zobrazení
+ViewYear=Year view
 ViewPerUser=Zobrazení za uživatele
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Zobrazit s předem definovanými filtry
 AutoActions= Automatické naplnění
 AgendaAutoActionDesc= Definujte zde události, pro které chcete vytvořit automaticky událost v programu. Pokud není ve výchozím nastavení zaškrtnuta, budou zahrnuty pouze manuální akce v agendě.
diff --git a/htdocs/langs/cs_CZ/bills.lang b/htdocs/langs/cs_CZ/bills.lang
index 432e5f1fe932ff8cb4824a461c6c2c19fe3326a2..47665afd9a23ad66c237cd42bd5e14c000e74118 100644
--- a/htdocs/langs/cs_CZ/bills.lang
+++ b/htdocs/langs/cs_CZ/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Provedené platby
 PaymentsBackAlreadyDone=Provedené platby zpět
 PaymentRule=Pravidlo platby
 PaymentMode=Typ platby
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Termín platby
 PaymentConditions=Platební podmínky
@@ -184,6 +186,7 @@ ShowInvoice=Zobrazit fakturu
 ShowInvoiceReplace=Zobrazit opravenou fakturu
 ShowInvoiceAvoir=Zobrazit dobropis
 ShowInvoiceDeposit=Zobrazit zálohovou fakturu
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Zobrazit platbu
 AlreadyPaid=Již zaplacené
 AlreadyPaidBack=Již vrácené platby
@@ -221,6 +224,7 @@ NonPercuRecuperable=Nevratná
 SetConditions=Nastavení platebních podmínek
 SetMode=Nastavit platební režim
 Billed=Účtováno
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Šablona faktury
 RepeatableInvoices=Šablony faktur
 Repeatable=Šablona
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Tato částka byla opuštěna (zákazník řekl, aby byl
 HelpAbandonOther=Tato částka byla opuštěna, protože došlo k chybě (například špatný zákazník nebo faktura nahrazena jinou)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=ID platby
+PaymentRef=Payment ref.
 InvoiceId=ID faktury
 InvoiceRef=Faktura čj.
 InvoiceDateCreation=Datum vytvoření faktury
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Související faktury dodavatele
 LatestRelatedBill=Nejnovější související faktura
 WarningBillExist=Varování, jedna nebo více faktur již existují
 MergingPDFTool=Nástroj pro spojení PDF
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Bezprostřední
@@ -393,6 +402,7 @@ Reported=Zpožděný
 DisabledBecausePayments=Není možné, protože jsou zde některé platby
 CantRemovePaymentWithOneInvoicePaid=Nelze odstranit platbu protože je k dispozici alespoň jedna faktura označená jako zaplacená
 ExpectedToPay=Očekávaná platba
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Uhrazeno touto platbou
 ClosePaidInvoicesAutomatically=Označit jako "Placeno" všechny standardní situace nebo náhradní faktury v plné výši.
 ClosePaidCreditNotesAutomatically=Označit jako "Placeno" všechny dobropisy zcela splaceny.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Poznámka: Tento seznam obsahuje pouze faktury pro
 RevenueStamp=Kolek
 YouMustCreateInvoiceFromThird=Tato možnost je dostupná pouze při vytváření faktury ze záložky "zákazníka" z třetí strany
 PDFCrabeDescription= PDF šablona faktur Crabe. Kompletní šablona faktury (doporučená šablona)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Vrátí číslo ve formátu %s yymm-nnnn pro standardní faktury a %s yymm-nnnn pro dobropisy, kde yy je rok, mm je měsíc a nnnn je sekvence bez přerušení a bez návratu k 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=Účet počínaje $syymm již existuje a není kompatibilní s tímto modelem sekvence. Vyjměte ji nebo přejmenujte jej aktivací tohoto modulu.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=Tato situace je konečné.
 CantBeLessThanMinPercent=Pokrok nemůže být menší, než je jeho hodnota v předchozí situaci.
 NoSituations=Žádné otevřené situace
 InvoiceSituationLast=Závěrečná a hlavní faktura
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/cs_CZ/boxes.lang b/htdocs/langs/cs_CZ/boxes.lang
index 6e66f8568f61d16664b4d2c62e7c0652b8f232f6..fdb0f111eeda8250acf6d4696ad26fe467f14d0c 100644
--- a/htdocs/langs/cs_CZ/boxes.lang
+++ b/htdocs/langs/cs_CZ/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Zákaznické faktury
 ForCustomersOrders=Zákaznické objednávky
 ForProposals=Nabídky
 LastXMonthRolling=Poslední %s měsíc válcování
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/cs_CZ/categories.lang b/htdocs/langs/cs_CZ/categories.lang
index 2580519fcc08811891b3260779fbc79d36e89aa4..130d3617a9c0459814f95bec506670328971d073 100644
--- a/htdocs/langs/cs_CZ/categories.lang
+++ b/htdocs/langs/cs_CZ/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Tag/kategorie Produkty
 MembersCategoryShort=Tag/kategorie uživatelé
 SuppliersCategoriesShort=Dodavatelé tagy/kategorie
 CustomersCategoriesShort=Zákazníci tagy/kategorie
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Zák./Cíl. kategorie
 ProductsCategoriesShort=Produkty tagy/kategorie
 MembersCategoriesShort=Uživatelé tagy/kategorie
diff --git a/htdocs/langs/cs_CZ/companies.lang b/htdocs/langs/cs_CZ/companies.lang
index af7e3a1235c5ff6fb7393bc887886f1901e4ad98..dd272212c34190cfaba7b963ac56132ddc53b9da 100644
--- a/htdocs/langs/cs_CZ/companies.lang
+++ b/htdocs/langs/cs_CZ/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (R.C.)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (R.F.C).
 ProfId2MX=Prof Id 2 (R..P. IMSS)
diff --git a/htdocs/langs/cs_CZ/compta.lang b/htdocs/langs/cs_CZ/compta.lang
index 4815d50def11ac47348f820db6208ec8857571f8..109fd5cfeaff3ca7e82b172ce633c7bf2f3ad754 100644
--- a/htdocs/langs/cs_CZ/compta.lang
+++ b/htdocs/langs/cs_CZ/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Zálohové faktury nejsou zahrnuty
 DepositsAreIncluded=- Zálohové faktury jsou zahrnuty
 LT2ReportByCustomersInInputOutputModeES=Zpráva o třetí straně IRPF
 LT1ReportByCustomersInInputOutputModeES=Zpráva třetí strany RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Zpráva o vybrané a zaplacené DPH zákazníka
 VATReportByCustomersInDueDebtMode=Zpráva o vybrané a zaplacené DPH zákazníka
 VATReportByQuartersInInputOutputMode=Zpráva o sazbách DPH vybrané a odvedené
diff --git a/htdocs/langs/cs_CZ/cron.lang b/htdocs/langs/cs_CZ/cron.lang
index 102fcd94bd6d85a1fbc2fedbd70217dd66fd7932..d3551b840de4da1b444db12f50d85540c84cc7ce 100644
--- a/htdocs/langs/cs_CZ/cron.lang
+++ b/htdocs/langs/cs_CZ/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=Na Unixových systémech by jste měli použít následu
 CronExplainHowToRunWin=Na Microsoft Windows systémech můžete použít naplánováné nástroje úloh ke spuštění příkazového řádku každých 5 minut
 # Menu
 CronJobs=Naplánované úlohy
-CronListActive=Výpis aktivních/naplánovaných úloh
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=Seznam vypnutých úloh
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Poslední úloha
 CronLastOutput=Výstup poslední úlohy
@@ -35,8 +36,8 @@ CronInfo=Plánovací modul úloh umožňují provádět úlohy, které byly plá
 CronWaitingJobs=Čekající úlohy
 CronTask=Práce
 CronNone=Nikdo
-CronDtStart=Datum zahájení
-CronDtEnd=Datum ukončení
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Další provedení
 CronDtLastLaunch=Poslední provedení
 CronFrequency=Frekvence
@@ -51,6 +52,7 @@ CronNoJobs=Žádné registrované úkoly
 CronPriority=Priorita
 CronLabel=Popis
 CronNbRun=Nb. zahájit
+CronMaxRun=Max nb. launch
 CronEach=Každý
 JobFinished=Práce zahájena a dokončena
 #Page card
diff --git a/htdocs/langs/cs_CZ/deliveries.lang b/htdocs/langs/cs_CZ/deliveries.lang
index 446951a78706cd3a7e0f3beb5fcac0137913b73d..ebbd6578d9395a89c8ef3f68914b3e7217c31254 100644
--- a/htdocs/langs/cs_CZ/deliveries.lang
+++ b/htdocs/langs/cs_CZ/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Jste si jisti, že chcete smazat <b>%s</b> potvrzen
 DeliveryMethod=Způsob doručení
 TrackingNumber=Sledovací číslo
 DeliveryNotValidated=Dodávka není ověřena
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Jméno a podpis:
 ToAndDate=To___________________________________ na ____ / _____ / __________
diff --git a/htdocs/langs/cs_CZ/holiday.lang b/htdocs/langs/cs_CZ/holiday.lang
index 8d36d51f01be98a7e3bf4faad9b1c8c26b52fe0b..10c103c3536d5acc6c02f161c00dcce245d57926 100644
--- a/htdocs/langs/cs_CZ/holiday.lang
+++ b/htdocs/langs/cs_CZ/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=Musíte povolit modul dovolená pro zobrazení této stránky.
 NotConfigModCP=Musíte nakonfigurovat modul dovolení pro  zobrazení této stránky. Provedete zde:, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> klikněte zde </ a>.
 NoCPforUser=Nemáte k dispozici žádné volné dny.
 AddCP=Požádejte o dovolenou
-Employe=Zaměstnanec
 DateDebCP=Datum zahájení
 DateFinCP=Datum ukončení
 DateCreateCP=Datum vytvoření
@@ -23,7 +22,7 @@ ReviewedByCP=Bude přezkoumána
 DescCP=Popis
 SendRequestCP=Vytvořit požadavek na dovolenou
 DelayToRequestCP=Požadavek na dovolenou musí být zadán nejméně <b>%s den(y)</b> před termínem.
-MenuConfCP=Úprava rozvrhu dovolené
+MenuConfCP=Balance of leaves
 UpdateAllCP=Aktualizace dovolené
 SoldeCPUser=Zbývající dovolená je <b>%s</b> dnů.
 ErrorEndDateCP=Musíte vybrat koncové datum větší než datum zahájení.
@@ -79,9 +78,9 @@ PrevSoldeCP=Předchozí zůstatek
 NewSoldeCP=Nový zůstatek
 alreadyCPexist=Žádost o dovolenou pro toto období již byla provedena.
 UserName=Název
-Employee=Zaměstnanec
 FirstDayOfHoliday=První den dovolené
 LastDayOfHoliday=Poslední den dovolené
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Měsíční aktualizace
 ManualUpdate=Ruční aktualizace
 HolidaysCancelation=Stornovat dovolenou
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Vaše žádost o dovolenou pro %s do %s byla zamítnuta z t
 HolidaysCanceled=Zrušené požadavky na dovolenou
 HolidaysCanceledBody=Vaše žádost o dovolenou pro %s na %s byla zrušena.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/cs_CZ/hrm.lang b/htdocs/langs/cs_CZ/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/cs_CZ/hrm.lang
+++ b/htdocs/langs/cs_CZ/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/cs_CZ/interventions.lang b/htdocs/langs/cs_CZ/interventions.lang
index c4a0d9b8ccb80a52fa47975d32efcf487a09082a..2e5c24441a44b66597e832d323fb67fbc07402ef 100644
--- a/htdocs/langs/cs_CZ/interventions.lang
+++ b/htdocs/langs/cs_CZ/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Návrat čísla ve formátu %syymm-nnnn, kde yy je rok,
 PacificNumRefModelError=Zásahová karta začíná s $ syymm již existuje a není kompatibilní s tímto modelem sekvence. Odstraňte ji nebo přejmenujte pro aktivaci tohoto modulu.
 PrintProductsOnFichinter=Výpis produktů na intervenční kartě
 PrintProductsOnFichinterDetails=intervence generované z objednávek
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/cs_CZ/mails.lang b/htdocs/langs/cs_CZ/mails.lang
index dc897555ef3fb21111f82f34546a1da549cccee2..396f7335c56d1b72fea2bfd9b66b190c7cc5adc7 100644
--- a/htdocs/langs/cs_CZ/mails.lang
+++ b/htdocs/langs/cs_CZ/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Tlačítko slouží k šifrování URL používané pro "Po
 EMailSentToNRecipients=Email byl odeslán na %s příjemcům.
 XTargetsAdded=<b>%s</b> příjemců přidáno do seznamu cílů
 EachInvoiceWillBeAttachedToEmail=Dokument s použitím šablony výchozí faktury dokumentu bude vytvořen a připojen k každému mailu.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Upomínka faktury %s (%s)
 SendRemind=Zaslání upomínky na maily
 RemindSent=%s upomínka(y) odesláno
diff --git a/htdocs/langs/cs_CZ/main.lang b/htdocs/langs/cs_CZ/main.lang
index eded0fd833eff2b7995b830100acedd6ca5bd9dc..3d0546b7f861e88b60f1bfb04fc7de1cab3f45e9 100644
--- a/htdocs/langs/cs_CZ/main.lang
+++ b/htdocs/langs/cs_CZ/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=Připojení k databázi
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Překlad není
 NoRecordFound=Nebyl nalezen žádný záznam
 NoError=Žádná chyba
@@ -105,6 +106,7 @@ NotePrivate=Poznámka (soukromé)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr byl nastaven pro limit přesnosti jednotkových cen na <b>%s</b> desetinných míst.
 DoTest=Test
 ToFilter=Filtr
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Pozor, máte alespoň jeden prvek, který překročil tolerance zpoždění.
 yes=ano
 Yes=Ano
@@ -228,6 +230,8 @@ Now=Nyní
 HourStart=Startovní hodina
 Date=Datum
 DateAndHour=Datum a hodina
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Datum začátku
 DateEnd=Datum ukončení
 DateCreation=Datum vytvoření
@@ -608,6 +612,7 @@ TotalMan=Celkový
 NeverReceived=Nikdy nedostal
 Canceled=Zrušený
 YouCanChangeValuesForThisListFromDictionarySetup=Můžete změnit hodnoty pro tento seznam z nastavení v menu - slovník
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Barva
 Documents=Připojené soubory
 DocumentsNb=Připojené soubory (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Prvek
 NoPhotoYet=Momentálně žádné fotografie k dispozici
 HomeDashboard=Hlavní shrnutí
+Dashboard=Dashboard
 Deductible=Spoluúčast
 from=z
 toward=k
diff --git a/htdocs/langs/cs_CZ/margins.lang b/htdocs/langs/cs_CZ/margins.lang
index 23d2f01ecb5a8c60510526c6ecf57a044c2ee187..7d9a9572527fe462fa04b4b0184b90afb6900988 100644
--- a/htdocs/langs/cs_CZ/margins.lang
+++ b/htdocs/langs/cs_CZ/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Zvolte produkt nebo službu
 StartDate=Datum zahájení
 EndDate=Datum ukončení
 Launch=Začátek
-ForceBuyingPriceIfNull=Síla nákupní ceny, pokud je nula
-ForceBuyingPriceIfNullDetails=Pokud je nastaveno "ON", bude se marže rovnat nule na řádku (nákupní cena = prodejní cena), v opačném případě ("OFF"), se bude marže rovnat prodejní ceně (nákupní cena = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Metoda marže pro globální slevy
 UseDiscountAsProduct=Jako produkt
 UseDiscountAsService=Jako služba
@@ -35,8 +35,9 @@ MargeBrute=Hrubá marže
 MargeNette=Čistá marže
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Hrubá marže: prodejní cena - nákupní cena <br/> Čistá marže: prodejní cena - pořizovací cena.
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Náklady
 BuyingCost=Náklady
 UnitCharges=Jednotkové poplatky
diff --git a/htdocs/langs/cs_CZ/oauth.lang b/htdocs/langs/cs_CZ/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/cs_CZ/oauth.lang
+++ b/htdocs/langs/cs_CZ/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/cs_CZ/orders.lang b/htdocs/langs/cs_CZ/orders.lang
index 74170ae957a385ddcd1d7519a040514baf9da425..2789e7af434077bfec5e8a3a984c3951aa679c7f 100644
--- a/htdocs/langs/cs_CZ/orders.lang
+++ b/htdocs/langs/cs_CZ/orders.lang
@@ -31,7 +31,7 @@ StatusOrderSentShort=V procesu
 StatusOrderSent=Přeprava v procesu
 StatusOrderOnProcessShort=Objednáno
 StatusOrderProcessedShort=Zpracované
-StatusOrderDelivered=Delivered
+StatusOrderDelivered=Dodáno
 StatusOrderToBillShort=Dodává se
 StatusOrderToBill2Short=K účtu
 StatusOrderApprovedShort=Schválený
@@ -82,7 +82,7 @@ OrdersOpened=Objednávky ve zpracování
 NoOpenedOrders=Žádné otevřené objednávky
 NoOtherOpenedOrders=Žádné další otevřené objednávky
 NoDraftOrders=Žádné návrhy objednávky
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Ostatní objednávky
 LastOrders=Poslední %s zákaznické objednávky
diff --git a/htdocs/langs/cs_CZ/other.lang b/htdocs/langs/cs_CZ/other.lang
index fc7320483a7c6a9624b0d563fd728e76017270f2..7c145d3acb3685661978cfbe47dfe925da4afd53 100644
--- a/htdocs/langs/cs_CZ/other.lang
+++ b/htdocs/langs/cs_CZ/other.lang
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=Nový export
 ##### External sites #####
 ExternalSites=Externí stránky
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/cs_CZ/paypal.lang b/htdocs/langs/cs_CZ/paypal.lang
index fe67a680fab19dfdf2f522e1b0cc0697ec8ef88b..c132a70d53a80b5f99b6aafe032559f706edbeaf 100644
--- a/htdocs/langs/cs_CZ/paypal.lang
+++ b/htdocs/langs/cs_CZ/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Testovací/sandbox režim
 PAYPAL_API_USER=API uživatelské jméno
 PAYPAL_API_PASSWORD=API heslo
 PAYPAL_API_SIGNATURE=API podpis
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Nabídka platby "integral" (Kreditní karta+Paypal) nebo pouze "Paypal" 
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=Pouze PayPal
diff --git a/htdocs/langs/cs_CZ/products.lang b/htdocs/langs/cs_CZ/products.lang
index d8bbddca617b0fc1d026034e6e7a2ff94ba7e13e..6206e475fe65e7496a02e9ce4589357afe9b37a4 100644
--- a/htdocs/langs/cs_CZ/products.lang
+++ b/htdocs/langs/cs_CZ/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net jednotka VWAP
 CostPmpHT=Čistá hodnota VWAP
 ProductUsedForBuild=Autospotřeba při výrobě
 ProductBuilded=Výroba dokončena
-ProductsMultiPrice=Multicena produktu
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Zákaznické ceny (z výrobků nebo služeb, multi-ceny)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Vyberte soubory PDF
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/cs_CZ/projects.lang b/htdocs/langs/cs_CZ/projects.lang
index 08e43c0ec4b4f4f1bdda4ffd13ec49c6b76180f6..13d828b5d46668cad693c9b47c69aa07930ea308 100644
--- a/htdocs/langs/cs_CZ/projects.lang
+++ b/htdocs/langs/cs_CZ/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=Tento pohled představuje všechny projekty a úkoly, kte
 ProjectsDesc=Tento pohled zobrazuje všechny projekty (vaše uživatelské oprávnění vám umožňuje vidět vše).
 MyTasksDesc=Tento pohled je omezen na projekty či úkoly u kterých jste uveden jako kontakt (jakéhokoliv typu)
 OnlyOpenedProject=Pouze otevřené projekty jsou viditelné (projekty v návrhu ani v uzavřeném stavu nejsou viditelné).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Tento pohled zobrazuje všechny projekty a úkoly které máte oprávnění číst.
 TasksDesc=Tento pohled zobrazuje všechny projekty a úkoly (vaše uživatelské oprávnění vám umožňuje vidět vše).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Ředitel projektu
 LastProjects=Posledních %s projektů
 AllProjects=Všechny projekty
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Seznam projektů
 ShowProject=Zobrazit projekt
 SetProject=Nastavit projekt
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Úkol %s upraven
 TaskDeletedInDolibarr=Úkol %s smazán
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projekty s tímto uživatelem jako kontakt
 TasksWithThisUserAsContact=Úkoly přidělené tomuto uživateli
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/cs_CZ/propal.lang b/htdocs/langs/cs_CZ/propal.lang
index fc91dac5f088fcce0eb65913208dd88310291396..f8e97a8ea94e258eaa15ab71f3e3e2ec86f730bd 100644
--- a/htdocs/langs/cs_CZ/propal.lang
+++ b/htdocs/langs/cs_CZ/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Poslední %s upravené nabídky
 AllPropals=Všechny nabídky
 LastProposals=Poslední nabídky
 SearchAProposal=Hledat nabídku
+NoProposal=No proposal
 ProposalsStatistics=Statistiky obchodních nabídek
 NumberOfProposalsByMonth=Číslo podle měsíce
 AmountOfProposalsByMonthHT=Částka podle měsíce (bez DPH)
@@ -62,7 +63,8 @@ DatePropal=Datum nabídky
 DateEndPropal=Datum ukončení platnosti
 DateEndPropalShort=Datum ukončení
 ValidityDuration=Trvání platnosti
-CloseAs=Zavřete se stavem
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Označit jako účtováno
 BuildBill=Vytvořit  fakturu
 ErrorPropalNotFound=Propal %s nebyl nalezen
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Tvorba z výchozí šablony
 DefaultModelPropalToBill=Výchozí šablona při uzavírání obchodní nabídky (bude se fakturovat)
 DefaultModelPropalClosed=Výchozí šablona při uzavírání obchodní nabídky (nevyfakturované)
 ProposalCustomerSignature=Písemný souhlas, razítko firmy, datum a podpis
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/cs_CZ/salaries.lang b/htdocs/langs/cs_CZ/salaries.lang
index 6eaac8c378bc6a0cd3839cee67742fdb1f541724..83a7f3349e9a4393fdd7b79d7b9303bc889f3249 100644
--- a/htdocs/langs/cs_CZ/salaries.lang
+++ b/htdocs/langs/cs_CZ/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Kód pro platby mezd v účetnictví
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Kód pro finanční poplatek v účetnictví
 Salary=Mzda
 Salaries=Mzdy
-Employee=Zaměstnanec
 NewSalaryPayment=Nová platba mzdy
 SalaryPayment=Platba mzdy
 SalariesPayments=Platby mezd
diff --git a/htdocs/langs/cs_CZ/sendings.lang b/htdocs/langs/cs_CZ/sendings.lang
index 00826af3fdabb430708d084eeec4a50b3bc159d2..4cf09fdf162f5fb38b2140a2e4c5c8fe2bb42dea 100644
--- a/htdocs/langs/cs_CZ/sendings.lang
+++ b/htdocs/langs/cs_CZ/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=Všechny zásilky
 Shipment=Doprava
 Shipments=Zásilky
 ShowSending=Show Shipments
-Receivings=Doklady
+Receivings=Delivery Receipts
 SendingsArea=Oblast zásilek
 ListOfSendings=Seznam zásilek
 SendingMethod=Způsob dopravy
diff --git a/htdocs/langs/cs_CZ/sms.lang b/htdocs/langs/cs_CZ/sms.lang
index d20255fd13b2a7fd6b301c3ffbd43ac2a5c498b1..be8dd3f3f4eab4c4fdc3c45878219a94f25b1002 100644
--- a/htdocs/langs/cs_CZ/sms.lang
+++ b/htdocs/langs/cs_CZ/sms.lang
@@ -49,5 +49,6 @@ SendSms=Pošlete SMS ve tvaru
 SmsInfoCharRemain=Nb zbývajících znaků
 SmsInfoNumero= (Mezinárodním formátu, tj.: 33899701761)
 DelayBeforeSending=Prodleva před odesláním (minuty)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Žádný cíl k dispozici. Zkontrolujte nastavení poskytovatele služeb SMS.
 
diff --git a/htdocs/langs/cs_CZ/supplier_proposal.lang b/htdocs/langs/cs_CZ/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/cs_CZ/supplier_proposal.lang
+++ b/htdocs/langs/cs_CZ/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/cs_CZ/trips.lang b/htdocs/langs/cs_CZ/trips.lang
index f5aee900e82114a68b69ea9bd71a486232fcbddf..70b00b3e7f46295afe37948ad249d01e345e40ee 100644
--- a/htdocs/langs/cs_CZ/trips.lang
+++ b/htdocs/langs/cs_CZ/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informace o správě nákladů
 PDFStandardExpenseReports=Standardní šablona pro vytvoření PDF dokumentu pro zprávy o výdajích
 ExpenseReportLine=Výdajová zpráva řádek
 TF_OTHER=Ostatní
-TF_TRANSPORTATION=Doprava
+TF_TRIP=Transportation
 TF_LUNCH=Oběd
 TF_METRO=Metro
 TF_TRAIN=Vlak
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Jste si jisti, že chcete ověřit tuto zprávu o výdajích?
 NoTripsToExportCSV=Žádná zpráva o výdajích na export pro toto období.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/cs_CZ/users.lang b/htdocs/langs/cs_CZ/users.lang
index f02e1f9a675a8dc648dd55e98188ddb9da529d0a..77c80fc7106dd778dcb8b2b97cb01875d05ad2b8 100644
--- a/htdocs/langs/cs_CZ/users.lang
+++ b/htdocs/langs/cs_CZ/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Použijte OpenID pro přihlášení
 WeeklyHours=Týdenní hodiny
 ColorUser=Barva uživatele
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/da_DK/accountancy.lang b/htdocs/langs/da_DK/accountancy.lang
index 6a78d95c312a5517930af87a00a54141a04a8b08..17807af1d5f80fd18c501cb46a7abe5cb2b0caee 100644
--- a/htdocs/langs/da_DK/accountancy.lang
+++ b/htdocs/langs/da_DK/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Vælg en eksportmodel
 Modelcsv_normal=Klassisk eksport
 Modelcsv_CEGID=Eksporter med CEGID ekspert
 BackToChartofaccounts=Returner kontoplan
-Back=Returner
 
 Definechartofaccounts=Definer en kontoplan
 Selectchartofaccounts=Vælg en kontoplan
@@ -109,10 +108,6 @@ DelBookKeeping=Slet posterne i kontoplanen
 
 DescSellsJournal=Salgskladde
 DescPurchasesJournal=Købskladde
-BankJournal=Bankjournal
-DescBankJournal=Bankkladden herunder alle de typer af andre betalinger end kontanter
-CashJournal=Kontantkladde
-DescCashJournal=Kontantkladde herunder betalinger med kontanter
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Gå til en liste over de linjer af fakturaer leverandør
 ValidateHistory=Forny automatisk
 
 ErrorAccountancyCodeIsAlreadyUse=Fejl, kan du ikke slette denne regnskabsmæssige konto, fordi den bruges
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/da_DK/admin.lang b/htdocs/langs/da_DK/admin.lang
index 9a5b46373cc515ff3afae30ea9e8e94a6b4bd21b..8d05b13d3216e0d7b1a57644153fd5f3ad9568eb 100644
--- a/htdocs/langs/da_DK/admin.lang
+++ b/htdocs/langs/da_DK/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Skjul alle oplysninger vedrørende moms på generered
 HideDescOnPDF=Hide products description on generated PDF
 HideRefOnPDF=Hide products ref. on generated PDF
 HideDetailsOnPDF=Hide products lines details on generated PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Bibliotek
 UrlGenerationParameters=Parametre for at sikre URL'er
 SecurityTokenIsUnique=Brug en unik securekey parameter for hver enkelt webadresse
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Brugere og grupper
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Adviséringer
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Donationer
 Module700Desc=Gaver 'ledelse
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Forsinkelser inden advarsel
 DelaysOfToleranceBeforeWarning=Tolerance forsinkelser før advarsel
 DelaysOfToleranceDesc=Dette skærmbillede giver dig mulighed for at definere tolereres forsinkelser før en indberetning er rapporteret på skærmen med picto %s for hver sent element.
 Delays_MAIN_DELAY_ACTIONS_TODO=Delay tolerance (i dage) før alarm om planlagte tiltag endnu ikke realiseret
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Delay tolerance (i dage) inden indberetning om ordrer endnu ikke gjort
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Forsinkelse tolerance (i dage) før alarm på leverandører ordrer endnu ikke behandlet
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Delay tolerance (i dage) inden indberetning om forslag til at lukke
@@ -1087,6 +1089,7 @@ PathDirectory=Directory
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/da_DK/agenda.lang b/htdocs/langs/da_DK/agenda.lang
index 0cc9da05f4de780ce49e1026616ed8df89af98a8..bba326a6a97ce1f11329f9fe55418528be761b24 100644
--- a/htdocs/langs/da_DK/agenda.lang
+++ b/htdocs/langs/da_DK/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Alle les handlinger / opgaver
 ViewCal=Vis kalender
 ViewDay=Dagsvisning
 ViewWeek=Ugevisning
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Se med foruddefinerede filtre
 AutoActions= Automatisk påfyldning af dagsorden
 AgendaAutoActionDesc= Definer her begivenheder, som du vil Dolibarr at skabe automatisk en indsats på dagsordenen. Hvis det ikke er kontrolleret (som standard), kun manuel foranstaltninger vil blive inkluderet i dagsordenen.
diff --git a/htdocs/langs/da_DK/bills.lang b/htdocs/langs/da_DK/bills.lang
index b3f287bfce018f78c7a0bc6c5493a6c6ad0c4ba8..fad714c9e0ff0da1ec87445600412a347c1a1674 100644
--- a/htdocs/langs/da_DK/bills.lang
+++ b/htdocs/langs/da_DK/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Betalinger allerede gjort
 PaymentsBackAlreadyDone=Payments back already done
 PaymentRule=Betaling regel
 PaymentMode=Betalingstype
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=Vis faktura
 ShowInvoiceReplace=Vis erstatning faktura
 ShowInvoiceAvoir=Vis kreditnota
 ShowInvoiceDeposit=Vis depositum faktura
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Vis betaling
 AlreadyPaid=Allerede betales
 AlreadyPaidBack=Already paid back
@@ -221,6 +224,7 @@ NonPercuRecuperable=Ikke-refunderbar
 SetConditions=Indstil aflønningsvilkår
 SetMode=Indstil betaling mode
 Billed=Billed
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Dette beløb er blevet opgivet (kunde siges at være en d
 HelpAbandonOther=Dette beløb er blevet opgivet, da det var en fejl (forkert kunde eller faktura erstattes af en anden for eksempel)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Betaling id
+PaymentRef=Payment ref.
 InvoiceId=Faktura id
 InvoiceRef=Faktura ref.
 InvoiceDateCreation=Faktura oprettelsesdato
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Omgående
@@ -393,6 +402,7 @@ Reported=Forsinket
 DisabledBecausePayments=Ikke muligt da der er nogle betalinger
 CantRemovePaymentWithOneInvoicePaid=Kan ikke fjerne betaling, da der er mindst på faktura, der er klassificeret betales
 ExpectedToPay=Forventet betaling
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Betales af denne betaling
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third pa
 RevenueStamp=Revenue stamp
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Faktura model Crabe. En fuldstændig faktura model (Support moms option, rabatter, betalinger betingelser, logo, etc. ..)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=Et lovforslag, der begynder med $ syymm allerede eksisterer og er ikke kompatible med denne model af sekvensinformation. Fjern den eller omdøbe den til at aktivere dette modul.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/da_DK/boxes.lang b/htdocs/langs/da_DK/boxes.lang
index 30007b30350830b9dee619403acc1c974b0a80f6..a1e67b1710498f420fa24649304be84612409515 100644
--- a/htdocs/langs/da_DK/boxes.lang
+++ b/htdocs/langs/da_DK/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Kundernes fakturaer
 ForCustomersOrders=Customers orders
 ForProposals=Forslag
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/da_DK/categories.lang b/htdocs/langs/da_DK/categories.lang
index 5eed67b076b7309c796d4af810a59994c1c9aee4..dee09c7be84bdf95e1af2e4762568b9093d69aa2 100644
--- a/htdocs/langs/da_DK/categories.lang
+++ b/htdocs/langs/da_DK/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo. / prosp. kategorier
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/da_DK/companies.lang b/htdocs/langs/da_DK/companies.lang
index 8ba0d99aa3f74bc28886b27baf58b6263e28c52b..6dbd4ce9249e6d963c1ac9b7b559c042e3c0dee3 100644
--- a/htdocs/langs/da_DK/companies.lang
+++ b/htdocs/langs/da_DK/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof.. 1 (RC)
 ProfId2MA=Id prof.. 2 (Patente)
 ProfId3MA=Id prof.. 3 (IF)
 ProfId4MA=Id prof.. 4 (CNSS)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (RFC).
 ProfId2MX=Prof Id 2 (R.. P. IMSS)
diff --git a/htdocs/langs/da_DK/compta.lang b/htdocs/langs/da_DK/compta.lang
index aebbb91bfce897407fec5abe3bfff7166cd4cc8d..f02af8180be0703ef5475ffadbbac48ec5c25202 100644
--- a/htdocs/langs/da_DK/compta.lang
+++ b/htdocs/langs/da_DK/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Depositum fakturaer eller inkluderet
 DepositsAreIncluded=- Depositum fakturaer er inkluderet
 LT2ReportByCustomersInInputOutputModeES=Rapport fra tredjepart IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/da_DK/cron.lang b/htdocs/langs/da_DK/cron.lang
index 6698ff840ac66695a3069cdeb36bd97d40ed9a33..4c3e5986f93711fefa3064197857677e987dce0d 100644
--- a/htdocs/langs/da_DK/cron.lang
+++ b/htdocs/langs/da_DK/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=List of disabled jobs
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Last run
 CronLastOutput=Last run output
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Job
 CronNone=Ingen
-CronDtStart=Startdato
-CronDtEnd=Slutdato
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Next execution
 CronDtLastLaunch=Last execution
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=No jobs registered
 CronPriority=Prioritet
 CronLabel=Beskrivelse
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
diff --git a/htdocs/langs/da_DK/deliveries.lang b/htdocs/langs/da_DK/deliveries.lang
index 3a10c2f0c840a002fd54400f596ae465187182f4..75c91cfda7e943a4f12c226f03d194a2c8862a07 100644
--- a/htdocs/langs/da_DK/deliveries.lang
+++ b/htdocs/langs/da_DK/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Er du sikker på du vil slette kvittering for modta
 DeliveryMethod=Leveringsmåde
 TrackingNumber=Sporingsnummer
 DeliveryNotValidated=Levering ikke valideret
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Navn og underskrift:
 ToAndDate=To___________________________________ om ____ / _____ / __________
diff --git a/htdocs/langs/da_DK/holiday.lang b/htdocs/langs/da_DK/holiday.lang
index fca83e2ed0a1221cb824cb78dd3e0154719aaaa1..fb85557b7ef353d0be349c871edcd67d09737138 100644
--- a/htdocs/langs/da_DK/holiday.lang
+++ b/htdocs/langs/da_DK/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Employee
 DateDebCP=Startdato
 DateFinCP=Slutdato
 DateCreateCP=Lavet dato
@@ -23,7 +22,7 @@ ReviewedByCP=Will be reviewed by
 DescCP=Beskrivelse
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=You must select an end date greater than the start date.
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Navn
-Employee=Employee
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Monthly update
 ManualUpdate=Manual update
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/da_DK/hrm.lang b/htdocs/langs/da_DK/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/da_DK/hrm.lang
+++ b/htdocs/langs/da_DK/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/da_DK/interventions.lang b/htdocs/langs/da_DK/interventions.lang
index 9c4e21e76fb6286f9abfb4424ec4e3d2dc683344..b1453d3d91d5423df29eaffbe4c100875c405b6f 100644
--- a/htdocs/langs/da_DK/interventions.lang
+++ b/htdocs/langs/da_DK/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Retur numero med format %syymm-nnnn hvor ÅÅ er årstal
 PacificNumRefModelError=En intervention kortet begynder med $ syymm allerede eksisterer og er ikke kompatible med denne model af sekvensinformation. Fjern den eller omdøbe den til at aktivere dette modul.
 PrintProductsOnFichinter=Print products on intervention card
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/da_DK/mails.lang b/htdocs/langs/da_DK/mails.lang
index 39971ee27aaa7513921e3635a80d2d1f03e9041b..24a6dd0b65e731dfe2ad0c0dee633c1f3b7234a9 100644
--- a/htdocs/langs/da_DK/mails.lang
+++ b/htdocs/langs/da_DK/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail sent to %s recipients.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/da_DK/main.lang b/htdocs/langs/da_DK/main.lang
index ab85720ab4f0086547f18fccfa01270581207803..2bf7929f03dc7e476fbbb02a56d7d0cd30e822ef 100644
--- a/htdocs/langs/da_DK/main.lang
+++ b/htdocs/langs/da_DK/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%d %b %Y %H:%M
 FormatDateHourText=%d %B %Y %H:%M
 DatabaseConnection=Database forbindelse
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Ingen oversættelse
 NoRecordFound=Ingen poster fundet
 NoError=Ingen fejl
@@ -105,6 +106,7 @@ NotePrivate=Note (privat)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr blev setup at begrænse præcision på enhedspriser <b>til %s</b> decimaler.
 DoTest=Test
 ToFilter=Filter
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Advarsel, du har mindst ét element, der har oversteget den tolerance forsinkelse.
 yes=ja
 Yes=Ja
@@ -228,6 +230,8 @@ Now=Nu
 HourStart=Start hour
 Date=Dato
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Dato start
 DateEnd=Dato udgangen
 DateCreation=Lavet dato
@@ -608,6 +612,7 @@ TotalMan=Total
 NeverReceived=Aldrig modtaget
 Canceled=Annulleret
 YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Color
 Documents=Forbundet filer
 DocumentsNb=Linkede filer (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=Inge billeder til rådighed
 HomeDashboard=Hjem resume
+Dashboard=Dashboard
 Deductible=Deductible
 from=from
 toward=toward
diff --git a/htdocs/langs/da_DK/margins.lang b/htdocs/langs/da_DK/margins.lang
index 3296c0684715fadc83d5e06047b75c73b9dcace8..93f67f760df1b34aa8ec2117aefdbe1f5cc97279 100644
--- a/htdocs/langs/da_DK/margins.lang
+++ b/htdocs/langs/da_DK/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Choose product or service
 StartDate=Startdato
 EndDate=Slutdato
 Launch=Start
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=As a product
 UseDiscountAsService=As a service
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/da_DK/oauth.lang b/htdocs/langs/da_DK/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/da_DK/oauth.lang
+++ b/htdocs/langs/da_DK/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/da_DK/orders.lang b/htdocs/langs/da_DK/orders.lang
index c7f4b8bcbf5ce797b6839c68d424886f8be256b8..49a2b8b8af3823009fae6149408b14aeecd22e4e 100644
--- a/htdocs/langs/da_DK/orders.lang
+++ b/htdocs/langs/da_DK/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=No draft orders
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Andre kendelser
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/da_DK/other.lang b/htdocs/langs/da_DK/other.lang
index f1a2a673f584e2dcda1d90d1de44313ce76793d7..d8aa2339d368a08a18942f2ffe40066b1add36bb 100644
--- a/htdocs/langs/da_DK/other.lang
+++ b/htdocs/langs/da_DK/other.lang
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=Nye eksportmarkeder
 ##### External sites #####
 ExternalSites=Eksterne sites
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/da_DK/paypal.lang b/htdocs/langs/da_DK/paypal.lang
index 65af9f38616f4a29d3185b963d870c522272733d..f645b4a93cef32d99e7e1a5797a7e4ee4be4d079 100644
--- a/htdocs/langs/da_DK/paypal.lang
+++ b/htdocs/langs/da_DK/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Mode test / sandkasse
 PAYPAL_API_USER=API brugernavn
 PAYPAL_API_PASSWORD=API kodeord
 PAYPAL_API_SIGNATURE=API signatur
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Tilbyder betaling &quot;integreret&quot; (kreditkort + Paypal) eller &quot;Paypal&quot; kun
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/da_DK/products.lang b/htdocs/langs/da_DK/products.lang
index cb277460930172aabefa62d152ff27dd5e48b6d5..8f22f984fcd773141621bb5b1c56f4c556a53334 100644
--- a/htdocs/langs/da_DK/products.lang
+++ b/htdocs/langs/da_DK/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Production completed
-ProductsMultiPrice=Product multi-price
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/da_DK/projects.lang b/htdocs/langs/da_DK/projects.lang
index d50cab5ed8fefa118ff52d2661e6145a34b84291..c0f751039d64c3341e75c17510fc12c923c3128f 100644
--- a/htdocs/langs/da_DK/projects.lang
+++ b/htdocs/langs/da_DK/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=Dette synspunkt præsenterer alle projekter (din brugertilladelser give dig tilladelse til at se alt).
 MyTasksDesc=Dette synspunkt er begrænset til projekter eller opgaver, du er en kontaktperson for (hvad der er den type).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Dette synspunkt præsenterer alle projekter og opgaver, som du får lov til at læse.
 TasksDesc=Dette synspunkt præsenterer alle projekter og opgaver (din brugertilladelser give dig tilladelse til at se alt).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Officer projekt
 LastProjects=Seneste %s projekter
 AllProjects=Alle projekter
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Liste over projekter
 ShowProject=Vis projekt
 SetProject=Indstil projekt
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/da_DK/propal.lang b/htdocs/langs/da_DK/propal.lang
index 2bfd7d587a546173e4de0857a9e2b73b2e4b802f..1d25de1cdbd44d1f532a37a48849535bbacab604 100644
--- a/htdocs/langs/da_DK/propal.lang
+++ b/htdocs/langs/da_DK/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Seneste %s ændrede forslag
 AllPropals=Alle forslag
 LastProposals=Seneste forslag
 SearchAProposal=Søg forslag
+NoProposal=No proposal
 ProposalsStatistics=Kommerciel forslag 'statistikker
 NumberOfProposalsByMonth=Antal af måneden
 AmountOfProposalsByMonthHT=Beløb af måneden (efter skat)
@@ -62,7 +63,8 @@ DatePropal=Dato for forslag
 DateEndPropal=Dato udgangen gyldighedens
 DateEndPropalShort=Dato udgangen
 ValidityDuration=Gyldigheden varighed
-CloseAs=Luk med status
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Klassificere faktureret
 BuildBill=Build faktura
 ErrorPropalNotFound=Propal %s blev ikke fundet
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Default model creation
 DefaultModelPropalToBill=Default template when closing a business proposal (to be invoiced)
 DefaultModelPropalClosed=Default template when closing a business proposal (unbilled)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/da_DK/salaries.lang b/htdocs/langs/da_DK/salaries.lang
index 953a9c7540cbb06d6209140b32aaa0d23261e324..da177410860fb80d4d2d0872ec3b258ed787ba0e 100644
--- a/htdocs/langs/da_DK/salaries.lang
+++ b/htdocs/langs/da_DK/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Salary
 Salaries=Salaries
-Employee=Employee
 NewSalaryPayment=New salary payment
 SalaryPayment=Salary payment
 SalariesPayments=Salaries payments
diff --git a/htdocs/langs/da_DK/sendings.lang b/htdocs/langs/da_DK/sendings.lang
index b896739e3027b285040b60ee281b7b66e0f8d9e4..69402fe63797607875898fdf0671d6221ec45f37 100644
--- a/htdocs/langs/da_DK/sendings.lang
+++ b/htdocs/langs/da_DK/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Sender
 Shipments=Forsendelser
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Sendings område
 ListOfSendings=Liste over sendings
 SendingMethod=Afsendelse metode
diff --git a/htdocs/langs/da_DK/sms.lang b/htdocs/langs/da_DK/sms.lang
index 80e068f8f165bc0a661ee63f48f8c28aa0eb1342..c4672bbcc2f3e76b03dcc1d0c0fda5da2f1afbed 100644
--- a/htdocs/langs/da_DK/sms.lang
+++ b/htdocs/langs/da_DK/sms.lang
@@ -49,5 +49,6 @@ SendSms=Send SMS
 SmsInfoCharRemain=Nb af resterende figurer
 SmsInfoNumero= (Format international dvs.: 33899701761)
 DelayBeforeSending=Forsinkelse før afsendelse (minutter)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Intet mål til rådighed. Kontrollér opsætningen af ​​din SMS-udbyderen.
 
diff --git a/htdocs/langs/da_DK/supplier_proposal.lang b/htdocs/langs/da_DK/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/da_DK/supplier_proposal.lang
+++ b/htdocs/langs/da_DK/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/da_DK/trips.lang b/htdocs/langs/da_DK/trips.lang
index f5236b7a1f55b814e7596b89af5c55b47e6f4cea..4e495a95c16ddff026ed29c10a598669b78c17a7 100644
--- a/htdocs/langs/da_DK/trips.lang
+++ b/htdocs/langs/da_DK/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Anden
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Frokost
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/da_DK/users.lang b/htdocs/langs/da_DK/users.lang
index cb98f688e2eba505f3cf29989a87bc18342f71b3..84946d8c1d2d6e47fadb1e37b4944b26ef1502f1 100644
--- a/htdocs/langs/da_DK/users.lang
+++ b/htdocs/langs/da_DK/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Use OpenID to login
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/de_AT/admin.lang b/htdocs/langs/de_AT/admin.lang
index cbf01bcff40bb94978aff96ad3de59f4d3b79246..1f868cc1f6977c16fd03b9fda4f83a844eab9685 100644
--- a/htdocs/langs/de_AT/admin.lang
+++ b/htdocs/langs/de_AT/admin.lang
@@ -17,6 +17,8 @@ GUISetup=Anischt
 SetupArea=Einstellungen
 UseSearchToSelectCompany=Suchfeld statt Listenansicht für Partnerauswahl verwenden
 NextValue=Nächste Wert
+AntiVirusCommandExample=Beispiel für ClamWin: c:\\Program Files (x86)\\ClamWin\\bin\\clamscan.exe <br>Beispiel für ClamAV: /usr/bin/clamscan
+AntiVirusParamExample=Beispiel für ClamWin: --database="C:\\Program Files (x86)\\ClamWin\\lib"
 ImportMySqlDesc=Zum Wiederherstellen einer Sicherungsdatei müssen Sie folgenden Befehl über die Kommandozeile ausführen:
 GenericMaskCodes2=<b>(cccc)</b> den Client-Code <br> <b>() cccc000</b> den Client-Code auf n Zeichen ist, gefolgt von einer Client-ref Zähler ohne Offset-und zeroized mit der globalen Zähler. <br>
 GenericMaskCodes5=<b>ABC (yy) (mm) - (000000)</b> wird <b>ABC0701-000099</b> <br> <b>(0000 +100)-ZZZ / tt () / XXX</b> wird <b>0199-ZZZ/31/XXX</b>
diff --git a/htdocs/langs/de_AT/cron.lang b/htdocs/langs/de_AT/cron.lang
deleted file mode 100644
index 58deaee2e2627981c6b14934eedb759cede699b0..0000000000000000000000000000000000000000
--- a/htdocs/langs/de_AT/cron.lang
+++ /dev/null
@@ -1,3 +0,0 @@
-# Dolibarr language file - Source file is en_US - cron
-CronDtStart=Start-Datum
-CronDtEnd=End-Datum
diff --git a/htdocs/langs/de_AT/paypal.lang b/htdocs/langs/de_AT/paypal.lang
index 6c14cf77e65edec158e6c832d5cac246c175e7b2..c23745e25b901793cff8279d5933ba331acd53d1 100644
--- a/htdocs/langs/de_AT/paypal.lang
+++ b/htdocs/langs/de_AT/paypal.lang
@@ -18,4 +18,3 @@ NewPaypalPaymentFailed=Paypal-Zahlungsvorgang ist fehlgeschlagen
 ReturnURLAfterPayment=Rückkehr zur URL nach der Zahlung
 DetailedErrorMessage=genaue Fehlermeldung
 ShortErrorMessage=kurze Fehlermeldung
-ErrorCode=Fehlercode
diff --git a/htdocs/langs/de_AT/products.lang b/htdocs/langs/de_AT/products.lang
index 9aef192dab517472ee87de4b81448e5c2346e1f7..e3084cb4bc5fb41fddfc32e04fc9942655e582c8 100644
--- a/htdocs/langs/de_AT/products.lang
+++ b/htdocs/langs/de_AT/products.lang
@@ -37,4 +37,3 @@ Finished=Eigenerzeugung
 CloneProduct=Produkt/Service duplizieren
 CloneContentProduct=Allgemeine Informationen des Produkts/Services duplizieren
 NewRefForClone=Artikel Nr. des neuen Produkts/Services
-ProductsMultiPrice=Product multi-price
diff --git a/htdocs/langs/de_AT/propal.lang b/htdocs/langs/de_AT/propal.lang
index a91f5399aef43e6d7b76aa5fda14eada8a2a6682..31ca4ec052f7c344eb2e9de9f00606444ea3df69 100644
--- a/htdocs/langs/de_AT/propal.lang
+++ b/htdocs/langs/de_AT/propal.lang
@@ -9,7 +9,6 @@ RefProposal=Angebots Nr.
 DatePropal=Datum des Angebots
 DateEndPropal=Ablauf der Bindefrist
 ValidityDuration=Bindefrist
-CloseAs=Schließen mit dem Status
 Estimate=Geschätzt :
 CopyPropalFrom=Erstelle neues Angebot durch Duplikation
 CreateEmptyPropal=Erstelle leeres Angebot oder aus der Produkt-/Dienstleistungsliste
diff --git a/htdocs/langs/de_AT/sendings.lang b/htdocs/langs/de_AT/sendings.lang
index 521e5d8fdac96e29090db973d01ec2fcaf40cf14..91f6929c0e43c6489a37c291f72af2ffc90ef514 100644
--- a/htdocs/langs/de_AT/sendings.lang
+++ b/htdocs/langs/de_AT/sendings.lang
@@ -1,5 +1,4 @@
 # Dolibarr language file - Source file is en_US - sendings
 Shipments=Sendungen
-Receivings=Receipts
 DateReceived=Datum des Warenerhalts
 DocumentModelSirocco=Einfache Dokumentvorlage Scirocco für die Lieferungscheine
diff --git a/htdocs/langs/de_AT/supplier_proposal.lang b/htdocs/langs/de_AT/supplier_proposal.lang
deleted file mode 100644
index 321dbcb4cdc0539d3014a09a483b265fdb61493d..0000000000000000000000000000000000000000
--- a/htdocs/langs/de_AT/supplier_proposal.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - supplier_proposal
-SupplierProposalShort=Supplier proposal
diff --git a/htdocs/langs/de_CH/admin.lang b/htdocs/langs/de_CH/admin.lang
index f9590f56e8d777d83ae91864b6985600e2f7c84e..ff29e0fe28e9e825a4cb8df27f97ab1e98770ca4 100644
--- a/htdocs/langs/de_CH/admin.lang
+++ b/htdocs/langs/de_CH/admin.lang
@@ -1,5 +1,7 @@
 # Dolibarr language file - Source file is en_US - admin
 ConfirmPurgeSessions=Wollen Sie wirklich alle Sitzungsdaten löschen? Damit wird zugleich jeder Benutzer (ausser Ihnen) vom System abgemeldet.
+FormToTestFileUploadForm=Formular für das Testen von Datei-Uplads (je nach Konfiguration)
+DictionarySetup=Wörterbuch Einstellungen
 UseSearchToSelectCompanyTooltip=Wenn Sie eine grosse Anzahl von Geschäftspartnern (> 100'000) haben, können Sie die Geschwindigkeit verbessern, indem Sie in Einstellungen -> Andere die Konstante COMPANY_DONOTSEARCH_ANYWHERE auf 1 setzen. Die Suche startet dann am Beginn des Strings.
 UseSearchToSelectCompany=Suchfeld statt Listenansicht für Geschäftspartnerauswahl verwenden.
 ActivityStateToSelectCompany=Setzt einen Filter um Geschäftspartner ein-/auszublenden, welche aktiv oder inaktiv sind.
@@ -10,7 +12,11 @@ ViewFullDateActions=Zeige alle Terminaktionen in der Geschäftspartneransicht
 MustBeLowerThanPHPLimit=Hinweis: Ihre PHP-Einstellungen beschränken die Grösse für Dateiuploads auf <b>%s</b>%s
 NoMaxSizeByPHPLimit=Hinweis: In Ihren PHP-Einstellungen sind keine Grössenbeschränkungen hinterlegt
 MaxSizeForUploadedFiles=Maximale Grösse für Dateiuploads (0 verbietet jegliche Uploads)
+AntiVirusCommandExample=Beispiel für ClamWin: c:\\Program Files (x86)\\ClamWin\\bin\\clamscan.exe <br>Beispiel für ClamAV: /usr/bin/clamscan
+AntiVirusParamExample=Beispiel für ClamWin: --database="C:\\Program Files (x86)\\ClamWin\\lib"
+DetailPosition=Reihungsnummer für definition der Menüposition
 PurgeDeleteAllFilesInDocumentsDir=Alle Datein im Verzeichnis <b>%s</b> löschen. Dies beinhaltet temporäre Dateien ebenso wie Datenbanksicherungen, Dokumente (Geschäftspartner, Rechnungen, ...) und alle Inhalte des ECM-Moduls.
+DoliPartnersDesc=Liste mit einigen Unternehmen, die entwickeln/liefern On-Demand-Module  oder Funktionen (Hinweis: Jede Open-Source-Unternehmen beherscht die PHP-Sprache und kann bestimmte Entwicklungen liefern)
 ReferencedPreferredPartners=Bevorzugte Geschäftspartner
 MeasuringUnit=Masseinheit
 MAIN_MAIL_SMTP_PORT=SMTP-Port (standardmässig in der php.ini: <b>%s</b>)
@@ -18,15 +24,31 @@ MAIN_MAIL_SMTP_SERVER=SMTP-Host (standardmässig in php.ini: <b>%s</b>)
 MAIN_MAIL_EMAIL_FROM=E-Mail-Absender für automatisch erzeugte Mails (standardmässig in php.ini: <b>%s</b>)
 SubmitTranslationENUS=Sollte die Übersetzung für eine Sprache nicht vollständig sein oder Fehler beinhalten, können Sie die entsprechenden Sprachdateien im Verzeichnis <b>langs/%s</b>  bearbeiten und anschliessend Ihre Änderungen an dolibarr.org/forum oder für Entwickler auf github.com/Dolibarr/dolibarr. übertragen.
 SubmitTranslation=Wenn die Übersetzung der Sprache unvollständig ist oder wenn Sie Fehler finden, können Sie können Sie die entsprechenden Sprachdateien im Verzeichnis <b>langs/%s</b> korrigieren und und anschliessend Ihre Änderungen unter  www.transifex.com/dolibarr-association/dolibarr/ teilen.
+InfDirAlt=Seit Version 3 ist es möglich, ein alternatives Stammverzeichnis anzugeben. Dies ermöglicht, Erweiterungen und eigene Templates am gleichen Ort zu speichern.<br>Legen Sie einfach ein Verzeichis im Hauptverzeichnis von Dolibarr an (z.B. "eigenes").<br>
+GenericMaskCodes=Sie können ein beliebiges Numerierungsschema wählen. Dieses Schema könnte z.B. so aussehen:<br><b>{000000}</b> steht für eine 6-stellige Nummer, die sich bei jedem neuen %s automatisch erhöht. Wählen Sie die Anzahl der Nullen je nach gewünschter Nummernlänge. Der Zähler füllt sich automatisch bis zum linken Ende mit Nullen um das gewünschte Format abzubilden. <br><b>{000000+000}</b> führt zu einem ähnlichen Ergebnis, allerdings mit einem Wertsprung in Höhe des Werts rechts des Pluszeichens, der beim ersten %s angewandt wird. <br><b>{000000@x}</b> wie zuvor, jedoch stellt sich der Zähler bei Erreichen des Monats x (zwischen 1 und 12) automatisch auf 0 zurück. Ist diese Option gewählt und x hat den Wert 2 oder höher, ist die Folge {mm}{yy} or {mm}{yyyy} ebenfalls erfoderlich. <br><b>{dd}</b> Tag (01 bis 31).<br><b>{mm}</b> Monat (01 bis 12).<br><b>{yy}</b>, <b>{yyyy}</b> or <b>{y}</b> Jahreszahl 1-, 2- oder 4-stellig. <br>
 GenericMaskCodes2=<b>{cccc}</b>  den Kunden-Code mit n Zeichen<br><b>{cccc000}</b> den Kunden-Code mit n Zeichen, gefolgt von einer Client-Zähler zugeordnet zu dem Kunden. <br><b>{tttt}</b> Die Geschäftspartner ID mit n Zeichen (siehe Wörterbuch Partner Typen).<br>
+GenericMaskCodes4a=<u>Beispiel auf der 99. %s des Dritten thecompany Geschehen 2007-01-31:</u> <br>
+GenericMaskCodes4b=<u>Beispiel für Dritte erstellt am 2007-03-01:</u> <br>
 UMaskExplanation=Über diesen Parameter können Sie die standardmässigen Dateiberechtigungen für vom System erzeugte/verwaltete Inhalte festlegen. <br>Erforderlich ist ein Oktalwert (0666 bedeutet z.B. Lesen und Schreiben für alle). <br>Auf Windows-Umgebungen haben diese Einstellungen keinen Effekt.
+HideAnyVATInformationOnPDF=Unterdrücken aller MwSt.-Informationen auf dem generierten PDF
+OldVATRates=Alter MwSt. Satz
+NewVATRates=Neuer MwSt. Satz
+ExtrafieldCheckBoxFromList=Checkbox von Tabelle
 Module1Name=Geschäftspartner
 Module1Desc=Geschäftspartner- und Kontakteverwaltung (Kunden, Leads, ...)
+Module20Desc=Angeboteverwaltung
+Module49Desc=Bearbeiterverwaltung
+Module57Desc=Abbuchungsaufträge und Entzugsmanagement. Hierzu gehört auch Generation von SEPA-Datei für europäische Länder.
+Module70Name=Arbeitseinsätze
 Module80Name=Auslieferungen
+Module250Desc=Werkzeug zum Dateinport (mit Assistenten)
 Module400Desc=Projektmanagement, Aufträge oder Leads. Anschliessend können Sie ein beliebiges Element (Rechnung, Bestellung, Angebot, Intervention, ...) einem Projekt zuordnen und eine Queransicht von der Projektanzeige bekommen.
-Module600Desc=Senden Sie Benachrichtigungen zu einigen Dolibarr-Events per E-Mail an Geschäftspartner (wird pro Geschäftspartner definiert)
+Module1200Desc=Mantis-Integation
 Permission26=Angebote schliessen
 Permission44=Projekte und Aufgaben löschen (gemeinsame Projekte und Projekte, in welchen ich Ansprechpartner bin)
+Permission61=Leistungen ansehen
+Permission62=Leistungen erstellen/bearbeiten
+Permission64=Interventionen löschen
 Permission87=Kundenaufträge abschliessen
 Permission121=Mit Benutzer verbundene Geschäftspartner einsehen
 Permission122=Mit Benutzer verbundene Geschäftspartner erstellen/bearbeiten
@@ -34,46 +56,104 @@ Permission125=Mit Benutzer verbundene Geschäftspartner löschen
 Permission126=Geschäftspartner exportieren
 Permission144=Löschen Sie alle Projekte und Aufgaben (einschliesslich privater Projekte in denen ich kein Kontakt bin)
 Permission187=Lieferantenbestellungen schliessen
+Permission188=Lieferantenbestellungen verwerfen
+Permission193=Leitungen abbrechen
+Permission203=Bestellungsverbindungen Bestellungen
 Permission262=Zugang auf alle Geschäftspartner erweitern (nicht nur diejenigen im Zusammenhang mit Benutzer). Nicht wirksam für externe Nutzer (diese sind immer auf sich selbst beschränkt).
+Permission525=Darlehens-rechner
 Permission1188=Lieferantenbestellungen schliessen
+Permission59002=Gewinspanne definieren
 DictionaryCompanyType=Geschäftspartnertyp
+DictionaryVAT=MwSt.-Sätze
+DictionaryEMailTemplates=Textvorlagen für Emails
+BackToDictionaryList=Zurück zur Wörterbuchübersicht
+VATManagement=MwSt-Verwaltung
 VATIsUsedDesc=Der standardmässige MwSt.-Satz für die Erstellung von Leads, Rechnungen, Bestellungen, etc. folgt der folgenden, aktiven Regel:<br>Ist der Verkäufer mehrwertsteuerpflichtig, ist die MwSt. standardmässig 0. Ende der Regel.<br>Ist das Verkaufsland gleich dem Einkaufsland, ist die MwSt. standardmässig die MwSt. des Produkts im Verkaufsland. Ende der Regel. <br>Sind Verkäufer und Käufer beide aus Europäischen Mitgliedsstaaten und die Produkte physisch transportfähig (Auto, Schiff, Flugzeug), ist die MwSt. standardmässig 0. (Die MwSt. sollte durch den Käufer beim eigenen Zollamt entrichtet werden, nicht durch den Verkäufer. Ende der Regel.<br>Sind Verkäufer und Käufer beide aus Europäischen Mitgliedsstaaten, der Käufer jedoch kein Unternehmen so ist die MwSt. standardmässig die MwSt. des verkauften Produkts. Ende der Regel.<br>Sind Verkäufer und Käufer beide Unternehmen im Europäischen Gemeinschaftsraum, so ist die MwSt. standardmässig 0. Ende der Regel.<br>Trifft keine der obigen Regeln zu, ist die MwSt. standardmässig 0.
 VATIsNotUsedDesc=Die vorgeschlagene MwSt. ist standardmässig 0 für alle Fälle wie Stiftungen, Einzelpersonen oder Kleinunternehmen.
 LocalTax1IsUsedDescES=Die RE Rate standardmässig beim Erstellen Aussichten, Rechnungen, Bestellungen etc. folgen die aktive Standard-Regel: <br> Wenn te Käufer ist nicht unterworfen RE, RE standardmässig = 0 ist. Ende der Regel. <br> Ist der Käufer unterzogen, um dann die RE RE standardmässig. Ende der Regel. <br>
 LocalTax1IsNotUsedDescES=Standardmässig werden die vorgeschlagenen RE 0 ist. Ende der Regel.
 LocalTax2IsUsedDescES=Die RE Rate standardmässig beim Erstellen Aussichten, Rechnungen, Bestellungen etc. folgen die aktive Standard-Regel: <br> Ist der Verkäufer nicht zu IRPF ausgesetzt, dann durch IRPF default = 0. Ende der Regel. <br> Ist der Verkäufer zur IRPF dann der Einkommenssteuer unterworfen standardmässig. Ende der Regel. <br>
 LocalTax2IsNotUsedDescES=Standardmässig werden die vorgeschlagenen IRPF 0 ist. Ende der Regel.
+LocalTax2IsNotUsedExampleES=In Spanien sind sie bussines nicht der Steuer unterliegen System von Modulen.
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Verzögerungstoleranz (in Tagen) vor  Warnung für abzuschliessende Angebote
 SetupDescription4=Die <b>Moduleinstellungen</b> sind erforderlich, da dolibarr nicht als simples ERP/CRM-System, sondern als Kombination einer Vielzahl mehr oder weniger unabhängiger Module fungiert. Ein Grossteil der Navigationselemente erscheint erst nach Aktivierung der entsprechenden Module.
 AreaForAdminOnly=Diese Funktionen stehen ausschliesslich <b>Administratoren</b> zur Verfügung. Administrationsfunktionen und -hilfe werden in dolibarr durch die folgenden Symbole dargestellt:
 SystemAreaForAdminOnly=Dieser Bereich steht ausschliesslich Administratoren zur Verfügung. Keine der Benutzerberechtigungen kann dies ändern.
 TriggersDesc=Trigger sind Dateien, die nach einem Kopieren in das Verzeichnis <b>htdocs/core/triggers</b> das Workflow-Verhalten des Systems beeinflussen. Diese stellen neue, mit Systemereignissen verbundene, Ereignisse dar (Neuer Geschäftspartner angelegt, Rechnung freigegeben, ...).
+TriggerDisabledByName=Trigger in dieser Datei sind durch das <b>-NORUN</b>-Suffix in ihrem Namen deaktviert.
+MAIN_ROUNDING_RULE_TOT=Rundungseinstellung (Für Länder in denen nicht auf 10er basis Gerundet wird. zB. 0.05 damit in 0.05 Schritten gerundet wirb)
+TotalPriceAfterRounding=Gesamtpreis (Netto/MwSt./Brutto) gerundet
+NoEventOrNoAuditSetup=Keine sicherheitsrelevanten Protokollereignisse. Überprüfen Sie die Aktivierung dieser Funktionen unter 'Einstellunge-Sicherheit-Protokoll'.
+RestoreDesc2=Wiederherstellung von Archive Datei (zip Datei zum Beispiel)\nvom documents Verzeichnis um den documents Datei-Baum im documents verzeichnis in eine neue Dolibarr Installation oder in ein bestehendes Dolibarr Verzeichnis (<b>%s</b>).
+DownloadMoreSkins=Weitere grafische Oberflächen/Themes herunterladen
 ShowVATIntaInAddress=Ausblenden MwSt. Nummer in Adressen auf Dokumenten.
+MenuUseLayout=Machen Sie vertikales Menü hidable (Option Javascript muss nicht deaktiviert werden)
 DefineHereComplementaryAttributes=Definieren Sie hier alle Attribute, die nicht standardmässig vorhanden sind, und in %s unterstützt werden sollen.
+ExtraFieldsSupplierOrdersLines=Ergänzende Attribute (in Bestellungszeile)
 ExtraFieldsThirdParties=Ergänzende Attribute (Geschäftspartner)
+AlphaNumOnlyCharsAndNoSpace=nur alphanumericals Zeichen ohne Leerzeichen
+SendmailOptionNotComplete=Achtung, auf einigen Linux-Systemen, E-Mails von Ihrem E-Mail zu senden, sendmail Ausführung Setup muss conatins Option-ba (Parameter mail.force_extra_parameters in Ihre php.ini-Datei). Wenn einige Empfänger niemals E-Mails erhalten, versuchen, diese Parameter mit PHP mail.force_extra_parameters =-ba) zu bearbeiten.
+AddRefInList=Darstellung Kunden- /Lieferanten- Nr. in Listen (Listbox oder ComboBox) und die meisten von Hyperlinks. Third parties will appears with name "CC12345 - SC45678 - The big company coorp", instead of "The big company coorp".
+UserGroupSetup=Benutzer- und Gruppeneinstellunen
 CompanyCodeChecker=Modul für Geschäftspartner-Code-Erstellung (Kunden oder Lieferanten)
+ModuleCompanyCodeAquarium=Generiert einen Kontierungscode %s, gefolgt von der Lieferantenummer für einen Lieferanten-Kontierungscode und %s, gefolgt vom Kundencontierungscode für einen Kundenkontierungscode.
 ModuleCompanyCodeDigitaria=Kontierungscode hängt vom Geschäftspartner Code ab. Der Code setzt sich aus dem Buchstaben 'C' und den ersten 5 Stellen des Geschäftspartner Codes zusammen.
 NotificationsDesc=E-Mail-Benachrichtigungsfunktionen erlauben Ihnen den stillschweigenden Versand automatischer Benachrichtigungen zu einigen Dolibarr-Ereignissen. Ziele dafür können definiert werden:<br>* pro Geschäftspartner-Kontakt (Kunden oder Lieferanten), ein Geschäftspartner zur Zeit.<br>* durch das Setzen einer globalen Ziel-Mail-Adresse in den Modul-Einstellungen
+CompanyIdProfChecker=Berufs-Identifikation einzigartige
 MustBeMandatory=Erforderlich um Geschäftspartner anzulegen?
 WebCalYesByDefault=Nach Rückfrage (standardmässig JA)
 WebCalNoByDefault=Nach Rückfrage (standardmässig NEIN)
 WebCalAddEventOnCreateCompany=Kalendereintrag hinzufügen beim Erstellen einer Firma
+ProposalsPDFModules=PDF-Anbebotsmodule
+HideTreadedOrders=Ausblenden von bearbeiteten oder abgebrochenen Angeboten in der Liste
 ValidOrderAfterPropalClosed=Zur Freigabe der Bestellung nach Schliessung des Angebots (überspringt vorläufige Bestellung)
+WatermarkOnDraftOrders=Wasserzeichen auf Bestellungs-Entwurf (keines, wenn leer)
+InterventionsSetup=Servicemoduleinstellungen
+FreeLegalTextOnInterventions=Freier Rechtstext auf Interventions Dokument
+FicheinterNumberingModules=Intervention Nummerierung Module
+TemplatePDFInterventions=Intervention Karte Dokumenten Modelle
+WatermarkOnDraftInterventionCards=Wasserzeichen auf Interventionskarte Dokumente (keines, wenn leer)
 MemberSendInformationByMailByDefault=Das Kontrollkästchen für den automatischen Mail-Bestätigungsversand an Mitglieder (bei Freigabe oder neuem Abonnement) ist standardmässig aktiviert
+LDAPServerDnExample=Complete DN (zB: dc=company,dc=com)
+LDAPMemberDnExample=Complete DN (ex: ou=members,dc=society,dc=Vollständige DN (zB: ou=users,dc=society,dc=com)
+LDAPTestSynchroGroup=Gruppenynchronisation testen
+LDAPTestSynchroMember=Mitgliederynchronisation testen
 LDAPFieldAddress=Strasse
 LDAPFieldAddressExample=Beispiel : Strasse
+LDAPFieldTownExample=Beispiel: stadt
+LDAPFieldBirthdateExample=Beispiel : geburtsdatum
+LDAPDescValues=Die Beispielwerte für <b>OpenLDAP</b> verfügen über folgende Muster: <b>core.schema, cosine.schema, inetorgperson.schema</b>. Wenn Sie diese Werte für OpenLDAP verwenden möchten, passen Sie bitte die LDAP-Konfigurationsdateu <b>slapd.conf</b> entsprechend an, damit all diese Muster geladen werden.
+ApplicativeCache=Applicative Cache
+MemcachedNotAvailable=Kein Cache Anwendung gefunden. \nSie können die Leistung durch die Installation des Cache-Server Memcached und die Aktivierung des Anwendungs Cache Modul\n<br>hier mehr Informationen <a href="http://wiki.dolibarr.org/index.php/Module_MemCached_EN">http://wiki.dolibarr.org/index.php/Module_MemCached_EN</a>.<br>\nverbessern.\nBeachten Sie, dass viele Billig-Provider keine solche Cache-Server in ihrer Infrastruktur anbieten.
+MemcachedModuleAvailableButNotSetup=Module memcached für applicative Cache gefunden, aber Setup-Modul ist nicht vollständig.
+MemcachedAvailableAndSetup=Module memcached dedicated to use memcached server is enabled..
 ViewProductDescInThirdpartyLanguageAbility=Anzeige der Produktbeschreibungen in der Sprache des Geschäftspartners
 UseSearchToSelectProductTooltip=Wenn Sie eine grosse Anzahl von Produkten (> 100.000) haben, können Sie die Geschwindigkeit verbessern, indem Sie in Einstellungen -> Andere die Konstante PRODUCT_DONOTSEARCH_ANYWHERE auf 1 setzen. Die Suche startet dann am Beginn des Strings.
 SetDefaultBarcodeTypeThirdParties=Standard-Barcode-Typ für Geschäftspartner
 UseUnits=Definieren Sie eine Masseinheit für die Menge während der Auftrags-, Auftragsbestätigungs- oder Rechnungszeilen-Ausgabe
+ErrorUnknownSyslogConstant=Konstante %s ist nicht als Protkoll-Konstante definiert
 ListOfAvailableNotifications=Liste der möglichen Benachrichtigungen, entweder pro Geschäftspartner (in der Geschäftspartner-Karte einzustellen) oder mit einer festen Mail-Adresse (Inhalt der Liste hängt ab von den aktivierten Modulen)
+NoNeedForDeliveryReceipts=In den meisten Fällen werden Lieferschein sowohl als Versand- (für die Zusammenstellung der Auslieferung), als auch als Zustellsscheine (vom Kunden zu unterschreiben) verwendet. Entsprechend sind Empfangsbelege meist eine doppelte und daher nicht verwendete Option.
 FCKeditorForCompany=WYSIWIG Erstellung/Bearbeitung der Firmennformationen und Notizen (ausser Produkte/Services)
 FCKeditorForMail=WYSIWYG Erstellung/Bearbeitung für gesamte Mail (ausser Werkzeuge->eMailing)
 IfYouUsePointOfSaleCheckModule=Wenn Sie ein Point of Sale-Modul (POS-Modul Standard oder andere externe POS-Module) verwenden, kann diese Einstellung von Ihrem Point Of Sale-Modul übersteuert werden. \nDie meisten POS -Module wurden entwickelt, um sofort eine Rechnung zu erstellen und das Lager standardmässig zu verringern, egal welche Optionen hier ausgewählt wurde. \nAlso, wenn Sie während einem Verkauf einen Lagerabgang in Ihrem Point of Sale möchten oder nicht, so müssen sie auch die Konfiguration des POS-Modules überprüfen.
+DetailTitre=Menübezeichner oder Bezeichnungs-Code für Übersetzung
+DetailLangs=Sprachdateiname für Bezeichnungsübersetzung
+OptionVatMode=MwSt. fällig
 SummaryOfVatExigibilityUsedByDefault=Standardmässiger Zeitpunkt der MwSt.-Fälligkeit in Abhängigkeit zur derzeit gewählten Option:
+YourCompanyDoesNotUseVAT=Für Ihr Unternehmen wurde keine MwSt.-Verwendung definiert (Start-Einstellungen-Unternehmen/Stiftung), entsprechend stehen in der Konfiguration keine MwSt.-Optionen zur Verfügung.
+AGENDA_USE_EVENT_TYPE=Verwenden der Termintypen \nEinstellen unter (Start -> Einstellungen -> Wörterbücher -> Ereignistypen)
 CashDeskThirdPartyForSell=Standardgeschäftspartner für Kassenverkäufe
+StockDecreaseForPointOfSaleDisabled=Lagerrückgang bei Verwendung von Point of Sale deaktivert
 BookmarkDesc=Dieses Modul ermöglicht die Verwaltung von Lesezeichen. Ausserdem können Sie hiermit Verknüpfungen zu internen und externen Seiten im linken Menü anlegen.
+MultiCompanySetup=Multi-Company-Moduleinstellungen
+TasksNumberingModules=Aufgaben-Nummerierungs-Modul
 CloseFiscalYear=Fiskalisches Jahr schliessen
 NbMajMin=Mindestanzahl Grossbuchstaben
+TemplatePDFExpenseReports=Dokumentvorlagen zur Spesenabrechnung Dokument erstellen
 GoOntoContactCardToAddMore=Gehen Sie auf die Registerkarte "Hinweise" von einem  Geschäftspartner Kontakt , um Hinweise für Kontakte/Adressen zu erstellen oder zu entfernen
+ConfFileMuseContainCustom=Installation eines externen Modul aus der Anwendung speichern Sie die Modul-Dateien in Verzeichnis <strong>%s</strong>. Zu haben dieses Verzeichnis durch Dolibarr verarbeitet, müssen Sie das Setup Ihrer <strong>conf/conf.php</strong> Option haben <br> - - <strong>$dolibarr_main_url_root_alt</strong> auf <<strong>$dolibarr_main_url_root_alt="/custom"</strong> enabled <strong>= "/custom"</strong> <br> - <strong>$dolibarr_main_document_root_alt</strong>  zu Wert aktiviert <strong>"%s/custom"</strong>
+NbAddedAutomatically=Anzahl Tage die den Benutzern jeden Monat automatisch dazuaddiert werden
+RecuperableOnly=Ja für MwSt. "Wahrgenommene nicht Erstattungsfähig" für einige Regionen in Frankreich. Nein für alle anderen Fälle.
+MailToSendIntervention=Um Interventions zu schicken
 MailToThirdparty=Um Email von Geschäftspartner zu schicken
diff --git a/htdocs/langs/de_CH/agenda.lang b/htdocs/langs/de_CH/agenda.lang
index 4f6cdc231c934be82d174484f9eefa8f372a3cd1..850fa9782c36f3ccf7ba4f6a1695fd447137af40 100644
--- a/htdocs/langs/de_CH/agenda.lang
+++ b/htdocs/langs/de_CH/agenda.lang
@@ -1,3 +1,10 @@
 # Dolibarr language file - Source file is en_US - agenda
+MenuDoneActions=Alle abgeschl. Termine
+MenuDoneMyActions=Meine abgeschl. Termine
 AgendaAutoActionDesc=Definieren Sie hier Termine zur automatischen Übernahme in den Terminkalender. Ist nichts aktviert (Standardmässig), umfasst der Terminkalender nur manuell eingetragene Termine.
+OrderCanceledInDolibarr=Auftrag storniert %s
+ShippingSentByEMail=Lieferung %s per Email versendet
+InterventionSentByEMail=Intervention %s gesendet via E-Mail
 NewCompanyToDolibarr=Geschäftspartner erstellt
+DateActionBegin=Beginnzeit des Ereignis
+DateStartPlusOne=Anfangsdatum + 1 Stunde
diff --git a/htdocs/langs/de_CH/banks.lang b/htdocs/langs/de_CH/banks.lang
new file mode 100644
index 0000000000000000000000000000000000000000..494766e043b9d60cda2bd0ea53cebd0fbe3c7875
--- /dev/null
+++ b/htdocs/langs/de_CH/banks.lang
@@ -0,0 +1,5 @@
+# Dolibarr language file - Source file is en_US - banks
+Conciliable=Ausgleichsfähig
+ConfirmValidateCheckReceipt=Scheck wirklich annehmen? Eine Änderung ist anschliessend nicht mehr möglich.
+DefaultRIB=Standart Bankkonto-Nummer
+StartDate=Anfangsdatum
diff --git a/htdocs/langs/de_CH/bills.lang b/htdocs/langs/de_CH/bills.lang
index 44f7043a8845eff5b44a11d0dd62454b323e7055..c0694033e83483bb91cdba1870e63923fbe150d3 100644
--- a/htdocs/langs/de_CH/bills.lang
+++ b/htdocs/langs/de_CH/bills.lang
@@ -39,15 +39,21 @@ HelpPaymentHigherThanReminderToPay=Hoppla, du willst einen höheren Betrag angeb
 ClassifyCanceled=Als 'zurückgezogen' markieren
 AddBill=Erstelle eine Rechnung oder Gutschrift
 DeleteBill=Rechnung löschen
-CancelBill=Rechnung stornieren
 SendRemindByMail=Mahnung per E-Mail senden
 BillShortStatusConverted=Verarbeitet
 ErrorVATIntraNotConfigured=Intrakommunale MwSt.-Nr. noch nicht definiert
 ErrorNoPaiementModeConfigured=Keine standardmässige Zahlungsart definiert. Beheben Sie diesen Fehler in den Einstellungen des Rechnungsmoduls.
 ErrorCreateBankAccount=Legen Sie ein Bankkonto an und definieren Sie anschliessend die Zahlungsarten in den Einstellungen des Rechnungsmoduls.
+ConfirmCancelBill=Möchten Sie die Rechnung <b>%s</b> wirklich aufgeben?
 ConfirmClassifyPaidPartiallyQuestion=Diese Rechnung wurde nicht vollständig bezahlt. Was sind Gründe für das Schliessen dieser Rechnung?
+ConfirmClassifyPaidPartiallyReasonAvoir=Der offene Zahlbetrag <b>( %s %s)</b> resultiert aus einem gewährten Skonto. Zur Korrektur der MwSt. wird eine Gutschrift angelegt.
+ConfirmClassifyPaidPartiallyReasonDiscountNoVat=Der offene Zahlbetrag <b>( %s %s)</b> resultiert aus einem gewährten Skonto. Ich akzeptiere den Verlust der MwSt. aus diesem Rabatt.
 SupplierBillsToPay=Offene Lieferantenrechnungen
 Reduction=Ermässigung
 Reductions=Ermässigungen
+PaymentTypeShortTIP=Interbank
+IntracommunityVATNumber=Innergemeinschaftliche MwSt-Nummer
+VATIsNotUsedForInvoice=* Nicht für MwSt-art-CGI-293B
 NoteListOfYourUnpaidInvoices=Bitte beachten: Diese Liste enthält nur Rechnungen an Geschäftspartner, bei denen Sie als Vertreter angegeben sind.
 YouMustCreateInvoiceFromThird=Diese Option steht nur zur Verfügung, wenn eine Rechnung vom Reiter "Kunde" eines Geschäftspartners aus erstellt wird
+SituationAmount=Situation Rechnungsbetrag (ohne MwSt.)
diff --git a/htdocs/langs/de_CH/boxes.lang b/htdocs/langs/de_CH/boxes.lang
new file mode 100644
index 0000000000000000000000000000000000000000..e1966f3510d91bcc523e879e1a355766ef141bac
--- /dev/null
+++ b/htdocs/langs/de_CH/boxes.lang
@@ -0,0 +1,4 @@
+# Dolibarr language file - Source file is en_US - boxes
+BoxFicheInter=Letzte Einsätze
+BoxTitleLastFicheInter=Neueste %s veränderte Eingriffe
+NoRecordedInterventions=Keine verzeichneten Einsätze
diff --git a/htdocs/langs/de_CH/cashdesk.lang b/htdocs/langs/de_CH/cashdesk.lang
deleted file mode 100644
index 180f4ae4b421837fffe447399b1100a85d148e11..0000000000000000000000000000000000000000
--- a/htdocs/langs/de_CH/cashdesk.lang
+++ /dev/null
@@ -1,8 +0,0 @@
-# Dolibarr language file - Source file is en_US - cashdesk
-CashDeskThirdParty=Kunde
-ShoppingCart=Warenkorb
-NewSell=Neuer Verkauf
-BackOffice=Dolibarr
-AddThisArticle=In Warenkorb legen
-Change=Rückgeld
-FilterRefOrLabelOrBC=Suche (Art-Nr./Name)
diff --git a/htdocs/langs/de_CH/categories.lang b/htdocs/langs/de_CH/categories.lang
index 48f693de5626ad5eb064f005b9e13eb368350202..72c3b1427f91c1a69813738fe05737ee74d8725e 100644
--- a/htdocs/langs/de_CH/categories.lang
+++ b/htdocs/langs/de_CH/categories.lang
@@ -3,10 +3,8 @@ Rubrique=Tag/Kategorie
 Rubriques=Tags/Kategorien
 NoCategoryYet=Keine Kategorie/Tags von dieser Art erstellt
 CategoriesArea=Tags/Kategorien - Übersicht
-SuppliersCategoriesArea=Lieferantenkategorien bzw. Suchwörter Übersicht
 ThirdPartyCategoriesArea=Geschäftspartner- Kategorien/Tags
 MembersCategoriesArea=Mitglieder- Kategorien/Tags
-ContactsCategoriesArea=Kontaktkategorien bzw. Suchwörter Übersicht
 CatList=Liste der Kategorien/Tags
 AllCats=Alle Kategorien/Tags
 ViewCat=Zeige Kategorie/Tag
@@ -14,6 +12,7 @@ NewCat=Kategorie/Tag hinzufügen
 NewCategory=Neue Kategorie/Tag
 CreateCat=Kategorie/Tag erstellen
 CreateThisCat=Kategorie/Tag erstellen
+ImpossibleAssociateCategory=Es ist nicht möglich die Kategorie zuweisen an
 CategorySuccessfullyCreated=Kategorie/Tag %s wurde erfolgreich hinzugefügt.
 ProductIsInCategories=Produkt/Leistung ist zu folgenden Kategorien/Tags verknüpft
 SupplierIsInCategories=Der Parter  ist zu folgenden Lieferanten- Kategorien/Tags verknüpft
@@ -23,9 +22,9 @@ MemberIsInCategories=Dieses Mitglied ist folgenden Mitglieder- Kategorien/Tags z
 ContactIsInCategories=Dieser Kontakt ist mit folgenden Kontakte- Kategorien/Tags verknüpft
 CompanyHasNoCategory=Dieser Geschäftspartner ist in keiner Kategorie
 ClassifyInCategory=Zu Kategorie/Tag hinzufügen
+ContentsVisibleByAllShort=Öffentl. Inhalt
 CustomersCategoryShort=Kunden- Kategorie/Tag
 ProductsCategoryShort=Produkt- Kategorie/Tag
 MembersCategoryShort=Mitglieds- Kategorie/Tag
-SuppliersCategoriesShort=Lieferantenkategorien
-CustomersCategoriesShort=Kunden Tags/Kategorien
+CustomersProspectsCategoriesShort=Kunden- / Leadkategorien
 CatContactList=Liste der Kontakt- Kategorien/Tags
diff --git a/htdocs/langs/de_CH/companies.lang b/htdocs/langs/de_CH/companies.lang
index de2a2397693e222a1e95b8b0d3baf520728d2c45..2e19bfb4391e4551c692c5ff7a2e06725170177d 100644
--- a/htdocs/langs/de_CH/companies.lang
+++ b/htdocs/langs/de_CH/companies.lang
@@ -8,29 +8,55 @@ CreateDolibarrThirdPartySupplier=Neuen Geschäftspartner erstellen (Lieferant)
 IdThirdParty=Geschäftspartner ID
 ThirdPartyContacts=Geschäftspartner-Kontakte
 ThirdPartyContact=Geschäftspartner-Kontakt
+AliasNames=Alias-Name (Geschäftsname, Marke, ...)
 ThirdPartyName=Name des Geschäftspartners
 ThirdParty=Geschäftspartner
 ThirdParties=Geschäftspartner
 ThirdPartyAll=Geschäftspartner (alle)
 ThirdPartyType=Typ des Geschäftspartners
+ToCreateContactWithSameName=Legt aus diesen Daten autom. eine Person/Kontakt an
+VATIsUsed=MwSt.-pflichtig
+VATIsNotUsed=Nicht MwSt-pflichtig
 CopyAddressFromSoc=Übernehme die Adresse vom Geschäftspartner
+WrongCustomerCode=Kunden-Code ungültig
+WrongSupplierCode=Lieferanten-Code ungültig
+CustomerCodeModel=Kunden-Code-Modell
+SupplierCodeModel=Lieferanten-Code Modell
+ProfId1BR=CNPJ
+ProfId4DE=Steuernummer
 VATIntraShort=MwSt.-Nr.
+CustomerCard=Kundenkarte
+CustomerRelativeDiscountShort=Rabatt rel.
+CustomerAbsoluteDiscountShort=Rabatt abs.
 CompanyHasNoRelativeDiscount=Dieser Kunde hat standardmässig keinen relativen Rabatt
 AvailableGlobalDiscounts=Verfügbare absolute Ermässigungen
+CompanyList=Firmen-Liste
 NoContactDefinedForThirdParty=Für diesen Geschäftspartner ist kein Kontakt eingetragen
 NoContactDefined=Kein Kontakt vorhanden
 AddThirdParty=Geschäftspartner erstellen
+CustomerCodeShort=Kunden-Nr.
+SupplierCodeShort=Lieferanten-Nr.
 RequiredIfCustomer=Erforderlich falls Geschäftspartner Kunde oder Interessent ist
 RequiredIfSupplier=Erforderlich falls Geschäftspartner Lieferant ist
 ListOfThirdParties=Liste der Geschäftspartner
+ContactForProposals=Offertskontakt
+NoContactForAnyOrder=Kein Kontakt für Bestellungen
+NoContactForAnyProposal=Kein Kontakt für Offerte
+NoContactForAnyContract=Kein Kontakt für Verträge
+NoContactForAnyInvoice=Dieser Kontakt ist kein Kontakt für jegliche Rechnung
+VATIntraCheckableOnEUSite=Überprüfen Sie Intrakommunale MwSt-Website der Europäischen Kommission
+VATIntraManualCheck=Sie können die Überprüfung auch manuell durchführen <a href="%s" target=Sie können auch manuell die eruopäische Website <a href="%s" target="_blank">%s</a> befragen
 OthersNotLinkedToThirdParty=Andere, nicht mit einem Geschäftspartner verknüpfte Projekte
 TE_GROUP=Grossunternehmen
 ContactNotLinkedToCompany=Kontakt keinem Geschäftspartner zugeordnet
+DolibarrLogin=Dolibarr Benutzername
 ExportDataset_company_1=Geschäftspartner (Unternehmen/Stiftungen/Personen) und Eigenschaften
 ImportDataset_company_1=Geschäftspartner (Unternehmen/Stiftungen/Personen) und Eigenschaften
 ImportDataset_company_4=Geschäftspartner / Aussendienstmitarbeiter (Auswirkung Aussendienstmitarbeiter  an Unternehmen)
 SelectCompany=Wählen Sie einen Geschäftspartner
 Organization=Organisation
+AutomaticallyGenerated=Autogeneriert
+FiscalMonthStart=Ab Monat des Geschäftsjahres
 YouMustCreateContactFirst=Sie müssen erst E-Mail-Kontakte für einen Geschäftspartner anlegen, um E-Mail-Benachrichtigungen hinzufügen zu können.
 ThirdPartiesArea=Geschäftspartner- und Kontaktbereich
 LastModifiedThirdParties=Letzte %s bearbeitete Geschäftspartner
diff --git a/htdocs/langs/de_CH/compta.lang b/htdocs/langs/de_CH/compta.lang
index 087f6bed2c6e625899bb4b0da5a42a07cd8316ab..5c720e9dd4e86c8b63d207b306638df8187730db 100644
--- a/htdocs/langs/de_CH/compta.lang
+++ b/htdocs/langs/de_CH/compta.lang
@@ -1,8 +1,29 @@
 # Dolibarr language file - Source file is en_US - compta
+FeatureIsSupportedInInOutModeOnly=Dieses Feautre ist nur in der Soll-Haben-Option verfügbar (siehe Konfiguration des Rechnungswesen-Moduls)
 PaymentsNotLinkedToInvoice=Zahlungen mit keiner Rechnung und damit auch keinem Geschäftspartner verbunden
+VATReceived=Erhobene MwSt.
+VATSummary=MwSt. Saldo
+VATPaid=Bezahlte MwSt.
+VATCollected=Erhobene MwSt.
+PaymentVat=MwSt.-Zahlung
+NewVATPayment=Neue MwSt. Zahlung
+ShowVatPayment=Zeige MwSt. Zahlung
+TotalVATReceived=Summe vereinnahmte MwSt.
 ByThirdParties=Durch Geschäftspartner
+CalcModeVATDebt=Modus <b>%s Mwst. auf Engagement Rechnungslegung %s</b>.
+CalcModeLT2Rec=Modus <b>%sIRPF aufLieferantenrechnungen%s</b>
 AnnualByCompaniesDueDebtMode=Die Einnahmen/Ausgaben-Bilanz nach Geschäftspartnern im Modus <b>%sForderungen-Verbindlichkeiten%s</b> meldet <b>Kameralistik</b>.
+SeeReportInInputOutputMode=Der <b>%sEinkünfte-Ausgaben%s</b>-Bericht medlet <b>Istbesteuerung</b> für eine Berechnung der tatsächlich erfolgten Zahlungsströme.
+RulesResultDue=- Dies beinhaltet ausstehende Rechnungen, Aufwendungen, Mehrwertsteuern, Abgaben, ob sie bezahlt wurden oder nicht. Auch die gezahlten Gehälter. <br> - Es gilt das Freigabedatum von den Rechnungen und MwSt., sowie das Fälligkeitsdatum für Aufwendungen. Für Gehälter definiert mit dem Modul Löhne, wird das Valutadatum der Zahlung verwendet.
 LT2ReportByCustomersInInputOutputModeES=Bericht von Geschäftspartner EKSt.
+VATReportByCustomersInInputOutputMode=Bericht zur vereinnahmten und bezahlten MwSt. nach Kunden
+VATReportByCustomersInDueDebtMode=Bericht zur vereinnahmten und bezahlten MwSt. nach Kunden
+VATReportByQuartersInInputOutputMode=Quartalsbericht zur vereinnahmten und bezahlten MwSt.
+VATReportByQuartersInDueDebtMode=Quartalsbericht zur vereinnahmten und bezahlten MwSt.
 SeeVATReportInInputOutputMode=Siehe <b>%sMwSt.-Einnahmen%s</b>-Bericht für eine standardmässige Berechnung
+SeeVATReportInDueDebtMode=Siehe <b>%sdynamischen MwSt.%s</b>-Bericht für eine Berechnung mit dynamischer Option
 ThirdPartyMustBeEditAsCustomer=Geschäftspartner muss als Kunde definiert werden
+CalculationRuleDesc=Zur Berechnung der Gesamt-MwSt. gibt es zwei Methoden: <br>Methode 1 rundet die Steuer in jeder Zeile und addiert zum Schluss. <br>Methode 2 summiert alle Steuer-Zeilen und rundet am Ende. <br>Das endgültige Ergebnis kann sich in wenigen Cent unterscheiden. Standardmodus ist <b>Modus %s.</b>
 CalculationRuleDescSupplier=Gemäss Ihrem Lieferanten, wählen Sie die  geeignete Methode, um die gleiche Berechnungsregel anzuwenden um das selbe Ergebnis wie Ihr Lieferant zu bekommen.
+ACCOUNTING_ACCOUNT_CUSTOMER=Standard Buchhaltungs-Konto für Kunden/Debitoren
+ACCOUNTING_ACCOUNT_SUPPLIER=Standard Buchhaltungs-Konto für Lieferanten/Kreditoren
diff --git a/htdocs/langs/de_CH/cron.lang b/htdocs/langs/de_CH/cron.lang
new file mode 100644
index 0000000000000000000000000000000000000000..c38299bd9c6f8cf7fb5f0db93869fb594e388671
--- /dev/null
+++ b/htdocs/langs/de_CH/cron.lang
@@ -0,0 +1,4 @@
+# Dolibarr language file - Source file is en_US - cron
+CronInfo=Das Schedule Cron-Jobs Module  erlaubt die geplanten Cron-Jobs die programmiert wurden durchzuführen.
+CronStatusInactive=Deaktivert
+JobFinished=Job gestarted und beendet
diff --git a/htdocs/langs/de_CH/exports.lang b/htdocs/langs/de_CH/exports.lang
index c5f231e080039fee1d6730da6abc24ba7fcc486b..704d8e87ac80efd9ed15efa240ddcaa6638a9a7d 100644
--- a/htdocs/langs/de_CH/exports.lang
+++ b/htdocs/langs/de_CH/exports.lang
@@ -1,5 +1,3 @@
 # Dolibarr language file - Source file is en_US - exports
 ChooseFileToImport=Wählen Sie zu importierende Datei und klicken Sie anschliessend auf das %s Symbol...
-DataLoadedWithId=Alle Daten werden mit der Import-ID: <b>%s</b> geladen
 ExportNumericFilter='NNNNN' filtert genau einen Wert<br>'NNNNN+NNNNN' filtert einen Wertebereich<br>'&gt;NNNNN' filtert nach kleineren Werten<br>'&gt;NNNNN' filtert nach grösseren Werten
-FilterableFields=filtrierbare Felder
diff --git a/htdocs/langs/de_CH/holiday.lang b/htdocs/langs/de_CH/holiday.lang
index ad32b0fb61fb596e71dc3e71a7c31cfe09bfcc62..c667a809a1d810d89039150aca1409f23209ada4 100644
--- a/htdocs/langs/de_CH/holiday.lang
+++ b/htdocs/langs/de_CH/holiday.lang
@@ -1,4 +1,13 @@
 # Dolibarr language file - Source file is en_US - holiday
+CancelCP=widerrufen
+ErrorSQLCreateCP=Ein SQL Fehler trat auf bei der Eerstellung von:
 DeleteCP=Löschen
+ActionCancelCP=Abbrechen
+DateCancelCP=Datum der Absage
+HolidaysCancelation=Urlaubsanfragen Stornos
 ValidEventCP=Bestätigen
 DeleteEventOptionCP=Löschen
+ErrorMailNotSend=Ein Fehler ist beim EMail-Senden aufgetreten:
+HolidaysToValidateAlertSolde=Der Einreicher dieses Urlaubsantrags besitzt nicht mehr genügend verfügbare Tage.
+HolidaysCanceled=Urlaubsantrag storniert
+HolidaysCanceledBody=Ihr Antrag auf Urlaub von %s bis %s wurde storniert.
diff --git a/htdocs/langs/de_CH/interventions.lang b/htdocs/langs/de_CH/interventions.lang
new file mode 100644
index 0000000000000000000000000000000000000000..f54c167b84e3dfb1e220b3e2dc834fd5ff7ce982
--- /dev/null
+++ b/htdocs/langs/de_CH/interventions.lang
@@ -0,0 +1,44 @@
+# Dolibarr language file - Source file is en_US - interventions
+Intervention=Arbeitseinsatz
+Interventions=Arbeitseinsätze
+InterventionCard=Kundeneinsatz
+NewIntervention=Neuer Einsatz
+AddIntervention=Einsatz erstellen
+ListOfInterventions=Liste der Einsätze
+EditIntervention=Eingriff bearbeiten
+ActionsOnFicheInter=Aktionen zum Eingriff
+LastInterventions=Letzte %s Einsätze
+AllInterventions=Alle Einsätze
+DeleteIntervention=Einsatz löschen
+ValidateIntervention=Einsatz freigeben
+ModifyIntervention=Geänderte Eingriff
+DeleteInterventionLine=Eingriffszeile löschen
+ConfirmDeleteIntervention=Möchten Sie diese Arbeitsleistung wirklich löschen?
+ConfirmValidateIntervention=Möchten Sie diese Arbeitsleistung  mit der Referenz <b>%s</b> wirklich freigeben?
+ConfirmModifyIntervention=Möchten sie diese Arbeitsleistung wirklich verändern?
+ConfirmDeleteInterventionLine=Möchten Sie diese Arbeitsleistung wirklich löschen?
+DocumentModelStandard=Standard-Dokumentvorlage für Arbeitseinsätze
+InterventionCardsAndInterventionLines=Einsatzkarte und Einsatzzeilen
+RelatedInterventions=Verbundene Eingriffe
+ShowIntervention=Zeige Kundeneinsatz
+SendInterventionRef=Einreichung von Eingriffen %s
+SendInterventionByMail=Eingriff per E-Mail versenden
+InterventionCreatedInDolibarr=Eingriff %s erstellt
+InterventionValidatedInDolibarr=Eingriff %s freigegeben
+InterventionModifiedInDolibarr=Eingriff %s geändert
+InterventionClassifiedBilledInDolibarr=Eingriff %s als verrechnet eingestuft
+InterventionClassifiedUnbilledInDolibarr=Eingriff %s als nicht verrechnet eingestuft
+InterventionDeletedInDolibarr=Eingriff %s gelöscht
+SearchAnIntervention=Arbeitseinsatz suchen
+InterventionsArea=Arbeitseinsätze Übersicht
+DraftFichinter=Kundeneinsätze Entwürfe
+TypeContact_fichinter_internal_INTERREPFOLL=Einsatz-Nachbetreuung durch Vertreter
+PacificNumRefModelError=Eine Interventionskarte beginnend mit $syymm existiert bereits und ist nicht mir dieser Numerierungssequenz kompatibel. Bitte löschen oder umbenennen.
+PrintProductsOnFichinter=Drucke Produkte auf Eingriffskarte
+PrintProductsOnFichinterDetails=Interventionen von Bestellungen generiert
+InterId=Einsatz ID
+InterRef=Einsatz Ref.
+InterDateCreation=Erstellungsdatum Einsatz
+InterDuration=Dauer Arbeitseinsatz
+InterStatus=Einsatz Status
+InterNote=Einsatzbeschreibung
diff --git a/htdocs/langs/de_CH/mails.lang b/htdocs/langs/de_CH/mails.lang
index 2b2e13edd421d340fb9f111df93e96473d2edb46..f224a982cd72923d330c730951343f5ed8fa2f95 100644
--- a/htdocs/langs/de_CH/mails.lang
+++ b/htdocs/langs/de_CH/mails.lang
@@ -1,8 +1,15 @@
 # Dolibarr language file - Source file is en_US - mails
+ActivateCheckReadKey=Schlüssel um die URL für "Lesebestätigung" und "Abmelden/Unsubscribe" zu verschlüsseln
+NoRemindSent=Keine eMail-Erinnerung versandt
 MailingModuleDescContactCompanies=Kontakte aller Geschäftspartner (Kunden, Leads, Lieferanten, ...)
 MailingModuleDescContactsCategories=Geschäftspartner-Kontakte (nach Kategorie)
 MailingModuleDescDolibarrContractsLinesExpired=Geschäftspartner mit abgelaufenen Vertragspositionen
 MailingModuleDescContactsByCompanyCategory=Kontakt über Geschäftspartner (durch Kategorie)
 MailingModuleDescContactsByFunction=Kontakt über Geschäftspartner (durch Position/Funktion)
+RecipientSelectionModules=Definiert Empfängerauswahlen
 NbOfCompaniesContacts=Einzigartige Geschäftspartner-Kontakte
+TagMailtoEmail=E-Mailadresses des Empfängers
 NoNotificationsWillBeSent=Für dieses Ereignis und diesen Geschäftspartner sind keine Benachrichtigungen geplant
+AddNewNotification=Neues E-Mail-Beachrichtigungsziel aktivieren
+ListOfActiveNotifications=Liste aller aktiven E-Mail-Beachrichtigungsziele
+MailSendSetupIs2=Sie müssen zuerst mit einem Admin-Konto im Menü %sStart - Einstellungen - EMails%s den Parameter <strong>'%s'</strong> auf den Modus '%s' ändern. Dann können Sie die Daten des SMTP-Servers von Ihrem Internetdienstanbieter eingeben und die E-Mail-Kampagnen-Funktion nutzen.
diff --git a/htdocs/langs/de_CH/main.lang b/htdocs/langs/de_CH/main.lang
index 9d91d07e80a562d22a12335c015d027ac4290d65..67466a1e135a8cb51d33e193f37f6f3771c7e209 100644
--- a/htdocs/langs/de_CH/main.lang
+++ b/htdocs/langs/de_CH/main.lang
@@ -23,14 +23,29 @@ ErrorFileNotUploaded=Die Datei konnte nicht hochgeladen werden. Stellen Sie sich
 ErrorNoSocialContributionForSellerCountry=Fehler, keine Definition für Sozialabgaben/Steuerwerte definiert für Land '%s'.
 Close=Schliessen
 Close2=Schliessen
+Cancel=Abbrechen
 ValidateAndApprove=Freigeben und bestätigen
 NoUserGroupDefined=Keine Benutzergruppe definiert
+DateStart=Beginndatum
+DateModificationShort=Änd.Datum
 DateClosing=Schliessungsdatum
+DateOperationShort=Ausf.Datum
+DatePlanShort=gepl. Datum
+DateRealShort=eff. Datum
 MinuteShort=min
 SupplierProposalUHT=Preisempfehlung Lieferant VP (netto)
+AmountHT=Betrag (exkl. MwSt.)
+AmountVAT=MwSt.-Betrag
+AmountLT1=MwSt.-Betrag 2
+AmountLT2=MwSt.-Betrag 3
 TotalTTCShort=Totalbetrag (inkl. MwSt.)
 TotalHT=Totalbetrag
 TotalHTforthispage=Totalbetrag für diese Seite
+TotalVAT=MwSt.
+TotalLT1=Gesamte MwSt. 2
+TotalLT2=Gesamte MwSt. 3
+IncludedVAT=inkl. MwSt.
+VAT=MwSt.
 ContactsForCompany=Ansprechpartner/Adressen dieses Geschäftspartners
 ContactsAddressesForCompany=Ansprechpartner / Adressen zu diesem Geschäftspartner
 AddressesForCompany=Adressen für den Geschäftspartner
@@ -41,11 +56,16 @@ ByCompanies=Von Geschäftspartnern
 NbOfThirdParties=Anzahl der Geschäftspartner
 CloseWindow=Fenster schliessen
 NoMobilePhone=Kein Mobiltelefon
+YouCanChangeValuesForThisListFromDictionarySetup=Sie können die Listenoptionen in den Wörterbuch-Einstellungen anpassen
 FreeLineOfType=Freitext vom Typ
+CoreErrorMessage=Entschulding, ein Fehler ist aufgetreten. Prüfen die die Logdateien oder benachrichtigen Sie den Administrator.
+FieldsWithIsForPublic=Felder mit <b>%s</b> sind für Mitglieder öffentlich sichtbar. Über die "Öffentlich"-Checkbox können Sie dies ändern.
+OptionalFieldsSetup=Zusätzliche Attributeinstellungen
 ConfirmDeleteAFile=Sind Sie sicher, dass Sie diese Datei löschen möchten?
 Sincerely=Mit freundlichen Grüssen
 ShortTuesday=D
 ShortWednesday=M
 ShortThursday=D
 Select2Enter=Eingabe
+SearchIntoInterventions=Arbeitseinsätze
 SearchIntoExpenseReports=Spesenrapporte
diff --git a/htdocs/langs/de_CH/opensurvey.lang b/htdocs/langs/de_CH/opensurvey.lang
deleted file mode 100644
index 11b1970fbfd5b17990b434edea644ee4e6e81a87..0000000000000000000000000000000000000000
--- a/htdocs/langs/de_CH/opensurvey.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - opensurvey
-PollAdminDesc=Sie sind berechtigt, sämtliche Abstimmungszeilen mit dem Button "Edit" zu verändern. Sie können zusätzlich auch eine Spalte oder Zeile mit %s entfernen. Sie können auch eine neue Spalte hinzufügen mit %s.
diff --git a/htdocs/langs/de_CH/orders.lang b/htdocs/langs/de_CH/orders.lang
index f408a53cddc032712412b371c0ba6934a3b2856c..1697864e8fad8f6519acfe2e2a419fb361b4b9d1 100644
--- a/htdocs/langs/de_CH/orders.lang
+++ b/htdocs/langs/de_CH/orders.lang
@@ -1,8 +1,11 @@
 # Dolibarr language file - Source file is en_US - orders
 OrdersArea=Kundenauftrags-Übersicht
+OrderCard=Bestell-Karte
+CancelOrder=Bestellung verwerfen
+LastModifiedOrders=Die letzen %s bearbeiteten Bestellungen
 CloseOrder=Bestellung schliessen
 ConfirmCloseOrder=Möchten Sie diese Bestellung wirklich schliessen? Nach ihrer Schliessung kann eine Bestellung nur mehr in Rechnung gestellt werden.
 ConfirmCloseOrderIfSending=Möchten Sie diese Bestellung wirklich schliessen? Tun Sie dies erst nachdem alle Versandvorgäng abgeschlossen wurden.
+ComptaCard=Buchhaltungskarte
 UseCustomerContactAsOrderRecipientIfExist=Adresse des Kundenkontakts statt des Geschäftspartners für die Zustellung verwenden
 Error_OrderNotChecked=Keine zu verrechnenden Bestellungen ausgewählt
-PDFEdisonDescription=Eine einfache Bestellvorlage
diff --git a/htdocs/langs/de_CH/other.lang b/htdocs/langs/de_CH/other.lang
index ba9d5e62b847488f355bca150828e61d08fcbfdc..61310468405ca2b6ae960f79a079a127579284f0 100644
--- a/htdocs/langs/de_CH/other.lang
+++ b/htdocs/langs/de_CH/other.lang
@@ -1,7 +1,11 @@
 # Dolibarr language file - Source file is en_US - other
+Notify_FICHINTER_VALIDATE=Eingriff freigegeben
+Notify_FICHINTER_SENTBYMAIL=Service per E-Mail versendet
 Notify_COMPANY_SENTBYMAIL=Von Geschäftspartner-Karte gesendete Mails
+Notify_FICHEINTER_VALIDATE=Eingriff freigegeben
 TotalSizeOfAttachedFiles=Gesamtgrösse der angehängten Dateien/Dokumente
 MaxSize=Maximalgrösse
+PredefinedMailTestHtml=Dies ist ein (HTML)-<b>Test</b> Mail (das Wort Test muss in Fettschrift erscheinen). <br> Die beiden Zeilen sollteb durch eine Zeilenschaltung getrennt sein.
 PredefinedMailContentSendProposal=__CONTACTCIVNAME__ \n\n Bitte entnehmen Sie dem Anhang unser Angebot __PROPREF__ \n\n__PERSONALIZED__Mit freundlichen Grüssen\n\n__SIGNATURE__
 PredefinedMailContentSendOrder=__CONTACTCIVNAME__ \n\n Bitte entnehmen Sie dem Anhang die Bestellung __ORDERREF__ \n\n__PERSONALIZED__Mit freundlichen Grüssen\n\n__SIGNATURE__
 PredefinedMailContentSendSupplierOrder=__CONTACTCIVNAME__ \n\n Bitte entnehmen Sie dem Anhang die Bestellung __ORDERREF__ \n\n__PERSONALIZED__Mit freundlichen Grüssen\n\n__SIGNATURE__
@@ -9,5 +13,7 @@ PredefinedMailContentSendShipping=__CONTACTCIVNAME__ \n\n Als Anlage erhalten Si
 PredefinedMailContentSendFichInter=__CONTACTCIVNAME__ \n\n Anbei finden Sie die Intervention __ FICHINTERREF__ \n\n__PERSONALIZED__Mit freundlichen Grüssen\n\n__SIGNATURE__
 SizeUnitfoot=Fuss
 ProfIdShortDesc=<b>Prof ID %s</b> dient zur Speicherung landesabhängiger Geschäftspartnerdaten. <br> Für das Land <b>%s</b> ist dies beispielsweise Code <b>%s</b>.
+EMailTextInterventionValidated=Service %s wurde freigegeben
 NewSizeAfterCropping=Neue Grösse nach dem Zuschneiden
+DefineNewAreaToPick=Definieren Sie einen neuen Bereich innerhalb des Bildes (Klicken Sie mit der linken Maustaste auf das Bild und halten Sie bis zur gegenüberligenden Ecke)
 FileIsTooBig=Dateien sind zu gross
diff --git a/htdocs/langs/de_CH/paybox.lang b/htdocs/langs/de_CH/paybox.lang
new file mode 100644
index 0000000000000000000000000000000000000000..d06c8b83e997da12bbdd3ff050d20bb16bd672af
--- /dev/null
+++ b/htdocs/langs/de_CH/paybox.lang
@@ -0,0 +1,4 @@
+# Dolibarr language file - Source file is en_US - paybox
+YourPaymentHasNotBeenRecorded=Die Zahlung wurde abgebrochen und nicht ausgeführt. Vielen Dank.
+MessageKO=Nachrichtenseite für abgebrochene Zahlung
+PAYBOX_PAYONLINE_SENDEMAIL=Status-Email nach einer Zahlung (erfolgreich oder nicht)
diff --git a/htdocs/langs/de_CH/paypal.lang b/htdocs/langs/de_CH/paypal.lang
new file mode 100644
index 0000000000000000000000000000000000000000..cf3e9b568fa983d22a418f211864889083221067
--- /dev/null
+++ b/htdocs/langs/de_CH/paypal.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - paypal
+PAYPAL_PAYONLINE_SENDEMAIL=Status-Email nach einer Zahlung (erfolgreich oder nicht)
diff --git a/htdocs/langs/de_CH/productbatch.lang b/htdocs/langs/de_CH/productbatch.lang
new file mode 100644
index 0000000000000000000000000000000000000000..8e7a51377bdc9dc13438367df681cd70d7d718c5
--- /dev/null
+++ b/htdocs/langs/de_CH/productbatch.lang
@@ -0,0 +1,6 @@
+# Dolibarr language file - Source file is en_US - productbatch
+Batch=Chg / Serie
+DetailBatchNumber=Chg / Serie Details
+printBatch=Chg / Serie: %s
+AddDispatchBatchLine=Fügen Sie eine Zeile für Haltbarkeit Dispatching
+WhenProductBatchModuleOnOptionAreForced=Wenn das Modul Lot/Seriennr eingeschaltet ist, wird der Modus für Lagerbestands-Erhöhungen / -Senkungen auf die letzte Auswahl festgelegt und kann nicht geändert werden. Andere Optionen können nach Wunsch eingestellt werden.
diff --git a/htdocs/langs/de_CH/products.lang b/htdocs/langs/de_CH/products.lang
index cbbcb51e53742ce99d9cd8b051af82e153fdb8a5..694fe4446c4e1c2c24b90e4fe7bf8a46258b999b 100644
--- a/htdocs/langs/de_CH/products.lang
+++ b/htdocs/langs/de_CH/products.lang
@@ -1,5 +1,15 @@
 # Dolibarr language file - Source file is en_US - products
+ProductVatMassChange=MwSt-Massenänderung
+CardProduct0=Produkt-Karte
+SellingPriceTTC=Verkaufspreis (inkl. MwSt.)
+MinPriceHT=Mindest-Verkaufspreis (exkl. MwSt.)
+MinPriceTTC=Mindest-Verkaufspreis (inkl. MwSt.)
+CantBeLessThanMinPrice=Der Verkaufspreis darf den Mindestpreis für dieses Produkt (%s ohne MwSt.) nicht unterschreiten. Diese Meldung kann auch angezeigt werden, wenn Sie einen zu hohen Rabatt geben.
+SupplierCard=Lieferantenkarte
 SetDefaultBarcodeType=Wählen Sie den standardmässigen Barcode-Typ
+VATRateForSupplierProduct=MwSt. Satz (für diesen Lieferanten/Produkt)
+squaremeter=Quatratmeter
 FillBarCodeTypeAndValueFromThirdParty=Barcode-Typ und -Wert von einem Geschäftspartner wählen.
 DefinitionOfBarCodeForThirdpartyNotComplete=Barcode-Typ oder -Wert bei Geschäftspartner %s unvollständig.
 BarCodeDataForThirdparty=Barcode-Information von Geschäftspartner %s:
+PriceExpressionEditorHelp2=Sie können auf die ExtraFields mit Variablen wie <b>#extrafield_myextrafieldkey# </b> und globale Variablen mit <b>#global_mycode#</b> zugreifen
diff --git a/htdocs/langs/de_CH/projects.lang b/htdocs/langs/de_CH/projects.lang
index 12248bf31c149036914f56008c8138ae5983c745..5587b1139d4e7fc101d0caa03c50fcda3be5ea83 100644
--- a/htdocs/langs/de_CH/projects.lang
+++ b/htdocs/langs/de_CH/projects.lang
@@ -1,7 +1,13 @@
 # Dolibarr language file - Source file is en_US - projects
 MyTasksDesc=Diese Ansicht ist für Sie beschränkt auf Projekte oder Aufgaben, bei welchen Sie als Ansprechpartner eingetragen sind.
+OnlyOpenedProject=Nur offene Projekte sind sichtbar. (Projekte im Entwurf- oder Geschlossenstatus sind nicht sichtbar)
+AllTaskVisibleButEditIfYouAreAssigned=Alle Aufgaben dieser Projekte sind sichtbar, aber sie können nur auf ihnen zugewiesenen Aufgaben Zeit erfassen. Weisen sie sich dei Aufgabe zu, wenn sie Zeit erfassen möchten.
+ListFichinterAssociatedProject=Liste Eingriffe, die mit diesem Projekt verknüpft sind
 CloseAProject=Projekt schliessen
 ConfirmCloseAProject=Möchten Sie dieses Projekt wirklich schliessen?
 ProjectsDedicatedToThisThirdParty=Mit diesem Geschäftspartner verknüpfte Projekte
 LinkedToAnotherCompany=Mit Geschäftspartner verknüpft
+ThisWillAlsoRemoveTasks=Diese Aktion löscht ebenfalls alle Aufgaben zum Projekt (<b>%s</b> akutelle Aufgaben) und alle Zeitaufwände.
+CloneTaskFiles=Aufgabe (n) clonen beigetreten Dateien (falls Aufgabe (n) geklont)
 OpenedProjectsByThirdparties=Offene Projekte nach Geschäftspartner
+OpportunityPonderatedAmount=Verkaufschancen geschätzer Betrag
diff --git a/htdocs/langs/de_CH/propal.lang b/htdocs/langs/de_CH/propal.lang
index 80a9b4ac4043e0f02ffd9533d1f0393cd74a7372..6dc85f323874ffd56f366df03bf26f02c133fb1a 100644
--- a/htdocs/langs/de_CH/propal.lang
+++ b/htdocs/langs/de_CH/propal.lang
@@ -1,6 +1,7 @@
 # Dolibarr language file - Source file is en_US - propal
+ProposalCard=Angebotskarte
+LastModifiedProposals=Die letzen %s bearbeiteten Angebote
 PropalsToClose=Zu schliessende Angebote
-CloseAs=Schliessen mit Status
 DefaultProposalDurationValidity=Standardmässige Gültigkeitsdatuer (Tage)
 UseCustomerContactAsPropalRecipientIfExist=Falls vorhanden die Adresse des Kundenkontakts statt des Geschäftspartners verwenden
 TypeContact_propal_external_CUSTOMER=Kundenkontakt für Angebot
diff --git a/htdocs/langs/de_CH/salaries.lang b/htdocs/langs/de_CH/salaries.lang
new file mode 100644
index 0000000000000000000000000000000000000000..c0cd5b0f4ceb7507e904cb6781d7937c3acc099e
--- /dev/null
+++ b/htdocs/langs/de_CH/salaries.lang
@@ -0,0 +1,3 @@
+# Dolibarr language file - Source file is en_US - salaries
+SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Standard Buchhaltungs-Konto für die Zahlung der Löhne/Gehälter
+SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Standard Buchhaltungs-Konto für Finanzaufwendungen
diff --git a/htdocs/langs/de_CH/sendings.lang b/htdocs/langs/de_CH/sendings.lang
new file mode 100644
index 0000000000000000000000000000000000000000..1f11b854ee3ee1ab869d96655a07d1855e79367c
--- /dev/null
+++ b/htdocs/langs/de_CH/sendings.lang
@@ -0,0 +1,11 @@
+# Dolibarr language file - Source file is en_US - sendings
+RefSending=Versand Nr.
+SendingCard=Auslieferungen
+StatusSendingCanceledShort=Storno
+ConfirmCancelSending=Möchten Sie diese Lieferung wirklich wirklich stornieren?
+StatsOnShipmentsOnlyValidated=Versandstatistik (nur Freigegebene). Das Datum ist das der Freigabe (geplantes Lieferdatum ist nicht immer bekannt).
+DocumentModelSirocco=Einfache Dokumentvorlage für die Lieferungscheine
+DocumentModelTyphon=Vollständig Dokumentvorlage für die Lieferungscheine (Logo, ...)
+SumOfProductVolumes=Summe der Produktevolumen
+SumOfProductWeights=Summe der Produktegewichte
+DetailWarehouseNumber=Warenlager-Details
diff --git a/htdocs/langs/de_CH/sms.lang b/htdocs/langs/de_CH/sms.lang
new file mode 100644
index 0000000000000000000000000000000000000000..4306cb4bc7742c9d815a128a12cc2abce8edcbce
--- /dev/null
+++ b/htdocs/langs/de_CH/sms.lang
@@ -0,0 +1,3 @@
+# Dolibarr language file - Source file is en_US - sms
+SmsSuccessfulySent=SMS korekkte gesendet (von %s an %s)
+ConfirmResetMailing=Achtung, wenn Sie die SMS-Kampanie <b>%s</b> wieder aktivieren, müssen Sie bestätigen dass der Versand zum zweiten möglich ist. Möchten Sie das wirklich bestätigen?
diff --git a/htdocs/langs/de_CH/supplier_proposal.lang b/htdocs/langs/de_CH/supplier_proposal.lang
index 7c6270b4a0ce1db38333fc35d2e8d51cbb61017e..3368822411d1e4e905e262568a520ad671a429cf 100644
--- a/htdocs/langs/de_CH/supplier_proposal.lang
+++ b/htdocs/langs/de_CH/supplier_proposal.lang
@@ -9,17 +9,13 @@ RequestsOpened=Offene Preisanfragen
 NewAskPrice=Neue Preisanfrage
 NewAsk=Neue Anfrage
 ConfirmValidateAsk=Sind Sie sicher, dass Sie diese Preisanfrage unter dem Namen <b>%s</b> bestätigen wollen?
-DateAsk=Datum der Anfrage
-DeleteAsk=Anfrage löschen
 ValidateAsk=Anfrage bestätigen
 AddAsk=Neue Anfrage erstellen
 CopyAskFrom=Neue Preisanfrage erstellen (Kopie einer bestehenden Anfrage)
 CreateEmptyAsk=Leere Anfrage erstellen
-CloneAsk=Preisanfrage duplizieren
 ConfirmCloneAsk=Sind Sie sicher, dass Sie die Preisanfrage <b>%s</b> duplizieren wollen?
 ConfirmReOpenAsk=Sind Sie sicher, dass Sie die Preisanfrage <b>%s</b> wiedereröffnen wollen?
 SendAskByMail=Preisanfrage mit E-Mail versenden
 SendAskRef=Preisanfrage %s versenden
 ConfirmDeleteAsk=Sind Sie sicher, dass Sie diese Preisanfrage löschen wollen?
 DocModelAuroreDescription=Eine vollständige Preisanfrage-Vorlage (Logo...)
-CommercialAsk=Preisanfrage
diff --git a/htdocs/langs/de_CH/suppliers.lang b/htdocs/langs/de_CH/suppliers.lang
new file mode 100644
index 0000000000000000000000000000000000000000..de387373a58a5c2d63db07ade3cd3d1e6b509344
--- /dev/null
+++ b/htdocs/langs/de_CH/suppliers.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - suppliers
+ConfirmCancelThisOrder=Möchten Sie diese Bestellung wirklich verwerfen <b>%s</b> ?
diff --git a/htdocs/langs/de_CH/trips.lang b/htdocs/langs/de_CH/trips.lang
index 2a59e7df5229db756e366eada7c13e3ff5477d23..f504df507e4177f8b54f05a7fbefa72fb3ce75d0 100644
--- a/htdocs/langs/de_CH/trips.lang
+++ b/htdocs/langs/de_CH/trips.lang
@@ -1,6 +1,20 @@
 # Dolibarr language file - Source file is en_US - trips
+ExpenseReports=Spesenabrechnungen Hinweis
+TripCard=Reisekosten Karte
+ListOfTrips=Liste Reise- und Spesenabrechnungen
+ShowTrip=Spesenreport anzeigen
+NewTrip=neue Reisekostenabrechnung
 CompanyVisited=Besuchte Firma/Stiftung
+ListTripsAndExpenses=Liste Reise- und Spesenabrechnungen
+ExpenseReportWaitingForApproval=Eine neue Reisekostenabrechnung ist zur Genehmigung vorgelegt worden
+ExpenseReportWaitingForApprovalMessage=Eine neue Kostenabrechnung wurde vorgelegt und steht zur Überprüfung an.\n- Benutzer: %s \n- Zeitraum: %s  \nKlicken Sie hier, um zu überprüfen: %s
 AnyOtherInThisListCanValidate=Zu informierende Person für die Bestätigung
 TripSociete=Information Firma
+ErrorDoubleDeclaration=Sie haben bereits eine andere Spesenabrechnung in einem ähnliche Datumsbereich erstellt.
+Date_DEBUT=Beginndatum
 NOT_VALIDATOR=Sie sind nicht berechtigt, diese Spesennabrechnung zu genehmigen.
 RefuseTrip=Verweigern einer Spesenabrechnung
+CancelTrip=Abrechen einer Spesenabrechnung
+BrouillonnerTrip=Spesenabrechnung rückgängig, auf den Status "Entwurf"
+ConfirmSaveTrip=Sind Sie sicher, dass Sie diese Spesenabrechnung überprüfen wollen?
+ExpenseReportsToPay=Spesenabrechnungen zu entrichten
diff --git a/htdocs/langs/de_CH/users.lang b/htdocs/langs/de_CH/users.lang
index 2c7c3ab6726538397b9197881be9c59f03fa6983..a1af510f187698b650e2b4f98480ea8105305234 100644
--- a/htdocs/langs/de_CH/users.lang
+++ b/htdocs/langs/de_CH/users.lang
@@ -1,8 +1,12 @@
 # Dolibarr language file - Source file is en_US - users
+UserCard=Benutzer-Karte
+ContactCard=Kontakt-Karte
+GroupCard=Gruppe-Karte
 LinkToCompanyContact=Mit Geschäftspartner/Kontakt verknüpfen
 LinkedToDolibarrThirdParty=Mit Geschäftspartner verknüpft
 CreateDolibarrThirdParty=Neuen Geschäftspartner erstellen
 CreateInternalUserDesc=Dieses Formular erlaubt Ihnen das Anlegen eines unternehmensinternen Benutzers. Zum Anlegen eines externen Benutzers (Kunden, Lieferanten, ...), verwenden Sie bitte die 'Benutzer erstellen'-Schaltfläche in der Kontaktkarte des jeweiligen Geschäftspartner-Kontakts.
+PermissionInheritedFromAGroup=Berechtigung durch eine Gruppenzugehörigkeit gererbt.
 UserWillBeInternalUser=Erstellter Benutzer ist intern (mit keinem bestimmten Geschäftspartner verknüpft)
 UserWillBeExternalUser=Erstellter Benutzer ist extern (mit einem bestimmten Geschäftspartner verknüpft)
 ConfirmCreateThirdParty=Möchten Sie zu diesem Mitglied wirklich einen Geschäftspartner erstellen?
diff --git a/htdocs/langs/de_DE/accountancy.lang b/htdocs/langs/de_DE/accountancy.lang
index 0340672345fc391b2d723bc36ac166847cca7e7a..13f77dcbe10a436708302c200eea5c1ad2126df8 100644
--- a/htdocs/langs/de_DE/accountancy.lang
+++ b/htdocs/langs/de_DE/accountancy.lang
@@ -1,62 +1,61 @@
 # Dolibarr language file - en_US - Accounting Expert
-ACCOUNTING_EXPORT_SEPARATORCSV=Spaltentrennzeichen für die Export-Datei
-ACCOUNTING_EXPORT_DATE=Das Datumsformat für die Exportdatei.
-ACCOUNTING_EXPORT_PIECE=Export the number of piece
-ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Export with global account
+ACCOUNTING_EXPORT_SEPARATORCSV=Spaltentrennzeichen der Exportdatei
+ACCOUNTING_EXPORT_DATE=Datumsformat der Exportdatei
+ACCOUNTING_EXPORT_PIECE=Stückzahl exportieren
+ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Mit globalem Konto exportieren
 ACCOUNTING_EXPORT_LABEL=Export the label
-ACCOUNTING_EXPORT_AMOUNT=Export the amount
-ACCOUNTING_EXPORT_DEVISE=Export the devise
+ACCOUNTING_EXPORT_AMOUNT=Betrag exportieren
+ACCOUNTING_EXPORT_DEVISE=Währungskurs exportieren
 Selectformat=Select the format for the file
-ACCOUNTING_EXPORT_PREFIX_SPEC=Specify the prefix for the file name
+ACCOUNTING_EXPORT_PREFIX_SPEC=Präfix für den Dateinamen angeben
 
 Accounting=Buchhaltung
 Globalparameters=Globale Parameter
-Menuaccount=Buchhaltung Konten
+Menuaccount=Buchhaltungskonten
 Menuthirdpartyaccount=Partnerkonten
 MenuTools=Hilfsprogramme
 
-ConfigAccountingExpert=Konfiguration des Experten Buchhaltungsmodul
+ConfigAccountingExpert=Konfiguration des Experten-Buchhaltungsmoduls
 Journaux=Journale
-JournalFinancial=Finanz-Journale
-Exports=Exports
+JournalFinancial=Finanzjournale
+Exports=Exporte
 Export=Exportieren
 Modelcsv=Exportmodell
-OptionsDeactivatedForThisExportModel=Für dieses Exportierungsmodell, sind die Einstellungen deaktiviert
+OptionsDeactivatedForThisExportModel=Für dieses Exportmodell sind die Einstellungen deaktiviert
 Selectmodelcsv=Wählen Sie ein Exportmodell
 Modelcsv_normal=Klassischer Export
 Modelcsv_CEGID=Export zu CEGID Expert
 BackToChartofaccounts=Zurück zum  Kontenplan
-Back=Rückkehr
 
 Definechartofaccounts=Kontenplan definieren
 Selectchartofaccounts=Kontenplan wählen
 Addanaccount=Fügen Sie ein Buchhaltungskonto hinzu
-AccountAccounting=Buchhaltungs Konto
-AccountAccountingSuggest=Accounting account suggest
-Ventilation=Abbauen
+AccountAccounting=Buchhaltungskonto
+AccountAccountingSuggest=Buchhaltungskontovorschlag
+Ventilation=Aufteilung
 
-CustomersVentilation=Kundenabbau
-SuppliersVentilation=Lieferantenabbau
+CustomersVentilation=Aufteilung Kunden
+SuppliersVentilation=Aufteilung Lieferanten
 TradeMargin=Handelsspanne
 Reports=Berichte
 ByCustomerInvoice=Nach Kundenrechnungen
 NewAccount=Neues Buchhaltungskonto
 Create=Erstelle
-CreateMvts=Erstelle Lagerbewegung
-UpdateAccount=Änderung eines Bilanz-Kontos
-UpdateMvts=Änderung einer Bewegung
+CreateMvts=Lagerbewegung erstellen
+UpdateAccount=Änderung eines Bilanzkontos
+UpdateMvts=Lagerbewegung ändern
 WriteBookKeeping=Konten ins Hauptbuch übernehmen
 Bookkeeping=Hauptbuch
 AccountBalanceByMonth=Kontostand pro Monat
 
-AccountingVentilation=Rechnungswesenabbau
+AccountingVentilation=Überblick Rechnungswesen
 AccountingVentilationSupplier=Abbau von Buchhaltungs-Lieferanten
 AccountingVentilationCustomer=Abbau von Buchhaltungs-Kunden
 
-CAHTF=Total purchase supplier before tax
+CAHTF=Einkaufssume pro Lieferant ohne Steuer
 InvoiceLines=Rechnungszeile bereinigen
 InvoiceLinesDone=Bereinigte Rechnungszeilen
-IntoAccount=Ventilate in the accounting account
+IntoAccount=Erörtern im Sachkonto
 
 Ventilate=erörtern
 VentilationAuto=Automatischer Abbau
@@ -109,12 +108,8 @@ DelBookKeeping=Löschen Sie die Einträge des Hauptbuchs
 
 DescSellsJournal=Verkaufsjournal
 DescPurchasesJournal=Einkaufsjournal
-BankJournal=Bankauszug
-DescBankJournal=Bankjournal enthält alle Arten von anderen Zahlungsmitteln als Barzahlungen
-CashJournal=Kassenbeleg
-DescCashJournal=Barjournal enthält die Zahlungsart: bar
 FinanceJournal=Finance journal
-DescFinanceJournal=Finance journal including all the types of payments by bank account
+DescFinanceJournal=Finanzjournal inklusive aller Arten von Zahlungen mit Bankkonto
 
 CashPayment=Barzahlung
 
@@ -139,35 +134,41 @@ Pcgsubtype=Unterkontenklasse
 Accountparent=Wurzeln des Kontos
 
 DescVentilCustomer=Konsultieren Sie hier die jährliche Aufteilung der Buchhaltung Ihrer Rechnungs-Kunden
-TotalVente=Total turnover before tax
+TotalVente=Verkaufssumme ohne Steuer
 TotalMarge=Gesamt-Spanne
-DescVentilDoneCustomer=Konsultieren Sie hier die Liste der Zeilen der Rechnungs-Kunden und deren Abbrechnungskonto
+DescVentilDoneCustomer=Konsultieren Sie hier die Liste der Zeilen der Rechnungs-Kunden und deren Abrechnungskonto
 DescVentilTodoCustomer=Bereinigen Sie die Zeilen der Kundenrechnung mit einem Rechnungskonto
 ChangeAccount=Ändern sie das Abrechnungskonto für markierte Zeilen durch das Konto:
 Vide=-
 DescVentilSupplier=Konsultieren Sie hier die jährliche Aufteilung der Buchhaltung, Ihrer Rechnungen der Lieferanten
 DescVentilTodoSupplier=Bereinigen Sie die Zeilen der Rechnung für Lieferanten, mit einem Abrechnungskonto
-DescVentilDoneSupplier=Konsultieren Sie hier die Liste der Zeilen der Rechnungs-Kunden und deren Abbrechnungskonto
+DescVentilDoneSupplier=Konsultieren Sie hier die Liste der Zeilen der Rechnungs-Kunden und deren Abrechnungskonto
 
 ValidateHistory=Automatisch geltend machen
 
-ErrorAccountancyCodeIsAlreadyUse=Fehler, Sie können dieses Buchaltungskonto nicht löschen, da es benutzt wird.
-
-FicheVentilation=Abbau-Karte
-GeneralLedgerIsWritten=Operations are written in the general ledger
+ErrorAccountancyCodeIsAlreadyUse=Fehler, Sie können dieses Buchhaltungskonto nicht löschen, da es benutzt wird.
+MvtNotCorrectlyBalanced=Der Saldo der Buchung ist nicht ausgeglichen. Haben = %s. Soll = %s
+FicheVentilation=Zusammensetzung - Karte
+GeneralLedgerIsWritten=Vorgänge werden in das Hauptbuch übertragen.
 
 ##Export Journal Feature
-ExportFormat=Format of Export
-Prefixname=Prefix of export File
-Separate=Export separator
-Textframe=Frame of text value
-Headercol=Colname in header of file
-Fieldname=Name of Field
-Headername=Name in header
-Type=Type of fields
-Param=Additionnal parameters
-EnabledProduct=In Product
-EnabledTiers=In Tiers
-EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+ExportFormat=Dateiformat
+Prefixname=Präfix der Exportdatei
+Separate=Trennzeichen
+Textframe=Rahmen mit Textinhalt
+Headercol=Spaltenbezeichnung im Kopf der Datei
+Fieldname=Feldname
+Headername=Name im Kopf
+Type=Feldtyp
+Param=zusätzliche Parameter
+EnabledProduct=in Produkt
+EnabledTiers=In third party
+EnabledVat=in Steuer
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/de_DE/admin.lang b/htdocs/langs/de_DE/admin.lang
index 4013c767ff0925ab2a5a1638998581a9717e23b6..54a855c2836446f70b242d655cf91f5fa59fc8ad 100644
--- a/htdocs/langs/de_DE/admin.lang
+++ b/htdocs/langs/de_DE/admin.lang
@@ -40,7 +40,7 @@ ExternalUsers=Externe Benutzer
 GlobalSetup=Allgemeine Einstellungen
 GUISetup=Anzeige
 SetupArea=Einstellungen - Übersicht
-FormToTestFileUploadForm=Formular für das Testen von Datei-Uplads (je nach Konfiguration)
+FormToTestFileUploadForm=Formular für das Testen von Datei-Uploads (je nach Konfiguration)
 IfModuleEnabled=Anmerkung: Ist nur wirksam wenn Modul <b>%s</b> aktiviert ist
 RemoveLock=Entfernen Sie die Datei <b>%s</b> falls vorhanden, um das Aktualisierungs-Tool auszuführen
 RestoreLock=Ersetzen Sie die Datei <b>%s</b> mit einer Datei ohne Schreibberechtigung um jegliche Nutzung des Aktualisierungs-Tools zu verhindern.
@@ -48,7 +48,7 @@ SecuritySetup=Sicherheitseinstellungen
 ErrorModuleRequirePHPVersion=Fehler: Dieses Modul benötigt PHP Version %s oder höher
 ErrorModuleRequireDolibarrVersion=Fehler: Dieses Moduls erfordert Dolibarr Version %s oder höher
 ErrorDecimalLargerThanAreForbidden=Fehler: Eine höhere Genauigkeit als <b>%s</b> wird nicht unterstützt.
-DictionarySetup=Wörterbuch Einstellungen
+DictionarySetup=Stammdaten
 Dictionary=Wörterbücher
 Chartofaccounts=Kontenplan
 Fiscalyear=Fiskalische Jahre
@@ -92,16 +92,16 @@ MaxSizeForUploadedFiles=Maximale Größe für Dateiuploads (0 verbietet jegliche
 UseCaptchaCode=Captcha-Code auf der Anmeldeseite verwenden
 UseAvToScanUploadedFiles=Virenschutz zur Überprüfung von Dateiuploads verwenden
 AntiVirusCommand= Vollständiger Pfad zum installierten Virenschutz
-AntiVirusCommandExample= Beispiel für ClamWin: c:\\Program Files (x86)\\ClamWin\\bin\\clamscan.exe <br>Beispiel für ClamAV: /usr/bin/clamscan
+AntiVirusCommandExample= Beispiel für ClamWin: c:\\Programme (x86)\\ClamWin\\bin\\clamscan.exe <br>Beispiel für ClamAV: /usr/bin/clamscan
 AntiVirusParam= Weitere Parameter auf der Kommandozeile
-AntiVirusParamExample= Beispiel für ClamWin: --database="C:\\Program Files (x86)\\ClamWin\\lib"
+AntiVirusParamExample= Beispiel für ClamWin: --database="C:\\Programme (x86)\\ClamWin\\lib"
 ComptaSetup=Buchhaltungsmoduls-Einstellungen
 UserSetup=Benutzerverwaltung Einstellungen
 MenuSetup=Menüverwaltung Einstellungen
 MenuLimits=Genauigkeit - Toleranz
 MenuIdParent=Eltern-Menü-ID
 DetailMenuIdParent=ID des übergeordneten Menüs (0 für einen Eltern-Menü)
-DetailPosition=Reihungsnummer für definition der Menüposition
+DetailPosition=Sortierungsnummer für die Position des Menüpunktes
 PersonalizedMenusNotSupported=Personalisierte Menüs werden nicht unterstützt
 AllMenus=Alle
 NotConfigured=Nicht konfiguriert
@@ -154,7 +154,7 @@ Purge=Säubern
 PurgeAreaDesc=Hier können Sie alle vom System erzeugten und gespeicherten Dateien löschen (temporäre Dateien oder alle Dateien im Verzeichnis <b>%s</b>). Diese Funktion ist nicht erforderlich und richtet sich vorwiegend an Benutzer ohne Zugriff auf das Dateisystem des Webservers (z.B. Hostingpakete)
 PurgeDeleteLogFile=Löschen der Protokolldatei <b>%s</b> des Systemprotokollmoduls (kein Risiko des Datenverlusts)
 PurgeDeleteTemporaryFiles=Alle temporären Dateien löschen (kein Datenverlustrisiko)
-PurgeDeleteAllFilesInDocumentsDir=Alle Datein im Verzeichnis <b>%s</b> löschen. Dies beinhaltet temporäre Dateien ebenso wie Datenbanksicherungen, Dokumente (Partner, Rechnungen, ...) und alle Inhalte des ECM-Moduls.
+PurgeDeleteAllFilesInDocumentsDir=Alle Dateien im Verzeichnis <b>%s</b> löschen. Dies beinhaltet temporäre Dateien ebenso wie Datenbanksicherungen, Dokumente (Partner, Rechnungen, ...) und alle Inhalte des ECM-Moduls.
 PurgeRunNow=Jetzt bereinigen
 PurgeNothingToDelete=Keine zu löschenden Verzeichnisse oder Dateien
 PurgeNDirectoriesDeleted=<b>%s</b> Dateien oder Verzeichnisse gelöscht.
@@ -210,7 +210,7 @@ ModulesJobDesc=Die Geschäftstypenmodule erlauben eine einfache Einrichtung des
 ModulesMarketPlaceDesc=Hier finden Sie weitere Module auf externen Web-Sites
 ModulesMarketPlaces=Sie können zusätzliche Module im Web finden...
 DoliStoreDesc=DoliStore, der offizielle Marktplatz für dolibarr Module/Erweiterungen
-DoliPartnersDesc=Liste mit einigen Unternehmen, die entwickeln/liefern On-Demand-Module  oder Funktionen (Hinweis: Jede Open-Source-Unternehmen beherscht die PHP-Sprache und kann bestimmte Entwicklungen liefern)
+DoliPartnersDesc=Liste mit einigen Unternehmen, die entwickeln/liefern On-Demand-Module  oder Funktionen (Hinweis: Jede Open-Source-Unternehmen beherrscht die PHP-Sprache und kann bestimmte Entwicklungen liefern)
 WebSiteDesc=Website-Anbieter für Ihre Suche nach weiteren Modulen
 URL=Link
 BoxesAvailable=Verfügbare Boxen
@@ -302,18 +302,18 @@ DownloadPackageFromWebSite=Installationspaket herunterladen (z.B. von offizielle
 UnpackPackageInDolibarrRoot=Entpacke die Paketdatei in das Dolibarr Serververzeichnis für externe Module: <b>%s</b>
 SetupIsReadyForUse=Die Installation ist abgeschlossen und das System zur Verwendung der neuen Komponente bereit.
 NotExistsDirect=Kein alternatives Stammverzeichnis definiert.<br>
-InfDirAlt=Seit Version 3 ist es möglich, ein alternatives Stammverzeichnis anzugeben. Dies ermöglicht, Erweiterungen und eigene Templates am gleichen Ort zu speichern.<br>Legen Sie einfach ein Verzeichis im Hauptverzeichnis von Dolibarr an (z.B. "eigenes").<br>
+InfDirAlt=Seit Version 3 ist es möglich, ein alternatives Stammverzeichnis anzugeben. Dies ermöglicht, Erweiterungen und eigene Templates am gleichen Ort zu speichern.<br>Erstellen Sie einfach ein Verzeichis im Hauptverzeichnis von Dolibarr an (z.B. "eigenes").<br>
 InfDirExample=<br>Danach in der Datei conf.php deklarieren<br> $dolibarr_main_url_root_alt='http://meinserver/custom'<br>$dolibarr_main_document_root_alt='/pfad/zu/dolibarr/htdocs/custom'<br>*Diese Zeilen sind mit "#" auskommentiert, um sie zu aktivieren, einfach das Zeichen entfernen.
 YouCanSubmitFile=Durch diesen Schritt, können Sie das Paket mit diesem Tool senden: Wähle Modul Datei
 CurrentVersion=Aktuelle dolibarr-Version
 CallUpdatePage=Zur Aktualisierung der Daten und Datenbankstrukturen gehen Sie zur Seite %s.
 LastStableVersion=Letzte stabile Version
 UpdateServerOffline=Update-Server offline
-GenericMaskCodes=Sie können ein beliebiges Numerierungsschema wählen. Dieses Schema könnte z.B. so aussehen:<br><b>{000000}</b> steht für eine 6-stellige Nummer, die sich bei jedem neuen %s automatisch erhöht. Wählen Sie die Anzahl der Nullen je nach gewünschter Nummernlänge. Der Zähler füllt sich automatisch bis zum linken Ende mit Nullen um das gewünschte Format abzubilden. <br><b>{000000+000}</b> führt zu einem ähnlichen Ergebnis, allerdings mit einem Wertsprung in Höhe des Werts rechts des Pluszeichens, der beim ersten %s angewandt wird. <br><b>{000000@x}</b> wie zuvor, jedoch stellt sich der Zähler bei Erreichen des Monats x (zwischen 1 und 12) automatisch auf 0 zurück. Ist diese Option gewählt und x hat den Wert 2 oder höher, ist die Folge {mm}{yy} or {mm}{yyyy} ebenfalls erfoderlich. <br><b>{dd}</b> Tag (01 bis 31).<br><b>{mm}</b> Monat (01 bis 12).<br><b>{yy}</b>, <b>{yyyy}</b> or <b>{y}</b> Jahreszahl 1-, 2- oder 4-stellig. <br>
-GenericMaskCodes2=<b>{cccc}</b>  den Kunden-Code mit n Zeichen<br><b>{cccc000}</b> den Kunden-Code mit n Zeichen, gefolgt von einer Client-Zähler zugeordnet zu dem Kunden. <br><b>{tttt}</b> Die Partner ID mit n Zeichen (siehe Wörterbuch Partner Typen).<br>
+GenericMaskCodes=Sie können ein beliebiges Numerierungsschema wählen. Dieses Schema könnte z.B. so aussehen:<br><b>{000000}</b> steht für eine 6-stellige Nummer, die sich bei jedem neuen %s automatisch erhöht. Wählen Sie die Anzahl der Nullen je nach gewünschter Nummernlänge. Der Zähler füllt sich automatisch bis zum linken Ende mit Nullen um das gewünschte Format abzubilden. <br><b>{000000+000}</b> führt zu einem ähnlichen Ergebnis, allerdings mit einem Wertsprung in Höhe des Werts rechts des Pluszeichens, der beim ersten %s angewandt wird. <br><b>{000000@x}</b> wie zuvor, jedoch stellt sich der Zähler bei Erreichen des Monats x (zwischen 1 und 12) automatisch auf 0 zurück. Ist diese Option gewählt und x hat den Wert 2 oder höher, ist die Folge {mm}{yy} or {mm}{yyyy} ebenfalls erforderlich. <br><b>{dd}</b> Tag (01 bis 31).<br><b>{mm}</b> Monat (01 bis 12).<br><b>{yy}</b>, <b>{yyyy}</b> or <b>{y}</b> Jahreszahl 1-, 2- oder 4-stellig. <br>
+GenericMaskCodes2=<b>{cccc}</b>  den Kunden-Code mit n Zeichen<br><b>{cccc000}</b> den Kunden-Code mit n Zeichen, gefolgt von einer Client-Zähler zugeordnet zu dem Kunden. <br><b>{tttt}</b> Die Partner ID mit n Zeichen (siehe unter Einstellungen-Wörterbuch Partnertyp).<br>
 GenericMaskCodes3=Alle anderen Zeichen in der Maske bleiben. <br> Leerzeichen sind nicht zulässig. <br>
-GenericMaskCodes4a=<u>Beispiel auf der 99. %s des Dritten thecompany Geschehen 2007-01-31:</u> <br>
-GenericMaskCodes4b=<u>Beispiel für Dritte erstellt am 2007-03-01:</u> <br>
+GenericMaskCodes4a=<u>Beispiel auf der 99. %s des Partners DieFirma erstellt am 2007-01-31:</u> <br>
+GenericMaskCodes4b=<u>Beispiel für Partner erstellt am 2007-03-01:</u> <br>
 GenericMaskCodes4c=<u>Beispiel für ein Produkt erstellt am 2007-03-01:</u> <br>
 GenericMaskCodes5=<b>ABC{yy}{mm}-{000000}</b> ergibt <b>ABC0701-000099</b><br><b>{0000+100@1}-ZZZ/{dd}/XXX</b> ergibt <b>0199-ZZZ/31/XXX</b>
 GenericNumRefModelDesc=Liefert eine anpassbare Nummer nach vordefiniertem Schema
@@ -329,7 +329,7 @@ UMaskExplanation=Über diesen Parameter können Sie die standardmäßigen Dateib
 SeeWikiForAllTeam=Werfen Sie einen Blick auf die Wiki-Seite für eine vollständige Liste aller Akteure und deren Organisationen
 UseACacheDelay= Verzögerung für den Export der Cache-Antwort in Sekunden (0 oder leer für kein Caching)
 DisableLinkToHelpCenter=Link mit "<b>Benötigen Sie Hilfe oder Unterstützung</b>" auf der Anmeldeseite ausblenden
-DisableLinkToHelp=Hide link to online help "<b>%s</b>"
+DisableLinkToHelp=Link zur Online-Hilfe "<b>%s</b>" ausblenden
 AddCRIfTooLong=Kein automatischer Zeilenumbruch. Entsprechend müssen Sie, falls die Länge Ihrer Zeilen die Dokumentenbreite übersteigt, manuelle Zeilenschaltungen im Textbereich einfügen.
 ModuleDisabled=Modul deaktiviert
 ModuleDisabledSoNoEvent=Modul deaktiviert und Eintrag deshalb nie erstellt
@@ -352,25 +352,25 @@ ThemeDir=Verzeichnis Layout-Vorlagen
 ConnectionTimeout=Verbindung Timeout
 ResponseTimeout=Antwort Timeout
 SmsTestMessage=Test Nachricht von __PHONEFROM__ zu __PHONETO__
-ModuleMustBeEnabledFirst=Module <b>%s</b> must be enabled first if you need this feature.
+ModuleMustBeEnabledFirst=Modul <b>%s</b> muss aktiviert sein wenn Sie dieses Feature benötigen.
 SecurityToken=Schlüssel um die URLs zu entschlüsseln
 NoSmsEngine=Kein SMS Sende Manager verfügbar. SMS Sende Manager sind nicht installiert (weil diese von externen Lieferanten abhängig sind) aber Sie können welche auf http://www.dolistore.com finden.
 PDF=PDF
 PDFDesc=Sie können jede globale Optionen im Zusammenhang mit der PDF-Erzeugung einstellen
 PDFAddressForging=Regeln zum Formen der Adresse-Boxen
-HideAnyVATInformationOnPDF=Unterdrücken aller MwSt.-Informationen auf dem generierten PDF
+HideAnyVATInformationOnPDF=Unterdrücken aller USt.-Informationen auf dem generierten PDF
 HideDescOnPDF=Unterdrücke Produktbeschreibungen in generierten PDF
 HideRefOnPDF=Unterdrücke Produkt-Referenzen in generierten PDF
 HideDetailsOnPDF=Unterdrücke Produktzeilen in generierten PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Bibliothek
 UrlGenerationParameters=Parameter zum Sichern von URLs
 SecurityTokenIsUnique=Verwenden Sie einen eindeutigen Sicherheitsschlüssel für jede URL
 EnterRefToBuildUrl=Geben Sie eine Referenz für das Objekt %s ein
 GetSecuredUrl=Holen der berechneten URL
 ButtonHideUnauthorized=Unterdrücke Schaltflächen bei unerlaubtem Zugriff statt sie zu deaktivieren
-OldVATRates=Alter MwSt. Satz
-NewVATRates=Neuer MwSt. Satz
+OldVATRates=Alter USt.-Satz
+NewVATRates=Neuer USt.-Satz
 PriceBaseTypeToChange=Ändern Sie den Basispreis definierte nach
 MassConvert=Starte Massenkonvertierung
 String=Zeichenkette
@@ -379,23 +379,23 @@ Int=Ganzzahl
 Float=Gleitkommazahl
 DateAndTime=Datum und Uhrzeit
 Unique=Einmalig
-Boolean=Boolean (Checkbox)
+Boolean=Boolean (Kontrollkästchen)
 ExtrafieldPhone = Telefon
 ExtrafieldPrice = Preis
 ExtrafieldMail = E-Mail
 ExtrafieldSelect = Wähle Liste
 ExtrafieldSelectList = Wähle von Tabelle
 ExtrafieldSeparator=Trennzeichen
-ExtrafieldCheckBox=Checkbox
+ExtrafieldCheckBox=Kontrollkästchen
 ExtrafieldRadio=Radio button
-ExtrafieldCheckBoxFromList= Checkbox von Tabelle
+ExtrafieldCheckBoxFromList= Kontrollkästchen von Tabelle
 ExtrafieldLink=Verknüpftes Objekt
 ExtrafieldParamHelpselect=Parameterlisten müssen das Format Schlüssel,Wert haben<br><br> zum Beispiel:<br>1,Wert1<br>2,Wert2<br>3,Wert3<br>...<br><br>Um die Liste in Abhängigkeit zu einer anderen zu haben:<br>1,Wert1|parent_list_code:parent_key<br>2,Wert2|parent_list_code:parent_key
 ExtrafieldParamHelpcheckbox=Parameterlisten müssen das Format Schlüssel,Wert haben<br><br> zum Beispiel:<br>1,Wert1<br>2,Wert2<br>3,Wert3<br>...
 ExtrafieldParamHelpradio=Parameterlisten müssen das Format Schlüssel,Wert haben<br><br> zum Beispiel:<br>1,Wert1<br>2,Wert2<br>3,Wert3<br>...
-ExtrafieldParamHelpsellist=Parameters list comes from a table<br>Syntax : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntaxt  extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
-ExtrafieldParamHelpchkbxlst=Parameters list comes from a table<br>Syntax : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntaxt  extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
-ExtrafieldParamHelplink=Parameters must be ObjectName:Classpath<br>Syntax : ObjectName:Classpath<br>Example : Societe:societe/class/societe.class.php
+ExtrafieldParamHelpsellist=Die Parameterliste stammt aus einer Tabelle<br>Syntax: tabellen_name:label_feld:id_feld::filter<br>Beispiel: c_typent:libelle:id::filter<br><br>Der Filter kann ein einfacher Test sein, um nur aktive Werte anzuzeigen (z.B. active=1)<br>Benutzen Sie $ID$ für die ID des aktuellen Objekts im Filter <br>Benutzen Sie $SEL$ im Filter für ein SELECT<br>Benutzen Sie zur Abfrage von zusätzlichen Feldern die Syntax extra.fieldcode=... (fieldcode bezeichnet den Code des zusätzlichen Felds)<br><br>Benutzen Sie c_typent:libelle:id:parent_list:code|parent_column:filter um die Liste auf eine andere Liste aufzubauen
+ExtrafieldParamHelpchkbxlst=Die Parameterliste stammt aus einer Tabelle<br>Syntax: tabellen_name:label_feld:id_feld::filter<br>Beispiel: c_typent:libelle:id::filter<br><br>Der Filter kann ein einfacher Test sein, um nur aktive Werte anzuzeigen (z.B. active=1)<br>Benutzen Sie $ID$ für die ID des aktuellen Objekts im Filter <br>Benutzen Sie $SEL$ im Filter für ein SELECT<br>Benutzen Sie zur Abfrage von zusätzlichen Feldern die Syntax extra.fieldcode=... (fieldcode bezeichnet den Code des zusätzlichen Felds)<br><br>Benutzen Sie c_typent:libelle:id:parent_list:code|parent_column:filter um die Liste auf eine andere Liste aufzubauen
+ExtrafieldParamHelplink=Parameter müssen folgendes Format haben ObjektName:Klassenpfad<br>Syntax: ObjektName:Klassenpfad<br> Beispiel: Societe:societe/class/societe.class.php
 LibraryToBuildPDF=Verwendete Bibliothek zur PDF-Erzeugung
 WarningUsingFPDF=Achtung: Ihre <b>conf.php</b> enthält <b>$dolibarr_pdf_force_fpdf=1</b> Dies bedeutet, dass Sie die FPDF-Bibliothek verwenden, um PDF-Dateien zu erzeugen. Diese Bibliothek ist alt und unterstützt viele Funktionen nicht (Unicode-, Bild-Transparenz, kyrillische, arabische und asiatische Sprachen, ...), so dass es zu Fehlern bei der PDF-Erstellung kommen kann. <br> Um dieses Problem zu beheben und volle Unterstützung der PDF-Erzeugung zu erhalten, laden Sie bitte die <a href="http://www.tcpdf.org/" target="_blank">TCPDF Bibliothek</a> , dann kommentieren Sie die Zeile <b>$dolibarr_pdf_force_fpdf=1</b> aus oder entfernen diese und fügen statt dessen <b>$dolibarr_lib_TCPDF_PATH='Pfad_zum_TCPDF_Verzeichnisr'</b> ein
 LocalTaxDesc=In einigen Ländern gelten zwei oder drei Steuern auf jeder Rechnungszeile. Wenn dies der Fall ist, wählen Sie den Typ für die zweite und dritte Steuer und den Steuersatz. Mögliche Arten sind: <br> 1: Ortsteuer gelten für Produkte und Dienstleistungen, ohne Mehrwertsteuer (Ortssteuer wird ohne Berücksichtigung der MwSt berechnet) <br> 2: Ortssteuer gilt für Produkte und Dienstleistungen mit Mehrwertsteuer (Ortssteuer wird mit Berücksichtigung det MwSt berechnet) <br> 3: Ortstaxe gilt für Produkte ohne Mehrwertsteuer (Ortssteuer wird ohne Berücksichtigung der MwSt berechnet) <br> 4: Ortssteuer gilt für Produkte, mit Mehrwertsteuer (Ortssteuer wird mit Berücksichtigung der MwSt berechnet) <br> 5: Ortssteuer gilt für Dienstleistungen, ohne Mehrwertsteuer (Ortssteuer wird ohne Berücksichtigung der MwSt berechnet) <br> 6: Ortssteuer gilt für Dienstleistungen mit Mehrwertsteuer (Ortssteuer wird mit Berücksichtigung der MwSt berechnet)
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Möchten Sie wirklich alle aktuellen Barcodes lös
 AllBarcodeReset=Alle Barcode-Werte wurden entfernt
 NoBarcodeNumberingTemplateDefined=Im Barcode-Modul wurde kein Numerierungs-Schema aktiviert.
 NoRecordWithoutBarcodeDefined=Kein Datensatz ohne Barcode definiert.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Benutzer und Gruppen
@@ -427,7 +428,7 @@ Module2Desc=Vertriebsverwaltung
 Module10Name=Buchhaltung
 Module10Desc=Einfache Buchhaltungsverwaltung (Rechnungen und Zahlungen)
 Module20Name=Angebote
-Module20Desc=Angeboteverwaltung
+Module20Desc=Angebotsverwaltung
 Module22Name=E-Mail-Kampagnen
 Module22Desc=E-Mail-Kampagnenverwaltung
 Module23Name=Energie
@@ -441,7 +442,7 @@ Module40Desc=Lieferantenverwaltung und Einkauf (Bestellungen und Rechnungen)
 Module42Name=Systemprotokoll
 Module42Desc=Protokollierungsdienste (Syslog)
 Module49Name=Bearbeiter
-Module49Desc=Bearbeiterverwaltung
+Module49Desc=Editorverwaltung
 Module50Name=Produkte
 Module50Desc=Produktverwaltung
 Module51Name=Postwurfsendungen
@@ -457,12 +458,12 @@ Module55Desc=Barcode-Verwaltung
 Module56Name=Telefonie
 Module56Desc=Telefonie-Integration
 Module57Name=Abbuchungsaufträge
-Module57Desc=Abbuchungsaufträge und Entzugsmanagement. Hierzu gehört auch Generation von SEPA-Datei für europäische Länder.
+Module57Desc=Abbuchungsaufträge und Abhebungsmanagement. Hierzu gehört auch Generierung einer SEPA-Datei für europäische Länder.
 Module58Name=ClickToDial
 Module58Desc=ClickToDial-Integration
 Module59Name=Bookmark4u
 Module59Desc=Neues Bookmark4u Konto zu Systembenutzerkonto hinzufügen
-Module70Name=Arbeitseinsätze
+Module70Name=Serviceaufträge
 Module70Desc=Serviceverwaltung
 Module75Name=Spesen- und Reiseaufzeichnungen
 Module75Desc=Reise- und Fahrtspesenverwaltung
@@ -481,7 +482,7 @@ Module210Desc=PostNuke-Integration
 Module240Name=Daten Exporte
 Module240Desc=Werkzeug zum Datenexport(mit Assistenten)
 Module250Name=Daten Importe
-Module250Desc=Werkzeug zum Dateinport (mit Assistenten)
+Module250Desc=Werkzeug zum Dateimport (mit Assistenten)
 Module310Name=Mitglieder
 Module310Desc=Management von Mitglieder einer Stiftung/Vereins
 Module320Name=RSS Feed
@@ -489,7 +490,7 @@ Module320Desc=RSS-Feed-Bildschirm innerhalb des Systems anzeigen
 Module330Name=Lesezeichen
 Module330Desc=Lesezeichenverwaltung
 Module400Name=Projekte / Chancen / Leads
-Module400Desc=Projektmanagement, Aufträge oder Leads. Anschließend können Sie ein beliebiges Element (Rechnung, Bestellung, Angebot, Intervention, ...) einem Projekt zuordnen und eine Queransicht von der Projektanzeige bekommen.
+Module400Desc=Projektmanagement, Aufträge oder Leads. Anschließend können Sie ein beliebiges Element (Rechnung, Bestellung, Angebot, Serviceaufträge, ...) einem Projekt zuordnen und eine Queransicht von der Projektanzeige bekommen.
 Module410Name=Webkalender
 Module410Desc=Webkalenderintegration
 Module500Name=Sonderausgaben
@@ -499,7 +500,7 @@ Module510Desc=Verwaltung der Angestellten-Gehälter und -Zahlungen
 Module520Name=Darlehen
 Module520Desc=Verwaltung von Darlehen
 Module600Name=Benachrichtigungen
-Module600Desc=Senden Sie Benachrichtigungen zu einigen Dolibarr-Events per E-Mail an Partner (wird pro Partner definiert)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Spenden
 Module700Desc=Spendenverwaltung
 Module770Name=Spesenabrechnungen
@@ -507,7 +508,7 @@ Module770Desc=Management und Reporting von Reise- und Spesenabrechnungen (Transp
 Module1120Name=Lieferant-Angebote
 Module1120Desc=Anfordern von Lieferanten-Angeboten und Preise
 Module1200Name=Mantis
-Module1200Desc=Mantis-Integation
+Module1200Desc=Mantis-Integration
 Module1400Name=Buchhaltung
 Module1400Desc=Buchhaltung für Experten (doppelte Buchhaltung)
 Module1520Name=Dokumente erstellen
@@ -524,25 +525,25 @@ Module2400Name=Agenda
 Module2400Desc=Termine/Aufgaben und Terminplanung
 Module2500Name=Inhaltsverwaltung(ECM)
 Module2500Desc=Speicherung und Verteilung von Dokumenten
-Module2600Name=API/Web services (SOAP server)
+Module2600Name=API/Webservice (SOAP Server)
 Module2600Desc=Aktivieren Sie Dolibarr SOAP Server,  unterstütztes API-Service.
 Module2610Name=API/Web Services (REST Server)
 Module2610Desc=Aktiviere der Dolibarr REST Serverdienst
-Module2660Name=Call WebServices (SOAP client)
-Module2660Desc=Enable the Dolibarr web services client (Can be used to push data/requests to external servers. Supplier orders supported only for the moment)
+Module2660Name=WebServices aufrufen (SOAP Client)
+Module2660Desc=Web Service Client von Dolibarr aktivieren (Kann benutzt werde, um Daten/anfragen zu externen Servern zu verschicken. Momentan ist das nur für Bestellungen vorgesehen).
 Module2700Name=Gravatar
 Module2700Desc=Verwenden Sie den online Gravatar-Dienst (www.gravatar.com) für die Anzeige von Benutzer- und Mitgliederbildern (Zuordnung über E-Mail-Adressen). Hierfür benötigen Sie eine aktive Internetverbindung
 Module2800Desc=FTP-Client
 Module2900Name=GeoIPMaxmind
 Module2900Desc=GeoIP Maxmind Konvertierung
 Module3100Name=Skype
-Module3100Desc=Add a Skype button into card of users / third parties / contacts / members
+Module3100Desc=Skype Button zu Karten von Benutzern / Partner / Kontakten / Mitgliedern hinzufügen
 Module4000Name=PV
 Module4000Desc=Personalverwaltung
 Module5000Name=Mandantenfähigkeit
 Module5000Desc=Ermöglicht Ihnen die Verwaltung mehrerer Firmen
 Module6000Name=Workflow
-Module6000Desc=Workflow management
+Module6000Desc=Workflow Management
 Module20000Name=Urlaubsantrags-Verwaltung
 Module20000Desc=Definieren und beobachten sie die Urlaubsanträge Ihrer Angestellten.
 Module39000Name=Chargen-/ Seriennummern
@@ -585,9 +586,9 @@ Permission38=Produkte exportieren
 Permission41=Projekte und Aufgaben lesen (Geteilte Projekte und Projekte in denen ich Kontakt bin).  Es kann auch Zeitaufwand auf zugewiesenen Aufgaben gebucht werden.
 Permission42=Projekte/Aufgaben erstellen/bearbeiten (Meine)
 Permission44=Projekte und Aufgaben löschen (gemeinsame Projekte und Projekte in welchen ich Ansprechpartner bin)
-Permission61=Leistungen ansehen
-Permission62=Leistungen erstellen/bearbeiten
-Permission64=Interventionen löschen
+Permission61=Serviceaufträge ansehen
+Permission62=Serviceaufträge erstellen/bearbeiten
+Permission64=Serviceaufträge löschen
 Permission67=Leistungen exportieren
 Permission71=Mitglieder einsehen
 Permission72=Mitglieder erstellen/bearbeiten
@@ -651,12 +652,12 @@ Permission184=Lieferantenbestellungen bestätigen
 Permission185=Lieferantenbestellungen bestellen oder verwerfen
 Permission186=Lieferantenbestellungen empfangen
 Permission187=Lieferantenbestellungen schließen
-Permission188=Lieferantenbestellungen verwerfen
+Permission188=Lieferantenbestellungen stornieren
 Permission192=Leitungen erstellen
-Permission193=Leitungen abbrechen
+Permission193=Zeilen stornieren
 Permission194=Leitungen einsehen
 Permission202=ADSL Verbindungen erstellen
-Permission203=Bestellungsverbindungen Bestellungen
+Permission203=Verbindungen zwischen Bestellungen
 Permission204=Bestell-Verbindungen
 Permission205=Verbindungen verwalten
 Permission206=Verbindungen lesen
@@ -723,7 +724,7 @@ Permission517=Löhne exportieren
 Permission520=Darlehen einsehen
 Permission522=Darlehen erstellen/bearbeiten
 Permission524=Lösche Darlehen
-Permission525=Darlehens-rechner
+Permission525=Darlehensrechner
 Permission527=Exportiere Darlehen
 Permission531=Leistungen einsehen
 Permission532=Leistungen erstellen/bearbeiten
@@ -799,7 +800,7 @@ Permission54001=Drucken
 Permission55001=Abstimmungen einsehen
 Permission55002=Abstimmung erstellen/ändern
 Permission59001=Gewinnspanne einsehen
-Permission59002=Gewinspanne definieren
+Permission59002=Gewinnspanne definieren
 Permission59003=Lesen aller Benutzer Margen
 DictionaryCompanyType=Partnertyp
 DictionaryCompanyJuridicalType=Gesellschafts- und Unternehmensformen
@@ -811,7 +812,7 @@ DictionaryCurrency=Währungen
 DictionaryCivility=Anrede Bezeichnungen
 DictionaryActions=Liste Arten von Kalenderereignissen
 DictionarySocialContributions=Arten von Sozialabgaben/Unternehmenssteuern
-DictionaryVAT=MwSt.-Sätze
+DictionaryVAT=USt.-Sätze
 DictionaryRevenueStamp=Steuermarken Beträge
 DictionaryPaymentConditions=Zahlungsbedingungen
 DictionaryPaymentModes=Zahlungsarten
@@ -826,18 +827,18 @@ DictionaryOrderMethods=Bestellmethoden
 DictionarySource=Quelle der Angebote/Aufträge
 DictionaryAccountancyplan=Kontenplan
 DictionaryAccountancysystem=Kontenplan Modul
-DictionaryEMailTemplates=Textvorlagen für Emails
+DictionaryEMailTemplates=Textvorlagen für E-Mails
 DictionaryUnits=Einheiten
 DictionaryProspectStatus=Geschäftsanbahnungsarten
 DictionaryHolidayTypes=Art des Urlaubs
 DictionaryOpportunityStatus=Verkaufschancen für Projekt/Lead
 SetupSaved=Setup gespeichert
 BackToModuleList=Zurück zur Modulübersicht
-BackToDictionaryList=Zurück zur Wörterbuchübersicht
+BackToDictionaryList=Zurück zur der Stammdatenübersicht
 VATReceivedOnly=Nur Mehrwertsteuererhalt
-VATManagement=MwSt-Verwaltung
-VATIsUsedDesc=Der standardmäßige MwSt.-Satz für die Erstellung von Leads, Rechnungen, Bestellungen, etc. folgt der folgenden, aktiven Regel:<br>Ist der Verkäufer mehrwertsteuerpflichtig, ist die MwSt. standardmäßig 0. Ende der Regel.<br>Ist das Verkaufsland gleich dem Einkaufsland, ist die MwSt. standardmäßig die MwSt. des Produkts im Verkaufsland. Ende der Regel. <br>Sind Verkäufer und Käufer beide aus Europäischen Mitgliedsstaaten und die Produkte physisch transportfähig (Auto, Schiff, Flugzeug), ist die MwSt. standardmäßig 0. (Die MwSt. sollte durch den Käufer beim eigenen Zollamt entrichtet werden, nicht durch den Verkäufer. Ende der Regel.<br>Sind Verkäufer und Käufer beide aus Europäischen Mitgliedsstaaten, der Käufer jedoch kein Unternehmen so ist die MwSt. standardmäßig die MwSt. des verkauften Produkts. Ende der Regel.<br>Sind Verkäufer und Käufer beide Unternehmen im Europäischen Gemeinschaftsraum, so ist die MwSt. standardmäßig 0. Ende der Regel.<br>Trifft keine der obigen Regeln zu, ist die MwSt. standardmäßig 0.
-VATIsNotUsedDesc=Die vorgeschlagene MwSt. ist standardmäßig 0 für alle Fälle wie Stiftungen, Einzelpersonen oder Kleinunternehmen.
+VATManagement=USt-Verwaltung
+VATIsUsedDesc=Der standardmäßige USt.-Satz für die Erstellung von Leads, Rechnungen, Bestellungen, etc. folgt der folgenden, aktiven Regel:<br>Ist der Verkäufer mehrwertsteuerpflichtig, ist die USt. standardmäßig 0. Ende der Regel.<br>Ist das Verkaufsland gleich dem Einkaufsland, ist die USt. standardmäßig die MwSt. des Produkts im Verkaufsland. Ende der Regel. <br>Sind Verkäufer und Käufer beide aus Europäischen Mitgliedsstaaten und die Produkte physisch transportfähig (Auto, Schiff, Flugzeug), ist die USt. standardmäßig 0. (Die USt. sollte durch den Käufer beim eigenen Zollamt entrichtet werden, nicht durch den Verkäufer. Ende der Regel.<br>Sind Verkäufer und Käufer beide aus Europäischen Mitgliedsstaaten, der Käufer jedoch kein Unternehmen so ist die USt. standardmäßig die USt. des verkauften Produkts. Ende der Regel.<br>Sind Verkäufer und Käufer beide Unternehmen im Europäischen Gemeinschaftsraum, so ist die USt. standardmäßig 0. Ende der Regel.<br>Trifft keine der obigen Regeln zu, ist die USt. standardmäßig 0.
+VATIsNotUsedDesc=Die vorgeschlagene USt. ist standardmäßig 0 für alle Fälle wie Stiftungen, Einzelpersonen oder Kleinunternehmen.
 VATIsUsedExampleFR=-
 VATIsNotUsedExampleFR=-
 ##### Local Taxes #####
@@ -860,10 +861,10 @@ LocalTax1IsNotUsedDescES= Standardmäßig werden die vorgeschlagenen RE 0 ist. E
 LocalTax1IsUsedExampleES= In Spanien sind sie Profis unterliegen bestimmten Abschnitten der spanischen IAE.
 LocalTax1IsNotUsedExampleES= In Spanien sind sie professionelle und Gesellschaften und vorbehaltlich bestimmter Abschnitte der spanischen IAE.
 LocalTax2ManagementES= EKSt. Management
-LocalTax2IsUsedDescES= Die RE Rate standardmäßig beim Erstellen Aussichten, Rechnungen, Bestellungen etc. folgen die aktive Standard-Regel: <br> Ist der Verkäufer nicht zu IRPF ausgesetzt, dann durch IRPF default = 0. Ende der Regel. <br> Ist der Verkäufer zur IRPF dann der Einkommenssteuer unterworfen standardmäßig. Ende der Regel. <br>
+LocalTax2IsUsedDescES= Die RE Rate standardmäßig beim Erstellen Aussichten, Rechnungen, Bestellungen etc. folgen die aktive Standard-Regel: <br> Unterliegt der Verkäufer nicht IRPF, dann ist IRPF standardmäßig 0. Ende der Regel. <br> Ist der Verkäufer zur IRPF dann der Einkommenssteuer unterworfen standardmäßig. Ende der Regel. <br>
 LocalTax2IsNotUsedDescES= Standardmäßig werden die vorgeschlagenen IRPF 0 ist. Ende der Regel.
 LocalTax2IsUsedExampleES= In Spanien, Freiberufler und unabhängigen Fachleuten, die ihre Dienstleistungen und Unternehmen, die das Steuersystem von Modulen gewählt haben.
-LocalTax2IsNotUsedExampleES= In Spanien sind sie bussines nicht der Steuer unterliegen System von Modulen.
+LocalTax2IsNotUsedExampleES= In Spanien sind dies Firmen, die nicht der Steuer-System aller Module unterliegen.
 CalcLocaltax=Berichte über lokale Steuern
 CalcLocaltax1=Sales - Käufe
 CalcLocaltax1Desc=Lokale Steuer-Reports werden mit der Differenz von lokalen Verkaufs- und Einkaufs-Steuern berechnet
@@ -930,8 +931,8 @@ DefaultMenuSmartphoneManager=Smartphone Menü-Verwaltung
 Skin=grafische Oberfläche
 DefaultSkin=Standardvorlage grafische Oberfläche
 MaxSizeList=Maximale Listenlänge
-DefaultMaxSizeList=Default max length for lists
-DefaultMaxSizeShortList=Default max length for short lists (ie in customer card)
+DefaultMaxSizeList=Voreinstellung maximale Anzahl Zeilen für Listen
+DefaultMaxSizeShortList=Standard für maximale Länge bei kurzen Listen (z.B. Kundenkarte)
 MessageOfDay=Nachricht des Tages
 MessageLogin=Nachricht auf der Anmeldeseite
 PermanentLeftSearchForm=Ständiges Suchfeld auf der linken Seite
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Fristen bis zur Warnung
 DelaysOfToleranceBeforeWarning=Verzögerungstoleranz vor Warnung
 DelaysOfToleranceDesc=Hier können Sie die Verspätungstoleranz einstellen, bevor eine Benachrichtigung auf dem Bildschirm für jedes verspätete Element mit dem Symbol %s ausgegeben wird.
 Delays_MAIN_DELAY_ACTIONS_TODO=Verzögerungstoleranz (in Tagen) vor Warnung für noch nicht erledigte, geplante Ereignisse
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Verzögerungstoleranz (in Tagen) vor  Warnung für noch nicht bearbeitete Aufträge
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Verzögerungstoleranz (in Tagen), vor Warnung für nicht bearbeitete Lieferantenbestellungen
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Verzögerungstoleranz (in Tagen) vor  Warnung für abzuschließende Angebote
@@ -974,7 +976,7 @@ Delays_MAIN_DELAY_CUSTOMER_BILLS_UNPAYED=Verzögerungstoleranz (in Tagen) vor Be
 Delays_MAIN_DELAY_TRANSACTIONS_TO_CONCILIATE=Verzögerungstoleranz (in Tagen) vor Benachrichtigung über Bankkontenabgleich
 Delays_MAIN_DELAY_MEMBERS=Verzögerungstoleranz (in Tagen) vor Benachrichtigung über verspätete Mitgliedsbeiträge
 Delays_MAIN_DELAY_CHEQUES_TO_DEPOSIT=Verzögerungstoleranz (in Tagen) vor der Benachrichtigung über einzulösende Schecks
-Delays_MAIN_DELAY_EXPENSEREPORTS=Tolerance delay (in days) before alert for expense reports to approve
+Delays_MAIN_DELAY_EXPENSEREPORTS=Toleranz in Tagen vor der Benachrichtigung zur Genehmigung einer Spesenabrechnung
 SetupDescription1=Alle Parameter in der Einstellungsübersicht erlauben Ihnen die Konfiguration des Systems vor Inbetriebnahme.
 SetupDescription2=Die 2 wichtigsten Schritte zur Einrichtung finden Sie in den ersten beiden Zeilen des Einstellungen-Menüs auf der linken Seite. Dies sind die 'Unternehmen/Stiftung'- und die 'Moduleinstellungen'-Menüpunkte:
 SetupDescription3=Die Einstellungen unter <b>Firma/Stiftung</b> werden für die Anzeige im System und die länderspezifische Anpassung dessen Verhaltens zwingend benötigt.
@@ -1008,7 +1010,7 @@ SessionTimeOut=Sitzungszeitbegrenzung
 SessionExplanation=Dieser Wert garantiert, dass eine Sitzung nie vor Zeitablauf beendet wird. Die PHP-Sitzungsverwaltung garantiert jedoch nicht, dass eine Sitzung wirklich nach Ablauf dieser Zeit beendet wird. Hierzu kann es kommen, wenn ein System zur Sitzungscache-Bereinigung im Einsatz ist.<br>Hinweis: ohne spezielles System wird PHP die Sitzung nach etwa <b>%s/%s</b> beenden - allerdings erst nach dem Start einer anderen Sitzung.
 TriggersAvailable=Verfügbare Trigger
 TriggersDesc=Trigger sind Dateien, die nach einem Kopieren in das Verzeichnis <b>htdocs/core/triggers</b> das Workflow-Verhalten des Systems beeinflussen. Diese stellen neue, mit Systemereignissen verbundene, Ereignisse dar (Neuer Partner angelegt, Rechnung freigegeben, ...).
-TriggerDisabledByName=Trigger in dieser Datei sind durch das <b>-NORUN</b>-Suffix in ihrem Namen deaktviert.
+TriggerDisabledByName=Trigger in dieser Datei sind durch das <b>-NORUN</b>-Suffix in ihrem Namen deaktiviert.
 TriggerDisabledAsModuleDisabled=Trigger in dieser Datei sind durch das übergeordnete Modul <b>%s</b> deaktiviert.
 TriggerAlwaysActive=Trigger in dieser Datei sind unabhängig der Modulkonfiguration immer aktiviert.
 TriggerActiveAsModuleActive=Trigger in dieser Datei sind durch das übergeordnete Modul <b>%s</b> aktiviert.
@@ -1023,11 +1025,11 @@ MAIN_MAX_DECIMALS_UNIT=Dezimalstellen max. für Stückpreise
 MAIN_MAX_DECIMALS_TOT=Dezimalstellen max. für Gesamtsummen
 MAIN_MAX_DECIMALS_SHOWN=Dezimalstellen max. für auf dem Bildschirm angezeigte Preise (Fügen Sie <b>...</b> nach dieser Nummer ein, wenn Sie <b>...</b> sehen wollen, falls ein Bildschirmpreis abgeschnitten wurde.
 MAIN_DISABLE_PDF_COMPRESSION=PDF-Komprimierung für erzeugte PDF-Dokumente verwenden
-MAIN_ROUNDING_RULE_TOT=Rundungseinstellung (Für Länder in denen nicht auf 10er basis Gerundet wird. zB. 0.05 damit in 0.05 Schritten gerundet wirb)
+MAIN_ROUNDING_RULE_TOT=Rundungseinstellung (Für Länder in denen nicht auf 10er Basis Gerundet wird. z.B. 0.05 damit in 0.05 Schritten gerundet wirb)
 UnitPriceOfProduct=Nettostückpreis
-TotalPriceAfterRounding=Gesamtpreis (Netto/MwSt./Brutto) gerundet
+TotalPriceAfterRounding=Gesamtpreis (Netto/USt./Brutto) gerundet
 ParameterActiveForNextInputOnly=Die Einstellungen werden erst bei der nächsten Eingabe wirksam
-NoEventOrNoAuditSetup=Keine sicherheitsrelevanten Protokollereignisse. Überprüfen Sie die Aktivierung dieser Funktionen unter 'Einstellunge-Sicherheit-Protokoll'.
+NoEventOrNoAuditSetup=Keine sicherheitsrelevanten Protokollereignisse. Überprüfen Sie die Aktivierung dieser Funktionen unter 'Einstellungen-Sicherheit-Protokoll'.
 NoEventFoundWithCriteria=Kein sicherheitsrelevantes Protokollereignis zu Ihren Suchkriterien gefunden
 SeeLocalSendMailSetup=Lokale sendmail-Einstellungen anzeigen
 BackupDesc=Um eine vollständige Systemsicherung durchzuführen müssen Sie:
@@ -1037,7 +1039,7 @@ BackupDescX=Bewahren Sie die archivierten Verzeichnisse an einem sicheren Ort au
 BackupDescY=Bewahren Sie den Datenbank-Dump an einem sicheren Ort auf.
 BackupPHPWarning=Datensicherung kann mit dieser Methode nicht garantiert werden. Bevorzugen Sie die vorherige.
 RestoreDesc=Um eine Systemsicherung wiederherzustellen, müssen Sie:
-RestoreDesc2=Wiederherstellung von Archive Datei (zip Datei zum Beispiel)\nvom documents Verzeichnis um den documents Datei-Baum im documents verzeichnis in eine neue Dolibarr Installation oder in ein bestehendes Dolibarr Verzeichnis (<b>%s</b>).
+RestoreDesc2=Wiederherstellung der Archivdatei des Dokumentenverzeichnis (zum Beispiel zip-Datei) um den Datei-Baum im Dokumentenverzeichnis einer neuen Dolibarr Installation oder in ein bestehendes Dolibarr Verzeichnis (<b>%s</b>).
 RestoreDesc3=* Die Datenbanksicherung aus dem Dump in eine neue Dolibarr-Installation oder das bestehende System (<b>%s</b>) zurückspielen. Achtung: Nach Beendigung dieses Vorganges müssen Sie sich mit dem Benutzernamen/Passwort-Paar zum Zeitpunkt der Sicherung am System anmelden. Zur Wiederherstellung der Datenbank steht Ihnen der folgende Assistent zur Verfügung:
 RestoreMySQL=MySQL Import
 ForcedToByAModule= Diese Regel wird <b>%s</b> durch ein aktiviertes Modul aufgezwungen
@@ -1046,13 +1048,13 @@ WeekStartOnDay=Wochenstart
 RunningUpdateProcessMayBeRequired=Eine Systemaktualisierung scheint erforderlich (Programmversion %s unterscheidet sich von Datenbankversion %s)
 YouMustRunCommandFromCommandLineAfterLoginToUser=Diesen Befehl müssen Sie auf der Kommandozeile (nach Login auf der Shell mit Benutzer <b>%s</b>) ausführen.
 YourPHPDoesNotHaveSSLSupport=Ihre PHP-Konfiguration unterstützt keine SSL-Verschlüsselung
-DownloadMoreSkins=Weitere grafische Oberflächen/Themes herunterladen
+DownloadMoreSkins=Weitere grafische Oberflächen herunterladen
 SimpleNumRefModelDesc=Liefere eine Nummer im Format %syymm-nnnn zurück, wobei YY für das Jahr, MM für das Monat und nnnn für eine 4-stellige, nicht unterbrochene Zahlensequenz steht
 ShowProfIdInAddress=Zeige professionnal ID mit Adressen auf Dokumente
 ShowVATIntaInAddress=Ausblenden UID Nummer in Adressen auf Dokumenten.
 TranslationUncomplete=Teilweise Übersetzung
 SomeTranslationAreUncomplete=Einige Sprachen könnten nur teilweise oder fehlerhaft übersetzt sein. Wenn Sie Fehler bemerken, können Sie die Sprachdateien verbessern, indem Sie sich bei <a href="http://transifex.com/projects/p/dolibarr/" target="_blank">Transifex</a> registrieren.
-MenuUseLayout=Machen Sie vertikales Menü hidable (Option Javascript muss nicht deaktiviert werden)
+MenuUseLayout=Erlaube, das vertikale Menü zu verstecken (Option Javascript muss nicht deaktiviert werden)
 MAIN_DISABLE_METEO=Deaktivere Wetteransicht
 TestLoginToAPI=Testen Sie sich anmelden, um API
 ProxyDesc=Einige Features von Dolibarr müssen einen Internet-Zugang zu Arbeit haben. Definieren Sie hier Parameter für diese. Wenn die Dolibarr Server hinter einem Proxy-Server, erzählt jene Parameter Dolibarr wie man Internet über ihn zugreifen.
@@ -1065,7 +1067,7 @@ MAIN_PROXY_PASS=Kennwort ein, um den Proxy-Server verwenden
 DefineHereComplementaryAttributes=Definieren Sie hier alle Attribute, die nicht standardmäßig vorhanden sind, und in %s unterstützt werden sollen.
 ExtraFields=Ergänzende Attribute
 ExtraFieldsLines=Ergänzende Attribute (Zeilen)
-ExtraFieldsSupplierOrdersLines=Ergänzende Attribute (in Bestellungszeile)
+ExtraFieldsSupplierOrdersLines=Ergänzende Attribute (in Bestellposition)
 ExtraFieldsSupplierInvoicesLines=Ergänzende Attribute (in Rechnungszeile)
 ExtraFieldsThirdParties=Ergänzende Attribute (Partner)
 ExtraFieldsContacts=Ergänzende Attribute (Kontakt)
@@ -1078,15 +1080,16 @@ ExtraFieldsSupplierInvoices=Ergänzende Attribute (Rechnungen)
 ExtraFieldsProject=Ergänzende Attribute (Projekte)
 ExtraFieldsProjectTask=Ergänzende Attribute (Aufgaben)
 ExtraFieldHasWrongValue=Attribut %s hat einen falschen Wert.
-AlphaNumOnlyCharsAndNoSpace=nur alphanumericals Zeichen ohne Leerzeichen
+AlphaNumOnlyCharsAndNoSpace=nur alphanumerische Zeichen ohne Leerzeichen
 AlphaNumOnlyLowerCharsAndNoSpace=nur Kleinbuchstaben und Zahlen, keine Leerzeichen
 SendingMailSetup=Einrichten von Sendungen per E-Mail
-SendmailOptionNotComplete=Achtung, auf einigen Linux-Systemen, E-Mails von Ihrem E-Mail zu senden, sendmail Ausführung Setup muss conatins Option-ba (Parameter mail.force_extra_parameters in Ihre php.ini-Datei). Wenn einige Empfänger niemals E-Mails erhalten, versuchen, diese Parameter mit PHP mail.force_extra_parameters =-ba) zu bearbeiten.
+SendmailOptionNotComplete=Achtung: Auf einigen Linux-Systemen muss die Einrichtung von sendmail die Option -ba ethalten, um E-Mail versenden zu können (Parameter mail.force_extra_parameters in der php.ini-Datei). Wenn einige Empfänger niemals E-Mails erhalten, verändern Sie den PHP Parameter folgendermaßen mail.force_extra_parameters =-ba.
 PathToDocuments=Dokumentenpfad
 PathDirectory=Verzeichnispfad
 SendmailOptionMayHurtBuggedMTA=Feature-Mails mit der Methode "PHP mail direkt" senden generiert eine Mail-Nachricht, die nicht korrekt möglicherweise von einigen Mail-Servern empfangen analysiert werden. Ergebnis ist, dass manche Mails nicht von Menschen, die von thoose abgehört Plattformen gehostet gelesen werden. Es ist bei einigen Internet-Providern (Ex: Orange in Frankreich). Dies ist nicht ein Problem in Dolibarr noch in PHP aber auf empfangende Mail-Server. Sie können jedoch hinzuzufügen MAIN_FIX_FOR_BUGGED_MTA Option auf 1 in die Setup - andere zu Dolibarr ändern, um dies zu vermeiden. Sie können jedoch Probleme mit anderen Servern, dass die Achtung streng dem SMTP-Standard zu erleben. Die andere Lösung (empfohlen) ist es, die Methode "SMTP-Socket-Bibliothek", die keine Nachteile hat benutzen.
 TranslationSetup=Übersetzungseinstellungen
 TranslationDesc=Wahl der Sprache auf dem Bildschirm sichtbar verändert werden kann: <br> * Weltweit aus dem Menü <strong>Start - Einstellungen - Anzeige</strong> <br> * Für die Benutzer nur von <strong>Benutzer-Registerkarte Anzeige</strong> von Benutzer-Karte (klicken Sie auf Login-Bildschirm auf der Oberseite).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Summe aktivierter Module: <b>%s</b>
 YouMustEnableOneModule=Sie müssen mindestens 1 Modul aktivieren
 ClassNotFoundIntoPathWarning=Klasse %s nicht innerhalb PHP-Pfad gefunden
@@ -1103,19 +1106,19 @@ BrowserIsOK=Sie benutzen den Webbrowser %s. Dieser ist hinsichtlich Sicherheit u
 BrowserIsKO=Sie benutzen den Webbrowser %s. Dieser ist bekannt für Sicherheitsprobleme, schlechte Leistung und Zuverlässigkeit. Wir empfehlen Ihnen, Firefox, Chrome, Opera oder Safari zu nutzen.
 XDebugInstalled=XDebug installiert.
 XCacheInstalled=XCache installiert.
-AddRefInList=Darstellung Kunden- /Lieferanten- Nr. in Listen (Listbox oder ComboBox) und die meisten von Hyperlinks. Third parties will appears with name "CC12345 - SC45678 - The big company coorp", instead of "The big company coorp".
+AddRefInList=Darstellung Kunden- /Lieferanten- Nr. in Listen (Listbox oder ComboBox) und die meisten von Hyperlinks. Partner erscheinen mit dem namen "CC12345 - SC45678 - Grosse Firma AG" anstelle von "Grosse Firma AG".
 FieldEdition=Bearbeitung von Feld %s
 FillThisOnlyIfRequired=Beispiel: +2 (nur ausfüllen, wenn Sie Probleme mit der Zeitzone haben)
 GetBarCode=Erhalten Sie einen Barcode
 EmptyNumRefModelDesc=Der Code ist frei. Dieser Code kann jederzeit geändert werden.
 ##### Module password generation
 PasswordGenerationStandard=Generiere ein Passwort nach dem internen Systemalgorithmus: 8 Zeichen, Zahlen und Kleinbuchstaben.
-PasswordGenerationNone=Do not suggest any generated password. Password must be typed in manually.
-PasswordGenerationPerso=Return a password according to your personally defined configuration.
-SetupPerso=According to your configuration
-PasswordPatternDesc=Password pattern description
+PasswordGenerationNone=Schlagen Sie kein generiertes Passwort vor. Passwörter sollten manuell eingegeben werden.
+PasswordGenerationPerso=Ein Passwort entsprechend der persönlich definierten Konfiguration zurückgeben.
+SetupPerso=Nach Ihrer Konfiguration
+PasswordPatternDesc=Beschreibung für Passwortmuster
 ##### Users setup #####
-UserGroupSetup=Benutzer- und Gruppeneinstellunen
+UserGroupSetup=Benutzer- und Gruppeneinstellungen
 GeneratePassword=Passwort erstellen
 RuleForGeneratedPasswords=Regel für automatisch erstellte Passwörter
 DoNotSuggest=Kein Passwort vorschlagen
@@ -1129,7 +1132,7 @@ HRMSetup=PV Modul Einstellungen
 CompanySetup=Unternehmenseinstellungen
 CompanyCodeChecker=Modul für Partner-Code-Erstellung (Kunden oder Lieferanten)
 AccountCodeManager=Modul für Kontierungs-Code-Erstellung (Kunden oder Lieferanten)
-ModuleCompanyCodeAquarium=Generiert einen Kontierungscode %s, gefolgt von der Lieferantenummer für einen Lieferanten-Kontierungscode und %s, gefolgt vom Kundencontierungscode für einen Kundenkontierungscode.
+ModuleCompanyCodeAquarium=Generiert einen Kontierungscode %s, gefolgt von der Lieferantenummer für einen Lieferanten-Kontierungscode und %s, gefolgt vom Kundenkontierungscode für einen Kundenkontierungscode.
 ModuleCompanyCodePanicum=Generiert einen leeren Kontierungscode.
 ModuleCompanyCodeDigitaria=Kontierungscode hängt vom Partnercode ab. Der Code setzt sich aus dem Buchstaben 'C' und den ersten 5 Stellen des Partnercodes zusammen.
 UseNotifications=Benachrichtigungen verwenden
@@ -1138,7 +1141,7 @@ ModelModules=Dokumentvorlagenmodul
 DocumentModelOdt=Erstellen von Dokumentvorlagen im OpenDocuments-Format (.odt- oder .ods-Dateien für OpenOffice, KOffice, TextEdit, ...)
 WatermarkOnDraft=Wasserzeichen auf Entwurf
 JSOnPaimentBill=Feature aktivieren, um Zahlungs-Zeilen in Zahlungs-Formularen automatisch zu füllen
-CompanyIdProfChecker=Berufs-Identifikation einzigartige
+CompanyIdProfChecker=Regeln für Identifikationsnummern
 MustBeUnique=Eindeutig sein müssen?
 MustBeMandatory=Erforderlich um Partner anzulegen?
 MustBeInvoiceMandatory=Erforderlich um Rechnungen freizugeben?
@@ -1177,7 +1180,7 @@ CreditNotePDFModules=PDF-Gutschriftsvorlagen
 CreditNote=Gutschrift
 CreditNotes=Gutschriften
 ForceInvoiceDate=Rechnungsdatum ist zwingend Freigabedatum
-AllowCreditNoteWithoutRelatedInvoice=Allow to create credit note without a related invoice
+AllowCreditNoteWithoutRelatedInvoice=Erstellen einer Gutschrift auch ohne Bezug zu einer Rechnung erlauben
 DisableRepeatable=Wiederholbare Rechnungen deaktivieren
 SuggestedPaymentModesIfNotDefinedInInvoice=Empfohlene Zahlungsart für Rechnung falls nicht in gesondert definiert
 EnableEditDeleteValidInvoice=Aktivieren Sie die Möglichkeit, freigegebene Rechnungen ohne Zahlungseingang zu bearbeiten/löschen
@@ -1191,7 +1194,7 @@ PropalSetup=Angebotsmoduleinstellungen
 CreateForm=Erzeuge Formulare
 NumberOfProductLines=Anzahl der Produktlinien
 ProposalsNumberingModules=Angebotsnumerierungs-Module
-ProposalsPDFModules=PDF-Anbebotsmodule
+ProposalsPDFModules=PDF-Angebotsmodule
 ClassifiedInvoiced=Als verrechnet markieren
 HideTreadedPropal=Ausblenden der behandelten Angebote in der Liste
 AddShippingDateAbility=Versandfähigkeitsdatum hinzufügen
@@ -1201,21 +1204,21 @@ FreeLegalTextOnProposal=Freier Rechtstext für Angebote
 WatermarkOnDraftProposal=Wasserzeichen auf Angebots-Entwurf (keines, falls leer)
 BANK_ASK_PAYMENT_BANK_DURING_PROPOSAL=Fragen Sie nach dem Bankkonto bei einem Angebot
 ##### SupplierProposal #####
-SupplierProposalSetup=Price requests suppliers module setup
-SupplierProposalNumberingModules=Price requests suppliers numbering models
-SupplierProposalPDFModules=Price requests suppliers documents models
-FreeLegalTextOnSupplierProposal=Free text on price requests suppliers
-WatermarkOnDraftSupplierProposal=Watermark on draft price requests suppliers (none if empty)
-BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_PROPOSAL=Ask for bank account destination of price request
-WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER=Ask for Warehouse Source for order
+SupplierProposalSetup=Einrichtung des Moduls für Preisanfragen bei Lieferanten
+SupplierProposalNumberingModules=Modell zu Numerierung von Preisanfragen für Lieferanten
+SupplierProposalPDFModules=Modell für Dokumente von Preisanfragen für Lieferanten
+FreeLegalTextOnSupplierProposal=Freier Text auf Preisanfragen für Lieferanten
+WatermarkOnDraftSupplierProposal=Wasserzeichen auf vorbereiteten Preisanfrage für Lieferanten (leerlassen für kein Wasserzeichen)
+BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_PROPOSAL=Frage nach Bankkonto für Preisanfragen
+WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER=Frage nach Lager für Aufträge
 ##### Orders #####
 OrdersSetup=Bestellverwaltungseinstellungen
 OrdersNumberingModules=Bestellnumerierungs-Module
 OrdersModelModule=Bestellvorlagenmodule
-HideTreadedOrders=Ausblenden von bearbeiteten oder abgebrochenen Angeboten in der Liste
+HideTreadedOrders=Ausblenden von bearbeiteten oder stornierten Angeboten in der Liste
 ValidOrderAfterPropalClosed=Zur Freigabe der Bestellung nach Schließung des Angebots (überspringt vorläufige Bestellung)
 FreeLegalTextOnOrders=Freier Rechtstext auf Bestellungen
-WatermarkOnDraftOrders=Wasserzeichen auf Bestellungs-Entwurf (keines, wenn leer)
+WatermarkOnDraftOrders=Wasserzeichen auf Bestellentwurf (keines, wenn leer)
 ShippableOrderIconInList=In Auftragsliste ein entsprechendes Icon zufügen, wenn die Bestellung versandbereit ist
 BANK_ASK_PAYMENT_BANK_DURING_ORDER=Fragen Sie nach der Ziel-Bankverbindung
 ##### Clicktodial #####
@@ -1224,11 +1227,11 @@ ClickToDialUrlDesc=Definieren Sie hier die URL, die bei einem Klick auf das Tele
 ##### Bookmark4u #####
 Bookmark4uSetup=Bookmark4u Moduleinstellungen
 ##### Interventions #####
-InterventionsSetup=Servicemoduleinstellungen
-FreeLegalTextOnInterventions=Freier Rechtstext auf Interventions Dokument
-FicheinterNumberingModules=Intervention Nummerierung Module
-TemplatePDFInterventions=Intervention Karte Dokumenten Modelle
-WatermarkOnDraftInterventionCards=Wasserzeichen auf Interventionskarte Dokumente (keines, wenn leer)
+InterventionsSetup=Einstellungen Modul Serviceaufträge
+FreeLegalTextOnInterventions=Freier Text auf Serviceauftragsdokumenten
+FicheinterNumberingModules=Module für die Nummerierung von Serviceaufträgen
+TemplatePDFInterventions=Module für Serviceauftragskarten
+WatermarkOnDraftInterventionCards=Wasserzeichen auf Serviceauftragskarten Dokumente (leerlassen für keines)
 ##### Contracts #####
 ContractsSetup=Verträge/Abonnements-Modul Einstellungen
 ContractsNumberingModules=Verträge Nummerierung Module
@@ -1276,7 +1279,7 @@ LDAPUserDnExample=Vollständige DN (zB: ou=users,dc=society,dc=com)
 LDAPGroupDn=Gruppen DN
 LDAPGroupDnExample=Vollständige DN (zB: ou=users,dc=society,dc=com)
 LDAPServerExample=Server-Adresse (zB: localhost, 192.168.0.2, ldaps://ldap.example.com/)
-LDAPServerDnExample=Complete DN (zB: dc=company,dc=com)
+LDAPServerDnExample=Kompletter DN (zB: dc=firma,dc=com)
 LDAPPasswordExample=Administrator-Passwort
 LDAPDnSynchroActive=Benutzer und Gruppensynchronisation
 LDAPDnSynchroActiveExample=LDAP zu dolibarr oder dolibarr zu LDAP-Synchronisation
@@ -1288,7 +1291,7 @@ LDAPDnMemberActiveExample=Aktivierte/Deaktivierte Synchronisation
 LDAPContactDn=Dolibarr Kontakte DN
 LDAPContactDnExample=Vollständige DN (zB: ou=users,dc=society,dc=com)
 LDAPMemberDn=Dolibarr Mitglieder DN
-LDAPMemberDnExample=Complete DN (ex: ou=members,dc=society,dc=Vollständige DN (zB: ou=users,dc=society,dc=com)
+LDAPMemberDnExample=Vollständige DN (zB: ou=members,dc=example,dc=com)
 LDAPMemberObjectClassList=Liste der objectClass
 LDAPMemberObjectClassListExample=Liste der objectClass-definierenden Eintragsattribute (z.B.: top,inetOrgPerson oder top,user für ActiveDirectory)
 LDAPUserObjectClassList=Liste der objectClass
@@ -1302,8 +1305,8 @@ LDAPMemberTypeDnExample=Vollständige DN (zB: ou=users,dc=society,dc=com)
 LDAPTestConnect=LDAP-Verbindung testen
 LDAPTestSynchroContact=Kontaktsynchronisation testen
 LDAPTestSynchroUser=Benutzersynchronisation testen
-LDAPTestSynchroGroup=Gruppenynchronisation testen
-LDAPTestSynchroMember=Mitgliederynchronisation testen
+LDAPTestSynchroGroup=Gruppensynchronisation testen
+LDAPTestSynchroMember=Mitgliedersynchronisation testen
 LDAPTestSearch= LDAP-Suche testen
 LDAPSynchroOK=Synchronisationstest erfolgreich
 LDAPSynchroKO=Synchronisationstest fehlgeschlagen
@@ -1353,7 +1356,7 @@ LDAPFieldAddressExample=Beispiel : Straße
 LDAPFieldZip=PLZ
 LDAPFieldZipExample=Beispiel : plz
 LDAPFieldTown=Stadt
-LDAPFieldTownExample=Beispiel: stadt
+LDAPFieldTownExample=Beispiel: l
 LDAPFieldCountry=Land
 LDAPFieldCountryExample=Beispiel: land
 LDAPFieldDescription=Beschreibung
@@ -1363,7 +1366,7 @@ LDAPFieldNotePublicExample=Beispiel : Beschreibung
 LDAPFieldGroupMembers= Gruppenmitglieder
 LDAPFieldGroupMembersExample= Beispiel: uniqueMember
 LDAPFieldBirthdate=Geburtsdatum
-LDAPFieldBirthdateExample=Beispiel : geburtsdatum
+LDAPFieldBirthdateExample=Beispiel:
 LDAPFieldCompany=Firma
 LDAPFieldCompanyExample=Beispiel: firma
 LDAPFieldSid=SID
@@ -1378,15 +1381,15 @@ LDAPDescContact=Auf dieser Seite definieren Sie die LDAP-Attribute im LDAP-Baum
 LDAPDescUsers=Auf dieser Seite definieren Sie die LDAP-Attribute im LDAP-Baum für jeden Datensatz zu dolibarr-Benutzern.
 LDAPDescGroups=Auf dieser Seite definieren Sie die LDAP-Attribute im LDAP-Baum für jeden Datensatz zu dolibarr-Gruppen.
 LDAPDescMembers=Auf dieser Seite definieren Sie die LDAP-Attribute im LDAP-Baum für jeden Datensatz zu dolibarr-Mitgliedern.
-LDAPDescValues=Die Beispielwerte für <b>OpenLDAP</b> verfügen über folgende Muster: <b>core.schema, cosine.schema, inetorgperson.schema</b>. Wenn Sie diese Werte für OpenLDAP verwenden möchten, passen Sie bitte die LDAP-Konfigurationsdateu <b>slapd.conf</b> entsprechend an, damit all diese Muster geladen werden.
+LDAPDescValues=Die Beispielwerte für <b>OpenLDAP</b> verfügen über folgende Muster: <b>core.schema, cosine.schema, inetorgperson.schema</b>. Wenn Sie diese Werte für OpenLDAP verwenden möchten, passen Sie bitte die LDAP-Konfigurationsdatei <b>slapd.conf</b> entsprechend an, damit all diese Muster geladen werden.
 ForANonAnonymousAccess=Für einen authentifizierten Zugang (z.B. für Schreibzugriff)
 PerfDolibarr=Leistungs-Einstellungen/Optimierungsreport
 YouMayFindPerfAdviceHere=Auf dieser Seite finden Sie einige Überprüfungen oder Hinweise zur Leistung.
 NotInstalled=Nicht installiert, Ihr Server wird dadurch nicht verlangsamt.
-ApplicativeCache=Applicative Cache
-MemcachedNotAvailable=Kein Cache Anwendung gefunden. \nSie können die Leistung durch die Installation des Cache-Server Memcached und die Aktivierung des Anwendungs Cache Modul\n<br>hier mehr Informationen <a href="http://wiki.dolibarr.org/index.php/Module_MemCached_EN">http://wiki.dolibarr.org/index.php/Module_MemCached_EN</a>.<br>\nverbessern.\nBeachten Sie, dass viele Billig-Provider keine solche Cache-Server in ihrer Infrastruktur anbieten.
-MemcachedModuleAvailableButNotSetup=Module memcached für applicative Cache gefunden, aber Setup-Modul ist nicht vollständig.
-MemcachedAvailableAndSetup=Module memcached dedicated to use memcached server is enabled..
+ApplicativeCache=geeigneter Cache
+MemcachedNotAvailable=Kein Cache Anwendung gefunden. \nSie können die Leistung durch die Installation des Cache-Server Memcached und die Aktivierung des Moduls Anwendungscache<br>hier mehr Informationen <a href="http://wiki.dolibarr.org/index.php/Module_MemCached_EN">http://wiki.dolibarr.org/index.php/Module_MemCached_EN</a>.<br>\nverbessern.\nBeachten Sie, dass viele Billig-Provider keine solche Cache-Server in ihrer Infrastruktur anbieten.
+MemcachedModuleAvailableButNotSetup=Module memcached für geeigneten Cache gefunden, aber Setup-Modul ist nicht vollständig.
+MemcachedAvailableAndSetup=Modul memcached zur Benutzung eines memcached Servers ist aktiviert.
 OPCodeCache=OPCode Cache
 NoOPCodeCacheFound=Kein OPCode Cache gefunden.Vielleicht sind Sie mit einem anderen  OPCode Cache wie XCache oder eAccelerator (gut), vielleicht haben Sie keinen OPCode Cache (sehr schlecht) .
 HTTPCacheStaticResources=HTTP Cache für statische Ressourcen (CSS, img, Javascript)
@@ -1427,10 +1430,10 @@ SyslogLevel=Level
 SyslogSimpleFile=Datei
 SyslogFilename=Dateiname und-pfad
 YouCanUseDOL_DATA_ROOT=Sie können DOL_DATA_ROOT/dolibarr.log als Protokolldatei in Ihrem Dokumentenverzeichnis verwenden. Bei Bedarf können Sie auch den Pfad der Datei anpassen.
-ErrorUnknownSyslogConstant=Konstante %s ist nicht als Protkoll-Konstante definiert
+ErrorUnknownSyslogConstant=Konstante %s ist nicht als Protokoll-Konstante definiert
 OnlyWindowsLOG_USER=Windows unterstützt nur LOG_USER
 SyslogSentryDSN=Sentry DSN
-SyslogSentryFromProject=DSN from your Sentry project
+SyslogSentryFromProject=DSN Ihres Sentry Projekts
 ##### Donations #####
 DonationsSetup=Spendenmoduleinstellungen
 DonationsReceiptModel=Vorlage für Spendenquittungen
@@ -1475,7 +1478,7 @@ SendingsSetup=Versandmoduleinstellungen
 SendingsReceiptModel=Versandbelegsvorlage
 SendingsNumberingModules=Nummerierungsmodell Auslieferungen
 SendingsAbility=Unterstützung von Versand-Dokumenten für Kundenlieferungen
-NoNeedForDeliveryReceipts=In den meisten Fällen werden Lieferschein sowohl als Versand- (für die Zusammenstellung der Auslieferung), als auch als Zustellsscheine (vom Kunden zu unterschreiben) verwendet. Entsprechend sind Empfangsbelege meist eine doppelte und daher nicht verwendete Option.
+NoNeedForDeliveryReceipts=In den meisten Fällen werden Lieferschein sowohl als Versand- (für die Zusammenstellung der Auslieferung), als auch als Zustellscheine (vom Kunden zu unterschreiben) verwendet. Entsprechend sind Empfangsbelege meist eine doppelte und daher nicht verwendete Option.
 FreeLegalTextOnShippings=Freier Text auf Lieferungen
 ##### Deliveries #####
 DeliveryOrderNumberingModules=Zustellscheinnumerierungs-Module
@@ -1515,13 +1518,13 @@ DetailId=Menü ID
 DetailMenuHandler=Menü-Handler für die Anzeige des neuen Menüs
 DetailMenuModule=Modulname falls Menüeintrag aus einem Modul stimmt
 DetailType=Art des Menüs (Top oder Links)
-DetailTitre=Menübezeichner oder Bezeichnungs-Code für Übersetzung
+DetailTitre=Menü Label oder Label für Übersetzung
 DetailMainmenu=Gruppe der Zugehörigkeit (veraltet)
 DetailUrl=Ziel-URL für Menüeintrag (Absolute URL oder externer Link mit http://)
 DetailLeftmenu=Zustand anzeigen oder nicht (veraltet)
 DetailEnabled=Einstellungen für die Anzeige der Einträge
 DetailRight=Zustand für die Anzeige nicht-authorisierter, grauer Menüs
-DetailLangs=Sprachdateiname für Bezeichnungsübersetzung
+DetailLangs=Sprachdateiname für Label Übersetzung
 DetailUser=Intern/Extern/Alle
 Target=Ziel
 DetailTarget=Linkziel (_blank und top öffnen ein neues Fenster)
@@ -1529,15 +1532,15 @@ DetailLevel=Level (-1:top menu, 0:header menu, >0 menu and sub menu)
 ModifMenu=Menü bearbeiten
 DeleteMenu=Menüeintrag löschen
 ConfirmDeleteMenu=Möchten Sie diesen Menüeintrag <b>%s</b> wirklich löschen?
-FailedToInitializeMenu=Failed to initialize menu
+FailedToInitializeMenu=Menü konnte nicht erstellt werden
 ##### Tax #####
 TaxSetup=Steuer-, Sozialabgaben- und Dividendenmodul-Einstellungen
-OptionVatMode=MwSt. fällig
+OptionVatMode=USt. fällig
 OptionVATDefault=Barbestandsbasis
 OptionVATDebitOption=Rückstellungsbasis
 OptionVatDefaultDesc=Mehrwertsteuerschuld entsteht: <br>- Bei Lieferung/Zahlung für Waren<br>- Bei Zahlung für Leistungen
 OptionVatDebitOptionDesc=Mehrwertsteuerschuld entsteht: <br>- Bei Lieferung/Zahlung für Waren<br>- Bei Rechnungslegung (Lastschrift) für Dienstleistungen
-SummaryOfVatExigibilityUsedByDefault=Standardmäßiger Zeitpunkt der MwSt.-Fälligkeit in Abhängigkeit zur derzeit gewählten Option:
+SummaryOfVatExigibilityUsedByDefault=Standardmäßiger Zeitpunkt der USt.-Fälligkeit in Abhängigkeit zur derzeit gewählten Option:
 OnDelivery=Bei Lieferung
 OnPayment=Bei Zahlung
 OnInvoice=Bei Rechnungslegung
@@ -1546,7 +1549,7 @@ SupposedToBeInvoiceDate=Rechnungsdatum verwendet
 Buy=Kaufen
 Sell=Verkaufen
 InvoiceDateUsed=Rechnungsdatum verwendet
-YourCompanyDoesNotUseVAT=Für Ihr Unternehmen wurde keine MwSt.-Verwendung definiert (Start-Einstellungen-Unternehmen/Stiftung), entsprechend stehen in der Konfiguration keine MwSt.-Optionen zur Verfügung.
+YourCompanyDoesNotUseVAT=Für Ihr Unternehmen wurde keine USt.-Verwendung definiert (Start-Einstellungen-Unternehmen/Stiftung), entsprechend stehen in der Konfiguration keine USt.-Optionen zur Verfügung.
 AccountancyCode=Kontierungs-Code
 AccountancyCodeSell=Verkaufskonto-Code
 AccountancyCodeBuy=Einkaufskonto-Code
@@ -1554,15 +1557,15 @@ AccountancyCodeBuy=Einkaufskonto-Code
 AgendaSetup=Aufgaben/Termine-Modul Einstellungen
 PasswordTogetVCalExport=Passwort für den VCal-Export
 PastDelayVCalExport=Keine Termine exportieren die älter sind als
-AGENDA_USE_EVENT_TYPE=Verwenden der Termintypen \nEinstellen unter (Start -> Einstellungen -> Wörterbücher -> Ereignistypen) 
+AGENDA_USE_EVENT_TYPE=Verwenden der Termintypen \nEinstellen unter (Start -> Einstellungen -> Stammdaten -> Ereignistypen) 
 AGENDA_USE_EVENT_TYPE_DEFAULT=Diesen Standardwert automatisch als Ereignistyp im  Ereignis Erstell-Formular verwenden.
 AGENDA_DEFAULT_FILTER_TYPE=Diesen Ereignistyp automatisch in den Suchfilter für die Agenda-Ansicht übernehmen
 AGENDA_DEFAULT_FILTER_STATUS=Diesen Ereignisstatus automatisch in den Suchfilter für die Agenda-Ansicht übernehmen
 AGENDA_DEFAULT_VIEW=Welchen Reiter möchten Sie beim Öffnen der Agenda automatisch anzeigen
 ##### ClickToDial #####
-ClickToDialDesc=This module allows to make phone numbers clickable. A click on this icon will call make your phone to call the phone number. This can be used to call a call center system from Dolibarr that can call the phone number on a SIP system for example.
-ClickToDialUseTelLink=Use just a link "tel:" on phone numbers
-ClickToDialUseTelLinkDesc=Use this method if your users have a softphone or a software interface installed on same computer than the browser, and called when you click on a link in your browser that start with "tel:". If you need a full server solution (no need of local software installation), you must set this to "No" and fill next field.
+ClickToDialDesc=Dieses Modul fügt ein Symbol nach Telefonnummern ein. Durch einen Klick auf dieses Symbol kann Dolibarr z.B. durch ein SIP System eine Telefonanlage anweisen, diese Telefonnummer zu wählen.
+ClickToDialUseTelLink=Nur einen Link "Tel:" bei Telefonnummern verwenden
+ClickToDialUseTelLinkDesc=Benutzen Sie diese Methode, wenn Ihre Benutzer ein Software-Telefon oder ein Interface für ein Telefon auf demselben Computer wie der Browser installiert haben. Dieses Telefon/Interface wird aufgerufen, wenn Sie auf einen Link klicken, der mit "tel:" beginnt. Wenn Sie eine vollständige Server-Lösung nutzen wollen (ohne lokale Software-Installation), wählen Sie hier "Nein" und füllen das nächste Feld.
 ##### Point Of Sales (CashDesk) #####
 CashDesk=Point of Sales
 CashDeskSetup=Kassenmoduleinstellungen
@@ -1572,7 +1575,7 @@ CashDeskBankAccountForCheque= Finanzkonto für Scheckeinlösungen
 CashDeskBankAccountForCB= Finanzkonto für die Einlösung von Bargeldzahlungen via Kreditkarte
 CashDeskDoNotDecreaseStock=Deaktiviere Lagerabgangsbuchung wenn ein Verkauf auf einem Point of Sale durchgeführt wird\n (wenn "Nein", wird die Lagerabgangsbuchung immer durchgeführt , auch wann im Modul Produktbestandsverwaltung was anderes ausgewählt wurde).
 CashDeskIdWareHouse=Lager für Entnahmen festlegen und und erzwingen
-StockDecreaseForPointOfSaleDisabled=Lagerrückgang bei Verwendung von Point of Sale deaktivert
+StockDecreaseForPointOfSaleDisabled=Lagerrückgang bei Verwendung von Point of Sale deaktiviert
 StockDecreaseForPointOfSaleDisabledbyBatch=Lagerrückgang in POS-Modul ist noch nicht mit dem Chargen- /Seriennummern Management kompatibel.
 CashDeskYouDidNotDisableStockDecease=Sie haben die Reduzierung der Lagerbestände nicht deaktiviert, wenn Sie einen Verkauf auf dem  POS durchführen.\nAuch ist ein Lager/Standort notwendig.
 ##### Bookmark #####
@@ -1588,7 +1591,7 @@ EndPointIs=SOAP-Clients müssen Ihre Anfragen an den dolibarr-Endpoint unter der
 ApiSetup=API-Modul-Setup
 ApiDesc=Wenn dieses Modul aktiviert ist, wird Dolibarr zum REST Server für diverse web services.
 KeyForApiAccess=Schlüssel um das API zu nutzen (Parameter "api_key")
-ApiProductionMode=Enable production mode (this will activate use of a caches for services management)
+ApiProductionMode=Echtbetrieb aktivieren (dadurch wird ein Cache für Service-Management aktiviert)
 ApiEndPointIs=Sie können das API mit dieser URL verwenden
 ApiExporerIs=Sie können das API unter dieser URL erkunden
 OnlyActiveElementsAreExposed=Nur Elemente aus aktiven Modulen sind ungeschützt
@@ -1602,7 +1605,7 @@ BankOrderGlobalDesc=Allgemeine Anzeige-Reihenfolge
 BankOrderES=Spanisch
 BankOrderESDesc=Spanisch Anzeigereihenfolge
 ##### Multicompany #####
-MultiCompanySetup=Multi-Company-Moduleinstellungen
+MultiCompanySetup=Einstellungen des Modul Mandanten
 ##### Suppliers #####
 SuppliersSetup=Lieferantenmoduleinstellungen
 SuppliersCommandModel=Vollständige Vorlage für Lieferantenbestellungen (Logo, ...)
@@ -1620,7 +1623,7 @@ TestGeoIPResult=Test einer Umwandlung IP -> Land
 ProjectsNumberingModules=Projektnumerierungsmodul
 ProjectsSetup=Projekteinstellungenmodul
 ProjectsModelModule=Projektvorlagenmodul
-TasksNumberingModules=Aufgaben-Nummerierungs-Modul
+TasksNumberingModules=Modul zur Numerierung von Aufgaben
 TaskModelModule=Vorlage für Arbeitsberichte
 UseSearchToSelectProject=Feld mit Autovervollständigung zur Projektwahl verwenden (Anstelle einer Listbox)
 ##### ECM (GED) #####
@@ -1649,7 +1652,7 @@ Format=Format
 TypePaymentDesc=0:Kunden-Zahlungs-Typ, 1:Lieferanten-Zahlungs-Typ, 2:Sowohl Kunden- als auch Lieferanten-Zahlungs-Typ
 IncludePath=Include-Pfad (in Variable '%s' definiert)
 ExpenseReportsSetup=Einstellungen des Moduls Spesenabrechnung
-TemplatePDFExpenseReports=Dokumentvorlagen zur Spesenabrechnung Dokument erstellen
+TemplatePDFExpenseReports=Dokumentvorlagen zur Erstellung einer Spesenabrechnung
 NoModueToManageStockDecrease=Kein Modul zur automatische Bestandsverkleinerung ist aktiviert. Lager Bestandsverkleinerung kann nur durch manuelle Eingabe erfolgen.
 NoModueToManageStockIncrease=Kein Modul zur automatische Bestandserhöhung ist aktiviert. Lager Bestandserhöhung kann nur durch manuelle Eingabe erfolgen.
 YouMayFindNotificationsFeaturesIntoModuleNotification=Sie können Optionen für E-Mail-Benachrichtigungen von Aktivierung und Konfiguration des Moduls "Benachrichtigung" finden.
@@ -1661,10 +1664,11 @@ BackupDumpWizard=Assistenten zum erstellen der Datenbank-Backup Dump-Datei
 SomethingMakeInstallFromWebNotPossible=Die Installation von dem externen Modul ist aus folgenden Gründen vom Web-Interface nicht möglich:
 SomethingMakeInstallFromWebNotPossible2=Aus diesem Grund wird die Prozess hier beschriebenen Upgrade ist nur manuelle Schritte ein privilegierter Benutzer tun kann.
 InstallModuleFromWebHasBeenDisabledByFile=Installieren von externen Modul aus der Anwendung wurde von Ihrem Administrator deaktiviert. \nSie müssen ihn bitten, die Datei<strong>%s</strong> zu entfernen, um diese Funktion zu ermöglichen.
-ConfFileMuseContainCustom=Installation eines externen Modul aus der Anwendung speichern Sie die Modul-Dateien in Verzeichnis <strong>%s</strong>. Zu haben dieses Verzeichnis durch Dolibarr verarbeitet, müssen Sie das Setup Ihrer <strong>conf/conf.php</strong> Option haben <br> - - <strong>$dolibarr_main_url_root_alt</strong> auf <<strong>$dolibarr_main_url_root_alt="/custom"</strong> enabled <strong>= "/custom"</strong> <br> - <strong>$dolibarr_main_document_root_alt</strong>  zu Wert aktiviert <strong>"%s/custom"</strong>
+ConfFileMuseContainCustom=Zur Installation eines externen Modul speichern Sie die Modul-Dateien in Verzeichnis <strong>%s</strong>. Damit Dolibarr dieses Verzeichnis verarbeitet, müssen Sie in der Datei <strong>conf/conf.php</strong> die Option<br> - - <strong>$dolibarr_main_url_root_alt</strong> mit dem Wert <strong>$dolibarr_main_url_root_alt="/custom"</strong> aktivieren.<br>- <strong>$dolibarr_main_document_root_alt</strong>  mit dem Wert <strong>"%s/custom"</strong> aktivieren.
 HighlightLinesOnMouseHover=Zeilen hervorheben bei Mouseover
-HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
-LinkColor=Color of links
+HighlightLinesColor=Farbe der Zeile hervorheben, wenn die Maus darüberfährt (leer lassen, um den Effekt zu deaktivieren)
+TextTitleColor=Color of page title
+LinkColor=Farbe für Hyperlinks
 PressF5AfterChangingThis=Drücken Sie F5 auf der Tastatur, nachdem dem Sie diesen Wert geändert haben, damit die Änderungen wirksam ist
 NotSupportedByAllThemes=Funktioniert mit dem eldy Theme, ist aber nicht in allen Themen unterstützt
 BackgroundColor=Hintergrundfarbe
@@ -1674,12 +1678,12 @@ BackgroundTableTitleColor=Hintergrundfarbe für Titelzeilen in Tabellen
 BackgroundTableLineOddColor=Hintergrundfarbe für ungerade Tabellenzeilen
 BackgroundTableLineEvenColor=Hintergrundfarbe für gerade Tabellenzeilen
 MinimumNoticePeriod=Kündigungsfrist (Ihre Kündigung muss vor dieser Zeit erfolgen)
-NbAddedAutomatically=Anzahl Tage die den Benutzern jeden Monat automatisch dazuaddiert werden
+NbAddedAutomatically=Anzahl Tage die den Benutzern jeden Monat (automatisch) hinzuaddiert werden
 EnterAnyCode=Dieses Feld enthält eine Referenz um die Zeile zu identifizieren. Geben Sie einen beliebigen Wert ohne Sonderzeichen ein.
 UnicodeCurrency=Fügen sie zwischen den eckigen Klammern die Unicode Zeichenwerte für das Währungssymbol ein. Beispiele: Für $ den Wert [36], für brasilianische Real R$ [82,36], für € den Wert [8364]
 PositionIntoComboList=Zeilenposition in der Combo-Listen
 SellTaxRate=Mehrwertsteuersatz
-RecuperableOnly=Ja für MwSt. "Wahrgenommene nicht Erstattungsfähig" für einige Regionen in Frankreich. Nein für alle anderen Fälle.
+RecuperableOnly=Ja für USt. "Wahrgenommene nicht Erstattungsfähig" für einige Regionen in Frankreich. Nein für alle anderen Fälle.
 UrlTrackingDesc=Falls der Liefer- bzw. Transportdienst eine Website für die Statusüberprüfung anbietet, kann die URL hier angegeben werden. Sie können die Zeichenfolge {TRACKID}  in URL-Parameter verwenden,  damit das System den Wert von Tracking-Nummer des Benutzers in die Lieferkarte ersetzen kann.
 OpportunityPercent=Wenn Sie eine Verkaufschance erfassen, wird ein geschätzter Betrag an einem Projekt / Lead definiert. Entsprechend der Chance kann diese Menge durch diese Rate multipliziert werden, um die Gesamtmenge, die alle ihre Möglichkeiten erzeugen, generieren kann. Ist der Prozentwert (zwischen 0 und 100).
 TemplateForElement=Diese Vorlage gehört zu diesem Element
@@ -1693,15 +1697,15 @@ MailToSendProposal=Um Angebot zu schicken
 MailToSendOrder=Um Kundenauftrag zu schicken
 MailToSendInvoice=Um Kundenrechnung zu schicken
 MailToSendShipment=Um Lieferschein zu schicken
-MailToSendIntervention=Um Interventions zu schicken
+MailToSendIntervention=Um Serviceauftrag zu schicken
 MailToSendSupplierRequestForQuotation=Um Anfrage an den Lieferanten schicken
 MailToSendSupplierOrder=Um Lieferantenbestellung zu schicken
 MailToSendSupplierInvoice=Um Lieferantenrechnung zu schicken
-MailToThirdparty=Um Email von Partner zu schicken
+MailToThirdparty=Um E-Mail von Partner zu schicken
 ByDefaultInList=Standardanzeige als Listenansicht
 YouUseLastStableVersion=Sie verwenden die letzte stabile Version
-TitleExampleForMajorRelease=Example of message you can use to announce this major release (feel free to use it on your web sites)
-TitleExampleForMaintenanceRelease=Example of message you can use to announce this maintenance release (feel free to use it on your web sites)
-ExampleOfNewsMessageForMajorRelease=Dolibarr ERP & CRM %s is available. Version %s is a major release with a lot of new features for both users and developers. You can download it from the download area of http://www.dolibarr.org portal (subdirectory Stable versions). You can read <a href="https://github.com/Dolibarr/dolibarr/blob/develop/ChangeLog">ChangeLog</a> for complete list of changes.
-ExampleOfNewsMessageForMaintenanceRelease=Dolibarr ERP & CRM %s is available. Version %s is a maintenance version, so it contains only fixes of bugs. We recommend everybody using an older version to upgrade to this one. As any maintenance release, no new features, nor data structure change is present into this version. You can download it from the download area of http://www.dolibarr.org portal (subdirectory Stable versions). You can read <a href="https://github.com/Dolibarr/dolibarr/blob/develop/ChangeLog">ChangeLog</a> for complete list of changes.
-MultiPriceRuleDesc=When option "Several level of prices per product/service" is on, you can define different prices (one per price level) for each product. To save you time, you can enter here rule to have price for each level autocalculated according to price of first level, so you will have to enter only price for first level on each product. This page is here to save you time and can be usefull only if your prices for each leve are relative to first level. You can ignore this page in most cases.
+TitleExampleForMajorRelease=Beispielnachricht, die Sie nutzen können, um eine Hauptversion anzukündigen. Sie können diese auf Ihrer Website verwenden.
+TitleExampleForMaintenanceRelease=Beispielnachricht, die Sie nutzen können, um ein Wartungsupdate anzukündigen. Sie können diese auf Ihrer Website verwenden.
+ExampleOfNewsMessageForMajorRelease=Dolibarr ERP & CRM %s ist verfügbar. Version %s ist eine Hauptversion mit vielen neuen Features für Benutzer und Entwickler. Sie können die Version aus dem Downloadbereich des Portals http://www.dolibarr.org laden (Unterverzeichnis stabile Versionen). Lesen Sie die komplette Liste der <a href="https://github.com/Dolibarr/dolibarr/blob/develop/ChangeLog">Änderungen</a>.
+ExampleOfNewsMessageForMaintenanceRelease=Dolibarr ERP & CRM %s ist verfügbar. Version %s ist ein Wartungsupdate mit vielen Fehlerbereinigungen. Wir empfehlen jedem auf diese Version zu wechseln. Wie bei jedem Wartungsupdate sind keinen neuen Features oder Änderungen in den Datenstrukturen enthalten. Sie können die Version aus dem Downloadbereich des Portals http://www.dolibarr.org laden (Unterverzeichnis stabile Versionen). Lesen Sie die komplette Liste der <a href="https://github.com/Dolibarr/dolibarr/blob/develop/ChangeLog">Änderungen</a>.
+MultiPriceRuleDesc=Wenn die Option "mehrere Preisebenen pro Artikel/Dienstleistung" aktiviert ist, können Sie verschiedene Preis (einen pro Ebene) für jeden artikel definieren. Um Zeit zu sparen, können Sie eine Regel anlegen, mit der der Preis pro Ebene automatisch anhand des Preise in der ersten Ebene kalkuliert wird, so dass Sie nur einen Preis in der ersten Ebene eingeben müssen. Diese Seite kann Ihnen nur Zeit sparen und nützlich sein, wenn die Preise anderer Ebenen vom Preis der ersten Ebene abhängig sind. Ansonsten können Sie diese Seite ignorieren.
diff --git a/htdocs/langs/de_DE/agenda.lang b/htdocs/langs/de_DE/agenda.lang
index f4072dcbbd8350cdf3b92207e45823427ebebc7b..3898bbcba63f2794f5d28ed39abb67e941f471dd 100644
--- a/htdocs/langs/de_DE/agenda.lang
+++ b/htdocs/langs/de_DE/agenda.lang
@@ -20,9 +20,9 @@ Location=Standort
 EventOnFullDay=Ganztägig
 SearchAnAction= Termin/Aufgabe suchen
 MenuToDoActions=Alle unvollst. Termine
-MenuDoneActions=Alle abgeschl. Termine
+MenuDoneActions=Alle abgeschlossenen Termine
 MenuToDoMyActions=Meine unvollst. Termine
-MenuDoneMyActions=Meine abgeschl. Termine
+MenuDoneMyActions=Meine abgeschlossenen Termine
 ListOfEvents=Liste Ereignisse (interner Kalender)
 ActionsAskedBy=Termine eingetragen von
 ActionsToDoBy=Ereignisse zugewiesen an
@@ -35,10 +35,12 @@ AllActions= Alle Ereignisse
 ViewCal=Kalenderansicht
 ViewDay=Tagesansicht
 ViewWeek=Wochenansicht
+ViewYear=Year view
 ViewPerUser=Benutzeransicht
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Ansicht mit vordefinierten Filtern
 AutoActions= Automatische Befüllung der Tagesordnung
-AgendaAutoActionDesc= Definieren Sie hier Termine zur automatischen Übernahme in den Terminkalender. Ist nichts aktviert (Standardmäßig), umfasst der Terminkalender nur manuell eingetragene Termine.
+AgendaAutoActionDesc= Definieren Sie hier Termine zur automatischen Übernahme in den Terminkalender. Ist nichts aktiviert (Standardmäßig), umfasst der Terminkalender nur manuell eingetragene Termine.
 AgendaSetupOtherDesc= Diese Seite ermöglicht die Konfiguration anderer Parameter des Tagesordnungsmoduls.
 AgendaExtSitesDesc=Diese Seite erlaubt Ihnen externe Kalender zu konfigurieren.
 ActionsEvents=Veranstaltungen zur automatischen Übernahme in die Agenda
@@ -49,7 +51,7 @@ InvoiceBackToDraftInDolibarr=Rechnung %s in den Entwurf Status zurücksetzen
 InvoiceDeleteDolibarr=Rechnung %s gelöscht
 OrderValidatedInDolibarr=Auftrag %s freigegeben
 OrderDeliveredInDolibarr=Bestellung %s als geliefert markieren
-OrderCanceledInDolibarr=Auftrag storniert %s
+OrderCanceledInDolibarr=Auftrag %s storniert
 OrderBilledInDolibarr=Bestellung %s als bezahlt markieren
 OrderApprovedInDolibarr=Bestellen %s genehmigt
 OrderRefusedInDolibarr=Bestellung %s abgelehnt
@@ -59,9 +61,9 @@ OrderSentByEMail=Kundenauftrag %s per E-Mail versendet
 InvoiceSentByEMail=Kundenrechnung %s per E-Mail versendet
 SupplierOrderSentByEMail=Lieferantenbestellung %s per E-Mail versendet
 SupplierInvoiceSentByEMail=Lieferantenrechnung %s per E-Mail versendet
-ShippingSentByEMail=Lieferung %s per Email versendet
+ShippingSentByEMail=Lieferung %s per E-Mail versendet
 ShippingValidated= Lieferung %s freigegeben
-InterventionSentByEMail=Intervention %s gesendet via E-Mail
+InterventionSentByEMail=Serviceauftrag %s gesendet via E-Mail
 NewCompanyToDolibarr= Partner erstellt
 DateActionPlannedStart= Geplantes Startdatum
 DateActionPlannedEnd= Geplantes Enddatum
@@ -95,7 +97,7 @@ VisibleDaysRange=Sichtbare Tage Bereich
 AddEvent=Ereignis erstellen
 MyAvailability=Meine Verfügbarkeit
 ActionType=Ereignistyp
-DateActionBegin=Beginnzeit des Ereignis
+DateActionBegin=Startzeit des Ereignis
 CloneAction=Dupliziere Ereignis
 ConfirmCloneEvent=Möchten Sie dieses Ereignis <b>%s</b> wirklich duplizieren?
 RepeatEvent=Wiederhole Ereignis
@@ -103,4 +105,4 @@ EveryWeek=Jede Woche
 EveryMonth=Jeden Monat
 DayOfMonth=Tag des Monat
 DayOfWeek=Tag der Woche
-DateStartPlusOne=Anfangsdatum + 1 Stunde
+DateStartPlusOne=Startdatum + 1 Stunde
diff --git a/htdocs/langs/de_DE/banks.lang b/htdocs/langs/de_DE/banks.lang
index 8c65b68d05877bc96d44e1df17e930ff51dc48c2..0868b5b0d562d2a00ecd06ccf557518b1c86e244 100644
--- a/htdocs/langs/de_DE/banks.lang
+++ b/htdocs/langs/de_DE/banks.lang
@@ -89,7 +89,7 @@ SearchTransaction=Transaktion suchen
 ListTransactions=Transaktionsliste
 ListTransactionsByCategory=Transaktionen/Kategorie
 TransactionsToConciliate=Auszugleichende Transaktionen
-Conciliable=Ausgleichsfähig
+Conciliable=kann ausgeglichen werden
 Conciliate=Ausgleichen
 Conciliation=Ausgleich
 ConciliationForAccount=Dieses Konto ausgleichen
@@ -123,7 +123,7 @@ TransferTo=An
 TransferFromToDone=Eine Überweisung <b>von %s nach %s iHv %s %s</b> wurde verbucht.
 CheckTransmitter=Übermittler
 ValidateCheckReceipt=Scheck annehmen?
-ConfirmValidateCheckReceipt=Scheck wirklich annehmen? Eine Änderung ist anschliessend nicht mehr möglich.
+ConfirmValidateCheckReceipt=Scheck wirklich annehmen? Eine Änderung ist anschließend nicht mehr möglich.
 DeleteCheckReceipt=Scheck löschen
 ConfirmDeleteCheckReceipt=Möchten Sie diesen Scheck wirklich löschen?
 BankChecks=Bankschecks
@@ -157,13 +157,13 @@ EventualyAddCategory=Wenn möglich Kategorie angeben, worin die Daten eingeordne
 ToConciliate=Konsolidieren?
 ThenCheckLinesAndConciliate=Dann die Zeilen im Bankauszug prüfen und Klicken
 BankDashboard=Bankkonten Zusammenfassung
-DefaultRIB=Standart Bankkonto-Nummer
+DefaultRIB=Standard Bankkonto-Nummer
 AllRIB=Alle Bankkonto-Nummern
 LabelRIB=Bankkonto Bezeichnung
 NoBANRecord=Keine Bankkonto-Nummern Einträge
 DeleteARib=Lösche Bankkonto-Nummern Eintrag
 ConfirmDeleteRib=Möchten Sie diesen Bankkonto-Nummern Eintrag wirklich löschen?
-StartDate=Anfangsdatum
+StartDate=Startdatum
 EndDate=Enddatum
 RejectCheck=Überprüfung zurückgewiesen
 ConfirmRejectCheck=Wollen sie diesen Check wirklich als zurückgewiesen Kennzeichnen?
diff --git a/htdocs/langs/de_DE/bills.lang b/htdocs/langs/de_DE/bills.lang
index 44dfc22e0e918c94989709e4e227de7a87cfd65a..19b6f8e0a26b83c3e9ae45e2092a1b12b475ecc1 100644
--- a/htdocs/langs/de_DE/bills.lang
+++ b/htdocs/langs/de_DE/bills.lang
@@ -35,7 +35,7 @@ ReplacementInvoice=Ersatzrechnung
 ReplacedByInvoice=Ersetzt durch Rechnung %s
 ReplacementByInvoice=Ersetzt durch Rechnung
 CorrectInvoice=Korrigiere Rechnung %s
-CorrectionInvoice=Rechungskorrektur
+CorrectionInvoice=Rechnungskorrektur
 UsedByInvoice=Zur Bezahlung der Rechnung %s
 ConsumedBy=Verbraucht von
 NotConsumed=Nicht verbrauchte
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Bereits getätigte Zahlungen
 PaymentsBackAlreadyDone=Rückzahlungen bereits erledigt
 PaymentRule=Zahlungsregel
 PaymentMode=Zahlungsart
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Zahlungsart
 PaymentTerm=Zahlungskonditionen
 PaymentConditions=Zahlungsbedingungen
@@ -94,7 +96,7 @@ AddToDraftInvoices=Zu Rechnungsentwurf hinzufügen
 DeleteBill=Lösche Rechnung
 SearchACustomerInvoice=Kundenrechnung suchen
 SearchASupplierInvoice=Lieferantenrechnung suchen
-CancelBill=Rechnung aufgeben
+CancelBill=Rechnung stornieren
 SendRemindByMail=Zahlungserinnerung per E-Mail versenden
 DoPayment=Zahlung tätigen
 DoPaymentBack=Rückzahlung tätigen
@@ -151,12 +153,12 @@ ConfirmDeleteBill=Möchten Sie diese Rechnung wirklich löschen?
 ConfirmValidateBill=Möchten Sie die Rechnung Nr. <b>%s</b> wirklich freigeben?
 ConfirmUnvalidateBill=Sind Sie sicher, dass Sie die Rechnung <b>%s</b> wieder in den Entwurfstatus ändern möchten?
 ConfirmClassifyPaidBill=Sind Sie sicher, dass Sie ändern möchten <b>Rechnung %s,</b> um den Status bezahlt?
-ConfirmCancelBill=Möchten Sie die Rechnung <b>%s</b> wirklich aufgeben?
+ConfirmCancelBill=Möchten Sie die Rechnung <b>%s</b> wirklich stornieren?
 ConfirmCancelBillQuestion=Warum möchten Sie diese Rechnung als "aufgegeben" klassifizieren?
 ConfirmClassifyPaidPartially=Möchten Sie die Rechnung <b>%s</b> wirklich als 'teilweise bezahlt' markieren?
 ConfirmClassifyPaidPartiallyQuestion=Diese Rechnung wurde nicht vollständig bezahlt. Was sind Gründe für das Schließen dieser Rechnung?
-ConfirmClassifyPaidPartiallyReasonAvoir=Der offene Zahlbetrag <b>( %s %s)</b> resultiert aus einem gewährten Skonto. Zur Korrektur der MwSt. wird eine Gutschrift angelegt.
-ConfirmClassifyPaidPartiallyReasonDiscountNoVat=Der offene Zahlbetrag <b>( %s %s)</b> resultiert aus einem gewährten Skonto. Ich akzeptiere den Verlust der MwSt. aus diesem Rabatt.
+ConfirmClassifyPaidPartiallyReasonAvoir=Der offene Zahlbetrag <b>( %s %s)</b> resultiert aus einem gewährten Skonto. Zur Korrektur der USt. wird eine Gutschrift angelegt.
+ConfirmClassifyPaidPartiallyReasonDiscountNoVat=Der offene Zahlbetrag <b>( %s %s)</b> resultiert aus einem gewährten Skonto. Ich akzeptiere den Verlust der USt. aus diesem Rabatt.
 ConfirmClassifyPaidPartiallyReasonDiscountVat=Der offene Zahlbetrag <b>( %s %s)</b> resultiert aus einem gewährten Skonto. Die Mehrwertsteuer aus diesem Rabatt wird ohne Gutschrift wieder hergestellt.
 ConfirmClassifyPaidPartiallyReasonBadCustomer=Kundenverschulden
 ConfirmClassifyPaidPartiallyReasonProductReturned=Produkte teilweise retourniert
@@ -184,6 +186,7 @@ ShowInvoice=Zeige Rechnung
 ShowInvoiceReplace=Zeige Ersatzrechnung
 ShowInvoiceAvoir=Zeige Gutschrift
 ShowInvoiceDeposit=Show Anzahlung Rechnung
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Zeige Zahlung
 AlreadyPaid=Bereits bezahlt
 AlreadyPaidBack=Bereits zurückbezahlt
@@ -221,6 +224,7 @@ NonPercuRecuperable=Nicht erstattungsfähig
 SetConditions=Zahlungskonditionen einstellen
 SetMode=Definiere Zahlungsart
 Billed=In Rechnung gestellt
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Rechnungs-Vorlage
 RepeatableInvoices=Rechnungs-Vorlagen
 Repeatable=Vorlage
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Dieser Betrag wurde aufgegeben (Kundenverschulden) ist al
 HelpAbandonOther=Dieser Betrag wurde auf Grund eines Fehlers aufgegeben (falsche Rechnung oder an falschen Kunden)
 IdSocialContribution=Sozialabgaben/Unternehmenssteuer Zahlungs-ID
 PaymentId=Zahlung id
+PaymentRef=Payment ref.
 InvoiceId=Rechnungs ID
 InvoiceRef=Rechnungs Nr.
 InvoiceDateCreation=Datum der Rechnungserstellung
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Ähnliche Lieferantenrechnungen
 LatestRelatedBill=Letzte ähnliche Rechnung
 WarningBillExist=Achtung, es existiert bereits mindestens eine Rechnung
 MergingPDFTool=PDF zusammenführen
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Prompt
@@ -328,7 +337,7 @@ PaymentTypeShortCB=Kreditkarte
 PaymentTypeCHQ=Scheck
 PaymentTypeShortCHQ=Scheck
 PaymentTypeTIP=Interbank Zahlung
-PaymentTypeShortTIP=Interbank
+PaymentTypeShortTIP=Interbank Zahlung
 PaymentTypeVAD=Online-Zahlung
 PaymentTypeShortVAD=Online-Zahlung
 PaymentTypeTRA=Ratenzahlung
@@ -357,12 +366,12 @@ PhoneNumber=Tel
 FullPhoneNumber=Telefon
 TeleFax=Fax
 PrettyLittleSentence=Nehmen Sie die Höhe der Zahlungen, die aufgrund von Schecks, die in meinem Namen als Mitglied eines Accounting Association, die von der Steuerverwaltung.
-IntracommunityVATNumber=Innergemeinschaftliche MwSt-Nummer
+IntracommunityVATNumber=Innergemeinschaftliche USt-Nummer
 PaymentByChequeOrderedTo=Zahlung per Scheck zu zahlen sind, um %s an
 PaymentByChequeOrderedToShort=Zahlung per Scheck zu zahlen sind, um
 SendTo=an
 PaymentByTransferOnThisBankAccount=Zahlung per Überweisung auf folgendes Konto
-VATIsNotUsedForInvoice=* Nicht für MwSt-art-CGI-293B
+VATIsNotUsedForInvoice=* Nicht für USt-art-CGI-293B
 LawApplicationPart1=Durch die Anwendung des Gesetzes 80,335 von 12/05/80
 LawApplicationPart2=Die Ware bleibt Eigentum
 LawApplicationPart3=des Verkäufers bis zur vollständigen Bezahlung 
@@ -393,6 +402,7 @@ Reported=Verzögert
 DisabledBecausePayments=Nicht möglich, da es Zahlungen gibt
 CantRemovePaymentWithOneInvoicePaid=Die Zahlung kann nicht entfernt werden, da es mindestens eine Rechnung gibt, die als bezahlt markiert ist
 ExpectedToPay=Erwartete Zahlung
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=mit dieser Zahlung beglichen
 ClosePaidInvoicesAutomatically=Markiert alle Standard- oder Ersatzrechnungen als "bezahlt", wenn diese vollständig beglichen sind.
 ClosePaidCreditNotesAutomatically=Markiert alle Gutschriften als "bezahlt", wenn diese vollständig beglichen sind.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Bitte beachten: Diese Liste enthält nur Rechnungen
 RevenueStamp=Steuermarke
 YouMustCreateInvoiceFromThird=Diese Option steht nur zur Verfügung, wenn eine Rechnung vom Reiter "Kunde" eines Partners aus erstellt wird
 PDFCrabeDescription=Rechnungs-Modell Crabe. Eine vollständige Rechnung (Empfohlene Vorlage)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Liefert eine Nummer mit dem Format %syymm-nnnn für Standard-Rechnungen und %syymm-nnnn für Gutschriften, wobei yy=Jahr, mm=Monat und nnnn eine lückenlose Folge ohne Überlauf auf 0 ist
 MarsNumRefModelDesc1=Liefere Nummer im Format  %syymm-nnnn für Standardrechnungen %syymm-nnnn für Ersatzrechnung,  %syymm-nnnn für Anzahlungsrechnung und %syymm-nnnn für Gutschriften wobei  yy Jahr, mm Monat und nnnn eine laufende Nummer ohne Unterbrechung und ohne Rückkehr zu 0 ist.
 TerreNumRefModelError=Eine Rechnung, beginnend mit $ syymm existiert bereits und ist nicht kompatibel mit diesem Modell der Reihe. Entfernen oder umbenennen, um dieses Modul.
@@ -422,7 +433,7 @@ InvoiceFirstSituationDesc=Die <b>Situation Rechnungen</b> auf Situationen zu ein
 InvoiceSituation=Situation Rechnung
 InvoiceSituationAsk=Rechnung folgende Situation
 InvoiceSituationDesc=Erstellen Sie eine neue Situation im Anschluss an eine bereits bestehende
-SituationAmount=Situation Rechnungsbetrag (ohne MwSt.)
+SituationAmount=Situation Rechnungsbetrag (ohne USt.)
 SituationDeduction=Situation Subtraktion
 Progress=Fortschritt
 ModifyAllLines=Bearbeite alle Zeilen
@@ -433,3 +444,11 @@ DisabledBecauseFinal=Dieser Status ist endgültig.
 CantBeLessThanMinPercent=Der Fortschritt kann nicht kleiner als sein bisheriger Wert werden.
 NoSituations=Keine offenen Positionen
 InvoiceSituationLast=Allgemeine Endrechnung
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/de_DE/boxes.lang b/htdocs/langs/de_DE/boxes.lang
index 759f51af0ca1703aee0791b7723bc0890f37609d..2409f035b236f3b2ea35b170a2c71f44ff18621e 100644
--- a/htdocs/langs/de_DE/boxes.lang
+++ b/htdocs/langs/de_DE/boxes.lang
@@ -18,7 +18,7 @@ BoxLastActions=Zuletzt bearbeitete Ereignisse
 BoxLastContracts=Zuletzt abgeschlossene Verträge
 BoxLastContacts=Letzte Kontakte/Adressen
 BoxLastMembers=Letzte Mitglieder
-BoxFicheInter=Letzte Einsätze
+BoxFicheInter=Letzte Serviceaufträge
 BoxCurrentAccounts=Saldo offene Konten 
 BoxSalesTurnover=Umsatz
 BoxTotalUnpaidCustomerBills=Summe offener Kundenrechnungen (OP Gesamt)
@@ -44,7 +44,7 @@ BoxTitleLastModifiedSupplierBills=Letzte %s bearbeiteten Lieferantenrechnungen
 BoxTitleLastModifiedProspects=%s zuletzt bearbeitete Leads
 BoxTitleLastProductsInContract=%s zuletzt in Verträgen erfasste Produkte/Leistungen
 BoxTitleLastModifiedMembers=Letzte %s Mitglieder
-BoxTitleLastFicheInter=Neueste %s veränderte Eingriffe
+BoxTitleLastFicheInter=letzten %s veränderte Serviceaufträge
 BoxTitleOldestUnpaidCustomerBills=Älteste %s offene Kundenrechnungen
 BoxTitleOldestUnpaidSupplierBills=Älteste %s offene  Lieferantenrechnungen
 BoxTitleCurrentAccounts=Salden offene Konten
@@ -78,7 +78,7 @@ NoRecordedProducts=Keine erfassten Produkte/Leistungen
 NoRecordedProspects=Keine erfassten Leads
 NoContractedProducts=Keine Produkte/Leistungen im Auftrag
 NoRecordedContracts=Keine Verträge erfasst
-NoRecordedInterventions=Keine verzeichneten Einsätze
+NoRecordedInterventions=Keine verzeichneten Serviceaufträge
 BoxLatestSupplierOrders=Neueste Lieferantenbestellungen
 BoxTitleLatestSupplierOrders=Letzte %s Lieferantenbestellungen
 BoxTitleLatestModifiedSupplierOrders=Letzte %s bearbeiteten Lieferantenbestellungen
@@ -95,3 +95,4 @@ ForCustomersInvoices=Kundenrechnungen
 ForCustomersOrders=Kundenaufträge
 ForProposals=Angebote
 LastXMonthRolling=Die letzten %s Monate gleitend
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/de_DE/cashdesk.lang b/htdocs/langs/de_DE/cashdesk.lang
index f0f7b6c32e101b2f631a4fe95dede4534be83ae1..deb6f40f4b0042c8476ad3a3128e4a39a85483b7 100644
--- a/htdocs/langs/de_DE/cashdesk.lang
+++ b/htdocs/langs/de_DE/cashdesk.lang
@@ -11,12 +11,12 @@ CashdeskShowServices=Verkauf von Dienstleistungen
 CashDeskProducts=Produkte
 CashDeskStock=Lager
 CashDeskOn=An
-CashDeskThirdParty=Dritter
+CashDeskThirdParty=Kunde
 CashdeskDashboard=Zugriff Kasse
-ShoppingCart=Einkaufswagen
-NewSell=Neu zu verkaufen
-BackOffice=Back Office
-AddThisArticle=Hinzufügen dieses Artikels
+ShoppingCart=Warenkorb
+NewSell=Neuer Verkauf
+BackOffice=Dolibarr
+AddThisArticle=In Warenkorb legen
 RestartSelling=zurück zum Verkauf
 SellFinished=Verkauf abgeschlossen
 PrintTicket=Kassenbon drucken
@@ -29,12 +29,13 @@ Article=Artikel
 Difference=Differenz
 TotalTicket=Gesamtanzahl Ticket
 NoVAT=Keine Mehrwertsteuer bei diesem Verkauf
-Change=Überschüss erhalten
+Change=Rückgeld
 CalTip=Klicken um den Kalender anzuzeigen
 CashDeskSetupStock=Der Bestand wird bei der Rechnungserstellung gemindert es wurde jedoch kein Lager dafür definiert. <br>Ändern Sie die Einstellung oder wechseln Sie das Lager.
 BankToPay=Kundenkonto
 ShowCompany=Zeige Unternehmen
 ShowStock=Zeige Lager
 DeleteArticle=Klicken, um diesen Artikel zu entfernen
-FilterRefOrLabelOrBC=Suche (Ref/Label)
+FilterRefOrLabelOrBC=Suche (Art-Nr./Name)
 UserNeedPermissionToEditStockToUsePos=Sie bitten, ab dem Rechnungserstellung zu verringern, so dass Benutzer, die POS verwenden müssen, um die Erlaubnis, Lager zu bearbeiten.
+DolibarrReceiptPrinter=Dolibarr Quittungsdrucker
diff --git a/htdocs/langs/de_DE/categories.lang b/htdocs/langs/de_DE/categories.lang
index 20d39df1385fad67d937f9fb70fae104d79c2389..52fb6fd67a73b4ab86f6ad92ead199636278d224 100644
--- a/htdocs/langs/de_DE/categories.lang
+++ b/htdocs/langs/de_DE/categories.lang
@@ -10,11 +10,11 @@ modify=Ändern
 Classify=Einordnen
 CategoriesArea=#tags/Kategorien - Übersicht
 ProductsCategoriesArea=Produkte/Leistungen Kategorien-Übersicht
-SuppliersCategoriesArea=Lieferantenkategorienübersicht
+SuppliersCategoriesArea=Lieferantenkategorien bzw. Suchwörter Übersicht
 CustomersCategoriesArea=Kundenkategorien bzw. Suchwörter Übersicht
-ThirdPartyCategoriesArea=Partner- Kategorien/#tags
-MembersCategoriesArea=Mitglieder- Kategorien/#tags
-ContactsCategoriesArea=Kontaktkategorien-Übersicht
+ThirdPartyCategoriesArea=Partner-Kategorien/#tags
+MembersCategoriesArea=Mitglieder-Kategorien/#tags
+ContactsCategoriesArea=Kontaktkategorien bzw. Suchwörter Übersicht
 MainCats=Hauptkategorien
 SubCats=Unterkategorien
 CatStatistics=Statistik
@@ -39,12 +39,12 @@ ErrForgotField=Sie haben ein oder mehrere Felder nicht ausgefüllt
 ErrCatAlreadyExists=Dieser Name wird bereits verwendet
 AddProductToCat=Dieses Produkt einer Kategorie zuweisen?
 ImpossibleAddCat=Kategorie erstellen ist nicht möglich
-ImpossibleAssociateCategory=Es ist nicht möglich die Kategorie zuweisen an
+ImpossibleAssociateCategory=Es ist nicht möglich die Kategorie zuzuweisen an
 WasAddedSuccessfully=<b> %s</b> wurde erfolgreich hinzugefügt.
 ObjectAlreadyLinkedToCategory=Element ist bereits mit dieser Kategorie verknüpft.
 CategorySuccessfullyCreated=Kategorie/#tag %s wurde erfolgreich hinzugefügt.
 ProductIsInCategories=Produkt/Leistung ist zu folgenden Kategorien/#tags verknüpft
-SupplierIsInCategories=Der Parter  ist zu folgenden Lieferanten- Kategorien/#tags verknüpft
+SupplierIsInCategories=Der Partner ist zu folgenden Lieferanten- Kategorien/#tags verknüpft
 CompanyIsInCustomersCategories=Dieser Partner ist folgenden Kunden- Kategorien/#tags zugewiesen
 CompanyIsInSuppliersCategories=Dieser Parnter ist folgenden Lieferanten- Kategorien/#tags zugewiesen
 MemberIsInCategories=Dieses Mitglied ist folgenden Mitglieder- Kategorien/#tags zugewiesen
@@ -62,7 +62,7 @@ ReturnInProduct=Zurück zur Produktkarte
 ReturnInSupplier=Zurück zur Anbieterkarte
 ReturnInCompany=Zurück zur Kunden-/Lead-Karte
 ContentsVisibleByAll=Für alle sichtbarer Inhalt
-ContentsVisibleByAllShort=Öffentl. Inhalt
+ContentsVisibleByAllShort=Öffentlicher Inhalt
 ContentsNotVisibleByAllShort=Privater Inhalt
 CategoriesTree=Kategoriebaum
 DeleteCategory=Lösche Kategorie
@@ -71,12 +71,13 @@ RemoveFromCategory=Entferne Link mit Tag/Kategorie
 RemoveFromCategoryConfirm=Soll die Verknüpfung zwischen Transaktion und Tag/Kategorie wirklich entfernt werden?
 NoCategoriesDefined=Keine Kategorie definiert
 SuppliersCategoryShort=Lieferantenkategorien
-CustomersCategoryShort=Kunden- Kategorie/#tag
-ProductsCategoryShort=Produkt- Kategorie/#tag
-MembersCategoryShort=Mitglieds- Kategorie/#tag
-SuppliersCategoriesShort=Lieferantenkategorien/#tags
-CustomersCategoriesShort=Kundenkategorien/#tags
-CustomersProspectsCategoriesShort=Kunden- / Leadkategorien
+CustomersCategoryShort=Kunden-Kategorie/#tag
+ProductsCategoryShort=Produkt-Kategorie/#tag
+MembersCategoryShort=Mitglied-Kategorie/#tag
+SuppliersCategoriesShort=Lieferantenkategorien
+CustomersCategoriesShort=Kunden Tags/Kategorien
+ProspectsCategoriesShort=Prospects tags/categories
+CustomersProspectsCategoriesShort=Kunden-/Leadkategorien
 ProductsCategoriesShort=Produktkategorien
 MembersCategoriesShort=Mitgliederkategorien
 ContactCategoriesShort=Kontaktkategorien
@@ -108,4 +109,4 @@ CategorieRecursiv=Automatisch mit übergeordneter Kategorie verbinden
 CategorieRecursivHelp=Wenn aktiviert, wird das Produkt auch zur übergeordneten Kategorie zugewiesen, wenn es einer Unterkategorie zugewiesen wird
 AddProductServiceIntoCategory=Folgendes Produkt/Service hinzufügen
 ShowCategory=Zeige Kategorie
-ByDefaultInList=in Liste Standardwert
+ByDefaultInList=Standardwert in Liste
diff --git a/htdocs/langs/de_DE/commercial.lang b/htdocs/langs/de_DE/commercial.lang
index ac088eb9dfbeac740e4ddad094f48f9ba503f48a..2873a239268b30198d7f0bedf22f39cebd5f60cb 100644
--- a/htdocs/langs/de_DE/commercial.lang
+++ b/htdocs/langs/de_DE/commercial.lang
@@ -1,7 +1,7 @@
 # Dolibarr language file - Source file is en_US - commercial
 Commercial=Vertrieb
 CommercialArea=Vertriebs - Übersicht
-CommercialCard=Vertriebskarte
+CommercialCard=Vertrieb - Karte
 CustomerArea=Kundenübersicht
 Customer=Kunde
 Customers=Kunden
@@ -37,7 +37,7 @@ ListOfProspects=Leads-Liste
 ListOfCustomers=Kundenliste
 LastDoneTasks=Letzte %s abgeschlossene Aufgaben
 LastRecordedTasks=Letzte Aufgaben
-LastActionsToDo=Letzte %s älteste, nicht erled. Aufgaben/Termine
+LastActionsToDo=Letzte %s älteste, nicht erledigte Aufgaben/Termine
 DoneAndToDoActionsFor=Abgeschlossene und unvollständige Ereignisse für %s
 DoneAndToDoActions=Abgeschlossene und zu unvollständige Ereignisse
 DoneActions=Abgeschlossene Ereignisse
@@ -71,7 +71,7 @@ ActionAC_FAX=Fax versenden
 ActionAC_PROP=Angebot senden
 ActionAC_EMAIL=E-Mail senden
 ActionAC_RDV=Treffen
-ActionAC_INT=Eingriff vor Ort
+ActionAC_INT=Serviceaufträge vor Ort
 ActionAC_FAC=Kundenrechnung senden
 ActionAC_REL=Kundenrechnung senden(Erinnerung)
 ActionAC_CLO=Schließen
diff --git a/htdocs/langs/de_DE/companies.lang b/htdocs/langs/de_DE/companies.lang
index 64c14f619df56cd9caa09b6c05523edad9e801d4..caca577779fe6adb4a3626d018d3bde84cef99dc 100644
--- a/htdocs/langs/de_DE/companies.lang
+++ b/htdocs/langs/de_DE/companies.lang
@@ -30,7 +30,7 @@ ThirdPartyContact=Partnerkontakt
 StatusContactValidated=Status des Kontakts
 Company=Firma
 CompanyName=Firmenname
-AliasNames=Alias-Name (Geschäftsname, Marke, ...)
+AliasNames=Alias (Geschäftsname, Marke, ...)
 AliasNameShort=Alias-Name
 Companies=Unternehmen
 CountryIsInEEC=Land ist innerhalb der EU
@@ -47,7 +47,7 @@ ThirdPartySuppliers=Lieferanten
 ThirdPartyType=Typ des Partners
 Company/Fundation=Firma/Verein
 Individual=Privatperson
-ToCreateContactWithSameName=Legt aus diesen Daten autom. eine Person/Kontakt an
+ToCreateContactWithSameName=Legt aus diesen Daten automatisch eine Person/Kontakt an
 ParentCompany=Muttergesellschaft
 Subsidiary=Tochtergesellschaft
 Subsidiaries=Tochtergesellschaften
@@ -83,15 +83,15 @@ Town=Stadt
 Web=Web
 Poste= Posten
 DefaultLang=Standard-Sprache
-VATIsUsed=MwSt.-pflichtig
-VATIsNotUsed=Nicht MwSt-pflichtig
+VATIsUsed=USt.-pflichtig
+VATIsNotUsed=Nicht USt-pflichtig
 CopyAddressFromSoc=Übernehme die Adresse vom Partner
 NoEmailDefined=Es wurde keine Mailadresse definiert
 ##### Local Taxes #####
-LocalTax1IsUsed=Nutze zweite Steuer
+LocalTax1IsUsed=Nutze zweiten Steuersatz
 LocalTax1IsUsedES= RE wird verwendet
 LocalTax1IsNotUsedES= RE wird nicht verwendet
-LocalTax2IsUsed=Nutze dritte Steuer
+LocalTax2IsUsed=Nutze dritten Steuersatz
 LocalTax2IsUsedES= IRPF wird verwendet
 LocalTax2IsNotUsedES= IRPF wird nicht verwendet
 LocalTax1ES=RE
@@ -100,10 +100,10 @@ TypeLocaltax1ES=RE Typ
 TypeLocaltax2ES=EKSt. Typ
 TypeES=Typ
 ThirdPartyEMail=%s
-WrongCustomerCode=Kunden-Code ungültig
-WrongSupplierCode=Lieferanten-Code ungültig
-CustomerCodeModel=Kunden-Code-Modell
-SupplierCodeModel=Lieferanten-Code Modell
+WrongCustomerCode=Kundencode ungültig
+WrongSupplierCode=Lieferantencode ungültig
+CustomerCodeModel=Kundencode-Modell
+SupplierCodeModel=Lieferantencode-Modell
 Gencod=Barcode
 ##### Professional ID #####
 ProfId1Short=Prof. ID 1
@@ -142,10 +142,10 @@ ProfId3BE=--
 ProfId4BE=--
 ProfId5BE=--
 ProfId6BE=-
-ProfId1BR=CNPJ
+ProfId1BR=-
 ProfId2BR=IE (Staatliche Behörde)
 ProfId3BR=IM (kommunale Behörde)
-ProfId4BR=CPF
+ProfId4BR=Bildungsgutschein
 #ProfId5BR=CNAE
 #ProfId6BR=INSS
 ProfId1CH=--
@@ -169,7 +169,7 @@ ProfId6CO=-
 ProfId1DE=Umsatzsteuer-Identifikationsnummer
 ProfId2DE=Amtsgericht
 ProfId3DE=Handelsregister-Nummer
-ProfId4DE=Steuernummer
+ProfId4DE=-
 ProfId5DE=-
 ProfId6DE=-
 ProfId1ES=Prof Id 1 (CIF / NIF)
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (R.C.)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (R.F.C).
 ProfId2MX=Prof Id 2 (R..P. IMSS)
@@ -245,19 +245,19 @@ ProfId4RU=Prof Id 4 (OKPO)
 ProfId5RU=-
 ProfId6RU=-
 VATIntra=Umsatzsteuer-Identifikationsnummer
-VATIntraShort=UID-Nr.
+VATIntraShort=Steuernummer
 VATIntraVeryShort=MwSt.
 VATIntraSyntaxIsValid=Die Syntax ist gültig
 VATIntraValueIsValid=Der Wert ist gültig
 ProspectCustomer=Lead / Kunde
 Prospect=Lead
-CustomerCard=Kundenkarte
+CustomerCard=Kunden - Karte
 Customer=Kunde
 CustomerDiscount=Kundenrabatt
 CustomerRelativeDiscount=Kundenrabatt relativ
 CustomerAbsoluteDiscount=Kundenrabatt absolut
-CustomerRelativeDiscountShort=Rabatt rel.
-CustomerAbsoluteDiscountShort=Rabatt abs.
+CustomerRelativeDiscountShort=Rabatt relativ
+CustomerAbsoluteDiscountShort=Rabatt absolut
 CompanyHasRelativeDiscount=Dieser Kunde hat einen Rabatt <b>von %s%%</b>
 CompanyHasNoRelativeDiscount=Dieser Kunde hat standardmäßig keinen relativen Rabatt
 CompanyHasAbsoluteDiscount=Dieser Kunde hat noch Rabatt-Gutschriften <b>über %s %s</b>
@@ -269,7 +269,7 @@ DefaultDiscount=Standard-Rabatt
 AvailableGlobalDiscounts=Verfügbare absolute Ermäßigungen
 DiscountNone=Keine
 Supplier=Lieferant
-CompanyList=Firmen-Liste
+CompanyList=Firmenliste
 AddContact=Kontakt erstellen
 AddContactAddress=Kontakt/Adresse erstellen
 EditContact=Kontakt bearbeiten
@@ -286,8 +286,8 @@ PersonalInformations=Persönliche Daten
 AccountancyCode=Kontierungs-Code
 CustomerCode=Kunden-Nummer
 SupplierCode=Lieferanten-Code
-CustomerCodeShort=Kunden-Nr.
-SupplierCodeShort=Lieferanten-Nr.
+CustomerCodeShort=Kundennummer
+SupplierCodeShort=Lieferantennummer
 CustomerAccount=Kundenkonto
 SupplierAccount=Lieferanten-Konto
 CustomerCodeDesc=Kunden-Code, einzigartig für alle Kunden
@@ -311,13 +311,13 @@ ShowContact=Zeige Kontaktangaben
 ContactsAllShort=Alle (Kein Filter)
 ContactType=Kontaktart
 ContactForOrders=Bestellungskontakt
-ContactForProposals=Offertskontakt
+ContactForProposals=Angebotskontakt 
 ContactForContracts=Vertragskontakt
 ContactForInvoices=Rechnungskontakt
-NoContactForAnyOrder=Kein Kontakt für Bestellungen
-NoContactForAnyProposal=Kein Kontakt für Offerte
-NoContactForAnyContract=Kein Kontakt für Verträge
-NoContactForAnyInvoice=Dieser Kontakt ist kein Kontakt für jegliche Rechnung
+NoContactForAnyOrder=Kein Kontakt für Bestellungen definiert
+NoContactForAnyProposal=Kein Kontakt für Angebote definiert
+NoContactForAnyContract=Kein Kontakt für Verträge definiert
+NoContactForAnyInvoice=Kein Kontakt für Rechnungen definiert
 NewContact=Neuer Kontakt
 NewContactAddress=Neuer Kontakt/Adresse
 LastContacts=Letzte Kontakte
@@ -331,8 +331,8 @@ ThisUserIsNot=Dieser Benutzer ist weder ein Lead, Kunde oder Lieferant
 VATIntraCheck=Prüfen
 VATIntraCheckDesc=Der Link <b>%s</b> erlaubt eine Anfrage am Europäischen Mehrwertsteuer-Check-Service. Ein externer Zugang zum Internet-Server ist für diesen Dienst erforderlich.
 VATIntraCheckURL=http://ec.europa.eu/taxation_customs/vies/vieshome.do
-VATIntraCheckableOnEUSite=Überprüfen Sie Intrakommunale MwSt-Website der Europäischen Kommission
-VATIntraManualCheck=Sie können die Überprüfung auch manuell durchführen <a href="%s" target=Sie können auch manuell die eruopäische Website <a href="%s" target="_blank">%s</a> befragen
+VATIntraCheckableOnEUSite=Überprüfen Sie Intrakommunale USt-Website der Europäischen Kommission
+VATIntraManualCheck=Sie können die Überprüfung auch manuell durchführen <a href="%s" target=Sie können auch manuell die europäische Website <a href="%s" target="_blank">%s</a> befragen
 ErrorVATCheckMS_UNAVAILABLE=Anfrage nicht möglich. Überprüfungsdienst wird vom Mitgliedsland nicht angeboten (%s).
 NorProspectNorCustomer=kein Kunde, kein Lead
 JuridicalStatus=Rechtsform
@@ -379,14 +379,14 @@ NoParentCompany=Keine Mutterfirma
 ExportImport=Import-Export
 ExportCardToFormat=Karte in Format exportieren
 ContactNotLinkedToCompany=Kontakt keinem Partner zugeordnet
-DolibarrLogin=Dolibarr Benutzername
+DolibarrLogin=Dolibarr-Benutzername
 NoDolibarrAccess=Kein Zugang
 ExportDataset_company_1=Partner (Unternehmen/Stiftungen/Personen) und Eigenschaften
 ExportDataset_company_2=Kontakte und Eigenschaften
 ImportDataset_company_1=Partner (Unternehmen/Stiftungen/Personen) und Eigenschaften
 ImportDataset_company_2=Kontakte/Adressen (von Dritten oder auch nicht) und Attribute
 ImportDataset_company_3=Bankverbindung
-ImportDataset_company_4=Partner/ Aussendienstmitarbeiter (Auswirkung Aussendienstmitarbeiter  an Unternehmen)
+ImportDataset_company_4=Partner/Außendienstmitarbeiter (Auswirkung Außendienstmitarbeiter an Unternehmen)
 PriceLevel=Preisstufe
 DeliveriesAddress=Lieferadressen
 DeliveryAddress=Lieferadresse
@@ -405,9 +405,9 @@ AllocateCommercial=Vertriebsmitarbeiter zuweisen
 SelectCountry=Wählen Sie ein Land
 SelectCompany=Wählen Sie einen Partner
 Organization=Partner
-AutomaticallyGenerated=Autogeneriert
+AutomaticallyGenerated=Automatisch erstellt
 FiscalYearInformation=Informationen über das Geschäftsjahr
-FiscalMonthStart=Ab Monat des Geschäftsjahres
+FiscalMonthStart=Erster Monat des Geschäftsjahres
 YouMustCreateContactFirst=Sie müssen erst E-Mail-Kontakte für einen Partner anlegen, um E-Mail-Benachrichtigungen hinzufügen zu können.
 ListSuppliersShort=Liste der Lieferanten
 ListProspectsShort=Liste der Leads
@@ -428,7 +428,7 @@ ManagingDirectors=Name(n) des/der Manager (CEO, Direktor, Geschäftsführer, ...
 SearchThirdparty=Partner suchen
 SearchContact=Kontakt suchen
 MergeOriginThirdparty=Partner duplizieren (Partner den Sie löschen möchten)
-MergeThirdparties=Zusammenführen von Partnern
-ConfirmMergeThirdparties=Sind Sie sicher, dass Sie diesen Partner mit dem aktuelle Partner zusammenführen wollen? Alle verknüpften Objekte (Rechnungen, Bestellungen, ...) werden in den aktuellen Partner verschoben, so dass Sie das Duplikat löschen können.
+MergeThirdparties=Partner zusammenlegen
+ConfirmMergeThirdparties=Sind Sie sicher, dass Sie diesen Partner mit dem aktuellen Partner zusammenlegenwollen? Alle verknüpften Objekte (Rechnungen, Bestellungen, ...) werden in den aktuellen Partner verschoben, so dass Sie das Duplikat löschen können.
 ThirdpartiesMergeSuccess=Partner wurden zusammengelegt
 ErrorThirdpartiesMerge=Es gab einen Fehler beim Löschen des Partners. Bitte überprüfen Sie das Protokoll. Änderungen wurden rückgängig gemacht.
diff --git a/htdocs/langs/de_DE/compta.lang b/htdocs/langs/de_DE/compta.lang
index d1127bb4f7427603bb92e99d54a59f098f90e679..516814b4917ef5ae22d5f255ee9d74589c1b41e9 100644
--- a/htdocs/langs/de_DE/compta.lang
+++ b/htdocs/langs/de_DE/compta.lang
@@ -10,7 +10,7 @@ OptionModeTrue=Option Eingang-Ausgang
 OptionModeVirtual=Option Forderungen-Verbindlichkeiten
 OptionModeTrueDesc=Der Umsatz wird über die Zahlungen (Datum der Zahlungen) berechnet. \nDie Aussagekraft der Zahlen ist nur gewährleistet, wenn die Pflege der Konten (Ein-/Ausgang) nachhaltig korrekt ist.
 OptionModeVirtualDesc=In dieser Option berechnet sich der Umsatz über Zahlungen (Zahlungsdatum).<br> Die Gültigkeit der Zahlen ist nur bei Überprüfung der Zu- und Abgänge auf den Konten über Rechnungen gewährleistet.
-FeatureIsSupportedInInOutModeOnly=Dieses Feautre ist nur in der Soll-Haben-Option verfügbar (siehe Konfiguration des Rechnungswesen-Moduls)
+FeatureIsSupportedInInOutModeOnly=Dieses Feature ist nur in der Soll-Haben-Option verfügbar (siehe Konfiguration des Rechnungswesen-Moduls)
 VATReportBuildWithOptionDefinedInModule=Die hier ausgewiesenen Beträge werden unter Verwendung der USt.-Regeln definiert.
 LTReportBuildWithOptionDefinedInModule=Die hier ausgewiesenen Beträge werden unter Verwendung der Firmen-Regeln definiert.
 Param=Einstellungen
@@ -39,12 +39,12 @@ Withdrawals=Entnahmen
 AmountHTVATRealReceived=Einnahmen (netto)
 AmountHTVATRealPaid=Ausgaben (netto)
 VATToPay=MwSt. Verkäufe - USt.
-VATReceived=Erhobene MwSt.
+VATReceived=Erhobene USt.
 VATToCollect=MwSt. Einkäufe - VSt.
-VATSummary=MwSt. Saldo
+VATSummary=USt. Saldo
 LT2SummaryES=EKSt. Übersicht
 LT1SummaryES=Saldo RE
-VATPaid=Bezahlte MwSt.
+VATPaid=Bezahlte USt.
 SalaryPaid=Gezahlter Lohn
 LT2PaidES=EKSt. gezahlt
 LT1PaidES=RE Zahlungen
@@ -52,7 +52,7 @@ LT2CustomerES=EKSt. Verkauf
 LT2SupplierES=EKSt. Einkauf
 LT1CustomerES=RE Verkäufe
 LT1SupplierES=RE Einkäufe
-VATCollected=Erhobene MwSt.
+VATCollected=Erhobene USt.
 ToPay=Zu zahlen
 ToGet=Zu erhalten
 SpecialExpensesArea=Bereich für alle Sonderzahlungen
@@ -73,7 +73,7 @@ Payments=Zahlungen
 PaymentCustomerInvoice=Zahlung Kundenrechnung
 PaymentSupplierInvoice=Zahlung Lieferantenrechnung
 PaymentSocialContribution=Sozialabgaben-/Steuer Zahlung
-PaymentVat=MwSt.-Zahlung
+PaymentVat=USt.-Zahlung
 PaymentSalary=Lohnzahlung
 ListPayment=Liste der Zahlungen
 ListOfPayments=Liste der Zahlungen
@@ -81,13 +81,13 @@ ListOfCustomerPayments=Liste der Kundenzahlungen
 ListOfSupplierPayments=Liste der Lieferantenzahlungen
 DateStartPeriod=Startdatum für Zeitraum
 DateEndPeriod=Enddatum für Zeitraum
-NewVATPayment=Neue MwSt. Zahlung
-newLT1Payment=New tax 2 payment
-newLT2Payment=New tax 3 payment
-LT1Payment=Tax 2 payment
-LT1Payments=Tax 2 payments
-LT2Payment=Tax 3 payment
-LT2Payments=Tax 3 payments
+NewVATPayment=Neue USt. Zahlung
+newLT1Payment=Neue Zahlung Steuer 2
+newLT2Payment=Neue Zahlung Steuer 3
+LT1Payment=Zahlung Steuer 2
+LT1Payments=Zahlungen Steuer 2
+LT2Payment=Zahlung Steuer 3
+LT2Payments=Zahlungen Steuer 3
 newLT1PaymentES=Neue RE Zahlung
 newLT2PaymentES=Neue EKSt. Zahlung
 LT1PaymentES=RE Zahlung
@@ -99,9 +99,9 @@ VATPayments=MwSt-Zahlungen
 VATRefund=Umsatzsteuer Rückerstattung
 Refund=Rückerstattung
 SocialContributionsPayments=Sozialabgaben-/Steuer Zahlungen
-ShowVatPayment=Zeige MwSt. Zahlung
+ShowVatPayment=Zeige USt. Zahlung
 TotalToPay=Zu zahlender Gesamtbetrag
-TotalVATReceived=Summe vereinnahmte MwSt.
+TotalVATReceived=Summe vereinnahmte USt.
 CustomerAccountancyCode=Kontierungscode Kunde
 SupplierAccountancyCode=Kontierungscode Lieferant
 CustomerAccountancyCodeShort=Buchh.-Konto Kunde
@@ -130,7 +130,7 @@ ConfirmPaySocialContribution=Möchten Sie den Status dieser Sozialabgabe oder St
 DeleteSocialContribution=Lösche Sozialabgaben-, oder Steuerzahlung
 ConfirmDeleteSocialContribution=Möchten Sie diese Sozialabgaben-, oder Steuerzahlung wirklich löschen?
 ExportDataset_tax_1=Steuer- und Sozialabgaben und Zahlungen
-CalcModeVATDebt=Modus <b>%s Mwst. auf Engagement Rechnungslegung %s</b>.
+CalcModeVATDebt=Modus <b>%s USt. auf Engagement Rechnungslegung %s</b>.
 CalcModeVATEngagement=Modus <b>%sTVA auf  Einnahmen-Ausgaben%s</b>.
 CalcModeDebt=Modus <b>%sForderungen-Verbindlichkeiten%s</b> sagt <b>Engagement Rechnungslegung.</b>
 CalcModeEngagement=Modus <b>%sEinnahmen-Ausgaben%s</b> die <b>Kassenbuchführung</b>
@@ -139,32 +139,33 @@ CalcModeLT1Debt=Modus <b>%sRE auf Kundenrechnungen%s</b>
 CalcModeLT1Rec= Modus <b>%sRE auf Lieferantenrechnungen%s</b>
 CalcModeLT2= Modus<b>%sIRPF auf Kundenrechnungen - Lieferanten Rechnungen%s</b>
 CalcModeLT2Debt=Modus <b>%sIRPF auf Kundenrechnungen%s</b>
-CalcModeLT2Rec= Modus <b>%sIRPF aufLieferantenrechnungen%s</b>
+CalcModeLT2Rec= Modus <b>%sIRPF auf Lieferantenrechnungen%s</b>
 AnnualSummaryDueDebtMode=Saldo der Erträge und Aufwendungen, Jahresübersicht
 AnnualSummaryInputOutputMode=Saldo der Erträge und Aufwendungen, Jahresübersicht
 AnnualByCompaniesDueDebtMode=Die Einnahmen/Ausgaben-Bilanz nach Partnern im Modus <b>%sForderungen-Verbindlichkeiten%s</b> meldet <b>Kameralistik</b>.
 AnnualByCompaniesInputOutputMode=Die Einnahmen/Ausgaben-Bilanz im Modus <b>%sEinkünfte-Ausgaben%s</b> meldet <b>Ist-Besteuerung</b>.
-SeeReportInInputOutputMode=Der <b>%sEinkünfte-Ausgaben%s</b>-Bericht medlet <b>Istbesteuerung</b> für eine Berechnung der tatsächlich erfolgten Zahlungsströme.
+SeeReportInInputOutputMode=Der <b>%sEinkünfte-Ausgaben%s</b>-Bericht meldet <b>Ist-Besteuerung</b> für eine Berechnung der tatsächlich erfolgten Zahlungsströme.
 SeeReportInDueDebtMode=Der <b>%sForderungen-Verbindlichkeiten%s</b>-Bericht meldet <b>Kameralistik</b> für eine Berechnung auf Basis der ausgestellten Rechnungen.
 RulesAmountWithTaxIncluded=- Angezeigte Beträge enthalten alle Steuern
-RulesResultDue=- Dies beinhaltet ausstehende Rechnungen, Aufwendungen, Mehrwertsteuern, Abgaben, ob sie bezahlt wurden oder nicht. Auch die gezahlten Gehälter. <br> - Es gilt das Freigabedatum von den Rechnungen und MwSt., sowie das Fälligkeitsdatum für Aufwendungen. Für Gehälter definiert mit dem Modul Löhne, wird das Valutadatum der Zahlung verwendet.
-RulesResultInOut=- It includes the real payments made on invoices, expenses, VAT and salaries. <br>- It is based on the payment dates of the invoices, expenses, VAT and salaries. The donation date for donation.
+RulesResultDue=- Dies beinhaltet ausstehende Rechnungen, Aufwendungen, Umsatzsteuern, Abgaben, ob sie bezahlt wurden oder nicht. Auch die gezahlten Gehälter. <br> - Es gilt das Freigabedatum von den Rechnungen und USt., sowie das Fälligkeitsdatum für Aufwendungen. Für Gehälter definiert mit dem Modul Löhne, wird das Valutadatum der Zahlung verwendet.
+RulesResultInOut=- Es sind nur tatsächliche Zahlungen für Rechnungen, Kostenabrechnungen, USt und Gehälter enthalten. <br>- Bei Rechnungen, Kostenabrechnungen, USt und Gehälter gilt das Zahlugnsdatum. Bei Spenden gilt das Spendendatum.
 RulesCADue=- es beinhaltet alle fälligen Kundenrechnungen, unabhängig von ihrem Zahlungsstatus. <br>- Es gilt das Freigabedatum der Rechnungen. <br>
 RulesCAIn=- Beinhaltet alle tatsächlich erfolgten Zahlungen von Kunden.<br>- Es gilt das Zahlungsdatum der Rechnungen.<br>
 DepositsAreNotIncluded=- Noch sind Anzahlungsrechnungen inbegriffen
 DepositsAreIncluded=- Anzahlungsrechnungen sind inbegriffen
 LT2ReportByCustomersInInputOutputModeES=Bericht von Partner EKSt.
 LT1ReportByCustomersInInputOutputModeES=Bericht von Kunden RE
-VATReportByCustomersInInputOutputMode=Bericht zur vereinnahmten und bezahlten MwSt. nach Kunden 
-VATReportByCustomersInDueDebtMode=Bericht zur vereinnahmten und bezahlten MwSt. nach Kunden
-VATReportByQuartersInInputOutputMode=Quartalsbericht zur vereinnahmten und bezahlten MwSt.
+VATReport=VAT report
+VATReportByCustomersInInputOutputMode=Bericht zur vereinnahmten und bezahlten USt. nach Kunden 
+VATReportByCustomersInDueDebtMode=Bericht zur vereinnahmten und bezahlten USt. nach Kunden
+VATReportByQuartersInInputOutputMode=Quartalsbericht zur vereinnahmten und bezahlten USt.
 LT1ReportByQuartersInInputOutputMode=Bericht von RE Rate
 LT2ReportByQuartersInInputOutputMode=Quartal-Bericht EKSt. Rate
-VATReportByQuartersInDueDebtMode=Quartalsbericht zur vereinnahmten und bezahlten MwSt.
+VATReportByQuartersInDueDebtMode=Quartalsbericht zur vereinnahmten und bezahlten USt.
 LT1ReportByQuartersInDueDebtMode=Bericht von RE Ratex
 LT2ReportByQuartersInDueDebtMode=Quartal-Bericht EKSt. Rate
-SeeVATReportInInputOutputMode=Siehe <b>%sMwSt.-Einnahmen%s</b>-Bericht für eine standardmäßige Berechnung
-SeeVATReportInDueDebtMode=Siehe <b>%sdynamischen MwSt.%s</b>-Bericht für eine Berechnung mit dynamischer Option
+SeeVATReportInInputOutputMode=Siehe <b>%s USt.-Einnahmen%s</b>-Bericht für eine standardmäßige Berechnung
+SeeVATReportInDueDebtMode=Siehe <b>%s dynamischen USt.%s</b>-Bericht für eine Berechnung mit dynamischer Option
 RulesVATInServices=- Für Services beinhaltet der Bericht alle vereinnahmten oder bezahlten Steuern nach Zahlungsdatum. 
 RulesVATInProducts=- Für Sachanlagen beinhaltet der Bericht alle Mehrwertsteuerrechnungen auf Basis des Rechnungsdatums.
 RulesVATDueServices=- Für Services beinhaltet der Steuerbericht alle fälligen Rechnungen, bezahlt oder nicht, in Abhängigkeit des Leistungsdatums. Für Warenlieferungen gilt das Rechnungsdatum.
@@ -201,7 +202,7 @@ ToCreateAPredefinedInvoice=Um eine vordefinierte Rechnung zu erzeugen, erstellen
 LinkedOrder=Link zur Bestellung
 Mode1=Methode 1
 Mode2=Methode 2
-CalculationRuleDesc=Zur Berechnung der Gesamt-MwSt. gibt es zwei Methoden: <br>Methode 1 rundet die Steuer in jeder Zeile und addiert zum Schluss. <br>Methode 2 summiert alle Steuer-Zeilen und rundet am Ende. <br>Das endgültige Ergebnis kann sich in wenigen Cent unterscheiden. Standardmodus ist <b>Modus %s.</b>
+CalculationRuleDesc=Zur Berechnung der Gesamt-USt. gibt es zwei Methoden: <br>Methode 1 rundet die Steuer in jeder Zeile und addiert zum Schluss. <br>Methode 2 summiert alle Steuer-Zeilen und rundet am Ende. <br>Das endgültige Ergebnis kann sich in wenigen Cent unterscheiden. Standardmodus ist <b>Modus %s.</b>
 CalculationRuleDescSupplier=Gemäß Ihrem Lieferanten, wählen Sie die  geeignete Methode, um die gleiche Berechnungsregel anzuwenden um das selbe Ergebnis wie Ihr Lieferant zu bekommen.
 TurnoverPerProductInCommitmentAccountingNotRelevant=Umsatz Bericht pro Produkt, bei der Verwendung einer <b>Kassabuch Buchhaltung</b>  ist der Modus nicht relevant. Dieser Bericht ist nur bei Verwendung <b>Buchführungsmodus Periodenrechnung</b> (siehe Setup das Modul  Buchhaltung).
 CalculationMode=Berechnungsmodus
@@ -209,8 +210,8 @@ AccountancyJournal=Buchhaltungscode-Journal
 ACCOUNTING_VAT_SOLD_ACCOUNT=Standard Buchhaltungs-Konto für MwSt.-Zahlungen (Umsatzsteuer)
 ACCOUNTING_VAT_BUY_ACCOUNT=Standard Buchhaltungs-Konto für MwSt.-Zahlungen  (Vorsteuer)
 ACCOUNTING_VAT_PAY_ACCOUNT=Standard Buchhaltungs-Konto für MwSt.-Zahlungen
-ACCOUNTING_ACCOUNT_CUSTOMER=Standard Buchhaltungs-Konto für Kunden/Debitoren
-ACCOUNTING_ACCOUNT_SUPPLIER=Standard Buchhaltungs-Konto für Lieferanten/Kreditoren
+ACCOUNTING_ACCOUNT_CUSTOMER=Standard Buchhaltungskonto für Kunden/Debitoren
+ACCOUNTING_ACCOUNT_SUPPLIER=Standard Buchhaltungskonto für Lieferanten/Kreditoren
 CloneTax=Dupliziere Sozialabgabe/Steuersatz
 ConfirmCloneTax=Bestätigen Sie die Duplizierung der Steuer-/Sozialabgaben-Zahlung
 CloneTaxForNextMonth=Für nächsten Monat duplizieren
diff --git a/htdocs/langs/de_DE/contracts.lang b/htdocs/langs/de_DE/contracts.lang
index 7e3be6ba019c4a01dfcab838bba2ee7b78a2f712..f673e671aa5ab1ec42e46271ef21ff321a983e8b 100644
--- a/htdocs/langs/de_DE/contracts.lang
+++ b/htdocs/langs/de_DE/contracts.lang
@@ -3,7 +3,7 @@ ContractsArea=Vertragsübersicht
 ListOfContracts=Liste der Verträge
 LastModifiedContracts=Letzte %s geänderte Verträge
 AllContracts=Alle Verträge
-ContractCard=Vertragskarte
+ContractCard=Vertrag - Karte
 ContractStatus=Vertragsstatus
 ContractStatusNotRunning=Läuft nicht
 ContractStatusRunning=Läuft
@@ -19,7 +19,7 @@ ServiceStatusLateShort=Abgelaufen
 ServiceStatusClosed=Geschlossen
 ServicesLegend=Services Legende
 Contracts=Verträge
-ContractsSubscriptions=Contracts/Subscriptions
+ContractsSubscriptions=Verträge/Abonnements
 ContractsAndLine=Verträge und Zeilen von Verträgen
 Contract=Vertrag
 ContractLine=Vertragszeile
@@ -31,7 +31,7 @@ MenuRunningServices=Laufende Leistungen
 MenuExpiredServices=Abgelaufene Leistungen
 MenuClosedServices=Geschlossene Services
 NewContract=Neuer Vertrag
-NewContractSubscription=New contract/subscription
+NewContractSubscription=Neuer Vertrag/Abonnement
 AddContract=Vertrag erstellen
 SearchAContract=Kundenvertrag suchen
 DeleteAContract=Löschen eines Vertrages
@@ -69,9 +69,9 @@ DateStartPlannedShort=Beginn
 DateEndPlanned=Geplantes Ende
 DateEndPlannedShort=Ende
 DateStartReal=Effektiver Beginn
-DateStartRealShort=Beginn eff.
+DateStartRealShort=effektives Startdatum
 DateEndReal=Effektives Ende
-DateEndRealShort=Ende eff.
+DateEndRealShort=effektives Enddatum
 NbOfServices=Anzahl der Leistungen
 CloseService=Leistung schließen
 ServicesNomberShort=%s Leistung(en)
diff --git a/htdocs/langs/de_DE/cron.lang b/htdocs/langs/de_DE/cron.lang
index 652d228d83307bf187a0c7f343357cd383a3105d..9638c09114d9bfba3c4e42d98576f6a420cd47ad 100644
--- a/htdocs/langs/de_DE/cron.lang
+++ b/htdocs/langs/de_DE/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=In Unix-Umgebung sollten Sie die folgenden crontab-Eintr
 CronExplainHowToRunWin=In Microsoft(tm) Windows Umgebungen kannst Du die Aufgabenplanung benutzen um die Kommandozeile jede 5 Minuten aufzurufen
 # Menu
 CronJobs=Geplante Jobs
-CronListActive=Liste der aktiven/geplanten Jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=Liste der deaktivierten Jobs
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Letzte Ausführung
 CronLastOutput=Ausgabe der letzten Ausführung
@@ -31,12 +32,12 @@ CronDelete=cronjobs löschen
 CronConfirmDelete=Sind Sie sicher, dass Sie diese geplanten Aufträge löschen wollen?
 CronExecute=Starte geplante cronjobs
 CronConfirmExecute=Sind Sie sicher, dass Sie diese geplante Aufträge  jetzt ausführen möchten?
-CronInfo=Das Schedule Cron-Jobs Module  erlaubt die geplanten Cron-Jobs die programmiert wurden durchzuführen.
+CronInfo=Das Modul "Zeitgesteuerte Cron-Jobs" erlaubt die geplanten Cron-Jobs die programmiert wurden durchzuführen.
 CronWaitingJobs=Wartende Jobs
 CronTask=Job
 CronNone=Keine
-CronDtStart=Beginnzeit
-CronDtEnd=Endet
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Nächste Ausführung
 CronDtLastLaunch=Letzte Ausführung
 CronFrequency=Frequenz
@@ -46,13 +47,14 @@ CronModule=Modul
 CronAction=Aktion
 CronStatus=Status
 CronStatusActive=Aktiviert
-CronStatusInactive=Deaktivert
+CronStatusInactive=Deaktiviert
 CronNoJobs=Keine Jobs eingetragen
 CronPriority=Rang
 CronLabel=Beschreibung
 CronNbRun=Anzahl Starts
+CronMaxRun=Max nb. launch
 CronEach=Jede
-JobFinished=Job gestarted und beendet
+JobFinished=Job gestartet und beendet
 #Page card
 CronAdd= Jobs hinzufügen
 CronHourStart= Start Datum und Zeit des Jobs
diff --git a/htdocs/langs/de_DE/deliveries.lang b/htdocs/langs/de_DE/deliveries.lang
index 95db6dd00f27e6784ad6c948ca215a8c5b2fcdb3..4c9bc5fd51bdc2868c9d14d9227daa527ba3d800 100644
--- a/htdocs/langs/de_DE/deliveries.lang
+++ b/htdocs/langs/de_DE/deliveries.lang
@@ -7,7 +7,7 @@ DeliveryOrders=Lieferscheine
 DeliveryDate=Liefertermin
 DeliveryDateShort=Liefertermin
 CreateDeliveryOrder=Erstelle Lieferschein
-DeliveryStateSaved=Delivery state saved
+DeliveryStateSaved=Lieferstatus gespeichert.
 QtyDelivered=Gelieferte Menge
 SetDeliveryDate=Liefertermin setzen
 ValidateDeliveryReceipt=Lieferschein freigeben
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Sind Sie sicher, dass Sie den Lieferschein <b>%s</b
 DeliveryMethod=Versandart
 TrackingNumber=Tracking Nummer
 DeliveryNotValidated=Lieferung nicht validiert
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Name und Unterschrift:
 ToAndDate=An___________________________________ am ____/_____/__________
diff --git a/htdocs/langs/de_DE/dict.lang b/htdocs/langs/de_DE/dict.lang
index 7e269b2f34b92f0d627fdf7445b0d759e77d5517..48028e7a464c386e9ae75bbcf6621d2e23027f4e 100644
--- a/htdocs/langs/de_DE/dict.lang
+++ b/htdocs/langs/de_DE/dict.lang
@@ -111,7 +111,7 @@ CountryGN=Guinea
 CountryGW=Guinea-Bissau
 CountryGY=Guyana
 CountryHT=Haiti
-CountryHM=Heard und McDonald Inseln
+CountryHM=Heard Inseln und McDonald
 CountryVA=Vatikan
 CountryHN=Honduras
 CountryHK=Hong Kong
diff --git a/htdocs/langs/de_DE/ecm.lang b/htdocs/langs/de_DE/ecm.lang
index 741ce13d3b06d7f191589d6ab5a89e33eb9c9561..869465f55827712a9a336a14edaa22c1a5fb3881 100644
--- a/htdocs/langs/de_DE/ecm.lang
+++ b/htdocs/langs/de_DE/ecm.lang
@@ -1,40 +1,40 @@
 # Dolibarr language file - Source file is en_US - ecm
 DocsMine=Meine Dokumente
 DocsGenerated=Erstellte Dokumente
-DocsElements=Dokumente
+DocsElements=Dokumente von Elementen
 DocsThirdParties=Dokumente von Partnern
-DocsContracts=Vertragsdokumente
-DocsProposals=Angebotsdokumente
-DocsOrders=Bestellungsdokumente
-DocsInvoices=Rechnungsdokumente
-ECMNbOfDocs=Anzahl der Dokumente im Verzeichnis
+DocsContracts=Dokumente aus Verträgen
+DocsProposals=Dokumente aus Angeboten
+DocsOrders=Dokumente aus Bestellungen
+DocsInvoices=Dokumente für Rechnungen
+ECMNbOfDocs=Anzahl Dokumente im Verzeichnis
 ECMNbOfDocsSmall=Anz. Dok.
 ECMSection=Verzeichnis
-ECMSectionManual=Manuelle Ordner
-ECMSectionAuto=Automatische Ordner
-ECMSectionsManual=Manuelle Hierarchie
-ECMSectionsAuto=Automatische Hierarchie
+ECMSectionManual=Manueller Ordner
+ECMSectionAuto=Automatischer Ordner
+ECMSectionsManual=manuelle Hierarchie
+ECMSectionsAuto=automatische Hierarchie
 ECMSections=Ordner
 ECMRoot=Stammordner
 ECMNewSection=Neuer Ordner
 ECMAddSection=Ordner hinzufügen
 ECMNewDocument=Neues Dokument
 ECMCreationDate=Erstellungsdatum
-ECMNbOfFilesInDir=Anzahl der Dateien in Ordner
-ECMNbOfSubDir=Anzahl der Unterordner
+ECMNbOfFilesInDir=Anzahl der Dateien im Ordner
+ECMNbOfSubDir=Anzahl Unterordner
 ECMNbOfFilesInSubDir=Anzahl Dateien in Unterordnern
 ECMCreationUser=Autor
 ECMArea=EDM-Übersicht
-ECMAreaDesc=Das EDM (Elektronisches Dokumenten Management)-System erlaubt Ihnen Speichern, Teilen und rasches Auffinden von allen Dokumenten im Dolibarr.
-ECMAreaDesc2=* In den automatischen Verzeichnissen werden die vom System erzeugeten Dokumente abgelegt. <br> * Die manuellen Verzeichnisse können Sie selbst verwalten und zusätzliche nicht direkt zuordenbare Dokument hinterlegen.
-ECMSectionWasRemoved=Der Ordner <b>%s</b> wurde gelöscht.
+ECMAreaDesc=Die EDM (Elektronisches Dokumenten Management)-Übersicht erlaubt Ihnen das Speichern, Teilen und rasches Auffinden aller Dokumenten in Dolibarr.
+ECMAreaDesc2=* In den automatischen Verzeichnissen werden die vom System erzeugten Dokumente abgelegt. <br> * Die manuellen Verzeichnisse können Sie selbst verwalten und zusätzliche nicht direkt zuordenbare Dokument hinterlegen.
+ECMSectionWasRemoved=Ordner <b>%s</b> wurde gelöscht.
 ECMDocumentsSection=Dokumente des Ordners
-ECMSearchByKeywords=Suche nach Stichwörter
+ECMSearchByKeywords=Suche nach Stichwörtern
 ECMSearchByEntity=Suche nach Objekt
-ECMSectionOfDocuments=Dokumentenordner
+ECMSectionOfDocuments=Dokumentenordnern
 ECMTypeManual=Manuell
 ECMTypeAuto=Automatisch
-ECMDocsBySocialContributions=Verlinke Dokumente zu Sozialabgaben oder Steuerinformationen
+ECMDocsBySocialContributions=Mit Sozialabgaben oder Steuerinformationen verknüpfte Dokumente
 ECMDocsByThirdParties=Mit Partnern verknüpfte Dokumente
 ECMDocsByProposals=Mit Angeboten verknüpfte Dokumente
 ECMDocsByOrders=Mit Kundenaufträgen verknüpfte Dokumente
@@ -43,7 +43,7 @@ ECMDocsByInvoices=Mit Kundenrechnungen verknüpfte Dokumente
 ECMDocsByProducts=Mit Produkten verknüpfte Dokumente
 ECMDocsByProjects=Mit Projekten verknüpfte Dokumente
 ECMDocsByUsers=Mit Benutzern verknüpfte Dokumente
-ECMDocsByInterventions=Mit Eingriffen verknüpfte Dokumente
+ECMDocsByInterventions=Mit Serviceaufträgen verknüpfte Dokumente
 ECMNoDirectoryYet=Noch kein Ordner erstellt
 ShowECMSection=Ordner anzeigen
 DeleteSection=Verzeichnis löschen
@@ -52,5 +52,5 @@ ECMDirectoryForFiles=Relatives Verzeichnis für Dateien
 CannotRemoveDirectoryContainsFiles=Entfernen des Ordners nicht möglich, da dieser noch Dateien enthält
 ECMFileManager=Dateiverwaltung
 ECMSelectASection=Wähle einen Ordner aus der Baumansicht links ...
-DirNotSynchronizedSyncFirst=Dieses Verzeichnis scheint ausserhalb des ECM Moduls erstellt oder verändert worden zu sein. Sie müssten auf den "Refresh"-Button klicken um den Inhalt der Festplatte mit der Datenbank zu synchronisieren.
+DirNotSynchronizedSyncFirst=Dieses Verzeichnis scheint außerhalb des ECM Moduls erstellt oder verändert worden zu sein. Sie müssten auf den "Aktualisieren"-Button klicken, um den Inhalt der Festplatte mit der Datenbank zu synchronisieren.
 
diff --git a/htdocs/langs/de_DE/errors.lang b/htdocs/langs/de_DE/errors.lang
index 2b83385078930d41bd9dd885d048d88aa8c000c5..3d11896be9f14588a6aa574a7868491b27f1ba57 100644
--- a/htdocs/langs/de_DE/errors.lang
+++ b/htdocs/langs/de_DE/errors.lang
@@ -41,7 +41,7 @@ ErrorWrongDate=Falsches Datum!
 ErrorFailedToWriteInDir=Fehler beim Schreiben in das Verzeichnis %s
 ErrorFoundBadEmailInFile=Ungültige E-Mail-Adresse in %s Zeilen der Datei gefunden (z.B. Zeile %s mit E-Mail=%s)
 ErrorUserCannotBeDelete=Dieser Benutzer kann nicht gelöscht werden. Eventuell ist er noch mit einem Partner verknüpft.
-ErrorFieldsRequired=Ein oder mehrere erforderliche Felder wurden nicht ausgefüllt-
+ErrorFieldsRequired=Ein oder mehrere erforderliche Felder wurden nicht ausgefüllt.
 ErrorFailedToCreateDir=Fehler beim Erstellen eines Verzeichnisses. Vergewissern Sie sich, dass der Webserver-Benutzer Schreibberechtigungen für das Dokumentverzeichnis des Systems besitzt. Bei aktiviertem <b>safe_mode</b> sollten die Systemdateien den Webserver-Benutzer oder die -Gruppe als Besitzer haben.
 ErrorNoMailDefinedForThisUser=Für diesen Benutzer ist keine E-Mail-Adresse eingetragen.
 ErrorFeatureNeedJavascript=Diese Funktion erfordert aktiviertes JavaScript. Sie können dies unter Einstellungen-Anzeige ändern.
@@ -59,7 +59,7 @@ ErrorFileSizeTooLarge=Die Größe der gewählten Datei übersteigt den zulässig
 ErrorSizeTooLongForIntType=Die Größe überschreitet das Maximum für den Typ 'int' (%s Ziffern maximal)
 ErrorSizeTooLongForVarcharType=Die Größe überschreitet das Maximum für den Typ 'string' (%s Zeichen maximal)
 ErrorNoValueForSelectType=Bitte Wert für Auswahlliste eingeben
-ErrorNoValueForCheckBoxType=Bitte Wert für Checkbox-Liste eingeben
+ErrorNoValueForCheckBoxType=Bitte Wert für Kontrollkästchen-Liste eingeben
 ErrorNoValueForRadioType=Bitte Wert für Radiobutton-Liste eingeben
 ErrorBadFormatValueList=Die Listewerte kann nicht mehr als ein Komma:<u>%s</u> , muss jedoch mindestens einen Schlüssel, Wert beinhalten
 ErrorFieldCanNotContainSpecialCharacters=Das Feld <b>%s</b> darf keine Sonderzeichen enthalten.
@@ -171,16 +171,16 @@ ErrorFieldMustBeAnInteger=Feld <b>%s</b> muss eine ganze Zahl sein
 ErrorMandatoryParametersNotProvided=Erforderliche(r) Parameter wird nicht angeboten
 ErrorOppStatusRequiredIfAmount=Sie legen einen geschätzten Betrag für diese Verkaufschance/Lead erfasst. Deshalb müssen Sie auch den Status eingeben
 ErrorBadDefinitionOfMenuArrayInModuleDescriptor=Falsche Definition von Menü Array in  Module Descriptor (falscher Wert für den Key  fk_menu)
-ErrorSavingChanges=An error has ocurred when saving the changes
+ErrorSavingChanges=Beim Speichern der Änderungen trat ein Fehler auf
 
 # Warnings
-WarningPasswordSetWithNoAccount=A password was set for this member. However, no user account was created. So this password is stored but can't be used to login to Dolibarr. It may be used by an external module/interface but if you don't need to define any login nor password for a member, you can disable option "Manage a login for each member" from Member module setup. If you need to manage a login but don't need any password, you can keep this field empty to avoid this warning. Note: Email can also be used as a login if the member is linked to a user.
+WarningPasswordSetWithNoAccount=Es wurde ein Passwort für dieses Mitglied vergeben, aber kein Benutzer erstellt. Das Passwort wird gespeichert, aber kann nicht für die Anmeldung an Dolibarr verwendet werden. Es kann von einem externen Modul/einer Schnittstelle verwendet werden, aber wenn Sie kein Login oder Passwort für dieses Mitglied definiert müssen, können Sie die Option "Login für jedes Mitglied verwalten" in den Mitgliedseinstellungen deaktivieren. Wenn Sie ein Login aber kein Passwort benötige, lassen Sie dieses Feld leer, um diese Meldung zu deaktivieren. Anmerkung: Die E-Mail-Adresse kann auch zur Anmeldung verwendet werden, wenn das Mitglied mit einem Benutzer verbunden wird.
 WarningMandatorySetupNotComplete=Zwingend notwendige Parameter sind noch nicht definiert
 WarningSafeModeOnCheckExecDir=Achtung: Der PHP-Option <b>safe_mode</b> ist aktiviert, entsprechend müssen Befehle in einem mit <b>safe_mode_exec_dir</b> gekennzeichneten Verzeichnis ausgeführt werden.
 WarningAllowUrlFopenMustBeOn=Der Parameter <b>allow_url_fopen</b> muss in der php.ini-Datei auf <b>ON</b> stehen, damit dieses Modul funktioniert. Bitte passen Sie die Datei manuell an.
 WarningBuildScriptNotRunned=Das Skript <b>%s</b> wurde noch nicht zur Grafikerstellung ausgeführt oder es existieren keine anzuzeigenden Daten.
 WarningBookmarkAlreadyExists=Ein Lesezeichen mit diesem Titel oder Ziel (URL) existiert bereits.
-WarningPassIsEmpty=Warnung: Derzeit ist kein Datenbankpasswort gesetzt. Dies ist eine Sicherheitslücke. Konfigurieren Sie ehestmöglich ein Passwort für den Datenbankzugriff und passen Sie Ihre conf.php entsprechend an.
+WarningPassIsEmpty=Warnung: Derzeit ist kein Datenbankpasswort gesetzt. Dies ist eine Sicherheitslücke. Konfigurieren Sie schnellstmöglich ein Passwort für den Datenbankzugriff und passen Sie Ihre conf.php entsprechend an.
 WarningConfFileMustBeReadOnly=Achtung: Die Konfigurationsdatei (<b>htdocs/conf/conf.php</b>) kann von Ihrem Webserver überschrieben werden. Dies ist eine ernstzunehmende Sicherheitslücke. Ändern Sie den Zugriff schnellstmöglich auf reinen Lesezugriff. Wenn Sie Windows und das FAT-Format für Ihre Festplatte nutzen, seien Sie sich bitte bewusst dass dieses Format keine individuellen Dateiberechtigungen unterstützt und so auch nicht völlig sicher ist,
 WarningsOnXLines=Warnhinweise in <b>%s</b> Quellzeilen
 WarningNoDocumentModelActivated=Für das Erstellen von Dokumenten ist keine Vorlage gewählt. Eine Vorlage wird standardmäßig ausgewählt, bis Sie die Moduleinstellungen angepasst haben.
@@ -189,7 +189,7 @@ WarningUntilDirRemoved=Diese Warnung bleibt so lange bestehen, bis die Sicherhei
 WarningCloseAlways=Achtung: es wird auch dann geschlossen, wenn der Betrag zwischen Quelle und Ziel unterschiedlich ist. Aktivieren Sie dieses Feature mit Bedacht.
 WarningUsingThisBoxSlowDown=Warnung: Der Einsatz dieser Box verlangsamt sämtliche Seiten mit dieser Box spürbar.
 WarningClickToDialUserSetupNotComplete=Die ClickToDial-Informationen für Ihren Benutzer sind nicht vollständig (siehe Registerkarte ClickToDial auf Ihrer Benutzerkarte).
-WarningNotRelevant=Operation für dieses Daten-Set nicht relevant
+WarningNotRelevant=Vorgang für dieses Daten-Set nicht relevant
 WarningFeatureDisabledWithDisplayOptimizedForBlindNoJs=Funktion deaktiviert, wenn die Bildschirm-Ausgabe für Blinde oder Text-Browser optimiert ist.
 WarningPaymentDateLowerThanInvoiceDate=Zahlungsdatum (%s) liegt vor dem Rechnungsdatum (%s) für Rechnung %s.
 WarningTooManyDataPleaseUseMoreFilters=Zu viele Ergebnisse (mehr als %s Zeilen). Bitte benutzen Sie mehr Filter oder erhöhen sie die Konstante %s auf einen höheren Wert.
diff --git a/htdocs/langs/de_DE/exports.lang b/htdocs/langs/de_DE/exports.lang
index 51b0edd0fced60d914bfe1e2a9d0f1eb5e1b0c47..bd9be37376bb1b9d852c91e70cfaf649f09f8fd9 100644
--- a/htdocs/langs/de_DE/exports.lang
+++ b/htdocs/langs/de_DE/exports.lang
@@ -38,7 +38,7 @@ LibraryVersion=Bibliotheksversion
 Step=Schritt
 FormatedImport=Import-Assistent
 FormatedImportDesc1=Dieser Bereich erlaubt Ihnen den einfachen Import persönlicher Daten über einen Assistenten (ohne techn. Kenntnisse).
-FormatedImportDesc2=Wählen Sie zuerst den Dateityp für den Import, dann die entsrechende Datei und zuletzt die zu importierenden Felder.
+FormatedImportDesc2=Wählen Sie zuerst den Dateityp für den Import, dann die entsprechende Datei und zuletzt die zu importierenden Felder.
 FormatedExport=Export-Assistent
 FormatedExportDesc1=Dieser Bereich erlaubt Ihnen den einfachen Export persönlicher Daten über einen Assistenten (ohne techn. Kenntnisse).
 FormatedExportDesc2=Wählen Sie zuerst einen vordefinierten Datensatz, dann die zu exportierenden Felder und ihre Reihenfolge.
@@ -90,7 +90,7 @@ SelectAtLeastOneField=Bitte wählen Sie zumindest ein Feld für den Datenbankexp
 SelectFormat=Wählen Sie das Format der Importdatei
 RunImportFile=Dateiimport starten
 NowClickToRunTheImport=Überprüfen Sie das Ergebnis der Importsimulation. Ist das Ergebnis zufriedenstellend, können Sie den Importvorgang jetzt starten.
-DataLoadedWithId=All data will be loaded with the following import id: <b>%s</b>
+DataLoadedWithId=Alle Daten werden mit der Import-ID: <b>%s</b> geladen
 ErrorMissingMandatoryValue=Für das erforderliche Feld <b>%s</b> konnte in der Quelldatei kein Wert gefunden werden
 TooMuchErrors=Es gibt noch <b>%s</b> weitere, fehlerhafte Zeilen. Die Ausgabe wurde beschränkt.
 TooMuchWarnings=Es gibt noch <b>%s</b> weitere Zeilen mit Warnungen. Die Ausgabe wurde beschränkt.
@@ -103,14 +103,14 @@ NbOfLinesImported=Anzahl der erfolgreich importierten Zeilen: <b>%s</b>.
 DataComeFromNoWhere=Der einzufügende Wert kommt nicht aus der Quelldatei.
 DataComeFromFileFieldNb=Der einzufügende Wert stammt aus Feldnummer <b>%s</b> der Quelldatei.
 DataComeFromIdFoundFromRef=Der Wert aus Feldnummer <b>%s</b> der Quelldatei wird zur Auffindung der ID des zu verwendenden Elternelements verwendet (entsprechend muss das Objekt <b>%s</b> mit der Nummer aus der Quelldatei im System vorhanden sein).
-DataComeFromIdFoundFromCodeId=Der Eintrag aus der Quelldatei mit der Feldnummer <b>%s</b> wird zur Referenzierung verwendet. Dazu muss die ID des Objektes im Wörterbuch <b>%s</b> existieren. Ist Ihnen die ID bekannt, dann können Sie auch diese in der Quelldatei - anstelle des Codes - eintragen. Der Import sollte in beiden Fällen funktionieren.
+DataComeFromIdFoundFromCodeId=Der Eintrag aus der Quelldatei mit der Feldnummer <b>%s</b> wird zur Referenzierung verwendet. Dazu muss die ID des Objektes in den Stammdaten für <b>%s</b> existieren. Ist Ihnen die ID bekannt, dann können Sie auch diese in der Quelldatei - anstelle des Codes - eintragen. Der Import sollte in beiden Fällen funktionieren.
 DataIsInsertedInto=Die Quelldateidaten werden in folgendes Feld eingefügt:
 DataIDSourceIsInsertedInto=Die ID des mittels Quelldatei ermittelten Elternelements werden in folgendes Feld eingefügt:
 DataCodeIDSourceIsInsertedInto=Die gefundene, übergeordnete ID aus dem Code wird in das folgende Feld eingefügt:
 SourceRequired=Datenwert erforderlich
 SourceExample=Beispiel möglicher Datenwerte
 ExampleAnyRefFoundIntoElement=Ein Referenz für das Element <b>%s</b> gefunden
-ExampleAnyCodeOrIdFoundIntoDictionary=Ein Code (oder eine ID) wurde im Dictionnary <b>%s</b> gefunden
+ExampleAnyCodeOrIdFoundIntoDictionary=Jeder Code/ID aus den Stammdaten <b>%s</b>
 CSVFormatDesc=<b>Comma Separated Value</b> Format (.csv). <br> Dies ist ein Textdatei-Format, bei dem einzelne Spalten durch ein Trennzeichen [ %s ] getrennt sind. Wird innerhalb eines Feldes das Trennzeichen gefunden, wird der Wert des entsprechenden Feldes über ein Rundungszeichen [ %s ] gerundet. Das Escape-Zeichen für die Rundung ist [ %s ].
 Excel95FormatDesc=<b>Excel</b> Dateiformat (.xls)<br>Dies ist das Excel 95 Format (BIFF5).
 Excel2007FormatDesc=<b>Excel</b> Dateiformat (.xlsx)<br>Dies ist das Excel 2007 Format (XML).
@@ -130,7 +130,7 @@ ExportDateFilter='YYYY' 'YYYYMM' 'YYYYMMDD': filtert nach einem Jahr/Monat/Tag<b
 ExportNumericFilter='NNNNN' filtert genau einen Wert<br>'NNNNN+NNNNN' filtert einen Wertebereich<br>'&gt;NNNNN' filtert nach kleineren Werten<br>'&gt;NNNNN' filtert nach größeren Werten
 ## filters
 SelectFilterFields=Wenn Sie nach bestimmten Werten filtern wollen, geben Sie diese Werte hier ein.
-FilterableFields=Filterable Fields
+FilterableFields=filtrierbare Felder
 FilteredFields=Gefilterte Felder
 FilteredFieldsValues=Filter Wert
 FormatControlRule=Regel für die Formatkontrolle
diff --git a/htdocs/langs/de_DE/holiday.lang b/htdocs/langs/de_DE/holiday.lang
index b8b4af16bf4ad12916a34d125a6517239e94d114..eeaf129eafcc5a95bd267941f54e5eeaee57f0b3 100644
--- a/htdocs/langs/de_DE/holiday.lang
+++ b/htdocs/langs/de_DE/holiday.lang
@@ -8,14 +8,13 @@ NotActiveModCP=Sie müssen das Urlaubs-Modul aktivieren um diese Seite zu sehen.
 NotConfigModCP=Sie müssen das Modul Urlaub konfigurieren, um diese Seite zu sehen. Um dies zu tun, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;">klicken Sie bitte hier</a>.
 NoCPforUser=Sie haben keinen Anspruch auf Urlaub.
 AddCP=Urlaubs-Antrag einreichen
-Employe=Mitarbeiter
 DateDebCP=Urlaubsbeginn
 DateFinCP=Urlaubsende
 DateCreateCP=Erstellungsdatum
 DraftCP=Entwurf
 ToReviewCP=Wartet auf Genehmigung
 ApprovedCP=genehmigt
-CancelCP=widerrufen
+CancelCP=Storniert
 RefuseCP=abgelehnt
 ValidatorCP=Genehmiger
 ListeCP=Urlaubsliste
@@ -23,11 +22,11 @@ ReviewedByCP=Wird geprüft von
 DescCP=Beschreibung
 SendRequestCP=Urlaubs-Antrag erstellen
 DelayToRequestCP=Urlaubsanträge müssen mindestens <b>%s Tage</b> im voraus gestellt werden.
-MenuConfCP=Urlaubsliste bearbeiten
+MenuConfCP=Balance of leaves
 UpdateAllCP=Urlaube aktualisieren
 SoldeCPUser=Urlaubssaldo ist <b>%s</b> Tage.
 ErrorEndDateCP=Sie müssen ein Urlaubsende-Datum wählen, dass nach dem Urlaubsbeginn-Datum liegt.
-ErrorSQLCreateCP=Ein SQL Fehler trat auf bei der Eerstellung von:
+ErrorSQLCreateCP=Ein SQL Fehler trat auf bei der Erstellung von:
 ErrorIDFicheCP=Fehler aufgetreten: der Urlaubsantrag existiert nicht.
 ReturnCP=Zurück zur vorherigen Seite
 ErrorUserViewCP=Sie sind nicht berechtigt diesen Urlaubs-Antrag zu lesen.
@@ -40,7 +39,7 @@ EditCP=Bearbeiten
 DeleteCP=Lösche Gruppe
 ActionValidCP=Bestätigen
 ActionRefuseCP=Ablehnen
-ActionCancelCP=Abbrechen
+ActionCancelCP=Stornieren
 StatutCP=Status
 SendToValidationCP=Zur Überprüfung senden
 TitleDeleteCP=Urlaubsantrag löschen
@@ -64,7 +63,7 @@ TitleCancelCP=Urlaubsantrag stornieren
 ConfirmCancelCP=Möchten Sie diesen Urlaubsantrag wirklich stornieren?
 DetailRefusCP=Ablehnungsgrund
 DateRefusCP=Datum der Ablehnung
-DateCancelCP=Datum der Absage
+DateCancelCP=Datum der Stornierung
 DefineEventUserCP=Sonderurlaub für einen Anwender zuweisen
 addEventToUserCP=Urlaub zuweisen
 MotifCP=Grund
@@ -79,12 +78,12 @@ PrevSoldeCP=Vorherige Übersicht
 NewSoldeCP=Neuer Saldo
 alreadyCPexist=Ein Urlaubsantrag wurde für diese Periode bereits erstellt.
 UserName=Nachname
-Employee=Angestellter
 FirstDayOfHoliday=Erster Tag des Urlaubs
 LastDayOfHoliday=Letzter Tag des Urlaubs
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Monatliches Update
 ManualUpdate=Manuelles Update
-HolidaysCancelation=Urlaubsanfragen Stornos
+HolidaysCancelation=Urlaubsantrag stornieren
 
 ## Configuration du Module ##
 ConfCP=Konfiguration des Urlaubsmoduls
@@ -124,7 +123,7 @@ TitleCreateEventCP=Erstellen von Sonderurlaub
 TitleUpdateEventCP=Verändern oder Löschen von Sonderurlaub
 DeleteEventOptionCP=Lösche Gruppe
 UpdateEventOptionCP=Aktualisieren
-ErrorMailNotSend=Ein Fehler ist beim EMail-Senden aufgetreten:
+ErrorMailNotSend=Ein Fehler ist beim E-Mail-Senden aufgetreten:
 NoCPforMonth=Kein Urlaub in diesen Monat.
 nbJours=Anzahl der Tage
 TitleAdminCP=Konfiguration der Urlaube
@@ -133,12 +132,15 @@ NoticePeriod=Kündigungsfrist
 HolidaysToValidate=Genehmige Urlaubsanträge
 HolidaysToValidateBody=Es folgt ein Urlaubsantrag zur Freigabe
 HolidaysToValidateDelay=Dieser Urlaub wird in weniger als %s Tagen stattfinden.
-HolidaysToValidateAlertSolde=Der Einreicher dieses Urlaubsantrags besitzt nicht mehr genügend verfügbare Tage.
+HolidaysToValidateAlertSolde=Der Ersteller dieses Urlaubsantrags besitzt nicht mehr genügend verfügbare Tage.
 HolidaysValidated=Genehmigte Urlaubsanträge
 HolidaysValidatedBody=Ihr Antrag auf Urlaub von %s bis %s wurde bewilligt.
 HolidaysRefused=Anfrage abgelehnt
 HolidaysRefusedBody=Ihr Antrag auf Urlaub von %s bis %s wurde aus folgendem Grund abgelehnt:
-HolidaysCanceled=Urlaubsantrag storniert
-HolidaysCanceledBody=Ihr Antrag auf Urlaub von %s bis %s wurde storniert.
+HolidaysCanceled=stornierter Urlaubsantrag
+HolidaysCanceledBody=Ihr Urlaubsantrag von %s bis %s wurde storniert.
 NewByMonth=Hinzugefügt pro Monat
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Öffnen Sie das Menü <strong>Start - Einstellungen - Wörterbücher - Art des Urlaubs </strong> um die verschiedene Urlaubsarten zu konfigurieren.
diff --git a/htdocs/langs/de_DE/hrm.lang b/htdocs/langs/de_DE/hrm.lang
index 3ec82e02e15c4553a31821e17b3ea88c129758b9..23080cce19ffba1e7799b820217cc1b22ba59ef4 100644
--- a/htdocs/langs/de_DE/hrm.lang
+++ b/htdocs/langs/de_DE/hrm.lang
@@ -1,13 +1,13 @@
 # Dolibarr language file - en_US - hrm
 # Admin
-HRM_EMAIL_EXTERNAL_SERVICE=Email to prevent HRM external service
-Establishments=Establishments
-Establishment=Establishment
-NewEstablishment=New establishment
-DeleteEstablishment=Delete establishment
-ConfirmDeleteEstablishment=Are-you sure to delete this establishment ?
-OpenEtablishment=Open establishment
-CloseEtablishment=Close establishment
+HRM_EMAIL_EXTERNAL_SERVICE=E-Mail, um HRM externen Service verhindern
+Establishments=Einrichtungen
+Establishment=Einrichtung
+NewEstablishment=Neue Einrichtung
+DeleteEstablishment=Einrichtung löschen
+ConfirmDeleteEstablishment=Sind Sie sicher, dass Sie diese Einrichtung löschen möchten ?
+OpenEtablishment=Einrichtung öffnen
+CloseEtablishment=Einrichtung schliessen
 # Dictionary
 DictionaryDepartment=PV - Abteilungsliste
 DictionaryFunction=PV - Stellenbezeichnungen Liste
@@ -15,5 +15,6 @@ DictionaryFunction=PV - Stellenbezeichnungen Liste
 ListOfEmployees=Liste der Mitarbeiter
 Employees=Mitarbeiter
 Employee=Mitarbeiter
+Employe=Employe
 NewEmployee=Neuer Mitarbeiter
-EmployeeCard=Employee card
+EmployeeCard=Mitarbeiter - Karte
diff --git a/htdocs/langs/de_DE/install.lang b/htdocs/langs/de_DE/install.lang
index a285ac0b20b964cfa65f367bd43bccc887d0a657..cea83838da0d6bb8d6f35cd85d4773c13dfcfc16 100644
--- a/htdocs/langs/de_DE/install.lang
+++ b/htdocs/langs/de_DE/install.lang
@@ -6,7 +6,7 @@ ConfFileExists=Die Konfigurationsdatei <b>%s</b> ist vorhanden.
 ConfFileDoesNotExists=Die Konfigurationsdatei <b>%s</b> existiert nicht !
 ConfFileDoesNotExistsAndCouldNotBeCreated=Die Konfigurationsdatei <b>%s</b> ist nicht vorhanden und konnte auch nicht erstellt werden!
 ConfFileCouldBeCreated=Die Konfigurationsdatei <b>%s</b> wurde erfolgreich erstellt.
-ConfFileIsNotWritable=Die Konfigurationsdatei <b>%s</b> ist nicht beschreibbar. Bitte überprüfen Sie die Dateizugriffsrechte. Für die Erstinstallation muss Ihr Webserver in die Konfigurationsdatei schreiben können, sezzten Sie die Dateiberechtigungen entsprechend (z.B. mittels "chmod 666" auf Unix-Betriebssystemen).
+ConfFileIsNotWritable=Die Konfigurationsdatei <b>%s</b> ist nicht beschreibbar. Bitte überprüfen Sie die Dateizugriffsrechte. Für die Erstinstallation muss Ihr Webserver in die Konfigurationsdatei schreiben können, setzen Sie die Dateiberechtigungen entsprechend (z.B. mittels "chmod 666" auf Unix-Betriebssystemen).
 ConfFileIsWritable=Die Konfigurationsdatei <b>%s</b> ist beschreibbar.
 ConfFileReload=Alle Information aus der Konfigurationsdatei laden.
 PHPSupportSessions=Ihre PHP-Konfiguration unterstützt Sessions.
@@ -29,9 +29,9 @@ ErrorDatabaseVersionTooLow=Die Version ihrer Datenbank (%s) ist veraltet. Sie be
 ErrorPHPVersionTooLow=Ihre PHP-Version ist veraltet. Sie benötigen mindestens Version %s .
 WarningPHPVersionTooLow=Die PHP-Version ist zu alt. Es wird Version %s oder höher erwartet. Sie können unter dieser PHP-Version installieren, aber sie wird nicht unterstützt.
 ErrorConnectedButDatabaseNotFound=Die Verbindung zum Server wurde erfolgreich hergestellt, die Datenbank '%s' jedoch nicht gefunden.
-ErrorDatabaseAlreadyExists=Eine Datenbank mit dem Namen '%s' exisitiert bereits.
+ErrorDatabaseAlreadyExists=Eine Datenbank mit dem Namen '%s' existiert bereits.
 IfDatabaseNotExistsGoBackAndUncheckCreate=Sollte die Datenbank noch nicht existieren, gehen Sie bitte zurück und aktivieren Sie das Kontrollkästchen "Datenbank erstellen".
-IfDatabaseExistsGoBackAndCheckCreate=Sollte die Datebank bereits existieren, gehen Sie bitte zurück und deaktivieren Sie das Kontrollkästchen "Datenbank erstellen".
+IfDatabaseExistsGoBackAndCheckCreate=Sollte die Datenbank bereits existieren, gehen Sie bitte zurück und deaktivieren Sie das Kontrollkästchen "Datenbank erstellen".
 WarningBrowserTooOld=Sie verwenden eine zu alte Version des Browsers. Installieren Sie die aktuelle Version  Ihres Browser (Empfehlung: Firefox, Chrome oder Opera).
 PHPVersion=PHP-Version
 YouCanContinue=Sie können mit der Installation fortfahren
@@ -148,8 +148,8 @@ MigrationFinished=Migration abgeschlossen
 LastStepDesc=<strong>Letzter Schritt</strong>: Legen Sie Ihr Logo und das Passwort fest, welches Sie für dolibarr verwenden möchten. Verlieren Sie diese Administrator-Passwort nicht, da es der "Generalschlüssel" ist.
 ActivateModule=Aktivieren von Modul %s
 ShowEditTechnicalParameters=Hier klicken um erweiterte Funktionen zu zeigen/bearbeiten (Expertenmodus)
-WarningUpgrade=Warning:\nDid your run a database backup first ?\nThis is highly recommanded: for example, due to some bugs into databases systems (for example mysql version 5.5.40/41/42/43), some data or tables may be lost during this process, so it is highly recommanded to have a complete dump of your database before starting migration.\n\nClick OK to start migration process...
-ErrorDatabaseVersionForbiddenForMigration=Die Version Ihres Datenbankmanager ist %s.\nDies ist einen kritischer Bug welcher zu Datenverlust führen kann, wenn Sie die Struktur der Datenbank wie vom Migrationsprozess erforderlich  ändern. Aus diesem Grund, ist die Migration nicht erlaubt bevor der Datenbankmanager auf eine später Version aktualisiert wurde (Liste betroffer Versionen %s )
+WarningUpgrade=Warnung:\nHaben Sie ein Backup der Datenbank erstellt ?\nDies ist empfohlen, da durch Fehler in der Datenbank (z.B. MySQL Version 5.5.40/41/42/43) einige Tabellen oder Daten während der Migration verloren gehen könnten.\nAlso ist es sehr wichtig, dass Sie einen vollständigen Dump der Datenbank erstellt haben, bevor Sie die Migration durchführen.\nKlicken Sie auf OK, um den Migrationsprozess zu starten.
+ErrorDatabaseVersionForbiddenForMigration=Die Version Ihres Datenbankmanager ist %s.\nDies ist einen kritischer Bug welcher zu Datenverlust führen kann, wenn Sie die Struktur der Datenbank wie vom Migrationsprozess erforderlich  ändern. Aus diesem Grund, ist die Migration nicht erlaubt bevor der Datenbankmanager auf eine später Version aktualisiert wurde (Liste betroffener Versionen %s )
 
 #########
 # upgrade
@@ -201,7 +201,7 @@ MigrationProjectTaskTime=Aktualisiere aufgewandte Zeit (in Sekunden)
 MigrationActioncommElement=Aktualisiere die Termine/Aufgaben
 MigrationPaymentMode=Migration der Daten für die Zahlungsart
 MigrationCategorieAssociation=Migration von Kategorien
-MigrationEvents=Migration of events to add event owner into assignement table
+MigrationEvents=Ereignisse migrierern, um den Besitzer des Ereignisses der Zuordnungstabelle hinzuzufügen
 MigrationReloadModule=Neu Laden von Modul %s
 ShowNotAvailableOptions=Nicht verfügbare Optionen anzeigen
 HideNotAvailableOptions=Nicht verfügbare Optionen ausblenden
diff --git a/htdocs/langs/de_DE/interventions.lang b/htdocs/langs/de_DE/interventions.lang
index d5afd40f340896cffb06cd1d5afb69227061f9f5..26cea7b49d9aef7496e2a7e06de8fbe3e7e7cf73 100644
--- a/htdocs/langs/de_DE/interventions.lang
+++ b/htdocs/langs/de_DE/interventions.lang
@@ -1,49 +1,49 @@
 # Dolibarr language file - Source file is en_US - interventions
-Intervention=Arbeitseinsatz
-Interventions=Arbeitseinsätze
-InterventionCard=Kundeneinsatz
-NewIntervention=Neuer Einsatz
-AddIntervention=Einsatz erstellen
-ListOfInterventions=Liste der Einsätze
-EditIntervention=Eingriff bearbeiten
-ActionsOnFicheInter=Aktionen zum Eingriff
-LastInterventions=Letzte %s Einsätze
-AllInterventions=Alle Einsätze
+Intervention=Serviceauftrag
+Interventions=Serviceaufträge
+InterventionCard=Serviceauftragskarte
+NewIntervention=Neuer Serviceauftrag
+AddIntervention=Serviceauftrag erstellen
+ListOfInterventions=Liste der Serviceaufträge
+EditIntervention=Serviceauftrag bearbeiten
+ActionsOnFicheInter=Aktionen zum Serviceauftrag
+LastInterventions=Letzten %s Serviceaufträge
+AllInterventions=Alle Serviceaufträge
 CreateDraftIntervention=Eingriffsentwurf
 CustomerDoesNotHavePrefix=Kunde hat kein Präfix
 InterventionContact=Kontakte/Adressen
-DeleteIntervention=Einsatz löschen
-ValidateIntervention=Einsatz freigeben
-ModifyIntervention=Geänderte Eingriff
-DeleteInterventionLine=Eingriffszeile löschen
-ConfirmDeleteIntervention=Möchten Sie diese Arbeitsleistung wirklich löschen?
-ConfirmValidateIntervention=Möchten Sie diese Arbeitsleistung  mit der Referenz <b>%s</b> wirklich freigeben?
-ConfirmModifyIntervention=Möchten sie diese Arbeitsleistung wirklich verändern?
-ConfirmDeleteInterventionLine=Möchten Sie diese Arbeitsleistung wirklich löschen?
+DeleteIntervention=Serviceauftrag löschen
+ValidateIntervention=Serviceauftrag freigeben
+ModifyIntervention=Ändere Serviceauftrag
+DeleteInterventionLine=Serviceauftragsposition löschen
+ConfirmDeleteIntervention=Möchten Sie diesen Serviceauftrag wirklich löschen?
+ConfirmValidateIntervention=Möchten Sie diesen Serviceauftrag mit der Referenz <b>%s</b> wirklich freigeben?
+ConfirmModifyIntervention=Möchten sie diesen Serviceauftrag wirklich verändern?
+ConfirmDeleteInterventionLine=Möchten Sie diese Serviceauftragsposition wirklich löschen?
 NameAndSignatureOfInternalContact=Name und Unterschrift des Mitarbeiter:
 NameAndSignatureOfExternalContact=Name und Unterschrift des Kunden:
-DocumentModelStandard=Standard-Dokumentvorlage für Arbeitseinsätze
-InterventionCardsAndInterventionLines=Einsatzkarte und Einsatzzeilen
+DocumentModelStandard=Standard-Dokumentvorlage für Serviceaufträge
+InterventionCardsAndInterventionLines=Serviceaufträge und Serviceauftragspositionen
 InterventionClassifyBilled=Eingeordnet "Angekündigt"
 InterventionClassifyUnBilled=Als "nicht verrechnet" markieren
 StatusInterInvoiced=Angekündigt
-RelatedInterventions=Verbundene Eingriffe
-ShowIntervention=Zeige Kundeneinsatz
-SendInterventionRef=Einreichung von Eingriffen %s
-SendInterventionByMail=Eingriff per E-Mail versenden
-InterventionCreatedInDolibarr=Eingriff %s erstellt
-InterventionValidatedInDolibarr=Eingriff %s freigegeben
-InterventionModifiedInDolibarr=Eingriff %s geändert
-InterventionClassifiedBilledInDolibarr=Eingriff %s als verrechnet eingestuft
-InterventionClassifiedUnbilledInDolibarr=Eingriff %s als nicht verrechnet eingestuft
-InterventionSentByEMail=Eingriff %s per E-Mail versandt
-InterventionDeletedInDolibarr=Eingriff %s gelöscht
-SearchAnIntervention=Arbeitseinsatz suchen
-InterventionsArea=Arbeitseinsätze Übersicht
-DraftFichinter=Kundeneinsätze Entwürfe
-LastModifiedInterventions=Last %s modified interventions
+RelatedInterventions=Verbundene Serviceaufträge
+ShowIntervention=Zeige Serviceauftrag
+SendInterventionRef=Einreichung von Serviceauftrag %s
+SendInterventionByMail=Serviceauftrag per E-Mail versenden
+InterventionCreatedInDolibarr=Serviceauftrag %s erstellt
+InterventionValidatedInDolibarr=Serviceauftrag %s freigegeben
+InterventionModifiedInDolibarr=Serviceauftrag %s geändert
+InterventionClassifiedBilledInDolibarr=Serviceauftrag %s als verrechnet eingestuft
+InterventionClassifiedUnbilledInDolibarr=Serviceauftrag %s als nicht verrechnet eingestuft
+InterventionSentByEMail=Serviceauftrag %s per E-Mail versendet
+InterventionDeletedInDolibarr=Serviceauftrag %s gelöscht
+SearchAnIntervention=Serviceauftrag suchen
+InterventionsArea=Übersicht Serviceaufträge
+DraftFichinter=Serviceaufträge entwerfen
+LastModifiedInterventions=letzten %s geänderten Serviceaufträge
 ##### Types de contacts #####
-TypeContact_fichinter_internal_INTERREPFOLL=Einsatz-Nachbetreuung durch Vertreter
+TypeContact_fichinter_internal_INTERREPFOLL=Serviceauftragsnachbetreuung durch Vertreter
 TypeContact_fichinter_internal_INTERVENING=laufender Kundeneinsatz
 TypeContact_fichinter_external_BILLING=Rechnungskontakt Kunde
 TypeContact_fichinter_external_CUSTOMER=Kundenkontakt-Nachbetreuung
@@ -51,17 +51,20 @@ TypeContact_fichinter_external_CUSTOMER=Kundenkontakt-Nachbetreuung
 ArcticNumRefModelDesc1=Generisches Nummernmodell
 ArcticNumRefModelError=Aktivierung nicht möglich
 PacificNumRefModelDesc1=Liefere Nummer im Format %syymm-nnnn zurück, wobei yy das Jahr, mm das Monat und nnnn eine Zahlensequenz ohne Nullwert oder Leerzeichen ist
-PacificNumRefModelError=Eine Interventionskarte beginnend mit $syymm existiert bereits und ist nicht mir dieser Numerierungssequenz kompatibel. Bitte löschen oder umbenennen.
-PrintProductsOnFichinter=Drucke Produkte auf Eingriffskarte
-PrintProductsOnFichinterDetails=Interventionen von Bestellungen generiert
+PacificNumRefModelError=Eine Serviceauftragskarte beginnend mit $syymm existiert bereits und ist nicht mir dieser Numerierungssequenz kompatibel. Bitte löschen oder umbenennen.
+PrintProductsOnFichinter=Drucke Produkte auf Serviceauftragskarte
+PrintProductsOnFichinterDetails=Serviceaufträge durch Bestellungen generiert
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
-InterId=Einsatz ID
-InterRef=Einsatz Ref.
-InterDateCreation=Erstellungsdatum Einsatz
-InterDuration=Dauer Arbeitseinsatz
-InterStatus=Einsatz Status
-InterNote=Einsatzbeschreibung
-InterLineId=Line id intervention
-InterLineDate=Line date intervention
-InterLineDuration=Line duration intervention
-InterLineDesc=Line description intervention
+InterId=Serviceauftrag ID
+InterRef=Serviceauftrag Ref.
+InterDateCreation=Erstellungsdatum Serviceauftrag
+InterDuration=Dauer Serviceauftrag
+InterStatus=Status Serviceauftrag
+InterNote=Serviceauftrag Bemerkung
+InterLineId=Serviceauftragsposition ID
+InterLineDate=Serviceauftragsposition Datum
+InterLineDuration=Serviceauftragsposition Dauer
+InterLineDesc=Serviceauftragsposition Beschreibung
diff --git a/htdocs/langs/de_DE/loan.lang b/htdocs/langs/de_DE/loan.lang
index d131147e7c489de13f62cffcae016704061220b4..64697c3c1e47a0ba8d3d859f71c530992a3dcaa2 100644
--- a/htdocs/langs/de_DE/loan.lang
+++ b/htdocs/langs/de_DE/loan.lang
@@ -4,7 +4,7 @@ Loans=Kredite
 NewLoan=Neuer Kredit
 ShowLoan=Zeige Kredit
 PaymentLoan=Kreditauszahlung
-ShowLoanPayment=Zeige Kreidtauszahlung
+ShowLoanPayment=Zeige Kreditauszahlung
 Capital=Kapital
 Insurance=Versicherung
 Interest=Zins
@@ -22,13 +22,13 @@ ErrorLoanLength=Die Kreditdauer muss eine Nummer sein und größer als 0
 ErrorLoanInterest=Die jährlichen Zinsen müssen eine Nummer sein und größer als 0
 # Calc
 LoanCalc=Bankkreditrechner
-PurchaseFinanceInfo=Kauf und Finanzierungs Inforamtionen
+PurchaseFinanceInfo=Einkauf- und Finanzierungsinformationen
 SalePriceOfAsset=Verkaufspreis
 PercentageDown=Prozentsatz
 LengthOfMortgage=Kreditlaufzeit
 AnnualInterestRate=Jahreszinssatz
 ExplainCalculations=Berechnungs-Erläuterung
-ShowMeCalculationsAndAmortization=Zeigen Sie mir die Berechnungen und Amortization
+ShowMeCalculationsAndAmortization=Zeigen Sie mir die Berechnungen und Amortisation
 MortgagePaymentInformation=Kredit Zahlung Informationen
 DownPayment=Anzahlung
 DownPaymentDesc=Die <b>Anzahlung</b> = Der Preis des Kredits multipliziert mit dem Prozentsatz geteilt durch 100  (5% wird 5/100 oder 0,05)
diff --git a/htdocs/langs/de_DE/mails.lang b/htdocs/langs/de_DE/mails.lang
index 4c67ce71946b930f6e5586e4a798715649cc95e6..d2f5af605dad4d995490d1880b29b3c531350b12 100644
--- a/htdocs/langs/de_DE/mails.lang
+++ b/htdocs/langs/de_DE/mails.lang
@@ -50,7 +50,7 @@ MailingStatusNotContact=Nicht mehr kontaktieren
 ErrorMailRecipientIsEmpty=Das Empfängerfeld ist leer
 WarningNoEMailsAdded=Keine neuen E-Mail-Adressen für das Hinzufügen zur Empfängerliste.
 ConfirmValidMailing=Möchten Sie diese E-Mail-Kampagne wirklich freigeben?
-ConfirmResetMailing=Achtung, wenn Sie diese E-Mail Kampangne (<b>%s</b>), können Sie diese Aktion nochmals versenden. Sind Sie sicher, das ist tun möchten?
+ConfirmResetMailing=Achtung, wenn Sie diese E-Mail Kampagne (<b>%s</b>), können Sie diese Aktion nochmals versenden. Sind Sie sicher, das ist tun möchten?
 ConfirmDeleteMailing=Möchten Sie diese E-Mail-Kampagne wirklich löschen?
 NbOfRecipients=Anzahl der Empfänger
 NbOfUniqueEMails=Anzahl einzigartige E-Mail-Adressen
@@ -77,15 +77,16 @@ CheckRead=Lesebestätigung
 YourMailUnsubcribeOK=Die E-Mail-Adresse <b>%s</b> ist korrekt aus der Mailing-Liste ausgetragen.
 MailtoEMail=Verknüpfung zu E-Mail
 ActivateCheckRead=Erlaube den Zugriff auf den "Abmelde"-Link
-ActivateCheckReadKey=Schlüssel um die URL für "Lesebestätigung" und "Abmelden/Unsubscribe" zu verschlüsseln
+ActivateCheckReadKey=Schlüssel um die URL für "Lesebestätigung" und "Abmelden" zu verschlüsseln
 EMailSentToNRecipients=E-Mail versandt an %s Empfänger.
 XTargetsAdded=<b>%s</b> Empfänger der Liste zugefügt
 EachInvoiceWillBeAttachedToEmail=Ein Dokument mit der Standard-Vorlage für Rechnungen wird erstellt und an jede E-Mail angehängt.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Zahlungserinnerung für Rechnung %s (%s)
 SendRemind=Zahlungserinnerung per E-Mail versenden
 RemindSent=%s Erinnerung(en) gesendet
-AllRecipientSelected=Alle ausgewählten Partner wenn eine Email erfasst wurde.
-NoRemindSent=Keine eMail-Erinnerung versandt
+AllRecipientSelected=Alle ausgewählten Partner wenn eine E-Mail erfasst wurde.
+NoRemindSent=Keine E-Mail-Erinnerung versandt
 ResultOfMailSending=Sende-Ergebnis der E-Mail-Kampagne
 NbSelected=Anz. gewählte
 NbIgnored=Anz. ignoriert
@@ -104,7 +105,7 @@ MailingModuleDescContactsByCategory=Kontakte/Adressen von Partnern (nach Kontakt
 MailingModuleDescMembersCategories=Mitglieder der Stiftung (durch Kategorie)
 MailingModuleDescContactsByFunction=Kontakt über Partner (durch Position/Funktion)
 LineInFile=Zeile %s in der Datei
-RecipientSelectionModules=Definiert Empfängerauswahlen
+RecipientSelectionModules=Definiert Auswahl von Empfängern
 MailSelectedRecipients=Ausgewählte Empfänger
 MailingArea=E-Mail Kampagnenübersicht
 LastMailings=%s neueste E-Mail Kampagnen
@@ -130,18 +131,18 @@ YouCanUseCommaSeparatorForSeveralRecipients=Trennen Sie mehrere Empfänger mit e
 TagCheckMail=Öffnen der Mail verfolgen
 TagUnsubscribe=Abmelde Link
 TagSignature=Signatur des Absenders
-TagMailtoEmail=E-Mailadresses des Empfängers
+TagMailtoEmail=E-Mailadresse des Empfängers
 NoEmailSentBadSenderOrRecipientEmail=Kein E-Mail gesendet. Ungültige Absender oder Empfänger Adresse. Benutzerprofil kontrollieren.
 # Module Notifications
 Notifications=Benachrichtigungen
 NoNotificationsWillBeSent=Für dieses Ereignis und diesen Partner sind keine Benachrichtigungen geplant
 ANotificationsWillBeSent=Eine Benachrichtigung wird per E-Mail versandt
 SomeNotificationsWillBeSent=%s Benachrichtigungen werden per E-Mail versandt
-AddNewNotification=Neues E-Mail-Beachrichtigungsziel aktivieren
-ListOfActiveNotifications=Liste aller aktiven E-Mail-Beachrichtigungsziele
+AddNewNotification=Neues E-Mail-Benachrichtigungsziel aktivieren
+ListOfActiveNotifications=Liste aller aktiven E-Mail-Benachrichtigungsziele
 ListOfNotificationsDone=Liste aller versandten E-Mail Benachrichtigungen
 MailSendSetupIs=Der E-Mail-Versand wurde auf '%s' konfiguriert. Dieser Modus kann nicht für E-Mail-Kampagnen verwendet werden.
-MailSendSetupIs2=Sie müssen zuerst mit einem Admin-Konto im Menü %sStart - Einstellungen - EMails%s den Parameter <strong>'%s'</strong> auf den Modus '%s' ändern. Dann können Sie die Daten des SMTP-Servers von Ihrem Internetdienstanbieter eingeben und die E-Mail-Kampagnen-Funktion nutzen.
+MailSendSetupIs2=Sie müssen zuerst mit einem Admin-Konto im Menü %sStart - Einstellungen - E-Mails%s den Parameter <strong>'%s'</strong> auf den Modus '%s' ändern. Dann können Sie die Daten des SMTP-Servers von Ihrem Internetdienstanbieter eingeben und die E-Mail-Kampagnen-Funktion nutzen.
 MailSendSetupIs3=Bei Fragen über die Einrichtung Ihres SMTP-Servers, können Sie %s fragen.
 YouCanAlsoUseSupervisorKeyword=Sie können auch das Schlüsselwort <strong>__SUPERVISOREMAIL__</strong> um E-Mail haben, die an den Vorgesetzten des Benutzers gesendet hinzufügen (funktioniert nur, wenn eine E-Mail für dieses Supervisor definiert)
 NbOfTargetedContacts=Aktuelle Anzahl der E-Mails-Kontakte
diff --git a/htdocs/langs/de_DE/main.lang b/htdocs/langs/de_DE/main.lang
index 023ca63a27ae76cc121c293fee33481d2025b94b..740c5cb27fde9e27b19c09d5baa5280d4cac626c 100644
--- a/htdocs/langs/de_DE/main.lang
+++ b/htdocs/langs/de_DE/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%d.%m.%Y %H:%M:%S
 FormatDateHourTextShort=%d %b %Y %H:%M
 FormatDateHourText=%d %B %Y %H:%M
 DatabaseConnection=Datenbankverbindung
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Keine Übersetzung
 NoRecordFound=Keinen Eintrag gefunden
 NoError=kein Fehler
@@ -105,6 +106,7 @@ NotePrivate=Anmerkung (privat)
 PrecisionUnitIsLimitedToXDecimals=Stückpreisgenauigkeit im System auf <b>%s</b> Dezimalstellen beschränkt.
 DoTest=Testen
 ToFilter=Filtern
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Achtung: Bei mindestens einem Element wurde die Toleranz der Zeitverzögerung überschritten.
 yes=ja
 Yes=Ja
@@ -142,7 +144,7 @@ ConfirmSendCardByMail=Möchten Sie den Inhalt dieser Karte wirklich an <b>%s</b>
 Delete=Löschen
 Remove=Entfernen
 Resiliate=Ausgleichen
-Cancel=Abbrechen
+Cancel=Stornieren
 Modify=Ändern
 Edit=Bearbeiten
 Validate=Bestätigen
@@ -228,12 +230,14 @@ Now=Jetzt
 HourStart=Startzeit
 Date=Datum
 DateAndHour=Datum und Uhrzeit
-DateStart=Beginndatum
+DateToday=Today's date
+DateReference=Reference date
+DateStart=Startdatum
 DateEnd=Enddatum
 DateCreation=Erstellungsdatum
 DateCreationShort=Erstelldatum
 DateModification=Änderungsdatum
-DateModificationShort=Änd.Datum
+DateModificationShort=Änderungsdatum
 DateLastModification=Datum der letzten Änderung
 DateValidation=Freigabedatum
 DateClosing=Schließungsdatum
@@ -241,12 +245,12 @@ DateDue=Fälligkeitsdatum
 DateValue=Valutadatum
 DateValueShort=Valutadatum
 DateOperation=Ausführungsdatum
-DateOperationShort=Ausf.Datum
+DateOperationShort=Ausführungsdatum
 DateLimit=Frist
 DateRequest=Anfragedatum
 DateProcess=Verarbeite Datum
-DatePlanShort=gepl. Datum
-DateRealShort=eff. Datum
+DatePlanShort=geplantes Datum
+DateRealShort=effektives Datum
 DateBuild=Datum der Berichterstellung
 DatePayment=Zahlungsziel
 DateApprove=Genehmigungsdatum
@@ -314,11 +318,11 @@ AmountInvoice=Rechnungsbetrag
 AmountPayment=Zahlungsbetrag
 AmountHTShort=Nettobetrag
 AmountTTCShort=Bruttobetrag
-AmountHT=Betrag (exkl. MwSt.)
+AmountHT=Betrag (exkl. USt.)
 AmountTTC=Bruttobetrag
-AmountVAT=MwSt.-Betrag
-AmountLT1=MwSt.-Betrag 2
-AmountLT2=MwSt.-Betrag 3
+AmountVAT=USt.-Betrag
+AmountLT1=USt.-Betrag 2
+AmountLT2=USt.-Betrag 3
 AmountLT1ES=RE Betrag
 AmountLT2ES=Betrag IRPF
 AmountTotal=Gesamtbetrag
@@ -331,20 +335,20 @@ Percentage=Prozentangabe
 Total=Gesamt
 SubTotal=Zwischensumme
 TotalHTShort=Nettosumme
-TotalTTCShort=Gesamtbetrag (inkl. MwSt.)
+TotalTTCShort=Gesamtbetrag (inkl. USt.)
 TotalHT=Gesamtpreis
 TotalHTforthispage=Gesamtpreis für diese Seite
 TotalTTC=Bruttosumme
 TotalTTCToYourCredit=Bruttosumme
-TotalVAT=MwSt.
-TotalLT1=Gesamte MwSt. 2
-TotalLT2=Gesamte MwSt. 3
+TotalVAT=USt.
+TotalLT1=Gesamte USt. 2
+TotalLT2=Gesamte USt. 3
 TotalLT1ES=Summe RE
 TotalLT2ES=Summe IRPF
-IncludedVAT=inkl. MwSt.
+IncludedVAT=inkl. USt.
 HT=Netto
 TTC=Brutto
-VAT=MwSt.
+VAT=USt.
 VATs=Mehrwertsteuern
 LT1ES=RE
 LT2ES=EKSt.
@@ -607,7 +611,8 @@ TotalWoman=Vollständig
 TotalMan=Vollständig
 NeverReceived=Nie erhalten
 Canceled=Storniert
-YouCanChangeValuesForThisListFromDictionarySetup=Sie können die Listenoptionen in den Wörterbuch-Einstellungen anpassen
+YouCanChangeValuesForThisListFromDictionarySetup=Sie können die Listenoptionen in den Stammdaten anpassen
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Farbe
 Documents=Verknüpfte Dokumente
 DocumentsNb=Verknüpfte Dateien (%s)
@@ -646,10 +651,10 @@ MenuManager=Menüverwaltung
 NoMenu=Kein Untermenü
 WarningYouAreInMaintenanceMode=Achtung: Die Anwendung befindet sich im Wartungsmodus und kann derzeit nur von Benutzer <b>%s</b> verwendet werden.
 CoreErrorTitle=Systemfehler
-CoreErrorMessage=Entschulding, ein Fehler ist aufgetreten. Prüfen die die Logdateien oder benachrichtigen Sie den Administrator.
+CoreErrorMessage=Entschuldigung, ein Fehler ist aufgetreten. Prüfen die die Logdateien oder benachrichtigen Sie den Administrator.
 CreditCard=Kreditkarte
 FieldsWithAreMandatory=Felder mit <b>%s</b> sind Pflichtfelder
-FieldsWithIsForPublic=Felder mit <b>%s</b> sind für Mitglieder öffentlich sichtbar. Über die "Öffentlich"-Checkbox können Sie dies ändern.
+FieldsWithIsForPublic=Felder mit <b>%s</b> sind für Mitglieder öffentlich sichtbar. Über das "Öffentlich"-Kontrollkästchen können Sie dies ändern.
 AccordingToGeoIPDatabase=(nach GeoIP-Auflösung)
 Line=Zeile
 NotSupported=Nicht unterstützt
@@ -670,7 +675,7 @@ Frequency=Frequenz
 IM=Instant Messaging
 NewAttribute=Neues Attribut
 AttributeCode=Attribut Code
-OptionalFieldsSetup=Zusätzliche Attributeinstellungen
+OptionalFieldsSetup=Einstellungen für zusätzliche Attribute
 URLPhoto=URL für Foto/Bild
 SetLinkToAnotherThirdParty=Link zu einem anderen Partner
 CreateDraft=Entwurf erstellen
@@ -695,6 +700,7 @@ Test=Testen
 Element=Element
 NoPhotoYet=Noch keine Bilder verfügbar
 HomeDashboard=Startseite Übersicht
+Dashboard=Dashboard
 Deductible=absetzbar
 from=von
 toward=zu
@@ -776,6 +782,6 @@ SearchIntoCustomerOrders=Kundenaufträge
 SearchIntoSupplierOrders=Lieferantenbestellungen
 SearchIntoCustomerProposals=Angebote Kunde
 SearchIntoSupplierProposals=Angebote Lieferant
-SearchIntoInterventions=Arbeitseinsätze
+SearchIntoInterventions=Serviceaufträge
 SearchIntoContracts=Verträge
 SearchIntoExpenseReports=Spesenabrechnungen
diff --git a/htdocs/langs/de_DE/margins.lang b/htdocs/langs/de_DE/margins.lang
index 884e87460a7c5b157e7facb6675a29b03448ffde..b56aac05f1a203ffa1018e630ec6f7fd3d830fff 100644
--- a/htdocs/langs/de_DE/margins.lang
+++ b/htdocs/langs/de_DE/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Produkt oder Service wählen
 StartDate=Vertragsbeginn
 EndDate=Vertragsende
 Launch=Start
-ForceBuyingPriceIfNull=Einkaufspreis erzwingen wenn Null
-ForceBuyingPriceIfNullDetails=falls "AN", wird die Spanne der Zeile als Null angezeigt (Kaufpreis = Verkaufspreis), andernfalls ("AUS"), ist die Gewinnspanne gleich dem Verkaufspreis (Kaufpreis = 0)
+ForceBuyingPriceIfNull=Benutze EK-Preis/Herstellkosten als Verkaufspreis, wenn nicht definiert
+ForceBuyingPriceIfNullDetails=Falls die Option aktiviert ist, wird die Spanne der Zeile mit Null angezeigt (EK-Preis/Herstellkosten = Verkaufspreis). Ist die Option deaktiviert, wird die Spanne gleich der Voreinstellung sein.
 MARGIN_METHODE_FOR_DISCOUNT=Margin-Methode für globale Rabatte
 UseDiscountAsProduct=Als Produkt
 UseDiscountAsService=Als Service
@@ -35,8 +35,9 @@ MargeBrute=Roherlös
 MargeNette=Nettoerlös
 MargeType1=Spanne vom besten Lieferantenpreis
 MargeType2=gewichtete Durchschnittspreis (WAP)
-MARGIN_TYPE_DETAILS=Roherlös: Verkaufspreis - Einkaufspreis<br/>Nettoerlös: Verkaufspreis - Kosten
-MarginTypeDesc=Gewinnspanne nach bestem Verkaufpreis: Verkaufspreis - Bester Lieferantenpreis definiert auf Produktkarte <br/> Gewinnspanne nach gewichteten Durchschnittspreis (WAP): Verkaufspreis - gewichteter Produkt Durchschnittspreis
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Selbstkostenpreis
 BuyingCost=Kosten
 UnitCharges=Einheit Kosten
diff --git a/htdocs/langs/de_DE/members.lang b/htdocs/langs/de_DE/members.lang
index 5ab00878ff95d5371e2eff8f39391b1657a1bddc..30542bbc7842e99220154b94e30f9098d5a22877 100644
--- a/htdocs/langs/de_DE/members.lang
+++ b/htdocs/langs/de_DE/members.lang
@@ -1,7 +1,7 @@
 # Dolibarr language file - Source file is en_US - members
 MembersArea=Mitglieder-Übersicht
 PublicMembersArea=Öffentliche Mitgliederübersicht
-MemberCard=Mitgliedskarte
+MemberCard=Mitglied - Karte
 SubscriptionCard=Abonnementkarte
 Member=Mitglied
 Members=Mitglieder
@@ -53,7 +53,7 @@ MembersAttributes=Mitgliedsattribute
 SearchAMember=Suche Mitglied
 MemberStatusDraft=Entwurf (freizugeben)
 MemberStatusDraftShort=Freizugeben
-MemberStatusActive=Freigegebene (Abonnement ausständig)
+MemberStatusActive=Freigegebene (Abonnement ausstehend)
 MemberStatusActiveShort=Freigegeben
 MemberStatusActiveLate=Abonnement abgelaufen
 MemberStatusActiveLateShort=Abgelaufen
@@ -109,7 +109,7 @@ ConfirmValidateMember=Möchten Sie dieses Mitglied wirklich freigeben?
 FollowingLinksArePublic=Die folgenden Links sind öffentlich zugängliche Seiten und als solche nicht durch die Dolibarr-Zugriffskontrolle geschützt. Es handelt sich dabei zudem um unformatierte Seiten, die beispielsweise eine Liste aller in der Datenbank eingetragenen Mitglieder anzeigen.
 PublicMemberList=Liste öffentlicher Mitglieder
 BlankSubscriptionForm=Leeres Abonnementformular
-BlankSubscriptionFormDesc=Dolibarr kann Ihnen eine öffentliche URL für externe Besucher anbieten um zu bezahlen. Wenn ein Online-Zahlungsmittel Modul aktiviert ist, wird ein Bezahlungsformular automatisch bereitgestellt.
+BlankSubscriptionFormDesc=Dolibarr kann Ihnen eine öffentliche URL für externe Besucher anbieten um zu bezahlen. Wenn ein Online-Zahlungsmittel Modul aktiviert ist, wird ein Bezahlformular automatisch bereitgestellt.
 EnablePublicSubscriptionForm=Aktivieren Sie die Freigabe des öffentlichen Abo-Formulars
 MemberPublicLinks=Öffentliche Links/Seiten
 ExportDataset_member_1=Mitglieder und Abonnements
@@ -117,7 +117,7 @@ ImportDataset_member_1=Mitglieder
 LastMembers=%s neueste Mitglieder
 LastMembersModified=%s zuletzt bearbeitete Mitglieder
 LastSubscriptionsModified=%s zuletzt bearbeitete Mitgliedschaften
-AttributeName=Attributname
+AttributeName=Attributbezeichnung
 String=Zeichenkette
 Text=Text
 Int=Integer
@@ -130,8 +130,8 @@ MemberModifiedInDolibarr=Mitglied bearbeitet
 SendAnEMailToMember=Informations-E-Mail an Mitglied senden
 DescADHERENT_AUTOREGISTER_NOTIF_MAIL_SUBJECT=Betreff der E-Mail im Falle der automatischen Registrierung eines Gastes 
 DescADHERENT_AUTOREGISTER_NOTIF_MAIL=Empfangene E-Mail im Falle der automatischen Registrierung eines Gastes 
-DescADHERENT_AUTOREGISTER_MAIL_SUBJECT=E-Mail-Betreff für automat. Mitgliederabonnements
-DescADHERENT_AUTOREGISTER_MAIL=E-Mail-Text für autom. Mitgliederabonnements
+DescADHERENT_AUTOREGISTER_MAIL_SUBJECT=E-Mail-Betreff für automatische Mitgliederabonnements
+DescADHERENT_AUTOREGISTER_MAIL=E-Mail-Text für automatische Mitgliederabonnements
 DescADHERENT_MAIL_VALID_SUBJECT=E-Mail-Betreff bei Mitgliederfreigabe
 DescADHERENT_MAIL_VALID=E-Mail-Text für Mitgliederfreigabe
 DescADHERENT_MAIL_COTIS_SUBJECT=E-Mail-Betreff für (Mitglieds-)Beiträge
@@ -154,10 +154,10 @@ NoThirdPartyAssociatedToMember=Mit diesem Mitglied ist kein Partner verknüpft
 ThirdPartyDolibarr=Partner
 MembersAndSubscriptions= Mitglieder und Abonnements
 MoreActions=Ergänzende Erfassungsereignisse
-MoreActionsOnSubscription=Ergänzende Maßnahmen standardmäßig vorgeschlagen bei der Aufnahme einer Subscription
-MoreActionBankDirect=Autom. einen Einzugsermächtigunsantrag zum Mitgliedskonto erstellen
-MoreActionBankViaInvoice=Autom. eine Rechnung zum Mitgliedskonto erstellen und Zahlung auf Rechnung setzen
-MoreActionInvoiceOnly=Autom. eine Rechnung (ohne Zahlung) erstellen
+MoreActionsOnSubscription=Ergänzende Maßnahmen standardmäßig vorgeschlagen bei der Aufnahme eines Abonnements
+MoreActionBankDirect=Automatisch einen Einzugsermächtigungsantrag zum Mitgliedskonto erstellen
+MoreActionBankViaInvoice=Automatisch eine Rechnung zum Mitgliedskonto erstellen und Zahlung auf Rechnung setzen
+MoreActionInvoiceOnly=Automatisch eine Rechnung (ohne Zahlung) erstellen
 LinkToGeneratedPages=Visitenkarten erstellen
 LinkToGeneratedPagesDesc=Auf dieser Seite können Sie PDF-Dateien mit Visitenkarten Ihrer Mitglieder (auf Wunsch länderspezifisch) erstellen.
 DocForAllMembersCards=Visitenkarten für alle Mitglieder erstellen (Gewähltes Ausgabeformat: <b>%s</b>)
@@ -173,12 +173,12 @@ MembersStatisticsByRegion=Mitgliederstatistik nach Region
 MemberByRegion=Mitglieder nach Region
 NbOfMembers=Anzahl der Mitglieder
 NoValidatedMemberYet=Kein freizugebenden Mitglieder gefunden
-MembersByCountryDesc=Diese Form zeigt Ihnen die Mitgliederstatistik nach Ländern. Die Grafik basiert auf Googles Online-Grafik-Service ab und funktioniert nur wenn eine Internverbindung besteht.
+MembersByCountryDesc=Diese Form zeigt Ihnen die Mitgliederstatistik nach Ländern. Die Grafik basiert auf Googles Online-Grafik-Service ab und funktioniert nur wenn eine Internetverbindung besteht.
 MembersByStateDesc=Diese Form zeigt Ihnen die Statistik der Mitglieder nach Bundesland/Provinz/Kanton.
-MembersByTownDesc=Diese Form zeigt Ihnen die Statisik der Mitglieder nach Städten.
-MembersStatisticsDesc=Wählen Sie die gewünschte Statisik aus ...
+MembersByTownDesc=Diese Form zeigt Ihnen die Statistik der Mitglieder nach Städten.
+MembersStatisticsDesc=Wählen Sie die gewünschte Statistik aus ...
 MenuMembersStats=Statistik
-LastMemberDate=Letztet Mitgliedsdatum
+LastMemberDate=Letztes Mitgliedsdatum
 Nature=Art
 Public=Informationen sind öffentlich (Nein = Privat)
 Exports=Exports
@@ -201,6 +201,6 @@ MembersStatisticsByProperties=Mitgliederstatistik nach Eigenschaften
 MembersByNature=Dieser Bildschirm zeigt ihre Statistiken über ihre Mitgliedschaft.
 MembersByRegion=Dieser Bildschirm zeigt Ihnen Statistiken über Mitglieder nach Regionen.
 VATToUseForSubscriptions=Mehrwertsteuersatz für Mitgliedschaften
-NoVatOnSubscription=Kein MwSt. auf Mitgliedschaft.
+NoVatOnSubscription=Kein USt. auf Mitgliedschaft.
 MEMBER_PAYONLINE_SENDEMAIL=E-Mail, um zu warnen, wenn Dolibarr erhält eine Bestätigung von einer   validierte Zahlung des Mitglieds
 ADHERENT_PRODUCT_ID_FOR_SUBSCRIPTIONS=Produkt/Leistung verwendet für den Beitrag in der Rechnungszeile: %s
diff --git a/htdocs/langs/de_DE/oauth.lang b/htdocs/langs/de_DE/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..403d8d7e2c14fa5f8c97b3398d74e542c48db80a 100644
--- a/htdocs/langs/de_DE/oauth.lang
+++ b/htdocs/langs/de_DE/oauth.lang
@@ -1,14 +1,14 @@
 # Dolibarr language file - Source file is en_US - oauth
-ConfigOAuth=Oauth Configuration
-NoAccessToken=No access token saved into local database
-HasAccessToken=A token was generated and saved into local database
-NewTokenStored=Token received ans saved
-ToCheckDeleteTokenOnProvider=To check/delete authorization saved by %s OAuth provider
-TokenDeleted=Token deleted
-RequestAccess=Click here to request/renew access and receive a new token to save
-DeleteAccess=Click here to delete token
-UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
-OAUTH_GOOGLE_NAME=Api Google
-OAUTH_GOOGLE_ID=Api Google Id
-OAUTH_GOOGLE_SECRET=Api Google Secret
+ConfigOAuth=Oauth Konfiguration
+NoAccessToken=Kein Zugriffstoken in der lokalen Datenbank gespeichert
+HasAccessToken=Ein Token wurde erstellt und in der lokalen Datenbank gespeichert
+NewTokenStored=Empfangene und gespeicherte Token
+ToCheckDeleteTokenOnProvider=Prüfe/Löschen Authentifizierung gespeichert durch den OAuth Anbieter %s
+TokenDeleted=Token gelöscht
+RequestAccess=Hier klcien, um Zugriff anzufordern/zu verlängern und einen neuen Token zu bekommen.
+DeleteAccess=Hier klicken, um das Token zu löschen
+UseTheFollowingUrlAsRedirectURI=Benutzen Sie diese URL zur Weiterleitung, wenn Sie die Anmeldedaten Ihres OAuth Anbieters erstellen.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
+OAUTH_GOOGLE_NAME=Google API
+OAUTH_GOOGLE_ID=Google APi ID
+OAUTH_GOOGLE_SECRET=API Google Secret
diff --git a/htdocs/langs/de_DE/opensurvey.lang b/htdocs/langs/de_DE/opensurvey.lang
index 90c245a5933ee67017166cbb09e78dbaf68abf72..32b099052a88d5d078d4bb4d3a8eb9c1e6977422 100644
--- a/htdocs/langs/de_DE/opensurvey.lang
+++ b/htdocs/langs/de_DE/opensurvey.lang
@@ -9,7 +9,7 @@ AddACommentForPoll=Sie können einen Kommentar zur Umfrage hinzufügen...
 AddComment=Kommentar hinzufügen
 CreatePoll=Abstimmung erstellen
 PollTitle=Abstimmungstitel
-ToReceiveEMailForEachVote=EMail für jede Stimme erhalten
+ToReceiveEMailForEachVote=E-Mail für jede Stimme erhalten
 TypeDate=Typ Datum
 TypeClassic=Typ Standard
 OpenSurveyStep2=Wählen Sie Ihre Daten aus den freien Tagen (grau). Die ausgewählten Tage erscheinen grün. Sie können einen bereits ausgewählten Tag durch anklicken wieder abwählen.
@@ -28,7 +28,7 @@ UrlForSurvey=Öffentliche URL für einen Direktzugriff zur Umfrage
 PollOnChoice=Sie erstellen eine Umfrage mit einer Multiple Choice-Variante. Geben Sie zuerst alle möglichen Varianten für die Abstimmung ein:
 CreateSurveyDate=Erstelle Datums-Umfrage
 CreateSurveyStandard=Erstelle Standard-Umfrage
-CheckBox=Einfache Checkbox
+CheckBox=Einfaches Kontrollkästchen
 YesNoList=Liste (leer/ja/nein)
 PourContreList=Liste (leer/dafür/dagegen)
 AddNewColumn=Neue Spalte hinzufügen
@@ -38,7 +38,7 @@ ExpireDate=Frist
 NbOfSurveys=Anzahl Umfragen
 NbOfVoters=Anzahl Wähler
 SurveyResults=Resultate
-PollAdminDesc=Du bist berechtigt, sämtliche Abstimmungszeilen mit dem Button "Edit" zu verändern. Du kannst zusätzlich auch eine Spalte oder Zeile mit %s entfernen. Du kannst auch eine neue Spalte hinzufügen mit %s.
+PollAdminDesc=Sie sind berechtigt, sämtliche Abstimmungszeilen mit dem Button "Edit" zu verändern. Sie können zusätzlich auch eine Spalte oder Zeile mit %s entfernen. Sie können auch eine neue Spalte hinzufügen mit %s.
 5MoreChoices=5 weitere Möglichkeiten
 Abstention=Enthaltung
 Against=Dagegen
@@ -55,7 +55,7 @@ NoCommentYet=Bisher gibt es keine Kommentare für diese Abstimmung
 CanEditVotes=Kann Stimmen von Anderen verändern
 CanComment=Teilnehmer können kommentieren
 CanSeeOthersVote=Teilnehmer können die Auswahl anderer sehen
-SelectDayDesc=Für jeden ausgewählen Tag kann man die Besprechungszeiten im folgenden Format auswählen:<br>- leer,<br>- "8h", "8H" oder "8:00" für eine Besprechungs-Startzeit,<br>- "8-11", "8h-11h", "8H-11H" oder "8:00-11:00" für eine Besprechungs-Start und -Endzeit,<br>- "8h15-11h15", "8H15-11H15" oder "8:15-11:15" für das Gleiche aber mit Minuten.
+SelectDayDesc=Für jeden ausgewählten Tag kann man die Besprechungszeiten im folgenden Format auswählen:<br>- leer,<br>- "8h", "8H" oder "8:00" für eine Besprechungs-Startzeit,<br>- "8-11", "8h-11h", "8H-11H" oder "8:00-11:00" für eine Besprechungs-Start und -Endzeit,<br>- "8h15-11h15", "8H15-11H15" oder "8:15-11:15" für das Gleiche aber mit Minuten.
 BackToCurrentMonth=Zurück zum aktuellen Monat
 ErrorOpenSurveyFillFirstSection=Sie haben den ersten Teil der Umfrage-Erstellung nicht ausgefüllt
 ErrorOpenSurveyOneChoice=Geben Sie mindestens eine Auswahl an
diff --git a/htdocs/langs/de_DE/orders.lang b/htdocs/langs/de_DE/orders.lang
index b373c5c86f1fdbadfacaeb6816be81ec09e2be2c..d47c05ca12ca352b996588c42b0d360753457994 100644
--- a/htdocs/langs/de_DE/orders.lang
+++ b/htdocs/langs/de_DE/orders.lang
@@ -1,7 +1,7 @@
 # Dolibarr language file - Source file is en_US - orders
 OrdersArea=Kundenaufträge-Übersicht
 SuppliersOrdersArea=Übersicht Lieferantenbestellungen
-OrderCard=Bestell-Karte
+OrderCard=Bestellung - Karte
 OrderId=Bestell-ID
 Order=Bestellung
 Orders=Bestellungen
@@ -31,7 +31,7 @@ StatusOrderSentShort=In Bearbeitung
 StatusOrderSent=Versand in Bearbeitung
 StatusOrderOnProcessShort=Bestellt
 StatusOrderProcessedShort=Bearbeitet
-StatusOrderDelivered=Delivered
+StatusOrderDelivered=Geliefert
 StatusOrderToBillShort=Zu verrechnen
 StatusOrderToBill2Short=Zu verrechnen
 StatusOrderApprovedShort=genehmigt
@@ -71,8 +71,8 @@ Approve2Order=Genehmige Bestellung (2. Bestätigung)
 ValidateOrder=Bestellung freigeben
 UnvalidateOrder=Unbestätigte Bestellung
 DeleteOrder=Bestellung löschen
-CancelOrder=Bestellung verwerfen
-OrderReopened= Order %s Reopened
+CancelOrder=Bestellung stornieren
+OrderReopened= Auftrag %s wieder geöffnet
 AddOrder=Bestellung erstellen
 AddToMyOrders=Zu meinen Bestellungen hinzufügen
 AddToOtherOrders=Zu anderer Bestellungen hinzufügen
@@ -82,13 +82,13 @@ OrdersOpened=Bestellungen zu bearbeiten
 NoOpenedOrders=Keine offenen Bestellungen
 NoOtherOpenedOrders=Keine anderen offenen Bestellungen
 NoDraftOrders=Keine Auftrags-Entwürfe
-NoOrder=No Order
-NoSupplierOrder=No supplier order
+NoOrder=No order
+NoSupplierOrder=Keine Bestellung
 OtherOrders=Bestellungen Anderer
 LastOrders=Letzte %s Kundenaufträge
 LastCustomerOrders=Letzte %s Kundenaufträge
 LastSupplierOrders=Letzte %s Lieferantenbestellungen
-LastModifiedOrders=Die letzen %s bearbeiteten Bestellungen
+LastModifiedOrders=Die letzten %s bearbeiteten Bestellungen
 LastClosedOrders=%s zuletzt geschlossene Bestellungen
 AllOrders=Alle Bestellungen
 NbOfOrders=Anzahl der Bestellungen
@@ -108,9 +108,9 @@ ConfirmMakeOrder=Hiermit bestätigen Sie, diese Bestellung am <b>%s</b> persönl
 GenerateBill=Erzeuge Rechnung
 ClassifyShipped=Als geliefert markieren
 ClassifyBilled=Als verrechnet markieren
-ComptaCard=Buchhaltungskarte
+ComptaCard=Buchhaltung -Karte
 DraftOrders=Entwürfe
-DraftSuppliersOrders=Draft suppliers orders
+DraftSuppliersOrders=Bestellungen entwerfen
 RelatedOrders=Ähnliche Bestellungen
 RelatedCustomerOrders=Ähnliche Kundenaufträge
 RelatedSupplierOrders=Ähnliche Lieferantenbestellungen
@@ -161,7 +161,7 @@ QtyOrdered=Bestellmenge
 AddDeliveryCostLine=Fügen Sie eine Zeile für die Versandkostenanteil an, nach Gewicht der Bestellung
 # Documents models
 PDFEinsteinDescription=Eine vollständige Bestellvorlage (Logo, uwm.)
-PDFEdisonDescription=Eine einfache Bestellungsvorlage
+PDFEdisonDescription=Eine einfache Bestellvorlage
 PDFProformaDescription=Eine vollständige Proforma-Rechnung (Logo, uwm.)
 # Orders modes
 OrderByMail=Post
diff --git a/htdocs/langs/de_DE/other.lang b/htdocs/langs/de_DE/other.lang
index 143c2d749ead05c3db4db9bb46f6210e8eb8717d..c628d971d307b15275654fbe4da6060d419f4a85 100644
--- a/htdocs/langs/de_DE/other.lang
+++ b/htdocs/langs/de_DE/other.lang
@@ -8,8 +8,8 @@ BirthdayDate=Geburtstag
 DateToBirth=Geburtsdatum
 BirthdayAlertOn= Geburtstagserinnerung EIN
 BirthdayAlertOff= Geburtstagserinnerung AUS
-Notify_FICHINTER_VALIDATE=Eingriff freigegeben
-Notify_FICHINTER_SENTBYMAIL=Service per E-Mail versendet
+Notify_FICHINTER_VALIDATE=Serviceauftrag freigegeben
+Notify_FICHINTER_SENTBYMAIL=Serviceauftrag per E-Mail versendet
 Notify_ORDER_VALIDATE=Kundenauftrag freigegeben
 Notify_ORDER_SENTBYMAIL=Kundenauftrag mit E-Mail versendet
 Notify_ORDER_SUPPLIER_SENTBYMAIL=Lieferantenbestellung per E-Mail zugestellt
@@ -35,7 +35,7 @@ Notify_BILL_SUPPLIER_PAYED=Lieferantenrechnung bezahlt
 Notify_BILL_SUPPLIER_SENTBYMAIL=Lieferantenrechnung mit E-Mail versendet
 Notify_BILL_SUPPLIER_CANCELED=Lieferantenrechnung storniert
 Notify_CONTRACT_VALIDATE=Vertrag gültig
-Notify_FICHEINTER_VALIDATE=Eingriff freigegeben
+Notify_FICHEINTER_VALIDATE=Serviceauftrag freigegeben
 Notify_SHIPPING_VALIDATE=Versand freigegeben
 Notify_SHIPPING_SENTBYMAIL=Versanddaten mit E-Mail versendet
 Notify_MEMBER_VALIDATE=Mitglied bestätigt
@@ -56,16 +56,16 @@ LinkedObject=Verknüpftes Objekt
 Miscellaneous=Verschiedenes
 NbOfActiveNotifications= Anzahl Benachrichtigungen ( Anz.  E-Mail Empfänger)
 PredefinedMailTest=Dies ist ein Test-Mail.\n Die beiden Zeilen sind durch eine Zeilenschaltung getrennt.
-PredefinedMailTestHtml=Dies ist ein (HTML)-<b>Test</b> Mail (das Wort Test muss in Fettschrift erscheinen). <br> Die beiden Zeilen sollteb durch eine Zeilenschaltung getrennt sein.
+PredefinedMailTestHtml=Dies ist ein (HTML)-<b>Test</b> Mail (das Wort Test muss in Fettschrift erscheinen). <br> Die beiden Zeilen sollten durch eine Zeilenschaltung getrennt sein.
 PredefinedMailContentSendInvoice=__CONTACTCIVNAME__\n\nAnbei erhalten Sie die Rechnung  __REF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
-PredefinedMailContentSendInvoiceReminder=__CONTACTCIVNAME__\n\nWe would like to warn you that the invoice  __REF__ seems to not being payed. So this is the invoice in attachment again, as a reminder.\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
+PredefinedMailContentSendInvoiceReminder=__CONTACTCIVNAME__\n\nBedauerlicherweise ist die Rechnung __REF__ bislang unbeglichen. Zur Erinnerung übersenden wir Ihnen diese nochmals als Anhang.\n\n__PERSONALIZED__Mit freundlichen Grüßen\n\n__SIGNATURE__
 PredefinedMailContentSendProposal=__CONTACTCIVNAME__ \n\n Bitte entnehmen Sie dem Anhang unser Angebot __PROPREF__ \n\n__PERSONALIZED__Mit freundlichen Grüßen\n\n__SIGNATURE__
 PredefinedMailContentSendSupplierProposal=__CONTACTCIVNAME__\n\nAnbei erhalten Sie unsere Preisanfrage __ASKREF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
 PredefinedMailContentSendOrder=__CONTACTCIVNAME__ \n\n Bitte entnehmen Sie dem Anhang die Bestellung __ORDERREF__ \n\n__PERSONALIZED__Mit freundlichen Grüßen\n\n__SIGNATURE__
 PredefinedMailContentSendSupplierOrder=__CONTACTCIVNAME__ \n\n Bitte entnehmen Sie dem Anhang die Bestellung __ORDERREF__ \n\n__PERSONALIZED__Mit freundlichen Grüßen\n\n__SIGNATURE__
 PredefinedMailContentSendSupplierInvoice=__CONTACTCIVNAME__\n\nAnbei erhalten Sie die Rechnung  __REF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
 PredefinedMailContentSendShipping=__CONTACTCIVNAME__ \n\n Als Anlage erhalten Sie unsere Lieferung __ SHIPPINGREF__ \n\n__PERSONALIZED__Mit freundlichen Grüßen\n\n__SIGNATURE__
-PredefinedMailContentSendFichInter=__CONTACTCIVNAME__ \n\n Anbei finden Sie die Intervention __ FICHINTERREF__ \n\n__PERSONALIZED__Mit freundlichen Grüßen\n\n__SIGNATURE__
+PredefinedMailContentSendFichInter=__CONTACTCIVNAME__ \n\n Anbei finden Sie den Serviceauftrag __ FICHINTERREF__ \n\n__PERSONALIZED__Mit freundlichen Grüßen\n\n__SIGNATURE__
 PredefinedMailContentThirdparty=__CONTACTCIVNAME__\n\n__PERSONALIZED__\n\n__SIGNATURE__
 DemoDesc=Bei Dolibarr handelt es sich um ein kompaktes ERP/CRM-System, bestehend aus einzelnen Modulen. Da eine Demo aller Module kaum eine praxisnahe Anwendung darstellt, stehen Ihnen unterschiedliche Demo-Profile zur Verfügung.
 ChooseYourDemoProfil=Bitte wählen Sie das Demo-Profil das Ihrem Berufsfeld am ehesten entspricht
@@ -129,7 +129,7 @@ SurfaceUnitinch2=in²
 Volume=Volumen
 TotalVolume=Gesamtvolumen
 VolumeUnitm3=m³
-VolumeUnitdm3=dm³ (L)
+VolumeUnitdm3=dm³ (l)
 VolumeUnitcm3=cm³ (ml)
 VolumeUnitmm3=mm³ (µl)
 VolumeUnitfoot3=ft³
@@ -164,7 +164,7 @@ NumberOfUnitsCustomerOrders=Anzahl der Produkte/Leistungen in Kundenaufträgen d
 NumberOfUnitsCustomerInvoices=Anzahl der Produkte/Leistungen in Kundenrechnungen der letzten 12 Monate
 NumberOfUnitsSupplierOrders=Anzahl bestellter Einheiten der letzten 12 Monate
 NumberOfUnitsSupplierInvoices=Anzahl der Produkte/Leistungen in Lieferantenrechnungen der letzten 12 Monate
-EMailTextInterventionValidated=Service %s wurde freigegeben
+EMailTextInterventionValidated=Serviceauftrag %s wurde freigegeben
 EMailTextInvoiceValidated=Rechnung %s wurde freigegeben
 EMailTextProposalValidated=Angebot %s wurde freigegeben
 EMailTextOrderValidated=Bestellung %s wurde freigegeben
@@ -180,7 +180,7 @@ ResizeDesc=Bitte geben Sie eine neue Breite <b>oder</b> Höhe ein. Das Verhältn
 NewLength=Neue Breite
 NewHeight=Neue Höhe
 NewSizeAfterCropping=Neue Größe nach dem Zuschneiden
-DefineNewAreaToPick=Definieren Sie einen neuen Bereich innerhalb des Bildes (Klicken Sie mit der linken Maustaste auf das Bild und halten Sie bis zur gegenüberligenden Ecke)
+DefineNewAreaToPick=Definieren Sie einen neuen Bereich innerhalb des Bildes (Klicken Sie mit der linken Maustaste auf das Bild und halten Sie bis zur gegenüberliegenden Ecke)
 CurrentInformationOnImage=Dieses Werzeug hilft Ihnen beim Skalieren und Zuschneiden von Bildern. Diese Informationen existieren derzeit zur Bilddatei
 ImageEditor=Bildbearbeitung
 YouReceiveMailBecauseOfNotification=Sie erhalten diese Nachricht, weil Ihre E-Mail-Adresse zur Liste der zu benachrichtigenden Kontakte für %s von %s hinzugefügt wurde.
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=Neuer Export
 ##### External sites #####
 ExternalSites=Externe Seiten
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/de_DE/paybox.lang b/htdocs/langs/de_DE/paybox.lang
index df61dfed658511a89b92bda6fd29eeff55429155..a3a871190f16284620fc5a5038a556e7753c3d50 100644
--- a/htdocs/langs/de_DE/paybox.lang
+++ b/htdocs/langs/de_DE/paybox.lang
@@ -22,7 +22,7 @@ ToOfferALinkForOnlinePaymentOnMemberSubscription=URL um Ihren Mitgliedern eine %
 YouCanAddTagOnUrl=Sie können auch den URL-Parameter <b>&tag=<i>value</i></b> an eine beliebige dieser URLs anhängen (erforderlich nur bei der freien Zahlung) um einen eigenen Zahlungskommentar hinzuzufügen.
 SetupPayBoxToHavePaymentCreatedAutomatically=Richten Sie PayBox mit der URL <b>%s</b> ein, um nach Freigabe durch PayBox automatisch eine Zahlung anzulegen.
 YourPaymentHasBeenRecorded=Hiermit Bestätigen wir die Zahlung ausgeführt wurde. Vielen Dank.
-YourPaymentHasNotBeenRecorded=Die Zahlung wurde abgebrochen und nicht ausgeführt. Vielen Dank.
+YourPaymentHasNotBeenRecorded=Die Zahlung wurde nicht gespeichert und der Vorgang storniert. Vielen Dank.
 AccountParameter=Konto Parameter
 UsageParameter=Einsatzparameter
 InformationToFindParameters=Hilfe für das Finden der %s Kontoinformationen
@@ -30,10 +30,10 @@ PAYBOX_CGI_URL_V2=Url für das Paybox Zahlungsmodul "CGI Modul"
 VendorName=Name des Anbieters
 CSSUrlForPaymentForm=CSS-Datei für das Zahlungsmodul
 MessageOK=Nachrichtenseite für bestätigte Zahlung
-MessageKO=Nachrichtenseite für abgebrochene Zahlung
+MessageKO=Nachrichtenseite für stornierte Zahlung
 NewPayboxPaymentReceived=Neue Paybox-Zahlung erhalten
 NewPayboxPaymentFailed=Neue Paybox-Zahlungen probiert, aber fehlgeschlagen
-PAYBOX_PAYONLINE_SENDEMAIL=Status-Email nach einer Zahlung (erfolgreich oder nicht)
+PAYBOX_PAYONLINE_SENDEMAIL=Status-E-Mail nach einer Zahlung (erfolgreich oder nicht)
 PAYBOX_PBX_SITE=Wert für PayBox Seite
 PAYBOX_PBX_RANG=Wert für PBX Rang
 PAYBOX_PBX_IDENTIFIANT=Wert für PBX ID
diff --git a/htdocs/langs/de_DE/paypal.lang b/htdocs/langs/de_DE/paypal.lang
index d5f9d6ed0e74c8db83ff9c0fcf2c5805c233cb09..512859bceb79cd852aa049ed3ae70d50a816d2db 100644
--- a/htdocs/langs/de_DE/paypal.lang
+++ b/htdocs/langs/de_DE/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Testmoduds/Sandbox
 PAYPAL_API_USER=Paypal Benutzername
 PAYPAL_API_PASSWORD=Paypal Passwort
 PAYPAL_API_SIGNATURE=Paypal Signatur
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Bieten Sie Zahlungen "integral" (Kreditkarte + Paypal) an, oder nur per "Paypal"?
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=Nur PayPal
@@ -19,13 +20,13 @@ PredefinedMailContentLink=Sie können unten auf den sicheren Link klicken, um Ih
 YouAreCurrentlyInSandboxMode=Sie befinden sich im &quot;Sandbox&quot;-Modus
 NewPaypalPaymentReceived=Neue PayPal-Zahlung erhalten
 NewPaypalPaymentFailed=Neue Paypal-Zahlung probiert, aber fehlgeschlagen
-PAYPAL_PAYONLINE_SENDEMAIL=Status-Email nach einer Zahlung (erfolgreich oder nicht)
+PAYPAL_PAYONLINE_SENDEMAIL=Status-E-Mail nach einer Zahlung (erfolgreich oder nicht)
 ReturnURLAfterPayment=Rückkehr-URL nach Zahlung
 ValidationOfPaypalPaymentFailed=Validierung der Paypal-Zahlung gescheitert
 PaypalConfirmPaymentPageWasCalledButFailed=Zahlungsbestätigungsseite für Paypal wurde von Paypal aufgerufen, aber Bestätigung fehlgeschlagen
-SetExpressCheckoutAPICallFailed=SetExpressCheckout API call failed.
-DoExpressCheckoutPaymentAPICallFailed=DoExpressCheckoutPayment API call failed.
-DetailedErrorMessage=Detailed Error Message
-ShortErrorMessage=Short Error Message
-ErrorCode=Error Code
-ErrorSeverityCode=Error Severity Code
+SetExpressCheckoutAPICallFailed=Aufruf des API SetExpressCheckout fehlgeschlagen
+DoExpressCheckoutPaymentAPICallFailed=Aufruf des API DoExpressCheckoutPayment fehlgeschlagen
+DetailedErrorMessage=Detaillierte Fehlermeldung
+ShortErrorMessage=verkürzte Fehlermeldung
+ErrorCode=Fehlercode
+ErrorSeverityCode=Fehlercode Schwierigkeitsgrad
diff --git a/htdocs/langs/de_DE/printing.lang b/htdocs/langs/de_DE/printing.lang
index 1f55661d1901d1d2f80792f03c225dea9527b0e0..97395a4cba3119a39258ddf4689c50caf680bd6a 100644
--- a/htdocs/langs/de_DE/printing.lang
+++ b/htdocs/langs/de_DE/printing.lang
@@ -3,7 +3,7 @@ Module64000Name=Direkt drucken
 Module64000Desc=Direkt-Druck-System aktivieren 
 PrintingSetup=Direkt-Druck-System einrichten
 PrintingDesc=Dieses Modul fügt einen "Drucken"-Button zu, um Dokumente direkt zu einen Drucker zu senden. Dies erfordert ein Linux-System mit installiertem CUPS.
-MenuDirectPrinting=Direkt drucken
+MenuDirectPrinting=Direkte Druckjobs
 DirectPrint=Direkt drucken
 ModuleDriverSetup=Modul Treiber einrichten
 PrintingDriverDesc=Konfigurationsvariablen für den Druck-Treiber.
@@ -18,11 +18,18 @@ TestDriver=Test
 TargetedPrinter=Zieldrucker
 UserConf=Pro Benutzer einrichten
 PRINTGCP=Google Cloud Print
+PRINTGCP_INFO=Google OAuth API Einrichtung
+PRINTGCP_AUTHLINK=Authentifizierung
+PRINTGCP_TOKEN_ACCESS=Google Cloud Print OAuth Token
+PRINTGCP_TOKEN_REFRESH=Aktualisierung des Tokens vorhanden
+PRINTGCP_TOKEN_EXPIRED=Token abgelaufen
+PRINTGCP_TOKEN_EXPIRE_AT=Token läuft ab am
+PRINTGCP_DELETE_TOKEN=Lösche gespeicherten Token
 PrintGCPDesc=Dieser Treiber erlaubt das direkte senden zu ein Drucker via Google Cloud Print
 PrintingDriverDescprintgcp=Konfigurationsvariablen für den Druck Fahrer Google Cloud Print.
 PrintTestDescprintgcp=Druckerliste für Google Cloud Print
 PRINTGCP_LOGIN=Google Benutzerkonto
-PRINTGCP_PASSWORD=Passwort für Google Account
+PRINTGCP_PASSWORD=Passwort für Google Konto
 STATE_ONLINE=Online
 STATE_UNKNOWN=Unbekannt
 STATE_OFFLINE=Abwesend
@@ -52,7 +59,7 @@ PRINTIPP_PORT=Port
 PRINTIPP_USER=Anmeldung
 PRINTIPP_PASSWORD=Passwort
 NoPrinterFound=Keine Drucker gefunden (CUPS-Konfiguration prüfen)
-NoDefaultPrinterDefined=Kein Standarddrucker defininert
+NoDefaultPrinterDefined=Kein Standarddrucker definiert
 DefaultPrinter=Standard-Drucker
 Printer=Drucker
 CupsServer=CUPS-Server
@@ -74,3 +81,6 @@ STATE_IPP_none=Keine
 MEDIA_IPP_stationery=warten
 MEDIA_IPP_thermal=Thermisch
 IPP_COLOR_print-black=BW Drucker
+DirectPrintingJobsDesc=Diese Seite zeigt Druckjobs für verfügbar Drucker.
+GoogleAuthNotConfigured=Google OAuth Einrichtung nicht vorhanden. Aktivieren Sie das Modul OAuth und geben eine Google ID/einen Schlüssel an.
+GoogleAuthConfigured=Google OAuth Anmeldedaten wurden in der Einrichtung des Moduls OAuth gefunden.
diff --git a/htdocs/langs/de_DE/productbatch.lang b/htdocs/langs/de_DE/productbatch.lang
index a16781260e6f0f221bc7b19ca8a6f17353576cd8..6a261ac91ec4061b90af5e1e0ca74b1262444fbc 100644
--- a/htdocs/langs/de_DE/productbatch.lang
+++ b/htdocs/langs/de_DE/productbatch.lang
@@ -4,19 +4,19 @@ ProductStatusOnBatch=Ja (Lot / Seriennummer erforderlich)
 ProductStatusNotOnBatch=Nein (Lot / Seriennummer nicht verwendet)
 ProductStatusOnBatchShort=Ja
 ProductStatusNotOnBatchShort=Keine
-Batch=Chg / Serie
+Batch=Charge / Serie
 atleast1batchfield=Verzehr-bis oder Verkaufen-bis Datum oder Lot / Seriennummer
 batch_number=Lot / Seriennummer
 BatchNumberShort=Charge / Serie
 l_eatby=Verzehren-bis-Datum
 l_sellby=Verkaufen-bis-Datum
-DetailBatchNumber=Chg / Serie Details
+DetailBatchNumber=Charge / Serie Details
 DetailBatchFormat=Lot/Serien-Nr.: %s - Verbrauchen-bis: %s -Verkaufen bis: %s (Menge: %d)
-printBatch=Chg / Serie: %s
+printBatch=Charge / Serie: %s
 printEatby=Verzehren bis: %s
 printSellby=Verkaufen bis: %s
 printQty=Menge: %d
-AddDispatchBatchLine=Fügen Sie eine Zeile für Haltbarkeit Dispatching
+AddDispatchBatchLine=Fügen Sie eine Zeile für Haltbarkeit Versendung
 BatchDefaultNumber=Nicht definiert
-WhenProductBatchModuleOnOptionAreForced=Wenn das Modul Lot/Seriennr eingeschaltet ist, wird der Modus für Lagerbestands-Erhöhungen / -Senkungen auf die letzte Auswahl festgelegt und kann nicht geändert werden. Andere Optionen können nach Wunsch eingestellt werden.
+WhenProductBatchModuleOnOptionAreForced=Wenn das Modul Lot/Serien-Nr. eingeschaltet ist, wird der Modus für Lagerbestands-Erhöhungen / -Senkungen auf die letzte Auswahl festgelegt und kann nicht geändert werden. Andere Optionen können nach Wunsch eingestellt werden.
 ProductDoesNotUseBatchSerial=Dieses Produkt verwendet keine Lose oder Seriennummern
diff --git a/htdocs/langs/de_DE/products.lang b/htdocs/langs/de_DE/products.lang
index 35bde414af809bd93e69594a95dad0079266b6c7..cff603a791a82d7ae3c4b8747d80ace8e5f2a70b 100644
--- a/htdocs/langs/de_DE/products.lang
+++ b/htdocs/langs/de_DE/products.lang
@@ -16,7 +16,7 @@ NewProduct=Neues Produkt
 NewService=Neue Leistung
 ProductCode=Produkt-Code
 ServiceCode=Leistungs-Code
-ProductVatMassChange=MwSt-Massenänderung
+ProductVatMassChange=USt-Massenänderung
 ProductVatMassChangeDesc=Mit dieser Seite kann ein Steuersatz für Produkte oder Dienstleistungen von einem Wert auf einen anderen geändert werden. Achtung: Diese Änderung erfolgt über die gesamte Datenbank!
 MassBarcodeInit=Initialisierung Barcodes
 MassBarcodeInitDesc=Hier können Objekte mit einem Barcode initialisiert werden, die noch keinen haben. Stellen Sie vor Benutzung sicher, dass die Einstellungen des Barcode-Moduls vollständig sind!
@@ -42,7 +42,7 @@ LastModifiedProductsAndServices=Letzte %s bearbeitete Produkte/Leistungen
 LastRecordedProducts=%s zuletzt erfasste Produkte
 LastRecordedServices=%s zuletzt erfasste Leistungen
 LastProducts=Neueste Produkte
-CardProduct0=Produkt-Karte
+CardProduct0=Produkt - Karte
 CardProduct1=Leistungs-Karte
 CardContract=Verträge
 Warehouse=Warenlager
@@ -69,20 +69,20 @@ ProductStatusNotOnBuyShort=unbeziehbar
 UpdatePrice=Aktualisiere Preis
 UpdateVAT=Aktualisiere Steuer
 UpdateDefaultPrice=Aktualisiere Standard Preis
-UpdateLevelPrices=Update prices for each level
+UpdateLevelPrices=Preise für jede Ebene aktivieren
 AppliedPricesFrom=Preise angewandt von
 SellingPrice=Verkaufspreis
 SellingPriceHT=Verkaufspreis (ohne Steuern)
-SellingPriceTTC=Verkaufspreis (inkl. MwSt.)
+SellingPriceTTC=Verkaufspreis (inkl. USt.)
 PublicPrice=Öffentlicher Preis
 CurrentPrice=Aktueller Preis
-CostPriceDescription=This price (net of tax) can be used to store the average amount this product cost to your company. It may be any price you calculate yourself, for example from the average buying price plus average production and distribution cost.
-CostPriceUsage=In a future version, this value could be used for margin calculation.
+CostPriceDescription=Der Preis (Netto ohne Steuer) kann dafür verwendet werden, die durchschnittlichen Kosten dieses Artikel zu speichern. Es kann jeder Preis verwendet werden, der kalkuliert wurde, z.B. der durchschnittliche EK-Preis plus durchschnittliche Produktion und Vertriebskosten.
+CostPriceUsage=In einer zukünftigen Version könnte dieses Feld für die Margenberechnung benutzt werden.
 NewPrice=Neuer Preis
 MinPrice=Mindestverkaufspreis
-MinPriceHT=Mindest-Verkaufspreis (exkl. MwSt.)
-MinPriceTTC=Mindest-Verkaufspreis (inkl. MwSt.)
-CantBeLessThanMinPrice=Der Verkaufspreis darf den Mindestpreis für dieses Produkt (%s ohne MwSt.) nicht unterschreiten. Diese Meldung kann auch angezeigt werden, wenn Sie einen zu hohen Rabatt geben.
+MinPriceHT=Mindest-Verkaufspreis (exkl. USt.)
+MinPriceTTC=Mindest-Verkaufspreis (inkl. USt.)
+CantBeLessThanMinPrice=Der Verkaufspreis darf den Mindestpreis für dieses Produkt (%s ohne USt.) nicht unterschreiten. Diese Meldung kann auch angezeigt werden, wenn Sie einen zu hohen Rabatt geben.
 ContractStatus=Vertragsstatus
 ContractStatusClosed=Geschlossen
 ContractStatusRunning=laufend
@@ -109,8 +109,8 @@ CorrectStock=Lagerstandsanpassung
 ListOfStockMovements=Liste der Lagerbewegungen
 BuyingPrice=Einkaufspreis
 PriceForEachProduct=Produkte mit spezifischen Preisen
-NoPriceSpecificToCustomer=This customer has no specific prices. All standard prices for products/services will be used.
-SupplierCard=Lieferantenkarte
+NoPriceSpecificToCustomer=Dieser Kunde hat kein speziellen Preise. Es werden Standardpreise für Produkte/Dienstleistungen verwendet.
+SupplierCard=Lieferant - Karte
 CommercialCard=Vertriebskarte
 AllWays=Pfad zu Produkt im Lager
 NoCat=Ihr Produkt ist keiner Kategorie zugeordnet
@@ -162,7 +162,7 @@ ProductSpecial=Spezial
 QtyMin=Mindestmenge
 PriceQty=Preis für diese Menge
 PriceQtyMin=Preis für diese Mindestmenge (mit/ohne Rabatt)
-VATRateForSupplierProduct=MwSt. Satz (für diesen Lieferanten/Produkt)
+VATRateForSupplierProduct=USt. Satz (für diesen Lieferanten/Produkt)
 DiscountQtyMin=Standard-Rabatt für die Menge
 NoPriceDefinedForThisSupplier=Einkaufskonditionen für diesen Hersteller noch nicht definiert
 NoSupplierPriceDefinedForThisProduct=Einkaufskonditionen für dieses Produkt noch nicht definiert
@@ -218,7 +218,7 @@ meter=Meter
 m=m
 linearmeter=Laufmeter
 lm=lm
-squaremeter=Quatratmeter
+squaremeter=Quadratmeter
 m2=m²
 cubicmeter=Kubikmeter
 m3=m³
@@ -239,8 +239,8 @@ ProductsDashboard=Produkte/Leistungen Zusammenfassung
 UpdateOriginalProductLabel=Ursprüngliches Label verändern
 HelpUpdateOriginalProductLabel=Gibt die Möglichkeit, den Namen des Produkts zu bearbeiten
 MultipriceRules=Preisstufen Regeln
-UseMultipriceRules=Use price level rules (defined into product module setup) to autocalculate prices of all other level according to first level
-PercentVariationOver=%% variation over %s
+UseMultipriceRules=Regeln für Preisebenen verwenden (definiert in den Einstellungen des Artikelmoduls), um Preise anderer Ebene automatisch anhand der ersten Ebene zu kalkulieren.
+PercentVariationOver=%%  Veränderung über %s
 PercentDiscountOver=%% Nachlass über %s
 ### composition fabrication
 Building=Herstellung
@@ -252,7 +252,7 @@ UnitPmp=Einzelpreis
 CostPmpHT=Netto Einkaufspreis
 ProductUsedForBuild=Automatisch für Produktion verbraucht
 ProductBuilded=Produktion fertiggestellt
-ProductsMultiPrice=Produkt Multi-Preis
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Kundenpreise (von Produkten oder Leistungen, Multi-Preise)
 ProductSellByQuarterHT=Quartalsumsatz Produkte exkl. Steuer
 ServiceSellByQuarterHT=Quartalsumsatz Leistungen exkl. Steuer
@@ -284,7 +284,7 @@ MinimumRecommendedPrice=Minimaler empfohlener Preis: %s
 PriceExpressionEditor=Preis Ausdrucks Editor
 PriceExpressionSelected=Ausgewählter Preis Ausdruck
 PriceExpressionEditorHelp1="Preis = 2 + 2" oder "2 + 2" für die Einstellung der Preis. \nVerwende ; um Ausdrücke zu trennen
-PriceExpressionEditorHelp2=Sie können auf die ExtraFields mit Variablen wie <b>#extrafield_myextrafieldkey# </b> und globale Variablen mit <b>#global_mycode#</b> zugreifen
+PriceExpressionEditorHelp2=Sie können auf die zusätzlichen Felder mit Variablen wie <b>#extrafield_myextrafieldkey# </b> und globale Variablen mit <b>#global_mycode#</b> zugreifen
 PriceExpressionEditorHelp3=In  Produkt/Leistung und Lieferantenpreise stehen diese Variablen zur Verfügung: <br> <b>#tva_tx# #localtax1_tx# #localtax2_tx# #weight# #length# #surface# #price_min#</b>
 PriceExpressionEditorHelp4=In Produkt/Leistung Preis nur: <b>#supplier_min_price#</b><br>In  Lieferantenpreise nur: <b>#supplier_quantity# et #supplier_tva_tx#</b>
 PriceExpressionEditorHelp5=verfügbare globale Werte:
@@ -308,7 +308,8 @@ LastUpdated=zuletzt verändert
 CorrectlyUpdated=erfolgreich aktualisiert
 PropalMergePdfProductActualFile=verwendete Dateien, um in PDF Azur hinzuzufügen sind / ist
 PropalMergePdfProductChooseFile=Wähle PDF-Dateien
-IncludingProductWithTag=Including product/service with tag
+IncludingProductWithTag=Inklusive Artikel/Dienstleistung mit Schlagwörter
 DefaultPriceRealPriceMayDependOnCustomer=Standardpreis, echter Preis kann vom Kunden abhängig sein
 WarningSelectOneDocument=Bitte wählen Sie mindestens ein Dokument aus
-DefaultUnitToShow=Einheiten
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/de_DE/projects.lang b/htdocs/langs/de_DE/projects.lang
index c2cb8f3e6cbabf84f18864b16fa1dfcb54c210dc..684cbca70db3c585a2f9135db07b6911c26f9455 100644
--- a/htdocs/langs/de_DE/projects.lang
+++ b/htdocs/langs/de_DE/projects.lang
@@ -13,10 +13,11 @@ ProjectsPublicDesc=Diese Ansicht zeigt alle Projekte, für die Sie zum Lesen ber
 ProjectsPublicTaskDesc=Diese Ansicht ist beschränkt auf Projekt und Aufgaben bei welchen Sie über Leserechte verfügen.
 ProjectsDesc=Es werden alle Projekte angezeigt (Ihre Berechtigungen berechtigt Sie alle Projekte zu sehen).
 MyTasksDesc=Diese Ansicht ist für Sie beschränkt auf Projekte oder Aufgaben bei welchen Sie als Ansprechpartner eingetragen sind.
-OnlyOpenedProject=Nur offene Projekte sind sichtbar. (Projekte im Entwurf- oder Geschlossenstatus sind nicht sichtbar)
+OnlyOpenedProject=Nur offene Projekte sind sichtbar. (Projekte im Status Entwurf oder Geschlossen sind nicht sichtbar)
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Diese Ansicht ist beschränkt auf Projekt und Aufgaben bei welchen Sie über Leserechte verfügen.
 TasksDesc=Diese Ansicht zeigt alle Projekte und Aufgaben (Ihre Benutzerberechtigungen berechtigt Sie alles zu sehen).
-AllTaskVisibleButEditIfYouAreAssigned=Alle Aufgaben dieser Projekte sind sichtbar, aber sie können nur auf ihnen zugewiesenen Aufgaben Zeit erfassen. Weisen sie sich dei Aufgabe zu, wenn sie Zeit erfassen möchten.
+AllTaskVisibleButEditIfYouAreAssigned=Alle Aufgaben dieser Projekte sind sichtbar, aber sie können nur auf ihnen zugewiesenen Aufgaben Zeit erfassen. Weisen sie sich die Aufgabe zu, wenn sie Zeit erfassen möchten.
 OnlyYourTaskAreVisible=Nur ihnen zugewiesene Aufgaben sind sichtbar. Weisen sie sich die Aufgabe zu, wenn sie Zeit auf der Aufgabe erfassen möchten.
 ProjectsArea=Projektübersicht
 NewProject=Neues Projekt
@@ -29,7 +30,9 @@ OfficerProject=Projektverantwortlicher
 LastProjects=Die %s neuesten Projekte
 AllProjects=Alle Projekte
 OpenedProjects=Offene Projekte
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Chancen nach Projektstatus
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Liste der Projekte
 ShowProject=Zeige Projekt
 SetProject=Projekt setzen
@@ -76,7 +79,7 @@ ListPredefinedInvoicesAssociatedProject=Liste Rechnungsvorlagen, die mit diesem
 ListSupplierOrdersAssociatedProject=Liste Lieferantenbestellungen, die mit diesem Projekt verknüpft sind
 ListSupplierInvoicesAssociatedProject=Liste Lieferantenrechnungen, die mit diesem Projekt verknüpft sind
 ListContractAssociatedProject=Liste Verträge, die mit diesem Projekt verknüpft sind
-ListFichinterAssociatedProject=Liste Eingriffe, die mit diesem Projekt verknüpft sind
+ListFichinterAssociatedProject=Liste der Serviceaufträge, die mit diesem Projekt verknüpft sind
 ListExpenseReportsAssociatedProject=Liste Spesenabrechnungen, die mit diesem Projekt verknüpft sind
 ListDonationsAssociatedProject=Liste Spenden, die mit diesem Projekt verknüpft sind
 ListActionsAssociatedProject=Liste Ereignisse, die mit diesem Projekt verknüpft sind
@@ -110,14 +113,14 @@ NoTasks=Keine Aufgaben für dieses Projekt
 LinkedToAnotherCompany=Mit Partner verknüpft
 TaskIsNotAffectedToYou=Aufgabe nicht Ihnen zugeordnet
 ErrorTimeSpentIsEmpty=Zeitaufwand ist leer
-ThisWillAlsoRemoveTasks=Diese Aktion löscht ebenfalls alle Aufgaben zum Projekt (<b>%s</b> akutelle Aufgaben) und alle Zeitaufwände.
+ThisWillAlsoRemoveTasks=Diese Aktion löscht ebenfalls alle Aufgaben zum Projekt (<b>%s</b> aktuelle Aufgaben) und alle Zeitaufwände.
 IfNeedToUseOhterObjectKeepEmpty=Wenn einige Zuordnungen (Rechnung, Bestellung, ...), einem Dritten gehören, müssen Sie erst alle mit dem Projekt verbinden, damit das Projekt auch Dritten zugänglich ist .
 CloneProject=Dupliziere Projekt
 CloneTasks=Dupliziere Aufgaben
 CloneContacts=Dupliziere Kontakte
 CloneNotes=Dupliziere Hinweise
 CloneProjectFiles=Dupliziere verbundene Projektdateien
-CloneTaskFiles=Aufgabe (n) clonen beigetreten Dateien (falls Aufgabe (n) geklont)
+CloneTaskFiles=Aufgabe(n) duplizieren beigetreten Dateien (falls Aufgabe (n) dupliziert)
 CloneMoveDate=Projekt / Aufgaben Daten vom aktuellen Zeitpunkt updaten?
 ConfirmCloneProject=Möchten Sie dieses Projekt wirklich duplizieren?
 ProjectReportDate=Passe Aufgaben-Datum dem Projekt-Startdatum an
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Aufgabe %s geändert
 TaskDeletedInDolibarr=Aufgabe %s gelöscht
 OpportunityStatus=Verkaufschance Status
 OpportunityStatusShort=Chance Status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Verkaufschance Betrag
 OpportunityAmountShort=Chance Betrag
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projekte mit diesem Anwender als Kontakt
 TasksWithThisUserAsContact=Aufgaben zugeordnet zu diesem Anwender
 ResourceNotAssignedToProject=Zugewiesen zu Projekt
 ResourceNotAssignedToTask= nicht zugewiesen zu Aufgabe
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Aufgabe mir selbst zuweisen
 AssignTask=Zuweisen
 ProjectOverview=Projekt-Übersicht
@@ -174,12 +180,12 @@ ProjectWeightedOppAmountOfProjectsByMonth=gewichteter Betrag der Verkaufschancen
 ProjectOpenedProjectByOppStatus=Offene Projekte/Leads nach Verkaufschancen Status
 ProjectsStatistics=Statistik über Projekte und Leads
 TaskAssignedToEnterTime=Aufgabe zugewiesen. Eingabe der Zeit zu diese Aufgabe sollte möglich sein.
-IdTaskTime=Id task time
-YouCanCompleteRef=If you want to complete the ref with some information (to use it as search filters), it is recommanded to add a - character to separate it, so the automatic numbering will still work correctly for next projects. For example %s-ABC. You may also prefer to add search keys into label.
+IdTaskTime=ID Zeit Aufgabe
+YouCanCompleteRef=Wenn Sie das Projektkürzel mit Informationen versehen wollen (um es als Suchfilter zu benutzen), wird empfohlen, ein Minuszeichen zur Trennung einzufügen. Die automatische Numerierung funktioniert für die zukünftigen Projekte normal, z.B. %s-ABC. Sie können auch Suchschlüssel im Label benutzen.
 OpenedProjectsByThirdparties=Offene Projekte nach Partner
 OpportunityTotalAmount=Verkaufschancen Gesamtbetrag
-OpportunityPonderatedAmount=Verkaufschancen geschätzer Betrag
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmount=Verkaufschancen geschätzter Betrag
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Geschäftsanbahnung
 OppStatusQUAL=Qualifikation
 OppStatusPROPO=Angebot
diff --git a/htdocs/langs/de_DE/propal.lang b/htdocs/langs/de_DE/propal.lang
index 716e4a65c8a849a87afa3a64734274d0dfb15da1..42fb36983186620bce0068be7c8c989c5ea64b41 100644
--- a/htdocs/langs/de_DE/propal.lang
+++ b/htdocs/langs/de_DE/propal.lang
@@ -8,7 +8,7 @@ ProposalsOpened=Offene Angebote
 Prop=Angebote
 CommercialProposal=Angebot
 CommercialProposals=Angebote
-ProposalCard=Angebotskarte
+ProposalCard=Angebot - Karte
 NewProp=Neues Angebot
 NewProposal=Neues Angebot
 NewPropal=Neues Angebot
@@ -21,10 +21,11 @@ ConfirmDeleteProp=Möchten Sie dieses Angebot wirklich löschen?
 ConfirmValidateProp=Möchten Sie dieses Angebot <b>%s</b> wirklich freigeben?
 LastPropals=Die letzten %s bearbeiteten Angebote
 LastClosedProposals=Die letzten %s abgeschlossenen Angebote
-LastModifiedProposals=Die letzen %s bearbeiteten Angebote
+LastModifiedProposals=Die letzten %s bearbeiteten Angebote
 AllPropals=Alle Angebote
 LastProposals=Letzte Angebote
 SearchAProposal=Angebot suchen
+NoProposal=No proposal
 ProposalsStatistics=Angebote Statistiken
 NumberOfProposalsByMonth=Anzahl pro Monat
 AmountOfProposalsByMonthHT=Betrag pro Monat (nach Steuern)
@@ -53,7 +54,7 @@ ListOfProposals=Liste der Angebote
 ActionsOnPropal=Ereignisse zum Angebot
 NoOpenedPropals=Keine offenen Angebote
 NoOtherOpenedPropals=Keine weiteren offenen Angebote
-NoPropal=No commercial proposal
+NoPropal=Kein Handelsangebot
 RefProposal=Angebots-Nr.
 SendPropalByMail=Angebot per E-Mail versenden
 AssociatedDocuments=Dokumente verknüpft mit dem Angebot:
@@ -62,7 +63,8 @@ DatePropal=Angebotsdatum
 DateEndPropal=Gültig bis
 DateEndPropalShort=Ablaufdatum
 ValidityDuration=Gültigkeitsdauer
-CloseAs=Schließen mit Status
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Verrechnet
 BuildBill=Erzeuge Rechnung
 ErrorPropalNotFound=Angebot %s nicht gefunden
@@ -73,7 +75,7 @@ AddToDraftProposals=Zu Angebots-Entwurf hinzufügen
 NoDraftProposals=Keine Angebotsentwürfe
 CopyPropalFrom=Erstelle neues Angebot durch Kopieren eines vorliegenden Angebots
 CreateEmptyPropal=Erstelle leeres Angebot oder aus der Liste der Produkte/Leistungen
-DefaultProposalDurationValidity=Standardmäßige Gültigkeitsdatuer (Tage)
+DefaultProposalDurationValidity=Standardmäßige Gültigkeitsdauer (Tage)
 UseCustomerContactAsPropalRecipientIfExist=Falls vorhanden die Adresse des Partnerkontakts statt der Partneradresse verwenden
 ClonePropal=Angebot duplizieren
 ConfirmClonePropal=Möchten Sie das Angebot <b>%s</b> wirklich duplizieren?
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Erstellung Standardvorlage
 DefaultModelPropalToBill=Standard-Template, wenn Sie ein Angebot schließen wollen (zur Verrechung)
 DefaultModelPropalClosed=Standard Schablone wenn sie ein Geschäftsangebot schließen wollen. (ohne Rechnung)
 ProposalCustomerSignature=Schriftliche Annahme, Firmenstempel, Datum und Unterschrift
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/de_DE/receiptprinter.lang b/htdocs/langs/de_DE/receiptprinter.lang
index 1db7ebff0a9a8d2bcf38cdd459b7eeb02ef9639e..a28c731fba8655ca85a08f25fbc04d3eb2ad3afa 100644
--- a/htdocs/langs/de_DE/receiptprinter.lang
+++ b/htdocs/langs/de_DE/receiptprinter.lang
@@ -3,94 +3,94 @@ PrinterAdded=Drucker %s zugefügt
 PrinterUpdated=Drucker %s geändert
 PrinterDeleted=Drucker %s gelöscht
 TestSentToPrinter=Sende Test zu Drucker %s
-ReceiptPrinterDesc=Setup of printers
-ReceiptPrinterTemplateDesc=Setup of Templates
-ReceiptPrinterTypeDesc=Description of Receipt Printer's type
-ReceiptPrinterProfileDesc=Description of Receipt Printer's Profile
-ListPrinters=List of Printers
+ReceiptPrinterDesc=Druckereinrichtung
+ReceiptPrinterTemplateDesc=Einrichtung von Vorlagen
+ReceiptPrinterTypeDesc=Beschreibung des Typs des Quittungsdruckers
+ReceiptPrinterProfileDesc=Beschreibung des Profils des Quittungsdruckers
+ListPrinters=Druckerliste
 SetupReceiptTemplate=Vorlagen Setup
-CONNECTOR_DUMMY=Dummy Printer
+CONNECTOR_DUMMY=Dummy Drucker
 CONNECTOR_NETWORK_PRINT=Netzwerk Drucker
 CONNECTOR_FILE_PRINT=Lokale Drucker
-CONNECTOR_WINDOWS_PRINT=Local Windows Printer
-CONNECTOR_DUMMY_HELP=Fake Printer for test, does nothing
+CONNECTOR_WINDOWS_PRINT=lokaler Windows Drucker
+CONNECTOR_DUMMY_HELP=Simulierter Drucker zum Testen, hat keine Funktion
 CONNECTOR_NETWORK_PRINT_HELP=10.x.x.x:9100
 CONNECTOR_FILE_PRINT_HELP=/dev/usb/lp0, /dev/usb/lp1
 CONNECTOR_WINDOWS_PRINT_HELP=LPT1, COM1, smb://FooUser:secret@computername/workgroup/Receipt Printer
-PROFILE_DEFAULT=Default Profile
-PROFILE_SIMPLE=Simple Profile
-PROFILE_EPOSTEP=Epos Tep Profile
-PROFILE_P822D=P822D Profile
-PROFILE_STAR=Star Profile
-PROFILE_DEFAULT_HELP=Default Profile suitable for Epson printers
-PROFILE_SIMPLE_HELP=Simple Profile No Graphics
-PROFILE_EPOSTEP_HELP=Epos Tep Profile Help
-PROFILE_P822D_HELP=P822D Profile No Graphics
-PROFILE_STAR_HELP=Star Profile
-DOL_ALIGN_LEFT=Left align text
-DOL_ALIGN_CENTER=Center text
-DOL_ALIGN_RIGHT=Right align text
-DOL_USE_FONT_A=Use font A of printer
-DOL_USE_FONT_B=Use font B of printer
-DOL_USE_FONT_C=Use font C of printer
+PROFILE_DEFAULT=Standardprofil
+PROFILE_SIMPLE=einfaches Profil
+PROFILE_EPOSTEP=Epos Tep Profil
+PROFILE_P822D=P822D Profil
+PROFILE_STAR=Star Profil
+PROFILE_DEFAULT_HELP=Standardprofil passend für Epson Drucker
+PROFILE_SIMPLE_HELP=Einfaches Profil ohne Grafik
+PROFILE_EPOSTEP_HELP=Epos Tep Profil Hilfe
+PROFILE_P822D_HELP=P822D Profil ohne Grafik
+PROFILE_STAR_HELP=Star Profil
+DOL_ALIGN_LEFT=Linksbündiger Text
+DOL_ALIGN_CENTER=Zentrierter Text
+DOL_ALIGN_RIGHT=Rechtsbündiger Text
+DOL_USE_FONT_A=Zeichensatz A des Druckers benutzen
+DOL_USE_FONT_B=Zeichensatz B des Druckers benutzen
+DOL_USE_FONT_C=Zeichensatz C des Druckers benutzen
 DOL_BOLD=Text Fett
-/DOL_BOLD=End of Text Bold
-DOL_DOUBLE_HEIGHT=Text double height
-/DOL_DOUBLE_HEIGHT=End of Text double height
-DOL_DOUBLE_WIDTH=Text double width
-/DOL_DOUBLE_WIDTH=End of Text double width
-DOL_UNDERLINE=Underline text
-/DOL_UNDERLINE=End of Underline text
-DOL_UNDERLINE_2DOTS=Underline with double line
-/DOL_UNDERLINE_2DOTS=End of Underline with double line
-DOL_EMPHASIZED=Emphasized text
-/DOL_EMPHASIZED=End of Emphasized text
-DOL_SWITCH_COLORS=Print in white on black
-/DOL_SWITCH_COLORS=End of Print in white on black
-DOL_PRINT_BARCODE=Print barcode
-DOL_PRINT_BARCODE_CUSTOMER_ID=Print barcode customer id
-DOL_SET_PRINT_WIDTH_57=Ticket print width of 57mm
-DOL_CUT_PAPER_FULL=Cut ticket completely
-DOL_CUT_PAPER_PARTIAL=Cut ticket partially
-DOL_OPEN_DRAWER=Open cash drawer
-DOL_ACTIVATE_BUZZER=Activate buzzer
-DOL_PRINT_QRCODE=Print QR Code
-DOL_PRINT_DATE=Print date AAAA-MM-DD
-DOL_PRINT_DATE_TIME=Print date and time AAAA-MM-DD HH:MM:SS
-DOL_PRINT_YEAR=Print Year
-DOL_PRINT_MONTH_LETTERS=Print month in letters (example : november)
-DOL_PRINT_MONTH=Print month number
-DOL_PRINT_DAY=Print day number
-DOL_PRINT_DAY_LETTERS=Print day number
-DOL_PRINT_TABLE=Print table number (for restaurant, bar...)
-DOL_PRINT_CUTLERY=Print number of cutlery (for restaurant)
-DOL_PRINT_PAYMENT=Print payment method
-DOL_PRINT_LOGO=Print logo stored on printer. Example : 32|32
-DOL_PRINT_LOGO_OLD=Print logo stored on printer. Must be followed by logo code. For old printers.
-DOL_PRINT_ORDER_LINES=Print order lines
-DOL_PRINT_ORDER_TAX=Print order total tax
-DOL_PRINT_ORDER_LOCAL_TAX=Print order local tax
-DOL_PRINT_ORDER_TOTAL=Print order total
-DOL_PRINT_ORDER_NUMBER=Print order number
-DOL_PRINT_ORDER_NUMBER_UNIQUE=Print order number after validation
-DOL_PRINT_CUSTOMER_FIRSTNAME=Print customer firstname
-DOL_PRINT_CUSTOMER_LASTNAME=Print customer name
-DOL_PRINT_CUSTOMER_MAIL=Print customer mail
-DOL_PRINT_CUSTOMER_PHONE=Print customer phone
-DOL_PRINT_CUSTOMER_MOBILE=Print customer mobile
-DOL_PRINT_CUSTOMER_SKYPE=Print customer skype
-DOL_PRINT_CUSTOMER_TAX_NUMBER=Print customer VAT number
-DOL_PRINT_CUSTOMER_ACCOUNT_BALANCE=Print customer account balance
-DOL_PRINT_VENDOR_LASTNAME=Print vendor name
-DOL_PRINT_VENDOR_FIRSTNAME=Print vendor firstname
-DOL_PRINT_VENDOR_MAIL=Print vendor mail
-DOL_PRINT_CUSTOMER_POINTS=Print customer points
-DOL_PRINT_ORDER_POINTS=Print number of points for this order
-DOL_PRINT_IF_CUSTOMER=Print the line IF a customer is affected to the order
-DOL_PRINT_IF_VENDOR=Print the line IF a vendor is affected to the order
-DOL_PRINT_IF_HAPPY_HOUR=Print the line IF Happy Hour
-DOL_PRINT_IF_NUM_ORDER_UNIQUE=Print the line IF order is validated
-DOL_PRINT_IF_CUSTOMER_POINTS=Print the line IF customer points > 0
-DOL_PRINT_IF_ORDER_POINTS=Print the line IF points of the order > 0
-DOL_PRINT_IF_CUSTOMER_TAX_NUMBER=Print the line IF customer has vat number
-DOL_PRINT_IF_CUSTOMER_ACCOUNT_BALANCE_POSITIVE=Print the line IF customer balance > 0
+/DOL_BOLD=Ende des fettgedruckten Text
+DOL_DOUBLE_HEIGHT=Text doppelte Höhe
+/DOL_DOUBLE_HEIGHT=Ende des Text mit doppelter Höhe
+DOL_DOUBLE_WIDTH=Text doppelte Breite
+/DOL_DOUBLE_WIDTH=Ende des Text mit doppelter Breite
+DOL_UNDERLINE=Unterstrichener Text
+/DOL_UNDERLINE=Ende des unterstrichenen Text
+DOL_UNDERLINE_2DOTS=doppelt unterstrichen
+/DOL_UNDERLINE_2DOTS=Ende des doppelt unterstrichenen Text
+DOL_EMPHASIZED=hervorgehobener Text
+/DOL_EMPHASIZED=Ende des hervorgehobenen Text
+DOL_SWITCH_COLORS=Drucke Weiß auf Schwarz
+/DOL_SWITCH_COLORS=Ende des Drucks Weiß auf Schwarz
+DOL_PRINT_BARCODE=Barcode drucken
+DOL_PRINT_BARCODE_CUSTOMER_ID=Drucke Barcode Kunden ID
+DOL_SET_PRINT_WIDTH_57=Druckbreite Quittung  57 mm
+DOL_CUT_PAPER_FULL=Quittung komplett abtrennen
+DOL_CUT_PAPER_PARTIAL=Quittung teilweise abtrennen
+DOL_OPEN_DRAWER=Kassenschublade
+DOL_ACTIVATE_BUZZER=Summer aktivieren
+DOL_PRINT_QRCODE=QR Code drucken
+DOL_PRINT_DATE=Datum JJJJ-MM-TT drucken
+DOL_PRINT_DATE_TIME=Datum und Zeit JJJJ-MM-TT HH:MM:SS drucken
+DOL_PRINT_YEAR=Drucke Jahr
+DOL_PRINT_MONTH_LETTERS=Drucke Monat als Text (Beispiel: November)
+DOL_PRINT_MONTH=Monat drucken
+DOL_PRINT_DAY=Tag drucken
+DOL_PRINT_DAY_LETTERS=Tag drucken
+DOL_PRINT_TABLE=Drucke Tischnummer (für Restaurants, Bars)
+DOL_PRINT_CUTLERY=Drucken Anzahl Besteck (für Restaurants)
+DOL_PRINT_PAYMENT=Drucke Zahlungsmethode
+DOL_PRINT_LOGO=Drucke Logo, das auf dem Drucker gespeichert ist. Beispiel: 32|32
+DOL_PRINT_LOGO_OLD=Drucke Logo, das auf dem Drucker gespeichert ist. Danach muss der Logo Code angegeben werden. Für alte Drucker.
+DOL_PRINT_ORDER_LINES=Drucke Auftragspositionen
+DOL_PRINT_ORDER_TAX=Drucke Steuersumme des Auftrags
+DOL_PRINT_ORDER_LOCAL_TAX=Drucke Ortssteuer für Aufträge
+DOL_PRINT_ORDER_TOTAL=Drucke Auftragssumme
+DOL_PRINT_ORDER_NUMBER=Drucke Auftragsnummer
+DOL_PRINT_ORDER_NUMBER_UNIQUE=Drucke Bestellnummer nach Freigabe
+DOL_PRINT_CUSTOMER_FIRSTNAME=Drucke Vornamen des Kunden
+DOL_PRINT_CUSTOMER_LASTNAME=Drucke Kundenname
+DOL_PRINT_CUSTOMER_MAIL=Drucke E-Mail des Kunden
+DOL_PRINT_CUSTOMER_PHONE=Telefonnummer des Kunden drucken
+DOL_PRINT_CUSTOMER_MOBILE=Mobilnummer des Kunden drucken
+DOL_PRINT_CUSTOMER_SKYPE=Skype des Kunden drucken
+DOL_PRINT_CUSTOMER_TAX_NUMBER=Steuernummer des Kunden drucken
+DOL_PRINT_CUSTOMER_ACCOUNT_BALANCE=Saldo des Kundenkonto drucken
+DOL_PRINT_VENDOR_LASTNAME=Lieferantenname drucken
+DOL_PRINT_VENDOR_FIRSTNAME=Vorname des Lieferanten drucken
+DOL_PRINT_VENDOR_MAIL=E-Mail des Lieferanten drucken
+DOL_PRINT_CUSTOMER_POINTS=Punkte des Kunden drucken
+DOL_PRINT_ORDER_POINTS=Anzahl Punkte für diesen Auftrag drucken
+DOL_PRINT_IF_CUSTOMER=Drucke die Zeile, wenn ein Kunde im Auftrag angegeben ist.
+DOL_PRINT_IF_VENDOR=Drucke die Zeile, wenn ein Lieferant im Auftrag angegeben ist.
+DOL_PRINT_IF_HAPPY_HOUR=Drucke die Zeile, wenn Happy Hour ist.
+DOL_PRINT_IF_NUM_ORDER_UNIQUE=Drucke die Zeile, wenn der Auftrag freigegeben ist.
+DOL_PRINT_IF_CUSTOMER_POINTS=Drucke die Zeile, wenn Kundenpunkte >0 sind
+DOL_PRINT_IF_ORDER_POINTS=Drucke die Zeile, wenn Punkte des Auftrags > 0
+DOL_PRINT_IF_CUSTOMER_TAX_NUMBER=Drucke die Zeile, wenn der Kunde eine Steuernummer hat.
+DOL_PRINT_IF_CUSTOMER_ACCOUNT_BALANCE_POSITIVE=Drucke die Zeile, wenn der Kundensaldo > 0 ist
diff --git a/htdocs/langs/de_DE/resource.lang b/htdocs/langs/de_DE/resource.lang
index 385503a5e77ff2becf18583e73c35f151eb483b4..d2303bc24b7ae3223cd61b3e04c2ec548ea71e94 100644
--- a/htdocs/langs/de_DE/resource.lang
+++ b/htdocs/langs/de_DE/resource.lang
@@ -17,7 +17,7 @@ ResourceFormLabel_description=Ressourcen-Beschreibung
 
 ResourcesLinkedToElement=mit Element verknüpfte Ressourcen 
 
-ShowResource=Show resource
+ShowResource=Ressource anzeigen
 ShowResourcePlanning=Ressourcen-Planung zeigen
 GotoDate=Gehe zu Datum
 
diff --git a/htdocs/langs/de_DE/salaries.lang b/htdocs/langs/de_DE/salaries.lang
index 33a09dc6fbdb56df5eddf831741cffc9bedbe1c6..18b5411e183043b841f75275c0af951aa73445fe 100644
--- a/htdocs/langs/de_DE/salaries.lang
+++ b/htdocs/langs/de_DE/salaries.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - salaries
-SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Standard Buchhaltungs-Konto für die Zahlung der Löhne/Gehälter
-SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Standard Buchhaltungs-Konto für Finanzaufwendungen
+SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Standard Buchhaltungskonto für die Zahlung der Löhne/Gehälter
+SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Standard Buchhaltungskonto für Finanzaufwendungen
 Salary=Lohn
 Salaries=Löhne
-Employee=Angestellter
 NewSalaryPayment=Neue Lohnzahlung
 SalaryPayment=Lohnzahlung
 SalariesPayments=Lohnzahlungen
diff --git a/htdocs/langs/de_DE/sendings.lang b/htdocs/langs/de_DE/sendings.lang
index f061bbb3f7f67ed6417baa20c80c4a2804d161b7..2b723c434925f0858b65e05c2906ebee5da7c63c 100644
--- a/htdocs/langs/de_DE/sendings.lang
+++ b/htdocs/langs/de_DE/sendings.lang
@@ -1,12 +1,12 @@
 # Dolibarr language file - Source file is en_US - sendings
-RefSending=Versand Nr.
+RefSending=Versandnr.
 Sending=Auslieferung
 Sendings=Auslieferungen
 AllSendings=Alle Lieferungen
 Shipment=Versand
 Shipments=Lieferungen
 ShowSending=Zeige Lieferungen
-Receivings=Beleg
+Receivings=Delivery Receipts
 SendingsArea=Versandübersicht
 ListOfSendings=Versandliste
 SendingMethod=Versandart
@@ -16,7 +16,7 @@ SearchASending=Suche Auslieferung
 StatisticsOfSendings=Versandstatistik
 NbOfSendings=Anzahl  Auslieferungen
 NumberOfShipmentsByMonth=Anzahl Auslieferungen pro Monat
-SendingCard=Auslieferungen
+SendingCard=Lieferung - Karte
 NewSending=Neue Auslieferung
 CreateASending=Erstelle Auslieferung
 CreateSending=Auslieferung erstellen
@@ -35,7 +35,7 @@ StatusSendingCanceled=Storniert
 StatusSendingDraft=Entwurf
 StatusSendingValidated=Freigegeben (Artikel versandfertig oder bereits versandt)
 StatusSendingProcessed=Verarbeitete
-StatusSendingCanceledShort=Storno
+StatusSendingCanceledShort=Storniert
 StatusSendingDraftShort=Entwurf
 StatusSendingValidatedShort=Freigegeben
 StatusSendingProcessedShort=Fertig
@@ -46,13 +46,13 @@ CarriersArea=Übersicht Spediteure
 NewCarrier=Neuer Spediteur
 ConfirmDeleteSending=Möchten Sie diese Lieferung wirklich löschen?
 ConfirmValidateSending=Möchten Sie diese Auslieferung <b>%s</b> wirklich freigeben?
-ConfirmCancelSending=Möchten Sie diese Lieferung wirklich wirklich stornieren?
+ConfirmCancelSending=Möchten Sie diese Lieferung wirklich stornieren?
 GenericTransport=Generischer Transport
 Enlevement=Vom Kunden erhalten
 DocumentModelSimple=Einfache Dokumentvorlage
 DocumentModelMerou=Merou A5-Modell
 WarningNoQtyLeftToSend=Achtung, keine Produkte für den Versand
-StatsOnShipmentsOnlyValidated=Versandstatistik (nur Freigegebene). Das Datum ist das der Freigabe (geplantes Lieferdatum ist nicht immer bekannt).
+StatsOnShipmentsOnlyValidated=Versandstatistik (nur freigegebene). Das Datum ist das der Freigabe (geplantes Lieferdatum ist nicht immer bekannt).
 DateDeliveryPlanned=Geplanter Liefertermin
 DateReceived=Datum der Zustellung
 SendShippingByEMail=Versand per E-Mail
@@ -69,19 +69,19 @@ ProductQtyInCustomersOrdersRunning=Produktmenge in geöffneter Kunden Bestellung
 ProductQtyInSuppliersOrdersRunning=Produktmenge in geöffneter Lieferantenbestellungen
 ProductQtyInShipmentAlreadySent=Produktmenge von offenem Kundenauftrag bereits geliefert
 ProductQtyInSuppliersShipmentAlreadyRecevied=Produktmenge aus Lieferantenbestellung bereits erhalten
-NoProductToShipFoundIntoStock=No product to ship found into warehouse <b>%s</b>. Correct stock or go back to choose another warehouse.
+NoProductToShipFoundIntoStock=Kein Artikel zum Versenden gefunden im Lager <b>%s</b>. Korrigieren Sie den Lagerbestand oder wählen Sie ein anderes Lager.
 
 # Sending methods
 SendingMethodCATCH=Abholung durch Kunden
 SendingMethodTRANS=Spedition
 SendingMethodCOLSUI=Expressversand
 # ModelDocument
-DocumentModelSirocco=Einfache Dokumentvorlage für die Lieferungscheine
-DocumentModelTyphon=Vollständig Dokumentvorlage für die Lieferungscheine (Logo, ...)
+DocumentModelSirocco=Einfache Dokumentvorlage für die Lieferscheine
+DocumentModelTyphon=Vollständig Dokumentvorlage für die Lieferscheine (Logo, ...)
 Error_EXPEDITION_ADDON_NUMBER_NotDefined=Konstante EXPEDITION_ADDON_NUMBER nicht definiert
-SumOfProductVolumes=Summe der Produktevolumen
-SumOfProductWeights=Summe der Produktegewichte
+SumOfProductVolumes=Summe der Produktvolumen
+SumOfProductWeights=Summe der Produktgewichte
 
 # warehouse details
-DetailWarehouseNumber= Warenlager-Details
+DetailWarehouseNumber= Warenlagerdetails
 DetailWarehouseFormat= W:%s (Menge : %d)
diff --git a/htdocs/langs/de_DE/sms.lang b/htdocs/langs/de_DE/sms.lang
index e54f8cd6854a0bd45a5cb105f38967e68fe584a2..aec415ca7ab66e40efd183de91bc93b062f30861 100644
--- a/htdocs/langs/de_DE/sms.lang
+++ b/htdocs/langs/de_DE/sms.lang
@@ -35,11 +35,11 @@ SmsStatusSentPartialy=Teileweise gesendet
 SmsStatusSentCompletely=Vollständig gesendet
 SmsStatusError=Fehler
 SmsStatusNotSent=Nicht gesendet
-SmsSuccessfulySent=SMS korekkte gesendet (von %s an %s)
+SmsSuccessfulySent=SMS korrekt gesendet (von %s an %s)
 ErrorSmsRecipientIsEmpty=Anzahl der Empfänger ist leer
 WarningNoSmsAdded=Keine neuen Rufnummern zum hinzufügen an die Empfängerliste gefunden
 ConfirmValidSms=Bestätigen Sie die Freigabe dieser Aktion?
-ConfirmResetMailing=Achtung, wenn Sie die SMS-Kampanie <b>%s</b> wieder aktivieren, müssen Sie bestätigen dass der Versand zum zweiten möglich ist. Möchten Sie das wirklich bestätigen?
+ConfirmResetMailing=Achtung, wenn Sie die SMS-Kampagnie <b>%s</b> wieder aktivieren, müssen Sie bestätigen dass der Versand zum zweiten möglich ist. Möchten Sie das wirklich bestätigen?
 ConfirmDeleteMailing=Bestätigen Sie das Entfernen der Aktion?
 NbOfRecipients=Anzahl der Ziele
 NbOfUniqueSms=Anzahl der eindeutigen Rufnummern
@@ -49,5 +49,6 @@ SendSms=SMS senden
 SmsInfoCharRemain=Anzahl der verbleibenden Zeichen
 SmsInfoNumero= (Format der Rufnummer: ++33899701761)
 DelayBeforeSending=Warten vor dem Senden (in Minuten)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Keine möglichen Empfänger gefunden. Prüfen Sie die Einstellungen Ihres SMS Anbieters.
 
diff --git a/htdocs/langs/de_DE/stocks.lang b/htdocs/langs/de_DE/stocks.lang
index 0cfdfb7c858f8f8560094c810c73741a9bde546f..940d73eba247e48c01f3036e3256977c1855a267 100644
--- a/htdocs/langs/de_DE/stocks.lang
+++ b/htdocs/langs/de_DE/stocks.lang
@@ -12,11 +12,11 @@ WarehouseSourceNotDefined=Keine Lager definiert,
 AddOne=Hinzufügen
 WarehouseTarget=Ziellager
 ValidateSending=Lieferung freigeben
-CancelSending=Lieferung abbrechen
+CancelSending=Lieferung stornieren
 DeleteSending=Lieferung löschen
 Stock=Warenbestand
 Stocks=Warenbestände
-StocksByLotSerial=Stocks by lot/serial
+StocksByLotSerial=Lagerbestand pro Charge/Seriennummer
 Movement=Lagerbewegung
 Movements=Lagerbewegungen
 ErrorWarehouseRefRequired=Warenlager-Referenz erforderlich
@@ -53,21 +53,21 @@ QtyDispatched=Versandmenge
 QtyDispatchedShort=Menge versandt
 QtyToDispatchShort=Menge zu versenden
 OrderDispatch=Bestellabwicklung
-RuleForStockManagementDecrease=Rule for automatic stock management decrease (manual decrease is always possible, even if an automatic decrease rule is activated)
-RuleForStockManagementIncrease=Rule for automatic stock management increase (manual increase is always possible, even if an automatic increase rule is activated)
+RuleForStockManagementDecrease=Regel für automatische Verringerung der Bestände (manuelle Verringerung ist immer möglich, selbst wenn die automatische Verringerung aktiviert ist).
+RuleForStockManagementIncrease=Regel für automatische Erhöhung der Bestände (manuelle Erhöhung ist immer möglich, selbst wenn die automatische Erhöhung aktiviert ist).
 DeStockOnBill=Verringere reale Bestände bei Bestätigung von Rechnungen/Gutschriften
 DeStockOnValidateOrder=Verringere reale Bestände bei Bestätigung von Kundenbestellungen
 DeStockOnShipment=Verringere reale Bestände bei Bestädigung von Lieferungen
 ReStockOnBill=Erhöhung der tatsächlichen Bestände in den Rechnungen / Gutschriften
 ReStockOnValidateOrder=Erhöhung der realen Bestände auf Bestellungen stellt fest
-ReStockOnDispatchOrder=Reale Bestände auf manuelle Dispatching in Hallen, nach Erhalt Lieferanten bestellen
+ReStockOnDispatchOrder=Erhöhe Warenbestände bei manueller Lieferung in das Lager, nachdem die Bestellung eingegangen ist.
 ReStockOnDeleteInvoice=Erhöhung der tatsächlichen Bestände bei Löschung von Rechnungen
 OrderStatusNotReadyToDispatch=Auftrag wurde noch nicht oder nicht mehr ein Status, der Erzeugnisse auf Lager Hallen Versand ermöglicht.
 StockDiffPhysicTeoric=Begründung für Differenz  zwischen Inventurbestand und Lagerbestand
 NoPredefinedProductToDispatch=Keine vordefinierten Produkte für dieses Objekt. Also kein Versand im Lager erforderlich ist.
 DispatchVerb=Versand
 StockLimitShort=Alarmschwelle
-StockLimit=Sicherungsbestand für autom. Benachrichtigung
+StockLimit=Sicherungsbestand für automatische Benachrichtigung
 PhysicalStock=Istbestand
 RealStock=Realer Lagerbestand
 VirtualStock=Theoretisches Warenlager
@@ -81,10 +81,10 @@ LieuWareHouse=Standort Warenlager
 WarehousesAndProducts=Warenlager und Produkte
 WarehousesAndProductsBatchDetail=Warenlager und Produkte (mit Detail per lot / serial)
 AverageUnitPricePMPShort=Gewichteter Durchschnitts-Einstandspreis
-AverageUnitPricePMP=Gewichteter Durchschnittpreis bei Erwerb
+AverageUnitPricePMP=Gewichteter Durchschnittspreis bei Erwerb
 SellPriceMin=Verkaufspreis
-EstimatedStockValueSellShort=Value for sell
-EstimatedStockValueSell=Value for sell
+EstimatedStockValueSellShort=Verkaufswert
+EstimatedStockValueSell=Verkaufswert
 EstimatedStockValueShort=Eingangsmenge
 EstimatedStockValue=Einkaufspreis
 DeleteAWarehouse=Warenlager löschen
@@ -101,7 +101,7 @@ StockToBuy=zu bestellen
 Replenishment=Nachbestellung
 ReplenishmentOrders=Nachbestellungen
 VirtualDiffersFromPhysical=Je nach den Einstellungen zur Erhöhung/Minderung des Lagerbestands können physischer und theoretischer Bestand (tatsächliche + laufende Bestellungen) voneinander abweichen
-UseVirtualStockByDefault=Nutze theoretische Lagerbestände anstatt des physischem Bestands für die Nachbestellungsfunktion
+UseVirtualStockByDefault=Nutze theoretische Lagerbestände anstatt des physischem Bestands für die Nachbestellfunktion
 UseVirtualStock=theoretisches Warenlager verwenden
 UsePhysicalStock=Physisches Warenlager verwenden
 CurentSelectionMode=Aktueller Auswahl-Modus
@@ -113,7 +113,7 @@ AlertOnly= Nur Warnungen
 WarehouseForStockDecrease=Das Lager <b>%s</b> wird für Entnahme verwendet 
 WarehouseForStockIncrease=Das Lager <b>%s</b> wird für Wareneingang verwendet 
 ForThisWarehouse=Für dieses Lager
-ReplenishmentStatusDesc=This is a list of all products with a stock lower than desired stock (or lower than alert value if checkbox "alert only" is checked). Using the checkbox, you can create supplier orders to fill the difference.
+ReplenishmentStatusDesc=Diese Liste enthält Produkte mit einem Bestand unter dem gewünschten Bestand (oder kleiner als der Alarmwert, wenn das Kästchen "Nur Alarm" aktiviert ist). Mit diesem Kästchen können Sie Bestellungen erstellen, um die Differenzen auszugleichen.
 ReplenishmentOrdersDesc=Das ist eine Liste aller offener Lieferantenbestellungen einschließlich vordefinierter Produkte. Nur geöffnete Bestellungen mit vordefinierten Produkten, sofern es das Lager betrifft, sind hier sichtbar.
 Replenishments=Nachbestellung
 NbOfProductBeforePeriod=Menge des Produkts %s im Lager vor der gewählten Periode (< %s)
@@ -137,4 +137,4 @@ MovementTransferStock=Umlagerung des Produkt %s in ein anderes Lager
 WarehouseMustBeSelectedAtFirstStepWhenProductBatchModuleOn=Quelle Lager muss hier definiert werden, wenn das "Produkt Charge" Modul aktiviert ist. Es wird zum auflisten welche Charge/Serien verfügbar für Produkte die erforderliche Chargen/Serien Daten für die Bewegung erforderlich. Wenn Sie Produkte aus verschiedenen Lagern versenden, erstellen sie den Versand einfach in mehreren Schritten.
 InventoryCodeShort=Inv. / Mov. Kode
 NoPendingReceptionOnSupplierOrder=Keine anstehenden Liefereingänge aufgrund offener Lieferantenbestellungen
-ThisSerialAlreadyExistWithDifferentDate=Diese Charge- / Seriennummer (<strong>%s</strong>) ist bereits vorhanden, jedoch mit unterschiedlichen Haltbarkeits- oder Verfallsdatum. \n(Gefunden: <strong>%s</strong> Erfasst: <strong>%s</strong>) 
+ThisSerialAlreadyExistWithDifferentDate=Diese Charge / Seriennummer (<strong>%s</strong>) ist bereits vorhanden, jedoch mit unterschiedlichen Haltbarkeits- oder Verfallsdatum. \n(Gefunden: <strong>%s</strong> Erfasst: <strong>%s</strong>) 
diff --git a/htdocs/langs/de_DE/supplier_proposal.lang b/htdocs/langs/de_DE/supplier_proposal.lang
index dede54ef48d194c0ae3432034ac90607c5509d82..ef7c52c4ebc5fa59b3465ac5cf26f8a02c8988e6 100644
--- a/htdocs/langs/de_DE/supplier_proposal.lang
+++ b/htdocs/langs/de_DE/supplier_proposal.lang
@@ -1,60 +1,59 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
-SupplierProposal=Supplier commercial proposals
-supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Lieferanten Angebote
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=Liste
-CommRequest=Price request
-CommRequests=Price requests
-SearchRequest=Find a request
-DraftRequests=Draft requests
-LastModifiedRequests=Last %s modified price requests
-RequestsOpened=Open price requests
-SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Lieferanten Angebot
+SupplierProposal=Handelsangebot Lieferant
+supplier_proposalDESC=Preisanfrage an Lieferanten verwalten
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
+CommRequest=Preisanfrage
+CommRequests=Preisanfragen
+SearchRequest=Anfrage suchen
+DraftRequests=Anfrage erstellen
+LastModifiedRequests=letzten %s geänderte Preisanfragen
+RequestsOpened=offene Preisanfragen
+SupplierProposalArea=Bereich Lieferantenangebote
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Lieferanten Angebote
-NewAskPrice=New price request
-NewAsk=New request
-ShowSupplierProposal=Show price request
-AddSupplierProposal=Create a price request
-SupplierProposalRefFourn=Supplier ref
+NewAskPrice=neue Preisanfrage
+NewAsk=neue Anfrage
+ShowSupplierProposal=Presianfrage anzeigen
+AddSupplierProposal=Preisanfrage erstellen
+SupplierProposalRefFourn=Lieferantenreferenz
 SupplierProposalDate=Liefertermin
-SupplierProposalRefFournNotice=Before closing to "Accepted", think to grasp suppliers references.
-RelatedSupplierProposal=Related price requests suppliers
-ConfirmValidateAsk=Are you sure you want to validate this price request under name <b>%s</b> ?
-DateAsk=Date of request
-DeleteAsk=Delete request
-ValidateAsk=Validate request
-AddAsk=Create a request
-SupplierProposalDraft=Drafts
+SupplierProposalRefFournNotice=Vor dem Schliessen und setzen des Status auf "Angenommen" sollten Sie die Lieferantenreferenz aufnehmen.
+RelatedSupplierProposal=verbundene Preisanfragen von Lieferanten
+ConfirmValidateAsk=Sind Sie sicher, dass Sie dieser Preisanfrage unter <b>%s</b> bestätigen wollen ?
+DateAsk=Datum der Anfrage
+DeleteAsk=Anfrage löschen
+ValidateAsk=Anfrage freigeben
+AddAsk=Anfrage anlegen
+SupplierProposalDraft=Entwürfe
 SupplierProposalOpened=Geöffnet
-SupplierProposalStatusDraft=Draft (needs to be validated)
-SupplierProposalStatusValidated=Validated (request is open)
-SupplierProposalStatusOpened=Validated (request is open)
+SupplierProposalStatusDraft=Entwurf (muss noch überprüft werden)
+SupplierProposalStatusValidated=Bestätigt (Anfrage ist offen)
+SupplierProposalStatusOpened=Bestätigt (Anfrage ist offen)
 SupplierProposalStatusClosed=Geschlossen
-SupplierProposalStatusSigned=Accepted
+SupplierProposalStatusSigned=Bestätigt
 SupplierProposalStatusNotSigned=Abgelehnt
 SupplierProposalStatusBilled=Verrechnet
-SupplierProposalStatusDraftShort=Draft
-SupplierProposalStatusValidatedShort=Validated
+SupplierProposalStatusDraftShort=Entwurf
+SupplierProposalStatusValidatedShort=Bestätigt
 SupplierProposalStatusOpenedShort=Geöffnet
 SupplierProposalStatusClosedShort=Geschlossen
-SupplierProposalStatusSignedShort=Accepted
+SupplierProposalStatusSignedShort=Bestätigt
 SupplierProposalStatusNotSignedShort=Abgelehnt
 SupplierProposalStatusBilledShort=Verrechnet
-CopyAskFrom=Create price request by copying existing a request
-CreateEmptyAsk=Create blank request
-CloneAsk=Clone price request
-ConfirmCloneAsk=Are you sure you want to clone the price request <b>%s</b> ?
-ConfirmReOpenAsk=Are you sure you want to open back the price request <b>%s</b> ?
-SendAskByMail=Send price request by mail
-SendAskRef=Sending the price request %s
-SupplierProposalCard=Request card
-ConfirmDeleteAsk=Are you sure you want to delete this price request ?
-ActionsOnSupplierProposal=Events on price request
-DocModelAuroreDescription=A complete request model (logo...)
-CommercialAsk=Price request
-DefaultModelSupplierProposalCreate=Default model creation
-DefaultModelSupplierProposalToBill=Default template when closing a price request (accepted)
-DefaultModelSupplierProposalClosed=Default template when closing a price request (refused)
-ListOfSupplierProposal=List of supplier proposal requests
+CopyAskFrom=Preisanfrage durch Kopieren einer bestehenden Anfrage anlegen
+CreateEmptyAsk=Leere Anfrage anlegen
+CloneAsk=Preisanfrage duplizieren
+ConfirmCloneAsk=Sind Sie sicher, dass Sie die Preisanfrage <b>%s</b> duplizieren wollen ?
+ConfirmReOpenAsk=Sind Sie sicher, dass Sie die Preisanfrage <b>%s</b> wieder öffnen möchten ?
+SendAskByMail=Preisanfrage per E-Mail versenden
+SendAskRef=Sende Preisanfrage %s
+SupplierProposalCard=Anfrage - Karte
+ConfirmDeleteAsk=Sind Sie sicher, daß Sie die Preisanfrage löschen wollen ?
+ActionsOnSupplierProposal=Ereignis bei Preisanfrage
+DocModelAuroreDescription=Ein vollständiges Anfragemodell (logo...)
+CommercialAsk=Preisanfrage
+DefaultModelSupplierProposalCreate=Erstellung eines Standard-Modells
+DefaultModelSupplierProposalToBill=Standardvorlage wenn eine Preisanfrage geschlossen wird (angenommen)
+DefaultModelSupplierProposalClosed=Standardvorlage wenn eine Preisanfrage geschlossen wird (abgelehnt)
+ListOfSupplierProposal=Liste von Angebotsanfragen für Lieferanten
diff --git a/htdocs/langs/de_DE/suppliers.lang b/htdocs/langs/de_DE/suppliers.lang
index 5b2d4584f04e3817da4419d8e2169cdab64c3122..413f924d54db47095b3bc9fe15d357f44d70202a 100644
--- a/htdocs/langs/de_DE/suppliers.lang
+++ b/htdocs/langs/de_DE/suppliers.lang
@@ -3,6 +3,7 @@ Suppliers=Lieferanten
 AddSupplier=Lieferant anlegen
 SupplierRemoved=Lieferant entfernt
 SuppliersInvoice=Lieferantenrechnung
+ShowSupplierInvoice=Zeige Lieferantenrechnung
 NewSupplier=Neuer Lieferant
 History=Verlauf
 ListOfSuppliers=Lieferantenliste
@@ -31,7 +32,7 @@ ApproveThisOrder=Bestellung bestätigen
 ConfirmApproveThisOrder=Möchten Sie diese Bestellung wirklich bestätigen <b>%s</b> ?
 DenyingThisOrder=Bestellung ablehnen
 ConfirmDenyingThisOrder=Möchten Sie diese Bestellung wirklich ablehnen <b>%s</b> ?
-ConfirmCancelThisOrder=Möchten Sie diese Bestellung wirklich verwerfen <b>%s</b> ?
+ConfirmCancelThisOrder=Möchten Sie die Bestellung <b>%s</b> wirklich stornieren ?
 AddCustomerOrder=Erzeuge Kundenauftrag
 AddCustomerInvoice=Kundenrechnung erstellen
 AddSupplierOrder=Lieferantenbestellung erstellen
diff --git a/htdocs/langs/de_DE/trips.lang b/htdocs/langs/de_DE/trips.lang
index e3301122128df705eb34b31b08c5018ee4d24edc..e0d00beeec5cf579e6a32bc47fd5be450db1f19e 100644
--- a/htdocs/langs/de_DE/trips.lang
+++ b/htdocs/langs/de_DE/trips.lang
@@ -1,28 +1,28 @@
 # Dolibarr language file - Source file is en_US - trips
 ExpenseReport=Spesenabrechnung
-ExpenseReports=Spesenabrechnungen Hinweis
+ExpenseReports=Spesenabrechnungen
 Trip=Spesenabrechnung
 Trips=Spesenabrechnungen
 TripsAndExpenses=Reise- und Fahrtspesen
 TripsAndExpensesStatistics=Reise- und Fahrtspesen Statistik
-TripCard=Reisekosten Karte
+TripCard=Reisekosten - Karte
 AddTrip=Reisekostenabrechnung erstellen
-ListOfTrips=Liste Reise- und Spesenabrechnungen
+ListOfTrips=Aufstellung Spesenabrechnungen
 ListOfFees=Liste der Spesen
-ShowTrip=Spesenreport anzeigen
-NewTrip=neue Reisekostenabrechnung
+ShowTrip=Spesenabrechnung anzeigen
+NewTrip=neue Spesenabrechnung
 CompanyVisited=Besuchter Partner
 Kilometers=Kilometerstand
 FeesKilometersOrAmout=Spesenbetrag bzw. Kilometergeld
 DeleteTrip=Spesenabrechnung löschen
 ConfirmDeleteTrip=Möchten Sie diese Spesenabrechnung wirklich löschen?
-ListTripsAndExpenses=Liste Reise- und Spesenabrechnungen
+ListTripsAndExpenses=Aufstellung Spesenabrechnungen
 ListToApprove=Warten auf Bestätigung
 ExpensesArea=Spesenabrechnungen
 SearchATripAndExpense=Suche nach einer Spesenabrechnung
 ClassifyRefunded=Als 'erstattet' markieren
-ExpenseReportWaitingForApproval=Eine neue Reisekostenabrechnung ist zur Genehmigung vorgelegt worden
-ExpenseReportWaitingForApprovalMessage=Eine neue Kostenabrechnung wurde vorgelegt und steht zur Überprüfung an.\n- Benutzer: %s \n- Zeitraum: %s  \nKlicken Sie hier, um zu überprüfen: %s 
+ExpenseReportWaitingForApproval=Eine neue Spesenabrechnung ist zur Genehmigung vorgelegt worden
+ExpenseReportWaitingForApprovalMessage=Eine neue Spesenabrechnung wurde vorgelegt und steht zur Überprüfung an.\n- Benutzer: %s \n- Zeitraum: %s  \nKlicken Sie hier, um zu überprüfen: %s 
 TripId=Spesenabrechnung ID
 AnyOtherInThisListCanValidate=Person für die Validierung zu informieren .
 TripSociete=Partner
@@ -31,7 +31,7 @@ TripNDF=Hinweise Spesenabrechnung
 PDFStandardExpenseReports=Standard-Vorlage, um ein PDF-Dokument für die Spesenabrechnung zu erzeugen
 ExpenseReportLine=Spesenabrechnung Zeile
 TF_OTHER=Andere
-TF_TRANSPORTATION=Spedition
+TF_TRIP=Transportation
 TF_LUNCH=Bewirtung
 TF_METRO=S- und U-Bahn
 TF_TRAIN=Bahn
@@ -42,13 +42,13 @@ TF_ESSENCE=Kraftstoff
 TF_HOTEL=Hotel
 TF_TAXI=Taxi
 
-ErrorDoubleDeclaration=Sie haben bereits eine andere Spesenabrechnung in einem ähnliche Datumsbereich erstellt.
+ErrorDoubleDeclaration=Sie haben bereits eine andere Spesenabrechnung in einem ähnlichen Datumsbereich erstellt.
 AucuneNDF=Keine Spesenabrechnungen für diese Kriterien gefunden
 AucuneLigne=Es wurde noch keine Spesenabrechnung erstellt.
 AddLine=Neue Zeile hinzufügen
 AddLineMini=Hinzufügen
 
-Date_DEBUT=Beginndatum
+Date_DEBUT=Startdatum Periode
 Date_FIN=Enddatum
 ModePaiement=Zahlungsart
 
@@ -75,10 +75,10 @@ ModifyInfoGen=Bearbeiten
 ValidateAndSubmit=Validieren und zur Genehmigung einreichen
 ValidatedWaitingApproval=Validiert (Wartet auf Genehmigung)
 
-NOT_VALIDATOR=Sie sind nicht berechtigt, diese Spesennabrechnung zu genehmigen
+NOT_VALIDATOR=Sie sind nicht berechtigt, diese Spesenabrechnung zu genehmigen
 NOT_AUTHOR=Sie sind nicht der Autor dieser Spesenabrechnung. Vorgang abgebrochen.
 
-RefuseTrip=Verweigern eine Spesenabrechnung
+RefuseTrip=Ablehnen eine Spesenabrechnung
 ConfirmRefuseTrip=Möchten Sie diese Spesenabrechnung wirklich ablehnen?
 
 ValideTrip=Genehmigen Spesenabrechnung
@@ -87,16 +87,17 @@ ConfirmValideTrip=Möchten Sie diese Spesenabrechnung wirklich genehmigen?
 PaidTrip=Spesenabrechnung bezahlen
 ConfirmPaidTrip=Möchten Sie den Status dieser Spesenabrechnung auf "Bezahlt" ändern?
 
-CancelTrip=Abrechen einer Spesenabrechnung
+CancelTrip=Stornieren einer Spesenabrechnung
 ConfirmCancelTrip=Möchten Sie diese Spesenabrechnung wirklich abbrechen?
 
-BrouillonnerTrip=Spesenabrechnung rückgängig, auf den Status "Entwurf"
+BrouillonnerTrip=Status der Spesenabrechnung auf den Status "Entwurf" ändern
 ConfirmBrouillonnerTrip=Möchten Sie den Status dieser Spesenabrechnung wirklich auf "Entwurf" ändern?
 
 SaveTrip=Bestätige Spesenabrechnung
-ConfirmSaveTrip=Sind Sie sicher, dass Sie diese Spesenabrechnung überprüfen wollen?
+ConfirmSaveTrip=Sind Sie sicher, dass Sie diese Spesenabrechnung bestätigen wollen?
 
 NoTripsToExportCSV=Keine Spesenabrechnung für diesen Zeitraum zu exportieren.
 ExpenseReportPayment=Spesenabrechnung Zahlung
 
-ExpenseReportsToPay=Spesenabrechnungen zu entrichten
+ExpenseReportsToApprove=Expense reports to approve
+ExpenseReportsToPay=zu zahlende Spesenabrechnungen
diff --git a/htdocs/langs/de_DE/users.lang b/htdocs/langs/de_DE/users.lang
index bb947b415373b500fab6e9d8ccd98e0ab603b636..72e283cb37ba565ecfe17cf918006fb0f65c2f4f 100644
--- a/htdocs/langs/de_DE/users.lang
+++ b/htdocs/langs/de_DE/users.lang
@@ -1,8 +1,8 @@
 # Dolibarr language file - Source file is en_US - users
 HRMArea=Personalmanagment - Übersicht
-UserCard=Benutzer-Karte
-ContactCard=Kontakt-Karte
-GroupCard=Gruppe-Karte
+UserCard=Benutzer - Karte
+ContactCard=Kontakt - Karte
+GroupCard=Gruppe - Karte
 NoContactCard=Keine Kontaktkarte
 Permission=Berechtigung
 Permissions=Berechtigungen
@@ -89,7 +89,7 @@ DomainUser=Domain-Benutzer %s
 Reactivate=Reaktivieren
 CreateInternalUserDesc=Dieses Formular erlaubt Ihnen das Anlegen eines unternehmensinternen Benutzers. Zum Anlegen eines externen Benutzers (Kunden, Lieferanten, ...), verwenden Sie bitte die 'Benutzer erstellen'-Schaltfläche in der Kontaktkarte des jeweiligen Partnerkontakts.
 InternalExternalDesc=Ein <b>interner</b> Benutzer ist Teil Ihres Unternehmens/Ihrer Stiftung. <br> Ein <b>externer</b> Benutzer ist ein Kunde, Lieferant oder Anderes.
-PermissionInheritedFromAGroup=Berechtigung durch eine Gruppenzugehörigkeit gererbt.
+PermissionInheritedFromAGroup=Berechtigung durch eine Gruppenzugehörigkeit geerbt.
 Inherited=Geerbt
 UserWillBeInternalUser=Erstellter Benutzer ist intern (mit keinem bestimmten Partner verknüpft)
 UserWillBeExternalUser=Erstellter Benutzer ist extern (mit einem bestimmten Partner verknüpft)
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Verwende OpenID für Anmeldung
 WeeklyHours=Wochenstunden
 ColorUser=Benutzerfarbe
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/de_DE/withdrawals.lang b/htdocs/langs/de_DE/withdrawals.lang
index 384172aad018ee85d4baa38e149d8aaaa3ab83d0..a377e6c18c0ab1ae7af90d102555258e815850ad 100644
--- a/htdocs/langs/de_DE/withdrawals.lang
+++ b/htdocs/langs/de_DE/withdrawals.lang
@@ -14,7 +14,7 @@ WithdrawalReceiptShort=Beleg
 LastWithdrawalReceipts=%s neuste Abbuchungsbelege
 WithdrawedBills=Abgebuchte Rechnungen
 WithdrawalsLines=Abbuchungszeilen
-RequestStandingOrderToTreat=Anfrage für Dauerauftrage zu bearbeiten
+RequestStandingOrderToTreat=Anfrage für Daueraufträge zu bearbeiten
 RequestStandingOrderTreated=Anfrage für Lastschriftauftrag bearbeitet
 NotPossibleForThisStatusOfWithdrawReceiptORLine=Funktion nicht verfügbar. Der Status des Abbucher muss auf "durchgeführt"  gesetzt sein bevor eine Erklärung für die Ablehnung eingetragen werden können.
 CustomersStandingOrders=Kunden Lastschriftverfahren
@@ -86,7 +86,7 @@ StatisticsByLineStatus=Statistiken nach Statuszeilen
 RUM=RUM
 RUMWillBeGenerated=RUM Zahl wird beim speichern der Bankinformationen generiert
 WithdrawMode=Abbuchungsmodus (FRST oder RECUR)
-WithdrawRequestAmount=Abbachungsauftrag Betrag:
+WithdrawRequestAmount=Abbuchungsauftrag Betrag:
 WithdrawRequestErrorNilAmount=Es kann keine Abbuchung für einen Nullbetrag erstellt werden.
 
 ### Notifications
diff --git a/htdocs/langs/de_DE/workflow.lang b/htdocs/langs/de_DE/workflow.lang
index fdcaacd68ef89e38ce7bd5b3e971d7e0d111446f..929d436b0d442d17c277b345ef13f0dafe917266 100644
--- a/htdocs/langs/de_DE/workflow.lang
+++ b/htdocs/langs/de_DE/workflow.lang
@@ -3,9 +3,9 @@ WorkflowSetup=Workflow Moduleinstellungen
 WorkflowDesc=Dieses Modul wurde gestaltet um das Verhalten von automatischen Aktionen in den Anwendung zu verändern. Standardmäßig wird der Prozess offen sein. (Sie können die Dinge in der gewünschten Reihenfolge tun). Sie können die automatische Aktionen, die Sie interessieren aktivieren.
 ThereIsNoWorkflowToModify=Es sind keine Workflow Änderungen möglich mit den aktivierten Modulen.
 descWORKFLOW_PROPAL_AUTOCREATE_ORDER=Erstelle einen Kundenauftrag automatisch, nachdem ein Angebot unterzeichnet wurde
-descWORKFLOW_PROPAL_AUTOCREATE_INVOICEAutomatically Erstelle eine Kundenrechnung automatisch, nachdem ein Angebot unterzeichnet wurde
-descWORKFLOW_CONTRACT_AUTOCREATE_INVOICEAutomatically Erstelle eine Kundenrechnung automatisch, nachdem ein Vertrag bestätigt wurde
-descWORKFLOW_ORDER_AUTOCREATE_INVOICEAutomatically Erstelle eine Kundenrechnung automatisch, nachdem ein Kundenauftrag geschlossen wurde
+descWORKFLOW_PROPAL_AUTOCREATE_INVOICE=Erstelle automatisch eine Kundenrechnung, nachdem das Angebot bestätigt wurde.
+descWORKFLOW_CONTRACT_AUTOCREATE_INVOICE=Erstelle automatisch eine Kundenrechnung, nachdem der Vertrag bestätigt wurde.
+descWORKFLOW_ORDER_AUTOCREATE_INVOICE=Erstelle automatisch eine Kundenrechnung,  nachdem ein Auftrag abgeschlossen wurde.
 descWORKFLOW_ORDER_CLASSIFY_BILLED_PROPAL=Kennzeichne verknüpftes Angebot als in Rechnung gestellt, wenn der Kundenauftrag als bezahlt markiert wird
 descWORKFLOW_INVOICE_CLASSIFY_BILLED_ORDER=Kennzeichne verknüpfte Kundenaufträge als verrechnet, wenn die Kundenrechnung als bezahlt markiert wird
 descWORKFLOW_INVOICE_AMOUNT_CLASSIFY_BILLED_ORDER=Kennzeichne verknüpfte Kundenaufträge als verrechnet, wenn die Kundenrechnung bestätigt wird
diff --git a/htdocs/langs/el_GR/accountancy.lang b/htdocs/langs/el_GR/accountancy.lang
index 58aac597a50b1950bd96cbe1e6ad7110eab98a2d..c01b12eee425fb7960f2fe403b0f60c99455246e 100644
--- a/htdocs/langs/el_GR/accountancy.lang
+++ b/htdocs/langs/el_GR/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Επιλέξτε ένα πρότυπο από την εξαγωγ
 Modelcsv_normal=Κλασική εξαγωγή
 Modelcsv_CEGID=Εξαγωγή προς CEGID εμπειρογνωμόνων
 BackToChartofaccounts=Επιστροφή στο διάγραμμα των λογαριασμών
-Back=Επιστροφή
 
 Definechartofaccounts=Ορίστε ένα διάγραμμα των λογαριασμών
 Selectchartofaccounts=Επιλέξτε ένα διάγραμμα των λογαριασμών
@@ -109,10 +108,6 @@ DelBookKeeping=Διαγράψτε τα αρχεία της γενικής λογ
 
 DescSellsJournal=Ημερολόγιο πωλήσεων
 DescPurchasesJournal=Ημερολόγιο αγορών
-BankJournal=Τραπεζικό ημερολόγιο
-DescBankJournal=Ημερολόγιο Τράπεζας, συμπεριλαμβανομένων όλων των ειδών πληρωμών εκτός από τα μετρητά
-CashJournal=Ημερολόγιο μετρητών
-DescCashJournal=Ημερολόγιο μετρητών καθώς και το είδος των ταμειακών πληρωμών
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Συμβουλευτείτε εδώ τη λίστα τω
 ValidateHistory=Αυτόματη επικύρωση
 
 ErrorAccountancyCodeIsAlreadyUse=Σφάλμα, δεν μπορείτε να διαγράψετε αυτόν τον λογιστικό λογαριασμό γιατί χρησιμοποιείται
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Φόρμα ανάλυσης
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/el_GR/admin.lang b/htdocs/langs/el_GR/admin.lang
index 518ca40946b75c10a1fa6b4a48918742fdf9f4ca..5affa6b3bbc9a676a0ba40f3e2a50437ae16c655 100644
--- a/htdocs/langs/el_GR/admin.lang
+++ b/htdocs/langs/el_GR/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Απόκρυψη όλων των πληροφοριώ
 HideDescOnPDF=Απόκρυψη περιγραφών προϊόντων στα δημιουργηθέντα PDF
 HideRefOnPDF=Απόκρυψη αναφοράς προϊόντος στα δημιουργηθέντα PDF
 HideDetailsOnPDF=Απόκρυψη λεπτομερειών προϊόντων στα δημιουργηθέντα PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Βιβλιοθήκη
 UrlGenerationParameters=Παράμετροι για δημιουργία ασφαλών URL
 SecurityTokenIsUnique=Χρησιμοποιήστε μια μοναδική παράμετρο securekey για κάθε διεύθυνση URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Είστε σίγουροι ότι θέλετε ν
 AllBarcodeReset=Όλες οι τιμές barcode έχουν αφαιρεθεί
 NoBarcodeNumberingTemplateDefined=Δεν υπάρχει πρότυπο για barcode αρίθμηση ενεργοποιημένη στο module barcode
 NoRecordWithoutBarcodeDefined=Δεν υπάρχει εγγραφή χωρίς ορισμένη τιμή barcode.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Χρήστες & Ομάδες
@@ -499,7 +500,7 @@ Module510Desc=Διαχείριση υπαλλήλων, μισθών και πλ
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Notifications
-Module600Desc=Αποστολή ειδοποιήσεων μέσω ηλεκτρονικού ταχυδρομείου σχετικά με ορισμένες Dolibarr επαγγελματικές συναντήσεις σε Πελ./Προμ. (η ρύθμιση ορίζεται από κάθε Πελ./Προμ.)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Δωρεές
 Module700Desc=Donation management
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Καθυστερήσεις πριν την προειδοπ
 DelaysOfToleranceBeforeWarning=Tolerance delays before warning
 DelaysOfToleranceDesc=This screen allows you to define the tolerated delays before an alert is reported on screen with picto %s for each late element.
 Delays_MAIN_DELAY_ACTIONS_TODO=Delay tolerance (in days) before alert on planned events not yet realised
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on orders not yet processed
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on suppliers orders not yet processed
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Delay tolerance (in days) before alert on proposals to close
@@ -1087,6 +1089,7 @@ PathDirectory=Directory
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/el_GR/agenda.lang b/htdocs/langs/el_GR/agenda.lang
index c98a28ca1e2f1cce1d845cf9a4b4b101c7467111..387c78c3100b84d765c7fa7473fd6fb9ac62360a 100644
--- a/htdocs/langs/el_GR/agenda.lang
+++ b/htdocs/langs/el_GR/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Όλες οι ενέργειες/εργασίες
 ViewCal=Μηνιαία προβολή
 ViewDay=Προβολή ημέρας
 ViewWeek=Προβολή εβδομάδας
+ViewYear=Year view
 ViewPerUser=Προβολή ανά χρήστη
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Εμφάνιση με προκαθορισμένα φίλτρα
 AutoActions= Αυτόματη συμπλήρωση ημερολογίου
 AgendaAutoActionDesc= Εδώ ορίζετε γεγονότα για το οποία θέλετε το  Dolibarr να δημιουργεί αυτόματα μια ενέργεια στην ατζέντα. Αν τίποτα δεν είναι τσεκαρισμένο (προεπιλογή), τότε, μόνο χειροκίνητες ενέργειες θα συμπεριληφθούν στην ατζέντα.
diff --git a/htdocs/langs/el_GR/bills.lang b/htdocs/langs/el_GR/bills.lang
index d0fe0d1b62ab573977b6c454ca5eb9cfcef6a0d0..522ccd9e738776ab3970a11a5c099b5781edbce7 100644
--- a/htdocs/langs/el_GR/bills.lang
+++ b/htdocs/langs/el_GR/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Ιστορικό Πληρωμών
 PaymentsBackAlreadyDone=Payments back already done
 PaymentRule=Κανόνας Πληρωμής
 PaymentMode=Τρόπος Πληρωμής
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Τρόπος πληρωμής
 PaymentTerm=Όρος πληρωμής
 PaymentConditions=Όροι πληρωμής
@@ -184,6 +186,7 @@ ShowInvoice=Εμφάνιση τιμολογίου
 ShowInvoiceReplace=Εμφάνιση τιμολογίου αντικατάστασης
 ShowInvoiceAvoir=Εμφάνιση πιστωτικού τιμολογίου
 ShowInvoiceDeposit=Εμφάνιση τιμολογίου κατάθεσης
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Εμφάνιση πληρωμής
 AlreadyPaid=Ήδη πληρωμένο
 AlreadyPaidBack=Already paid back
@@ -221,6 +224,7 @@ NonPercuRecuperable=Non-recoverable
 SetConditions=Set payment conditions
 SetMode=Set payment mode
 Billed=Τιμολογημένο
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Πρότυπο τιμολογίου
 RepeatableInvoices=Πρότυπο τιμολόγιο
 Repeatable=Πρώτυπο
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=This amount has been abandoned (customer said to be a bad
 HelpAbandonOther=This amount has been abandoned since it was an error (wrong customer or invoice replaced by an other for example)
 IdSocialContribution=Κοινωνική εισφορά / Φορολογικά id πληρωμής
 PaymentId=Κωδ. Πληρωμής
+PaymentRef=Payment ref.
 InvoiceId=Κωδ. Τιμολογίου
 InvoiceRef=Κωδ. Τιμολογίου
 InvoiceDateCreation=Ημερ. δημιουργίας τιμολογίου
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Σχετικά τιμολόγια προμηθευτών
 LatestRelatedBill=Τελευταίο σχετικό τιμολόγιο
 WarningBillExist=Προσοχή, ένα ή περισσότερα τιμολόγια υπάρχουν ήδη
 MergingPDFTool=Συγχώνευση εργαλείο PDF
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Άμεση
@@ -393,6 +402,7 @@ Reported=Με καθυστέρηση
 DisabledBecausePayments=Δεν είναι δυνατόν, δεδομένου ότι υπάρχουν ορισμένες πληρωμές
 CantRemovePaymentWithOneInvoicePaid=Δεν μπορείτε να καταργήσετε τη πληρωμή, δεδομένου ότι υπάρχει τουλάχιστον ένα τιμολόγιο που έχει χαρακτηριστεί σαν πληρωμένο
 ExpectedToPay=Αναμενόμενη Πληρωμή
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Πληρωθείτε αυτό το ποσό
 ClosePaidInvoicesAutomatically=Κατατάσσουν "Καταβάλλονται" όλα τα στάνταρ, κατάσταση ή την αντικατάσταση των τιμολογίων βαρύνει εξ ολοκλήρου.
 ClosePaidCreditNotesAutomatically=Ταξινομήσει τα "Πληρωμένα" όλα τα πιστωτικά τιμολόγια που καταβάλλονται εξ ολοκλήρου πίσω.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Σημείωση: Αυτή η λίστα περιέ
 RevenueStamp=Revenue stamp
 YouMustCreateInvoiceFromThird=Αυτή η επιλογή είναι διαθέσιμη όταν δημιουργήσετε τιμολόγιο από την καρτέλα "πελάτης" από άλλους κατασκευαστές 
 PDFCrabeDescription=Τιμολόγιο πρότυπο PDF Crabe. Ένα πλήρες πρότυπο τιμολογίου (συνιστώμενο πρότυπο)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Επιστρέψετε αριθμό με μορφή %syymm-nnnn για τυπικά τιμολόγια και %syymm-nnnn για πιστωτικά τιμολόγια όπου yy είναι το έτος, mm είναι ο μήνας και nnnn είναι μια ακολουθία αρίθμησης χωρίς διάλειμμα και χωρίς επιστροφή στο 0
 MarsNumRefModelDesc1=Επιστρέφει αριθμό με μορφή %syymm-nnnn για τυπικά τιμολόγια, %syymm-nnnn για τα τιμολόγια αντικατάστασης, %syymm-nnnn για τα τιμολόγια των καταθέσεων και %syymm-nnnn για πιστωτικά σημειώματα όπου yy είναι το έτος, mm είναι μήνας και nnnn είναι μια ακολουθία χωρίς διακοπή και χωρίς επιστροφή σε 0
 TerreNumRefModelError=A bill starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=Η κατάσταση αυτή είναι οριστική.
 CantBeLessThanMinPercent=Η πρόοδος δεν μπορεί να είναι μικρότερη από την αξία του στην προηγούμενη κατάσταση.
 NoSituations=Δεν υπάρχουν ανοικτές καταστάσεις
 InvoiceSituationLast=Τελικό και γενικό τιμολόγιο
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/el_GR/boxes.lang b/htdocs/langs/el_GR/boxes.lang
index 06d1854d82b2854b18c68d1300e473343ae00b7e..3debeeb789282fdb67cc37822434b80e39d39ead 100644
--- a/htdocs/langs/el_GR/boxes.lang
+++ b/htdocs/langs/el_GR/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Τιμολόγια Πελάτη
 ForCustomersOrders=Παραγγελίες πελατών
 ForProposals=Προσφορές
 LastXMonthRolling=Η τελευταία %s κίνηση του μήνα 
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/el_GR/categories.lang b/htdocs/langs/el_GR/categories.lang
index 327b27f9e95ddc5d28d0de3be4fb67c778f9c7a0..6d4c60165260b77220b901bc4d312b61df8e17d2 100644
--- a/htdocs/langs/el_GR/categories.lang
+++ b/htdocs/langs/el_GR/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Κατηγορίες Πελατών/Προοπτ
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/el_GR/companies.lang b/htdocs/langs/el_GR/companies.lang
index 937267f33d3295c2ae0b8aada41c592f1c73a8c0..b419963c5b54fa5f118a3a616e4d8c7f5babff63 100644
--- a/htdocs/langs/el_GR/companies.lang
+++ b/htdocs/langs/el_GR/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (RC)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (ΑΝ)
 ProfId4MA=Id prof. 4 (CNSS)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Ο καθηγητής Id 1 (RFC).
 ProfId2MX=Ο καθηγητής ID 2 (R.. Π. IMSS)
diff --git a/htdocs/langs/el_GR/compta.lang b/htdocs/langs/el_GR/compta.lang
index 2d48b6f0587aafcc16b075f1beaeb60b9825e80b..b547fc74063ec0740d71c6e0235f19afd9f7a165 100644
--- a/htdocs/langs/el_GR/compta.lang
+++ b/htdocs/langs/el_GR/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Τα τιμολόγια ασφαλείας ούτε π
 DepositsAreIncluded=- Περιλαμβάνονται τιμολόγια ασφαλείας
 LT2ReportByCustomersInInputOutputModeES=Έκθεση του τρίτου IRPF
 LT1ReportByCustomersInInputOutputModeES=Αναφορά Πελ./Προμ. RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Αναφορά από τον ΦΠΑ των πελατών εισπράττεται και καταβάλλεται
 VATReportByCustomersInDueDebtMode=Αναφορά από τον ΦΠΑ των πελατών εισπράττεται και καταβάλλεται
 VATReportByQuartersInInputOutputMode=Αναφορά συντελεστή του ΦΠΑ που εισπράττεται και καταβάλλεται
diff --git a/htdocs/langs/el_GR/cron.lang b/htdocs/langs/el_GR/cron.lang
index 006e7766751e786e8ebdce4a5ce611f46388c7a5..0a0248a926d4fce84a1cd6b7496e37c541d3e18a 100644
--- a/htdocs/langs/el_GR/cron.lang
+++ b/htdocs/langs/el_GR/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=Στο Unix περιβάλλον θα πρέπει να
 CronExplainHowToRunWin=Σε Microsoft (tm) Windows περιβάλλον μπορείτε να χρησιμοποιήσετε τα εργαλεία Προγραμματισμένη εργασία ώστε να εκτελείτε η γραμμή εντολών καθένα 5 λεπτά
 # Menu
 CronJobs=Προγραμματισμένες εργασίες
-CronListActive=Λίστα ενεργών/προγραμματισμένων εργασιών
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=Λίστα με τις απενεργοποιημένες εργασίες
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Τελευταία εκτέλεση
 CronLastOutput=Τελευταία εκτέλεση εξόδου
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Εργασία
 CronNone=Καμία
-CronDtStart=Ημερ. έναρξης
-CronDtEnd=Ημερ. τέλους
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Επόμενη εκτέλεση
 CronDtLastLaunch=Τελευταία εκτέλεση
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=Δεν έχουν καταχωρηθεί εργασίες
 CronPriority=Προτεραιότητα
 CronLabel=Περιγραφή
 CronNbRun=Nb. έναρξης
+CronMaxRun=Max nb. launch
 CronEach=Κάθε
 JobFinished=Ξεκίνησε και τελείωσε
 #Page card
diff --git a/htdocs/langs/el_GR/deliveries.lang b/htdocs/langs/el_GR/deliveries.lang
index 8f65e8881eeab0e2e17bd0f167df1bcdc30f0b9d..ae3f5939975ab6c81b5335f71240b610297d4270 100644
--- a/htdocs/langs/el_GR/deliveries.lang
+++ b/htdocs/langs/el_GR/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Είστε σίγουροι ότι θέλετε ν
 DeliveryMethod=Μέθοδος παράδοσης
 TrackingNumber=Αριθμός παρακολούθησης
 DeliveryNotValidated=Η παράδοση δεν επικυρώνονται
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Όνομα και υπογραφή :
 ToAndDate=Σε ___________________________________ στις ____/_____/__________
diff --git a/htdocs/langs/el_GR/holiday.lang b/htdocs/langs/el_GR/holiday.lang
index f80f0a8b0b4112161940adfb73fdd346e54cf00e..0ddb00be7774d1036c91bb219b24b2706aa7f98a 100644
--- a/htdocs/langs/el_GR/holiday.lang
+++ b/htdocs/langs/el_GR/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=Θα πρέπει να ενεργοποιήσετε τις Άδε
 NotConfigModCP=Μπορείτε να ρυθμίσετε το module Άδειες για να δείτε αυτή τη σελίδα.Για να το κάνετε αυτό, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> κάντε κλικ εδώ </ a>.
 NoCPforUser=Δεν έχετε διαθέσιμες ημέρες.
 AddCP=Κάντε αίτηση άδειας
-Employe=Εργαζόμενος
 DateDebCP=Ημερ. έναρξης
 DateFinCP=Ημερ. τέλους
 DateCreateCP=Ημερομηνία Δημιουργίας
@@ -23,7 +22,7 @@ ReviewedByCP=Θα πρέπει να επανεξεταστεί από
 DescCP=Περιγραφή
 SendRequestCP=Δημιουργήστε το αίτημα άδειας
 DelayToRequestCP=Tα αιτήματα πρέπει να γίνονται τουλάχιστον <b>%s ημέρα(ες)</b> πριν από τις.
-MenuConfCP=Επεξεργασία ισορροπίας των αδειών
+MenuConfCP=Balance of leaves
 UpdateAllCP=Ενημέρωση των αδειών
 SoldeCPUser=Η ισορροπία των αδειών είναι <b>%s</b> ημέρες.
 ErrorEndDateCP=Πρέπει να επιλέξετε μια ημερομηνία λήξης μεγαλύτερη από την ημερομηνία έναρξης.
@@ -79,9 +78,9 @@ PrevSoldeCP=Προηγούμενο Υπόλοιπο
 NewSoldeCP=Νέο υπόλοιπο
 alreadyCPexist=Υπάρχει ήδη αίτηση άδειας για αυτήν τη περίοδο.
 UserName=Όνομα
-Employee=Υπάλληλος
 FirstDayOfHoliday=Πρώτη μέρα των αδειών
 LastDayOfHoliday=Τελευταία μέρα των αδειών
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Μηνιαία ενημέρωση
 ManualUpdate=Χειροκίνητη ενημέρωση
 HolidaysCancelation=Αφήστε το αίτημα ακύρωσης
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Η αίτηση αδείας σας για %s στο %s έχ
 HolidaysCanceled=Ακυρώθηκε το αίτημα αδείας
 HolidaysCanceledBody=Η αίτηση αδείας σας για %s στο %s έχει ακυρωθεί.
 NewByMonth=Μηνιαία προσθήκη
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/el_GR/hrm.lang b/htdocs/langs/el_GR/hrm.lang
index 91db7af5751f619bb4513a6bb4e361070acb6cc0..24075030d05172ed4696b58e405d8ddb7cc94ece 100644
--- a/htdocs/langs/el_GR/hrm.lang
+++ b/htdocs/langs/el_GR/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=Λίστα  εργαζομένων
 Employees=Εργαζόμενοι
 Employee=Υπάλληλος
+Employe=Employe
 NewEmployee=Νέος εργαζόμενος
 EmployeeCard=Κάρτα υπαλλήλου
diff --git a/htdocs/langs/el_GR/interventions.lang b/htdocs/langs/el_GR/interventions.lang
index 6a95f1625c374e842cb106e12f116ffdbcb28e6d..978f0803813762e684207d63b0d744d6d1e62dbb 100644
--- a/htdocs/langs/el_GR/interventions.lang
+++ b/htdocs/langs/el_GR/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Αριθμός επιστροφής με μορφή %syy
 PacificNumRefModelError=Μια καρτέλα παρέμβασης με $syymm ήδη υπάρχει και δεν είναι συμβατή με αυτή την ακολουθία. Απομακρύνετε την ή μετονομάστε την για να ενεργοποιήσετε το module.
 PrintProductsOnFichinter=Εκτυπώστε προϊόντα στην κάρτα παρέμβασης
 PrintProductsOnFichinterDetails=παρεμβάσεις που προέρχονται από παραγγελίες
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/el_GR/mails.lang b/htdocs/langs/el_GR/mails.lang
index 5d871265a4ab190c68e4dfa1add21b5a112f56e5..c7dcdc9359d982daec3f66b0344c50872429d9f3 100644
--- a/htdocs/langs/el_GR/mails.lang
+++ b/htdocs/langs/el_GR/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail αποστέλλονται στους παραλήπτες %s.
 XTargetsAdded=<b>%s</b> παραλήπτες που προστέθηκαν στο κατάλογο των στόχων
 EachInvoiceWillBeAttachedToEmail=Ένα έγγραφο χρησιμοποιώντας το προεπιλεγμένο τιμολόγιο θα δημιουργηθεί και θα επισυνάπτεται σε κάθε email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Υπενθύμιση του τιμολογίου %s (%s)
 SendRemind=Αποστολή υπενθύμισης με EMails
 RemindSent=%s υπενθύμιση (εις) αποστέλλονται
diff --git a/htdocs/langs/el_GR/main.lang b/htdocs/langs/el_GR/main.lang
index 4ae3bd9c125fa33feedf99bfa78473e982941d44..c851fa0843dd95965db8d5f4bc8d7aefab2e22bf 100644
--- a/htdocs/langs/el_GR/main.lang
+++ b/htdocs/langs/el_GR/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%d/%m/%Y %H:%M:%S
 FormatDateHourTextShort=%d %b %Y %H:%M
 FormatDateHourText=%d %B %Y %H:%M
 DatabaseConnection=Σύνδεση Βάσης Δεδομένων
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Δεν μεταφράστηκε
 NoRecordFound=Δεν υπάρχουν καταχωρημένα στοιχεία
 NoError=Κανένα Σφάλμα
@@ -105,6 +106,7 @@ NotePrivate=Σημειώσεις (προσωπικές)
 PrecisionUnitIsLimitedToXDecimals=Το Dolibarr ρυθμίστηκε να περιορίζει την ακρίβεια των τιμών σε <b>%s</b> δεκαδικά ψηφία.
 DoTest=Δοκιμή
 ToFilter=Φίλτρο
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Προειδοποίηση!! Έχετε τουλάχιστον ένα στοιχείο που υπερβαίνει το όριο καθυστερήσης.
 yes=ναι
 Yes=Ναι
@@ -228,6 +230,8 @@ Now=Τώρα
 HourStart=Έναρξη ωρών
 Date=Ημερομηνία
 DateAndHour=Ημερομηνία και ώρα
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Ημερομηνία Έναρξης
 DateEnd=Ημερομηνία Τέλους
 DateCreation=Ημερομηνία Δημιουργίας
@@ -608,6 +612,7 @@ TotalMan=Συνολικοί
 NeverReceived=Δεν παραλήφθηκε
 Canceled=Ακυρώθηκε
 YouCanChangeValuesForThisListFromDictionarySetup=Μπορείτε να αλλάξετε τις τιμές για αυτή τη λίστα από το μενού Ρυθμίσεις - Διαχείριση Λεξικού
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Χρώμα
 Documents=Συνδεδεμένα Αρχεία
 DocumentsNb=Συνδεδεμένα Αρχεία (%s)
@@ -695,6 +700,7 @@ Test=Δοκιμή
 Element=Στοιχείο
 NoPhotoYet=Δεν υπαρχουν διαθεσημες φωτογραφίες ακόμα
 HomeDashboard=Αρχικη σύνοψη
+Dashboard=Dashboard
 Deductible=Εκπίπτουν
 from=από
 toward=προς
diff --git a/htdocs/langs/el_GR/margins.lang b/htdocs/langs/el_GR/margins.lang
index 0f24ba500920200998b81cf2ad621779ff6c1994..f8757549d5a2f3cc3aa0fcb0bc96a2ec2fed18c6 100644
--- a/htdocs/langs/el_GR/margins.lang
+++ b/htdocs/langs/el_GR/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Επιλέξτε προϊόν ή υπηρεσία
 StartDate=Ημερ. έναρξης
 EndDate=Ημερ. λήξης
 Launch=Έναρξη
-ForceBuyingPriceIfNull=Υποχρεωτική τιμή αγοράς, αν η τιμή είναι μηδενική
-ForceBuyingPriceIfNullDetails=Αν είναι "ON", το περιθώριο θα είναι μηδενικό στη γραμμή (τιμή αγοράς = τιμή πώλησης), αν ειναι ("OFF"), θα είναι ίση με την τιμή πώλησης (τιμή αγοράς = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Μέθοδος ποσοστού για της γενικές εκπτώσεις
 UseDiscountAsProduct=Ως προϊόν
 UseDiscountAsService=Ως υπηρεσία
@@ -35,8 +35,9 @@ MargeBrute=Αρχικό περιθώριο
 MargeNette=Το καθαρό περιθώριο
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Αρχικό περιθώριο: τιμή πώλησης - τιμή αγοράς<br/>Το καθαρό περιθώριο: τιμή πώλησης - τιμή κόστους
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Τιμή κόστους
 BuyingCost=Τιμή κόστους
 UnitCharges=Χρεώσεων
diff --git a/htdocs/langs/el_GR/oauth.lang b/htdocs/langs/el_GR/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/el_GR/oauth.lang
+++ b/htdocs/langs/el_GR/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/el_GR/orders.lang b/htdocs/langs/el_GR/orders.lang
index 1ea51948cdd18c8034ed236b66aa3de7b47325f5..aa6e68bafe9ad0313f274dc6444bd5c64c5d8eb8 100644
--- a/htdocs/langs/el_GR/orders.lang
+++ b/htdocs/langs/el_GR/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=Δεν υπάρχουν προσχέδια παραγγελιών
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Άλλες παραγγελίες
 LastOrders=Τελευταίες %s παραγγελίες πελατών
diff --git a/htdocs/langs/el_GR/other.lang b/htdocs/langs/el_GR/other.lang
index 7d51ae86028e1db8b29990ebfdeaa7239c21af88..b17dd06853591a0d34ed1ff395614310cf6495b3 100644
--- a/htdocs/langs/el_GR/other.lang
+++ b/htdocs/langs/el_GR/other.lang
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=New export
 ##### External sites #####
 ExternalSites=External sites
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/el_GR/paypal.lang b/htdocs/langs/el_GR/paypal.lang
index cdd305dba39d9b5ec23efabb26fea884670034ba..a41d76eb3ddd74536801c0dfc93cde4fd127a9a4 100644
--- a/htdocs/langs/el_GR/paypal.lang
+++ b/htdocs/langs/el_GR/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Λειτουργία δοκιμής / sandbox
 PAYPAL_API_USER=API όνομα χρήστη
 PAYPAL_API_PASSWORD=API κωδικό πρόσβασης
 PAYPAL_API_SIGNATURE=API υπογραφή
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Προσφορά πληρωμής  "ενσωματωμένο"  (Πιστωτική κάρτα + Paypal) ή "Paypal" μόνο
 PaypalModeIntegral=Ενσωματωμένο
 PaypalModeOnlyPaypal=PayPal μόνο
diff --git a/htdocs/langs/el_GR/products.lang b/htdocs/langs/el_GR/products.lang
index fba7236122711cfe137fe0e8855ce6961aa7cfcc..d7d88a173c706beb664d7132ddd06e60c62e82be 100644
--- a/htdocs/langs/el_GR/products.lang
+++ b/htdocs/langs/el_GR/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Production completed
-ProductsMultiPrice=Προϊόν πολλαπλών-τιμών
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/el_GR/projects.lang b/htdocs/langs/el_GR/projects.lang
index 7f674da7547c650efd2eca26d415fc35be870f86..38737866ed11a5eaa4ed4ca42e2f7c8dace18eec 100644
--- a/htdocs/langs/el_GR/projects.lang
+++ b/htdocs/langs/el_GR/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=Αυτή η προβολή παρουσιάζει όλα
 ProjectsDesc=Η άποψη αυτή παρουσιάζει όλα τα έργα (δικαιώματα χρήστη να δώσει δικαίωμα για να δείτε τα πάντα).
 MyTasksDesc=Η άποψη αυτή περιορίζονται σε έργα ή εργασίες που έχουν μια επαφή για την (όποια είναι ο τύπος).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Η άποψη αυτή παρουσιάζει όλα τα έργα και τα καθήκοντα που επιτρέπεται να διαβάζουν.
 TasksDesc=Η άποψη αυτή παρουσιάζει όλα τα έργα και τα καθήκοντα (δικαιώματα χρήστη να δώσει δικαίωμα για να δείτε τα πάντα).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Officer project
 LastProjects=%s τελευταία έργα
 AllProjects=Όλα τα έργα
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Λίστα έργων
 ShowProject=Εμφάνιση έργου
 SetProject=Set project
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Εργασία %s τροποποιήθηκε
 TaskDeletedInDolibarr=Εργασία %s διαγράφηκε
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/el_GR/propal.lang b/htdocs/langs/el_GR/propal.lang
index a42585a015494acc23daa5b85aa8b9ce2abeb99f..3832a39b38f04eaf4b8914ba3399c848c0009d6e 100644
--- a/htdocs/langs/el_GR/propal.lang
+++ b/htdocs/langs/el_GR/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Τελευταίες %s τροποποιημένες Πρ
 AllPropals=Όλες οι Προσφορές
 LastProposals=Τελευταίες Προσφορές
 SearchAProposal=Εύρεση Προσφοράς
+NoProposal=No proposal
 ProposalsStatistics=Στατιστικά Προσφοράς
 NumberOfProposalsByMonth=Αριθμός ανά μήνα
 AmountOfProposalsByMonthHT=Ποσό ανά μήνα (μετά από φόρους)
@@ -62,7 +63,8 @@ DatePropal=Ημερομηνία της Προσφοράς
 DateEndPropal=Ισχύς ημερομηνία λήξης
 DateEndPropalShort=Ημερομηνία λήξης
 ValidityDuration=Διάρκεια ισχύος
-CloseAs=Κλείσιμο με την ιδιότητα
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Ταξινομήστε τιμολογείται
 BuildBill=Δημιουργήστε τιμολόγιο
 ErrorPropalNotFound=Η Προσφορά %s δεν βρέθηκε
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Δημιουργία προεπιλεγμένων μο
 DefaultModelPropalToBill=Προεπιλεγμένο πρότυπο όταν κλείνει μια Προσφορά (να τιμολογηθεί)
 DefaultModelPropalClosed=Προεπιλεγμένο πρότυπο όταν κλείνει μια Προσφορά (ατιμολόγητη)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/el_GR/salaries.lang b/htdocs/langs/el_GR/salaries.lang
index 5819f3e9456a7d7705543ed8f0db4d145d77da6f..3a485e500c04bc136ad590560603ac47e1d6a88f 100644
--- a/htdocs/langs/el_GR/salaries.lang
+++ b/htdocs/langs/el_GR/salaries.lang
@@ -3,7 +3,6 @@ SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Κωδικός Λογιστικής για 
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Κωδικός Λογιστικής για οικονομική επιβάρυνση
 Salary=Mισθός
 Salaries=Μισθοί
-Employee=Υπάλληλος
 NewSalaryPayment=Νέα μισθοδοσία
 SalaryPayment=Μισθός
 SalariesPayments=Πληρωμές μισθών
diff --git a/htdocs/langs/el_GR/sendings.lang b/htdocs/langs/el_GR/sendings.lang
index 4333fc08571aa2d127497a9b02e882d12cd97604..48ae66d0eced8e57ab18d17f52f81af1372b01a0 100644
--- a/htdocs/langs/el_GR/sendings.lang
+++ b/htdocs/langs/el_GR/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=Όλες οι αποστολές
 Shipment=Αποστολή
 Shipments=Αποστολές
 ShowSending=Show Shipments
-Receivings=Αποδείξεις
+Receivings=Delivery Receipts
 SendingsArea=Περιοχή αποστολών 
 ListOfSendings=Κατάλογος των αποστολών
 SendingMethod=Μέθοδο αποστολής
diff --git a/htdocs/langs/el_GR/sms.lang b/htdocs/langs/el_GR/sms.lang
index dd313b1d63c02eb2b71fb568f0056f74c9756b8a..4dc590891b0166d43a7532e84fe1d7caa94d094f 100644
--- a/htdocs/langs/el_GR/sms.lang
+++ b/htdocs/langs/el_GR/sms.lang
@@ -49,5 +49,6 @@ SendSms=Αποστολή SMS
 SmsInfoCharRemain=Αρ. υπόλοιπων χαρακτήρων
 SmsInfoNumero= (Μορφή διεθνούς δηλαδή: +308997017610)
 DelayBeforeSending=Καθυστέρηση πριν από την αποστολή (λεπτά)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Δεν υπάρχει στόχος. Ελέγξτε την εγκατάσταση του SMS του παροχέα σας.
 
diff --git a/htdocs/langs/el_GR/supplier_proposal.lang b/htdocs/langs/el_GR/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/el_GR/supplier_proposal.lang
+++ b/htdocs/langs/el_GR/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/el_GR/trips.lang b/htdocs/langs/el_GR/trips.lang
index 1105d2de52da44feb8a51b0052a14b393f59fd57..bf51ac4183229dfff4a1a7e07ef9f5db63d0e76e 100644
--- a/htdocs/langs/el_GR/trips.lang
+++ b/htdocs/langs/el_GR/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Άλλο
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Γεύμα
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/el_GR/users.lang b/htdocs/langs/el_GR/users.lang
index d78dca476878765e3087168fbec82265abb6d3db..209ff6af78b3152d855ef75810d9a1a0c7c2f4fb 100644
--- a/htdocs/langs/el_GR/users.lang
+++ b/htdocs/langs/el_GR/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Χρησιμοποιήστε το OpenID για να συνδεθείτε
 WeeklyHours=Εβδομαδιαίες ώρες
 ColorUser=Χρώμα του χρήστη
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/en_AU/accountancy.lang b/htdocs/langs/en_AU/accountancy.lang
new file mode 100644
index 0000000000000000000000000000000000000000..12159db0d7355ae377f9ce8c007851bc5ca5fd46
--- /dev/null
+++ b/htdocs/langs/en_AU/accountancy.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - accountancy
+EnabledTiers=In third party
diff --git a/htdocs/langs/en_AU/companies.lang b/htdocs/langs/en_AU/companies.lang
new file mode 100644
index 0000000000000000000000000000000000000000..569de2a0e42f990728e21e38965dc444ce3ddedb
--- /dev/null
+++ b/htdocs/langs/en_AU/companies.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - companies
+ProfId5MA=Id prof. 5 (C.I.C.E.)
diff --git a/htdocs/langs/en_AU/cron.lang b/htdocs/langs/en_AU/cron.lang
deleted file mode 100644
index e211c11dff5b4809131d6492f5c5ae876f5ec0c7..0000000000000000000000000000000000000000
--- a/htdocs/langs/en_AU/cron.lang
+++ /dev/null
@@ -1,4 +0,0 @@
-# Dolibarr language file - Source file is en_US - cron
-CronListActive=List of active/scheduled jobs
-CronDtStart=Start date
-CronDtEnd=End date
diff --git a/htdocs/langs/en_AU/margins.lang b/htdocs/langs/en_AU/margins.lang
new file mode 100644
index 0000000000000000000000000000000000000000..f93f8ff712cedc9f4ef2d7efa693acf6d046117a
--- /dev/null
+++ b/htdocs/langs/en_AU/margins.lang
@@ -0,0 +1,3 @@
+# Dolibarr language file - Source file is en_US - margins
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
diff --git a/htdocs/langs/en_AU/products.lang b/htdocs/langs/en_AU/products.lang
deleted file mode 100644
index 3c7dd771227e57791d85b0d8970a4d0e2e963bdd..0000000000000000000000000000000000000000
--- a/htdocs/langs/en_AU/products.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - products
-ProductsMultiPrice=Product multi-price
diff --git a/htdocs/langs/en_AU/projects.lang b/htdocs/langs/en_AU/projects.lang
new file mode 100644
index 0000000000000000000000000000000000000000..3a53dd52c2dc6ef0eb48d716e2fde53011617928
--- /dev/null
+++ b/htdocs/langs/en_AU/projects.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - projects
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
diff --git a/htdocs/langs/en_AU/propal.lang b/htdocs/langs/en_AU/propal.lang
new file mode 100644
index 0000000000000000000000000000000000000000..90b012fd6f9fdc4a6c9795c8c9c56a0224e9ae93
--- /dev/null
+++ b/htdocs/langs/en_AU/propal.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - propal
+CloseAs=Set status to
diff --git a/htdocs/langs/en_AU/sendings.lang b/htdocs/langs/en_AU/sendings.lang
deleted file mode 100644
index 4020b40d6e277ba6917b7de67d2803b66b307029..0000000000000000000000000000000000000000
--- a/htdocs/langs/en_AU/sendings.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - sendings
-Receivings=Receipts
diff --git a/htdocs/langs/en_AU/supplier_proposal.lang b/htdocs/langs/en_AU/supplier_proposal.lang
deleted file mode 100644
index 321dbcb4cdc0539d3014a09a483b265fdb61493d..0000000000000000000000000000000000000000
--- a/htdocs/langs/en_AU/supplier_proposal.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - supplier_proposal
-SupplierProposalShort=Supplier proposal
diff --git a/htdocs/langs/en_CA/accountancy.lang b/htdocs/langs/en_CA/accountancy.lang
new file mode 100644
index 0000000000000000000000000000000000000000..12159db0d7355ae377f9ce8c007851bc5ca5fd46
--- /dev/null
+++ b/htdocs/langs/en_CA/accountancy.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - accountancy
+EnabledTiers=In third party
diff --git a/htdocs/langs/en_CA/companies.lang b/htdocs/langs/en_CA/companies.lang
index 985f125d7de4badf9518e48d71fb548c72b91241..c50d3de4b74638766387ec10167cb37be030ef47 100644
--- a/htdocs/langs/en_CA/companies.lang
+++ b/htdocs/langs/en_CA/companies.lang
@@ -3,3 +3,4 @@ VATIsUsed=GST is used
 VATIsNotUsed=GST is not use
 LocalTax1IsUsedES=PST is used
 LocalTax1IsNotUsedES=GST is not used
+ProfId5MA=Id prof. 5 (C.I.C.E.)
diff --git a/htdocs/langs/en_CA/cron.lang b/htdocs/langs/en_CA/cron.lang
deleted file mode 100644
index e211c11dff5b4809131d6492f5c5ae876f5ec0c7..0000000000000000000000000000000000000000
--- a/htdocs/langs/en_CA/cron.lang
+++ /dev/null
@@ -1,4 +0,0 @@
-# Dolibarr language file - Source file is en_US - cron
-CronListActive=List of active/scheduled jobs
-CronDtStart=Start date
-CronDtEnd=End date
diff --git a/htdocs/langs/en_CA/margins.lang b/htdocs/langs/en_CA/margins.lang
new file mode 100644
index 0000000000000000000000000000000000000000..f93f8ff712cedc9f4ef2d7efa693acf6d046117a
--- /dev/null
+++ b/htdocs/langs/en_CA/margins.lang
@@ -0,0 +1,3 @@
+# Dolibarr language file - Source file is en_US - margins
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
diff --git a/htdocs/langs/en_CA/products.lang b/htdocs/langs/en_CA/products.lang
deleted file mode 100644
index 3c7dd771227e57791d85b0d8970a4d0e2e963bdd..0000000000000000000000000000000000000000
--- a/htdocs/langs/en_CA/products.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - products
-ProductsMultiPrice=Product multi-price
diff --git a/htdocs/langs/en_CA/projects.lang b/htdocs/langs/en_CA/projects.lang
new file mode 100644
index 0000000000000000000000000000000000000000..3a53dd52c2dc6ef0eb48d716e2fde53011617928
--- /dev/null
+++ b/htdocs/langs/en_CA/projects.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - projects
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
diff --git a/htdocs/langs/en_CA/propal.lang b/htdocs/langs/en_CA/propal.lang
new file mode 100644
index 0000000000000000000000000000000000000000..90b012fd6f9fdc4a6c9795c8c9c56a0224e9ae93
--- /dev/null
+++ b/htdocs/langs/en_CA/propal.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - propal
+CloseAs=Set status to
diff --git a/htdocs/langs/en_CA/sendings.lang b/htdocs/langs/en_CA/sendings.lang
deleted file mode 100644
index 4020b40d6e277ba6917b7de67d2803b66b307029..0000000000000000000000000000000000000000
--- a/htdocs/langs/en_CA/sendings.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - sendings
-Receivings=Receipts
diff --git a/htdocs/langs/en_CA/supplier_proposal.lang b/htdocs/langs/en_CA/supplier_proposal.lang
deleted file mode 100644
index 321dbcb4cdc0539d3014a09a483b265fdb61493d..0000000000000000000000000000000000000000
--- a/htdocs/langs/en_CA/supplier_proposal.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - supplier_proposal
-SupplierProposalShort=Supplier proposal
diff --git a/htdocs/langs/en_GB/accountancy.lang b/htdocs/langs/en_GB/accountancy.lang
new file mode 100644
index 0000000000000000000000000000000000000000..12159db0d7355ae377f9ce8c007851bc5ca5fd46
--- /dev/null
+++ b/htdocs/langs/en_GB/accountancy.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - accountancy
+EnabledTiers=In third party
diff --git a/htdocs/langs/en_GB/companies.lang b/htdocs/langs/en_GB/companies.lang
new file mode 100644
index 0000000000000000000000000000000000000000..569de2a0e42f990728e21e38965dc444ce3ddedb
--- /dev/null
+++ b/htdocs/langs/en_GB/companies.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - companies
+ProfId5MA=Id prof. 5 (C.I.C.E.)
diff --git a/htdocs/langs/en_GB/cron.lang b/htdocs/langs/en_GB/cron.lang
deleted file mode 100644
index e211c11dff5b4809131d6492f5c5ae876f5ec0c7..0000000000000000000000000000000000000000
--- a/htdocs/langs/en_GB/cron.lang
+++ /dev/null
@@ -1,4 +0,0 @@
-# Dolibarr language file - Source file is en_US - cron
-CronListActive=List of active/scheduled jobs
-CronDtStart=Start date
-CronDtEnd=End date
diff --git a/htdocs/langs/en_GB/margins.lang b/htdocs/langs/en_GB/margins.lang
new file mode 100644
index 0000000000000000000000000000000000000000..f93f8ff712cedc9f4ef2d7efa693acf6d046117a
--- /dev/null
+++ b/htdocs/langs/en_GB/margins.lang
@@ -0,0 +1,3 @@
+# Dolibarr language file - Source file is en_US - margins
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
diff --git a/htdocs/langs/en_GB/products.lang b/htdocs/langs/en_GB/products.lang
deleted file mode 100644
index 3c7dd771227e57791d85b0d8970a4d0e2e963bdd..0000000000000000000000000000000000000000
--- a/htdocs/langs/en_GB/products.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - products
-ProductsMultiPrice=Product multi-price
diff --git a/htdocs/langs/en_GB/projects.lang b/htdocs/langs/en_GB/projects.lang
new file mode 100644
index 0000000000000000000000000000000000000000..3a53dd52c2dc6ef0eb48d716e2fde53011617928
--- /dev/null
+++ b/htdocs/langs/en_GB/projects.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - projects
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
diff --git a/htdocs/langs/en_GB/propal.lang b/htdocs/langs/en_GB/propal.lang
new file mode 100644
index 0000000000000000000000000000000000000000..90b012fd6f9fdc4a6c9795c8c9c56a0224e9ae93
--- /dev/null
+++ b/htdocs/langs/en_GB/propal.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - propal
+CloseAs=Set status to
diff --git a/htdocs/langs/en_GB/sendings.lang b/htdocs/langs/en_GB/sendings.lang
deleted file mode 100644
index 4020b40d6e277ba6917b7de67d2803b66b307029..0000000000000000000000000000000000000000
--- a/htdocs/langs/en_GB/sendings.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - sendings
-Receivings=Receipts
diff --git a/htdocs/langs/en_GB/supplier_proposal.lang b/htdocs/langs/en_GB/supplier_proposal.lang
deleted file mode 100644
index 321dbcb4cdc0539d3014a09a483b265fdb61493d..0000000000000000000000000000000000000000
--- a/htdocs/langs/en_GB/supplier_proposal.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - supplier_proposal
-SupplierProposalShort=Supplier proposal
diff --git a/htdocs/langs/en_IN/accountancy.lang b/htdocs/langs/en_IN/accountancy.lang
new file mode 100644
index 0000000000000000000000000000000000000000..12159db0d7355ae377f9ce8c007851bc5ca5fd46
--- /dev/null
+++ b/htdocs/langs/en_IN/accountancy.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - accountancy
+EnabledTiers=In third party
diff --git a/htdocs/langs/en_IN/companies.lang b/htdocs/langs/en_IN/companies.lang
new file mode 100644
index 0000000000000000000000000000000000000000..569de2a0e42f990728e21e38965dc444ce3ddedb
--- /dev/null
+++ b/htdocs/langs/en_IN/companies.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - companies
+ProfId5MA=Id prof. 5 (C.I.C.E.)
diff --git a/htdocs/langs/en_IN/cron.lang b/htdocs/langs/en_IN/cron.lang
deleted file mode 100644
index e211c11dff5b4809131d6492f5c5ae876f5ec0c7..0000000000000000000000000000000000000000
--- a/htdocs/langs/en_IN/cron.lang
+++ /dev/null
@@ -1,4 +0,0 @@
-# Dolibarr language file - Source file is en_US - cron
-CronListActive=List of active/scheduled jobs
-CronDtStart=Start date
-CronDtEnd=End date
diff --git a/htdocs/langs/en_IN/margins.lang b/htdocs/langs/en_IN/margins.lang
new file mode 100644
index 0000000000000000000000000000000000000000..f93f8ff712cedc9f4ef2d7efa693acf6d046117a
--- /dev/null
+++ b/htdocs/langs/en_IN/margins.lang
@@ -0,0 +1,3 @@
+# Dolibarr language file - Source file is en_US - margins
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
diff --git a/htdocs/langs/en_IN/products.lang b/htdocs/langs/en_IN/products.lang
deleted file mode 100644
index 3c7dd771227e57791d85b0d8970a4d0e2e963bdd..0000000000000000000000000000000000000000
--- a/htdocs/langs/en_IN/products.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - products
-ProductsMultiPrice=Product multi-price
diff --git a/htdocs/langs/en_IN/projects.lang b/htdocs/langs/en_IN/projects.lang
new file mode 100644
index 0000000000000000000000000000000000000000..3a53dd52c2dc6ef0eb48d716e2fde53011617928
--- /dev/null
+++ b/htdocs/langs/en_IN/projects.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - projects
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
diff --git a/htdocs/langs/en_IN/propal.lang b/htdocs/langs/en_IN/propal.lang
new file mode 100644
index 0000000000000000000000000000000000000000..90b012fd6f9fdc4a6c9795c8c9c56a0224e9ae93
--- /dev/null
+++ b/htdocs/langs/en_IN/propal.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - propal
+CloseAs=Set status to
diff --git a/htdocs/langs/en_IN/sendings.lang b/htdocs/langs/en_IN/sendings.lang
deleted file mode 100644
index 4020b40d6e277ba6917b7de67d2803b66b307029..0000000000000000000000000000000000000000
--- a/htdocs/langs/en_IN/sendings.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - sendings
-Receivings=Receipts
diff --git a/htdocs/langs/en_IN/supplier_proposal.lang b/htdocs/langs/en_IN/supplier_proposal.lang
deleted file mode 100644
index 321dbcb4cdc0539d3014a09a483b265fdb61493d..0000000000000000000000000000000000000000
--- a/htdocs/langs/en_IN/supplier_proposal.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - supplier_proposal
-SupplierProposalShort=Supplier proposal
diff --git a/htdocs/langs/en_US/accountancy.lang b/htdocs/langs/en_US/accountancy.lang
index 331a3d1a1b39196294627a77955c5ae81a88ac9d..921a3f30ff328481efb6cc2c4396a57cec505b3f 100644
--- a/htdocs/langs/en_US/accountancy.lang
+++ b/htdocs/langs/en_US/accountancy.lang
@@ -34,6 +34,7 @@ AccountAccounting=Accounting account
 AccountAccountingSuggest=Accounting account suggest
 Ventilation=Breakdown
 
+MenuAccountancy=Accountancy
 CustomersVentilation=Breakdown customers
 SuppliersVentilation=Breakdown suppliers
 TradeMargin=Trade margin
diff --git a/htdocs/langs/en_US/boxes.lang b/htdocs/langs/en_US/boxes.lang
index f635789dc1afabe9dfea302ae4d6bd2060c9136e..796c058e3b52e005a97d4a9d5865a4a20e55021f 100644
--- a/htdocs/langs/en_US/boxes.lang
+++ b/htdocs/langs/en_US/boxes.lang
@@ -95,4 +95,4 @@ ForCustomersInvoices=Customers invoices
 ForCustomersOrders=Customers orders
 ForProposals=Proposals
 LastXMonthRolling=The last %s month rolling
-ChooseBoxToAdd=Choose a box to add
\ No newline at end of file
+ChooseBoxToAdd=Add a box to your dashboard...
\ No newline at end of file
diff --git a/htdocs/langs/en_US/main.lang b/htdocs/langs/en_US/main.lang
index 5990ee991d9da0aff36db83c659cef3cc33b3b55..1222bf4a1f5cc94fe1f198ca31af159857347e1d 100644
--- a/htdocs/langs/en_US/main.lang
+++ b/htdocs/langs/en_US/main.lang
@@ -457,6 +457,7 @@ Datas=Data
 None=None
 NoneF=None
 Late=Late
+LateDesc=Delay to define if a record is late or not depends on your setup. Ask your admin to change delay from menu Home - Setup - Alerts.
 Photo=Picture
 Photos=Pictures
 AddPhoto=Add picture
diff --git a/htdocs/langs/es_AR/cron.lang b/htdocs/langs/es_AR/cron.lang
deleted file mode 100644
index e211c11dff5b4809131d6492f5c5ae876f5ec0c7..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_AR/cron.lang
+++ /dev/null
@@ -1,4 +0,0 @@
-# Dolibarr language file - Source file is en_US - cron
-CronListActive=List of active/scheduled jobs
-CronDtStart=Start date
-CronDtEnd=End date
diff --git a/htdocs/langs/es_AR/products.lang b/htdocs/langs/es_AR/products.lang
deleted file mode 100644
index 3c7dd771227e57791d85b0d8970a4d0e2e963bdd..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_AR/products.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - products
-ProductsMultiPrice=Product multi-price
diff --git a/htdocs/langs/es_AR/sendings.lang b/htdocs/langs/es_AR/sendings.lang
deleted file mode 100644
index 4020b40d6e277ba6917b7de67d2803b66b307029..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_AR/sendings.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - sendings
-Receivings=Receipts
diff --git a/htdocs/langs/es_AR/supplier_proposal.lang b/htdocs/langs/es_AR/supplier_proposal.lang
deleted file mode 100644
index 321dbcb4cdc0539d3014a09a483b265fdb61493d..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_AR/supplier_proposal.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - supplier_proposal
-SupplierProposalShort=Supplier proposal
diff --git a/htdocs/langs/es_BO/cron.lang b/htdocs/langs/es_BO/cron.lang
deleted file mode 100644
index e211c11dff5b4809131d6492f5c5ae876f5ec0c7..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_BO/cron.lang
+++ /dev/null
@@ -1,4 +0,0 @@
-# Dolibarr language file - Source file is en_US - cron
-CronListActive=List of active/scheduled jobs
-CronDtStart=Start date
-CronDtEnd=End date
diff --git a/htdocs/langs/es_BO/products.lang b/htdocs/langs/es_BO/products.lang
deleted file mode 100644
index 3c7dd771227e57791d85b0d8970a4d0e2e963bdd..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_BO/products.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - products
-ProductsMultiPrice=Product multi-price
diff --git a/htdocs/langs/es_BO/sendings.lang b/htdocs/langs/es_BO/sendings.lang
deleted file mode 100644
index 4020b40d6e277ba6917b7de67d2803b66b307029..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_BO/sendings.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - sendings
-Receivings=Receipts
diff --git a/htdocs/langs/es_BO/supplier_proposal.lang b/htdocs/langs/es_BO/supplier_proposal.lang
deleted file mode 100644
index 321dbcb4cdc0539d3014a09a483b265fdb61493d..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_BO/supplier_proposal.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - supplier_proposal
-SupplierProposalShort=Supplier proposal
diff --git a/htdocs/langs/es_CL/cron.lang b/htdocs/langs/es_CL/cron.lang
deleted file mode 100644
index e211c11dff5b4809131d6492f5c5ae876f5ec0c7..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_CL/cron.lang
+++ /dev/null
@@ -1,4 +0,0 @@
-# Dolibarr language file - Source file is en_US - cron
-CronListActive=List of active/scheduled jobs
-CronDtStart=Start date
-CronDtEnd=End date
diff --git a/htdocs/langs/es_CL/products.lang b/htdocs/langs/es_CL/products.lang
index 4712d024b4a98cf49d01000e3c476533028f20c2..9c1f23788712125be270212f337d427c9f06c917 100644
--- a/htdocs/langs/es_CL/products.lang
+++ b/htdocs/langs/es_CL/products.lang
@@ -2,4 +2,3 @@
 AddToMyProposals=Añadir a mis cotizaciones
 AddToOtherProposals=Añadir a otras cotizaciones
 NoteNotVisibleOnBill=Nota (no visible en las facturas, cotizaciones, etc.)
-ProductsMultiPrice=Product multi-price
diff --git a/htdocs/langs/es_CL/propal.lang b/htdocs/langs/es_CL/propal.lang
index ea190d14dd337c3498ef379f03a84e080849ae61..994b016c538846c4645e95e169a3d97e4acc8de8 100644
--- a/htdocs/langs/es_CL/propal.lang
+++ b/htdocs/langs/es_CL/propal.lang
@@ -50,7 +50,6 @@ DatePropal=Fecha cotización
 DateEndPropal=Validar fecha de término
 DateEndPropalShort=Fecha de término
 ValidityDuration=Validar duración
-CloseAs=Cerrar con estado
 ErrorPropalNotFound=%s cotizaciones no encontradas
 Estimate=Cotización:
 EstimateShort=Cotización
diff --git a/htdocs/langs/es_CL/sendings.lang b/htdocs/langs/es_CL/sendings.lang
deleted file mode 100644
index 4020b40d6e277ba6917b7de67d2803b66b307029..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_CL/sendings.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - sendings
-Receivings=Receipts
diff --git a/htdocs/langs/es_CL/supplier_proposal.lang b/htdocs/langs/es_CL/supplier_proposal.lang
deleted file mode 100644
index 321dbcb4cdc0539d3014a09a483b265fdb61493d..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_CL/supplier_proposal.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - supplier_proposal
-SupplierProposalShort=Supplier proposal
diff --git a/htdocs/langs/es_CO/cron.lang b/htdocs/langs/es_CO/cron.lang
deleted file mode 100644
index e211c11dff5b4809131d6492f5c5ae876f5ec0c7..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_CO/cron.lang
+++ /dev/null
@@ -1,4 +0,0 @@
-# Dolibarr language file - Source file is en_US - cron
-CronListActive=List of active/scheduled jobs
-CronDtStart=Start date
-CronDtEnd=End date
diff --git a/htdocs/langs/es_CO/products.lang b/htdocs/langs/es_CO/products.lang
deleted file mode 100644
index 3c7dd771227e57791d85b0d8970a4d0e2e963bdd..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_CO/products.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - products
-ProductsMultiPrice=Product multi-price
diff --git a/htdocs/langs/es_CO/sendings.lang b/htdocs/langs/es_CO/sendings.lang
deleted file mode 100644
index 4020b40d6e277ba6917b7de67d2803b66b307029..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_CO/sendings.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - sendings
-Receivings=Receipts
diff --git a/htdocs/langs/es_CO/supplier_proposal.lang b/htdocs/langs/es_CO/supplier_proposal.lang
deleted file mode 100644
index 321dbcb4cdc0539d3014a09a483b265fdb61493d..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_CO/supplier_proposal.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - supplier_proposal
-SupplierProposalShort=Supplier proposal
diff --git a/htdocs/langs/es_DO/cron.lang b/htdocs/langs/es_DO/cron.lang
deleted file mode 100644
index e211c11dff5b4809131d6492f5c5ae876f5ec0c7..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_DO/cron.lang
+++ /dev/null
@@ -1,4 +0,0 @@
-# Dolibarr language file - Source file is en_US - cron
-CronListActive=List of active/scheduled jobs
-CronDtStart=Start date
-CronDtEnd=End date
diff --git a/htdocs/langs/es_DO/products.lang b/htdocs/langs/es_DO/products.lang
deleted file mode 100644
index 3c7dd771227e57791d85b0d8970a4d0e2e963bdd..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_DO/products.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - products
-ProductsMultiPrice=Product multi-price
diff --git a/htdocs/langs/es_DO/sendings.lang b/htdocs/langs/es_DO/sendings.lang
deleted file mode 100644
index 4020b40d6e277ba6917b7de67d2803b66b307029..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_DO/sendings.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - sendings
-Receivings=Receipts
diff --git a/htdocs/langs/es_DO/supplier_proposal.lang b/htdocs/langs/es_DO/supplier_proposal.lang
deleted file mode 100644
index 321dbcb4cdc0539d3014a09a483b265fdb61493d..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_DO/supplier_proposal.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - supplier_proposal
-SupplierProposalShort=Supplier proposal
diff --git a/htdocs/langs/es_ES/accountancy.lang b/htdocs/langs/es_ES/accountancy.lang
index 3dc5a6639da1c1eeb90ab4950724fd3ebcb79184..e8b95e365b5384262ebe9bab3bcd6ba004171916 100644
--- a/htdocs/langs/es_ES/accountancy.lang
+++ b/htdocs/langs/es_ES/accountancy.lang
@@ -1,13 +1,13 @@
 # Dolibarr language file - en_US - Accounting Expert
 ACCOUNTING_EXPORT_SEPARATORCSV=Separador de columnas en el archivo de exportación
 ACCOUNTING_EXPORT_DATE=Formato de fecha en el archivo de exportación
-ACCOUNTING_EXPORT_PIECE=Export the number of piece
-ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Export with global account
-ACCOUNTING_EXPORT_LABEL=Export the label
-ACCOUNTING_EXPORT_AMOUNT=Export the amount
-ACCOUNTING_EXPORT_DEVISE=Export the devise
-Selectformat=Select the format for the file
-ACCOUNTING_EXPORT_PREFIX_SPEC=Specify the prefix for the file name
+ACCOUNTING_EXPORT_PIECE=Exportar el número de asiento
+ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Exportar con la cuenta global
+ACCOUNTING_EXPORT_LABEL=Exportar la etiqueta
+ACCOUNTING_EXPORT_AMOUNT=Exportar el importe
+ACCOUNTING_EXPORT_DEVISE=Exportar la divisa
+Selectformat=Seleccione el formato del archivo
+ACCOUNTING_EXPORT_PREFIX_SPEC=Especifique el prefijo del nombre de archivo
 
 Accounting=Contabilidad
 Globalparameters=Configuración global
@@ -26,7 +26,6 @@ Selectmodelcsv=Seleccione un modelo de exportación
 Modelcsv_normal=Exportación clásica
 Modelcsv_CEGID=Exportar a Cegid Expert
 BackToChartofaccounts=Volver al plan contable
-Back=Volver
 
 Definechartofaccounts=Definir plan contable
 Selectchartofaccounts=Seleccione un plan contable
@@ -56,7 +55,7 @@ AccountingVentilationCustomer=Contabilización ventas
 CAHTF=Total purchase supplier before tax
 InvoiceLines=Líneas de factura para contabilizar
 InvoiceLinesDone=Líneas de facturas contabilizadas
-IntoAccount=Ventilate in the accounting account
+IntoAccount=Contabilizar en la cuenta
 
 Ventilate=Contabilizar
 VentilationAuto=Contabilización automática
@@ -67,7 +66,7 @@ AnyLineVentilate=No hay líneas para contabilizar
 SelectedLines=Líneas seleccionadas
 Lineofinvoice=Línea de la factura
 VentilatedinAccount=Contabilizada con éxito en la cuenta contable
-NotVentilatedinAccount=Cuenta sin contabilización en la contabilidad
+NotVentilatedinAccount=Cuenta sin contabilizar en la contabilidad
 
 ACCOUNTING_SEPARATORCSV=Separador de columnas en el archivo de exportación
 
@@ -109,10 +108,6 @@ DelBookKeeping=Eliminar los registros del Diario Mayor
 
 DescSellsJournal=Diario de ventas
 DescPurchasesJournal=Diario de compras
-BankJournal=Diario bancario
-DescBankJournal=El diario bancario incluye todos los tipos pagos que no sean de efectivo
-CashJournal=Diario de caja
-DescCashJournal=El diario de caja incluye el tipo de pago efectivo
 FinanceJournal=Diario financiero
 DescFinanceJournal=El diario financiero incluye todos los tipos de pagos por cuenta bancaria
 
@@ -139,7 +134,7 @@ Pcgsubtype=Subcuenta
 Accountparent=Padre de la cuenta
 
 DescVentilCustomer=Consulte aquí la contabilización anual de sus facturas a clientes
-TotalVente=Total turnover before tax
+TotalVente=Total facturación antes de impuestos
 TotalMarge=Total margen ventas
 DescVentilDoneCustomer=Consulte aquí las líneas de facturas a clientes y sus cuentas contables
 DescVentilTodoCustomer=Contabilice sus líneas de facturas a clientes con una cuenta contable
@@ -152,22 +147,28 @@ DescVentilDoneSupplier=Consulte aquí la lista de facturas de proveedores y sus
 ValidateHistory=Validar automáticamente
 
 ErrorAccountancyCodeIsAlreadyUse=Error, no puede eliminar esta cuenta ya que está siendo usada
-
+MvtNotCorrectlyBalanced=Movimiento descuadrado. Debe = %s. Haber = %s
 FicheVentilation=Ficha contable
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
 ##Export Journal Feature
-ExportFormat=Format of Export
-Prefixname=Prefix of export File
-Separate=Export separator
-Textframe=Frame of text value
-Headercol=Colname in header of file
-Fieldname=Name of Field
-Headername=Name in header
-Type=Type of fields
-Param=Additionnal parameters
-EnabledProduct=In Product
-EnabledTiers=In Tiers
-EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+ExportFormat=Formato de exportación
+Prefixname=Prefijo del archivo de exportación
+Separate=Separador de exportación
+Textframe=Ventana del valor del texto
+Headercol=Nombre de columna en cabecera del archivo
+Fieldname=Nombre del campo
+Headername=Nombre en la cabecera
+Type=Tipos de campos
+Param=Parámetros adicionales
+EnabledProduct=En producto
+EnabledTiers=In third party
+EnabledVat=En IVA
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/es_ES/admin.lang b/htdocs/langs/es_ES/admin.lang
index e2ef5bb2bd87d86ed4bae991acd008abecb1087e..d1405cacf46ae3d833e1afe1b1dc70f478acbe57 100644
--- a/htdocs/langs/es_ES/admin.lang
+++ b/htdocs/langs/es_ES/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Ocultar toda la información relacionada con el IVA e
 HideDescOnPDF=Ocultar descripción de los productos en la generación de los PDF
 HideRefOnPDF=Ocultar referencia de los productos en la generación de los PDF
 HideDetailsOnPDF=Ocultar detalles de las líneas de productos en la generación de los PDF
-PlaceCustomerAddressToIsoLocation=Usar posición estándar  (Código postal en la posición de la dirección del cliente
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Librería
 UrlGenerationParameters=Seguridad de las URLs
 SecurityTokenIsUnique=¿Usar un parámetro securekey único para cada URL?
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=¿Está seguro de querer eliminar todos los regist
 AllBarcodeReset=Todos los códigos de barras han sido eliminados
 NoBarcodeNumberingTemplateDefined=No hay establecida una numeración en la configuración del módulo de códigos de barras. 
 NoRecordWithoutBarcodeDefined=Sin registros sin códigos de barras definidos.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Usuarios y grupos
@@ -499,7 +500,7 @@ Module510Desc=Gestión de salarios y pagos
 Module520Name=Crédito
 Module520Desc=Gestión de créditos
 Module600Name=Notificaciones
-Module600Desc=Envío de notificaciones por e-mail en algunos eventos de negocio de Dolibarr a contactos de terceros (configurado en cada tercero)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Donaciones
 Module700Desc=Gestión de donaciones
 Module770Name=Informes de gastos
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Plazos antes de alerta
 DelaysOfToleranceBeforeWarning=Plazos de tolerancia antes de alerta
 DelaysOfToleranceDesc=Esta pantalla permite configura los plazos de tolerancia antes de que se alerte con el símbolo %s, sobre cada elemento en retraso.
 Delays_MAIN_DELAY_ACTIONS_TODO=Tolerancia de retraso antes de la alerta (en días) sobre acciones planificadas no realizadas
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Tolerancia de retraso antes de la alerta (en días) sobre pedidos de clientes no procesados
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Tolerancia de retraso antes de la alerta (en días) sobre pedidos a proveedores no procesados
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Tolerancia de retraso antes de la alerta (en días) sobre presupuestos a cerrar
@@ -1087,6 +1089,7 @@ PathDirectory=Directorio
 SendmailOptionMayHurtBuggedMTA=La funcionalidad de enviar correo electrónico a través del "correo directo PHP" genera una solicitud que puede ser mal interpretado por algunos servidores de correo. Esto se traduce en mensajes de correo electrónico ilegibles para las personas alojadas en estas plataformas. Este es el caso de clientes en ciertos proveedores de servicios de Internet (Ej: Orange). Esto no es un problema ni de Dolibarr ni de PHP, pero sí del servidor de correo. Sin embargo, puede agregar la opción MAIN_FIX_FOR_BUGGED_MTA con valor 1 en configuración-varios para tratar que Dolibarr evite el error. Otra solución (recomendada) es utilizar el método de envío por SMTP que no tiene este inconveniente.
 TranslationSetup=Configuración traducción
 TranslationDesc=La elección del idioma mostrado en pantalla se modifica:<br>* A nivel global desde el menú <strong>Inicio - Configuración - Entorno</strong><br>* De manera específica al usuario desde la pestaña <strong>Interfaz usuario</strong> de su ficha de usuario (hacer clic en su login en la parte superior izquierda de la pantalla).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Número total de módulos activados: <b>%s</b>
 YouMustEnableOneModule=Debe activar al menos un módulo.
 ClassNotFoundIntoPathWarning=No se ha encontrado la clase %s en su path PHP
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=La instalación de módulos externos d
 ConfFileMuseContainCustom=La instalación de módulos externos desde la aplicación guarda los archivos de los módulos en el directorio <strong>%s</strong>. Para disponer de este directorio en Dolibarr, debe configurar el archivo <strong>conf/conf.php</strong> para tener la opción <br>- <strong>$dolibarr_main_url_root_alt</strong> activada al valor <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> activa al valor <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Resaltar líneas de los listados cuando el ratón pasa por encima de ellas
 HighlightLinesColor=Resalta el color de la línea cuando el ratón pasa por encima (mantener vacío para no resaltar)
+TextTitleColor=Color of page title
 LinkColor=Color para los enlaces
 PressF5AfterChangingThis=Una vez cambiado este valor, pulse F5 en el teclado para hacerlo efectivo
 NotSupportedByAllThemes=Funciona con el tema eldy, pero no es soportado por todos los temas
diff --git a/htdocs/langs/es_ES/agenda.lang b/htdocs/langs/es_ES/agenda.lang
index 93619d60e3c0cbaabbcdca5041c152e6f8b7f8f0..7dc07cde08aaf6c3773c9b68cb7c934d4495e279 100644
--- a/htdocs/langs/es_ES/agenda.lang
+++ b/htdocs/langs/es_ES/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Todos los eventos/tareas
 ViewCal=Vista mensual
 ViewDay=Vista diaria
 ViewWeek=Vista semanal
+ViewYear=Year view
 ViewPerUser=Vista por usuario
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Ver con los filtros predefinidos
 AutoActions= Inclusión automática en la agenda
 AgendaAutoActionDesc= Indique en esta pestaña los eventos para los que desea que Dolibarr cree automáticamente un evento en la agenda. Si no se marca nada (por defecto),  solamente las acciones manuales se incluirán en la agenda.
diff --git a/htdocs/langs/es_ES/bills.lang b/htdocs/langs/es_ES/bills.lang
index ea267d083ece070fb0d158dbdacd27b25af5713e..477faf956b9ba82d9ae7e403fabb45d0a988238f 100644
--- a/htdocs/langs/es_ES/bills.lang
+++ b/htdocs/langs/es_ES/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Pagos efectuados
 PaymentsBackAlreadyDone=Reembolsos ya efectuados
 PaymentRule=Forma de pago
 PaymentMode=Forma de pago
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Forma de pago
 PaymentTerm=Condición de pago
 PaymentConditions=Condiciones de pago
@@ -184,6 +186,7 @@ ShowInvoice=Ver factura
 ShowInvoiceReplace=Ver factura rectificativa
 ShowInvoiceAvoir=Ver abono
 ShowInvoiceDeposit=Ver factura de anticipo
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Ver pago
 AlreadyPaid=Ya pagado
 AlreadyPaidBack=Ya reembolsado
@@ -221,6 +224,7 @@ NonPercuRecuperable=No percibido recuperable
 SetConditions=Definir condiciones de pago
 SetMode=Definir modo de pago
 Billed=Facturado
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Plantilla de factura
 RepeatableInvoices=Plantilla de facturas
 Repeatable=Plantilla
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Este importe se abandonó (cliente juzgado como moroso) y
 HelpAbandonOther=Este importe se abandonó este importe ya que se trataba de un error de facturación (mala introducción de datos, factura sustituida por otra).
 IdSocialContribution=Id pago tasa social/fiscal
 PaymentId=ID pago
+PaymentRef=Payment ref.
 InvoiceId=Id factura
 InvoiceRef=Ref. factura
 InvoiceDateCreation=Fecha creación factura
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Facturas de proveedores asociadas
 LatestRelatedBill=Última factura relacionada
 WarningBillExist=Atención, ya existe al menos una factura
 MergingPDFTool=Herramienta de fusión PDF
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=A la recepción
@@ -393,6 +402,7 @@ Reported=Aplazado
 DisabledBecausePayments=No disponible ya que existen pagos
 CantRemovePaymentWithOneInvoicePaid=Eliminación imposible cuando existe al menos una factura clasificada como pagada.
 ExpectedToPay=Esperando el pago
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Pagada por este pago
 ClosePaidInvoicesAutomatically=Clasificar como "Pagadas" las facturas, facturas de situación y facturas rectificativas completamente pagadas.
 ClosePaidCreditNotesAutomatically=Clasificar automáticamente como "Pagados" los abonos completamente reembolsados
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Nota: Este listado incluye solamente los terceros d
 RevenueStamp=Timbre fiscal
 YouMustCreateInvoiceFromThird=Esta opción está solo disponible en la creación de facturas desde la pestaña "cliente" de un tercero
 PDFCrabeDescription=Modelo de factura completo (modelo recomendado por defecto)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Devuelve el número bajo el formato %syymm-nnnn para las facturas, %syymm-nnnn para las facturas rectificativas y %syymm-nnnn para los abonos donde yy es el año, mm. el mes y nnnn un contador secuencial sin ruptura y sin permanencia a 0
 MarsNumRefModelDesc1=Devuelve el número bajo el formato %syymm-nnnn para las facturas, %syymm-nnnn para las facturas rectificativas, %syymm-nnnn para los anticipos y %syymm-nnnn para los abonos donde yy es el año, mm. el mes y nnnn un contador secuencial sin ruptura y sin permanencia a 0
 TerreNumRefModelError=Ya existe una factura con $syymm y no es compatible con este modelo de secuencia. Elimínela o renómbrela para poder activar este módulo
@@ -433,3 +444,11 @@ DisabledBecauseFinal=Esta situación es la última.
 CantBeLessThanMinPercent=El progreso de una línea no puede ser inferior a su valor a la situación anterior.
 NoSituations=Sin situaciones abiertas
 InvoiceSituationLast=Factura final y general
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/es_ES/boxes.lang b/htdocs/langs/es_ES/boxes.lang
index cd19b4ee422e566d72d062c32dc68174ddc1f164..d87a857c33bdd74f4b2477512bd4687e67400663 100644
--- a/htdocs/langs/es_ES/boxes.lang
+++ b/htdocs/langs/es_ES/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Facturas a clientes
 ForCustomersOrders=Pedidos de clientes
 ForProposals=Presupuestos
 LastXMonthRolling=El último %s mes natural
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/es_ES/categories.lang b/htdocs/langs/es_ES/categories.lang
index 45c9311013e9ecc1ce4ca19c6dff0b54a1c24e73..32dee3b05d811a5dea98df6bd9a471bb61b9eb30 100644
--- a/htdocs/langs/es_ES/categories.lang
+++ b/htdocs/langs/es_ES/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Etiquetas/categorías de productos
 MembersCategoryShort=Etiquetas/categorías de miembros
 SuppliersCategoriesShort=Etiquetas/categorías de proveedores
 CustomersCategoriesShort=Etiquetas/categorías de clientes
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Categorías clientes
 ProductsCategoriesShort=Etiquetas/categorías de productos
 MembersCategoriesShort=Etiquetas/categorías de miembros
diff --git a/htdocs/langs/es_ES/companies.lang b/htdocs/langs/es_ES/companies.lang
index 61ce346f9ba6e60075f257a0b663f493603a2dd1..5a0e30ce5300df06386fbc432ab8e73d9c536883 100644
--- a/htdocs/langs/es_ES/companies.lang
+++ b/htdocs/langs/es_ES/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (R.C.)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=R.F.C.
 ProfId2MX=Registro Patronal IMSS
diff --git a/htdocs/langs/es_ES/compta.lang b/htdocs/langs/es_ES/compta.lang
index e33b62cd03c2c2aaf74c36f69d5b7d8eaca9e4c2..3e32262f1c841c4856d491f7ede352f56b07cd0f 100644
--- a/htdocs/langs/es_ES/compta.lang
+++ b/htdocs/langs/es_ES/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Las facturas de anticipo no están incluidas
 DepositsAreIncluded=- Las facturas de anticipo están incluidas
 LT2ReportByCustomersInInputOutputModeES=Informe por tercero del IRPF
 LT1ReportByCustomersInInputOutputModeES=Informe de RE por terceros
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Informe por cliente del IVA repercutido y soportado
 VATReportByCustomersInDueDebtMode=Informe por cliente del IVA repercutido y soportado
 VATReportByQuartersInInputOutputMode=Informe por tasa del IVA repercutido y soportado
diff --git a/htdocs/langs/es_ES/cron.lang b/htdocs/langs/es_ES/cron.lang
index 7639cf2625d973818fa9faf1dcdb9bb6aab2d1f4..be14eb213ce7528a3e5e2c3f8b9a2c0e8ecfd8cb 100644
--- a/htdocs/langs/es_ES/cron.lang
+++ b/htdocs/langs/es_ES/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=En entornos Unix se debe utilizar la siguiente entrada c
 CronExplainHowToRunWin=En entornos Microsoft (tm) Windows, puede utilizar las herramienta  tareas programadas para ejecutar el comando cada 5 minutos
 # Menu
 CronJobs=Tareas programadas
-CronListActive=Listado de tareas activas/programadas
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=Tareas Inactivas
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Últ. ejec.
 CronLastOutput=Res. ult. ejec.
@@ -35,8 +36,8 @@ CronInfo=Tareas programadas le permite ejecutar tareas que han sido programadas
 CronWaitingJobs=Trabajos en espera
 CronTask=Tarea
 CronNone=Ninguna
-CronDtStart=Fecha inicio
-CronDtEnd=Fecha fin
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Sig. ejec.
 CronDtLastLaunch=Últ. ejec.
 CronFrequency=Frecuencia
@@ -51,6 +52,7 @@ CronNoJobs=Sin trabajos registrados
 CronPriority=Prioridad
 CronLabel=Descripcion
 CronNbRun=Núm. ejec.
+CronMaxRun=Max nb. launch
 CronEach=Toda(s)
 JobFinished=Tareas lanzadas y finalizadas
 #Page card
diff --git a/htdocs/langs/es_ES/deliveries.lang b/htdocs/langs/es_ES/deliveries.lang
index 79a9a77929626e271dcc5a3dcb7e39559c33c98b..f80fe19e819d096aeba1986d1a0db02451575575 100644
--- a/htdocs/langs/es_ES/deliveries.lang
+++ b/htdocs/langs/es_ES/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=¿Está seguro de querer eliminar esta nota de entr
 DeliveryMethod=Método de envío
 TrackingNumber=Nº de seguimiento
 DeliveryNotValidated=Nota de recepción no validada
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Nombre y firma :
 ToAndDate=En___________________________________ a ____/_____/__________
diff --git a/htdocs/langs/es_ES/holiday.lang b/htdocs/langs/es_ES/holiday.lang
index ffafbb6f2e4f27e8723d9308f75c746d2bd9e245..9264b23e81ae9eb2a9f7a8daf3ef06cbd836a1e8 100644
--- a/htdocs/langs/es_ES/holiday.lang
+++ b/htdocs/langs/es_ES/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=Debe activar el módulo Días libres retribuidos para ver esta p
 NotConfigModCP=Debe configurar el módulo Días libres retribuidos para ver esta página. Para configurarlo, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;">haga clic aquí</a>.
 NoCPforUser=No tiene peticiones de días libres.
 AddCP=Realizar una petición de días libres
-Employe=Empleado
 DateDebCP=Fecha inicio
 DateFinCP=Fecha fin
 DateCreateCP=Fecha de creación
@@ -23,7 +22,7 @@ ReviewedByCP=Será revisada por
 DescCP=Descripción
 SendRequestCP=Enviar la petición de días libres
 DelayToRequestCP=Las peticiones de días libres deben realizarse al menos <b>%s días</b> antes.
-MenuConfCP=Definir los días libres
+MenuConfCP=Balance of leaves
 UpdateAllCP=Actualizar los días libres
 SoldeCPUser=Su saldo de días libres es de <b>%s días</b>.
 ErrorEndDateCP=Debe indicar una fecha de fin superior a la fecha de inicio.
@@ -79,9 +78,9 @@ PrevSoldeCP=Saldo anterior
 NewSoldeCP=Nuevo saldo
 alreadyCPexist=Ya se ha efectuado una petición de días libres para este periodo.
 UserName=Nombre Apellidos
-Employee=Empleado
 FirstDayOfHoliday=Primer día libre
 LastDayOfHoliday=Último día libre
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Actualización mensual
 ManualUpdate=Actualización manual
 HolidaysCancelation=Anulación días libres
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Su solicitud de días libres retribuidos desde el %s al %s h
 HolidaysCanceled=Días libres retribuidos cancelados
 HolidaysCanceledBody=Su solicitud de días libres retribuidos desde el %s al %s ha sido cancelada.
 NewByMonth=Añadida por mes
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Vaya a <strong>Inicoi - Configuración - Diccionarios - Tipos de vacaciones </strong> para configurar los diferentes tipos.
diff --git a/htdocs/langs/es_ES/hrm.lang b/htdocs/langs/es_ES/hrm.lang
index e97efe785d636841e7896e03cc50cbc649bd2dc6..71828d3bc46735293c275b6311147744d3646e96 100644
--- a/htdocs/langs/es_ES/hrm.lang
+++ b/htdocs/langs/es_ES/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction= R.R.H.H. Listado funciones
 ListOfEmployees=Listado de empleados
 Employees=Empleados
 Employee=Empleado
+Employe=Employe
 NewEmployee=Nuevo empleado
 EmployeeCard=Ficha de empleado
diff --git a/htdocs/langs/es_ES/interventions.lang b/htdocs/langs/es_ES/interventions.lang
index 14e6bed867383a851a6187f29a83a4478a305f6d..d23b69efb75e4305879f71ac4ee492f6d1d4e896 100644
--- a/htdocs/langs/es_ES/interventions.lang
+++ b/htdocs/langs/es_ES/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Devuelve el número con el formato %syymm-nnnn dónde yy
 PacificNumRefModelError=Una factura que empieza por # $$syymm existe en base y es incompatible con esta numeración. Elimínela  o renombrela para activar este módulo.
 PrintProductsOnFichinter=Mostrar los productos en la ficha de intervención
 PrintProductsOnFichinterDetails=Intervenciones generadas desde pedidos
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Id. intervención
 InterRef=Ref. intervención
diff --git a/htdocs/langs/es_ES/mails.lang b/htdocs/langs/es_ES/mails.lang
index ea530c49be561b66130bc6e4d7181a2ec8f3e433..9ffa6cb071ad530ace24736053d4fc3ba0150b79 100644
--- a/htdocs/langs/es_ES/mails.lang
+++ b/htdocs/langs/es_ES/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Clave usada para cifrar la URL utilizada para la función d
 EMailSentToNRecipients=E-Mail enviado a %s destinatarios.
 XTargetsAdded=<b>%s</b> destinatarios agregados a la lista
 EachInvoiceWillBeAttachedToEmail=Se creará y adjuntará a cada e-mail un documento usando el modelo de factura por defecto.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Recordatorio de la factura %s (%s)
 SendRemind=Enviar recordatorios por e-mail
 RemindSent=%s recordatorio(s) enviados
diff --git a/htdocs/langs/es_ES/main.lang b/htdocs/langs/es_ES/main.lang
index 4f606ebd50f403588afa309f6fa83cb998855b47..21fdb8566538cfb0ad2f6fbeaad4898e32d36eae 100644
--- a/htdocs/langs/es_ES/main.lang
+++ b/htdocs/langs/es_ES/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%d/%m/%Y %H:%M:%S
 FormatDateHourTextShort=%d %b %Y %H:%M
 FormatDateHourText=%d %B %Y %H:%M
 DatabaseConnection=Conexión a la base de datos
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Sin traducción
 NoRecordFound=No se han encontrado registros
 NoError=Ningún error
@@ -105,6 +106,7 @@ NotePrivate=Nota (privada)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr está configurado para limitar la precisión de los precios unitarios a <b>%s</b> decimales.
 DoTest=Probar
 ToFilter=Filtrar
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Atención, tiene al menos un elemento que ha pasado la fecha de tolerancia.
 yes=sí
 Yes=Sí
@@ -228,6 +230,8 @@ Now=Ahora
 HourStart=Hora de inicio
 Date=Fecha
 DateAndHour=Fecha y hora
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Fecha inicio
 DateEnd=Fecha fin
 DateCreation=Fecha de creación
@@ -608,6 +612,7 @@ TotalMan=Total
 NeverReceived=Nunca recibido
 Canceled=Cancelado
 YouCanChangeValuesForThisListFromDictionarySetup=Puede cambiar estos valores en el menú configuración->diccionarios
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Color
 Documents=Documentos
 DocumentsNb=archivos adjuntos (%s)
@@ -695,6 +700,7 @@ Test=Prueba
 Element=Elemento
 NoPhotoYet=No hay fotografía disponible
 HomeDashboard=Resumen
+Dashboard=Dashboard
 Deductible=Deducible
 from=de
 toward=hacia
@@ -760,7 +766,7 @@ SelectMailModel=Seleccione una plantilla de e-mail
 SetRef=Establecer ref
 Select2ResultFoundUseArrows=
 Select2NotFound=No se han encontrado registros
-Select2Enter=Entrar
+Select2Enter=Introducir
 Select2MoreCharacters=o más caracteres
 Select2LoadingMoreResults=Cargando más resultados...
 Select2SearchInProgress=Búsqueda en progreso...
diff --git a/htdocs/langs/es_ES/margins.lang b/htdocs/langs/es_ES/margins.lang
index c9170f9990e344e984b2ffd52e371288d123cf7a..42846224605d0f4faa5affa53d75f7ab42bb6b2a 100644
--- a/htdocs/langs/es_ES/margins.lang
+++ b/htdocs/langs/es_ES/margins.lang
@@ -35,8 +35,9 @@ MargeBrute=Margen bruto
 MargeNette=Margen neto
 MargeType1=Margen en Mejor precio de proveedor
 MargeType2=Margen en Precio Medio Ponderado (PMP)
-MARGIN_TYPE_DETAILS=Margen bruto: Precio de venta sin IVA - Precio de compra sin IVA<br/>Margen neto: Precio de venta sin IVA - Costos
-MarginTypeDesc=Margen en mejor precio de compra: Precio de venta - Mejor precio de compra definido en la ficha del producto<br/>Margen en Precio Medio Ponderado (PMP): Precio de venta - Precio Medio Ponderado (PMP) o mejor precio de compra si no hay definido PMP 
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Precio de compra
 BuyingCost=Costos
 UnitCharges=Carga unitaria
diff --git a/htdocs/langs/es_ES/oauth.lang b/htdocs/langs/es_ES/oauth.lang
index 3c160c12e6a8c3846a7e9cf32e759e2ab0073681..f759090fbe906a3d2eda6ca40eca4a29685d6d68 100644
--- a/htdocs/langs/es_ES/oauth.lang
+++ b/htdocs/langs/es_ES/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token eliminado
 RequestAccess=Haga clic aquí para consultar/renovar acceso y recibir un nuevo token a guardar
 DeleteAccess=Haga clic aquí para eliminar el token
 UseTheFollowingUrlAsRedirectURI=Utilice la siguiente dirección URL como redireccionamiento URI al crear su credencial de su proveedor OAuth:
-ListOfSupportedOauthProviders=Ingrese aquí la credencial proporcionada por su proveedor de OAuth2. Sólo los proveedores OAuth2 soportados son visibles aquí. Esta configuración puede ser usada por otros módulos que necesiten de autenticación OAuth2.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secreto
diff --git a/htdocs/langs/es_ES/orders.lang b/htdocs/langs/es_ES/orders.lang
index b921a50e9a1f1de09bc4b4ddeb47b89352da63a1..82bd221056bebe1333b4e6e8b7aea6661c2ba511 100644
--- a/htdocs/langs/es_ES/orders.lang
+++ b/htdocs/langs/es_ES/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Pedidos a procesar
 NoOpenedOrders=Sin pedidos abiertos
 NoOtherOpenedOrders=Sin otros pedidos abiertos
 NoDraftOrders=Sin pedidos borrador
-NoOrder=Sin pedidos 
+NoOrder=No order
 NoSupplierOrder=Sin pedidos a proveedor
 OtherOrders=Otros pedidos
 LastOrders=Últimos %s pedidos de clientes
@@ -112,8 +112,8 @@ ComptaCard=Ficha contable
 DraftOrders=Pedidos borrador
 DraftSuppliersOrders=Pedidos a proveedor en borrador
 RelatedOrders=Pedidos adjuntos
-RelatedCustomerOrders=Pedidos de clientes relacionados
-RelatedSupplierOrders=Pedidos a clientes relacionados
+RelatedCustomerOrders=Pedidos de cliente relacionados
+RelatedSupplierOrders=Pedidos a proveedor relacionados
 OnProcessOrders=Pedidos en proceso
 RefOrder=Ref. pedido
 RefCustomerOrder=Ref. pedido cliente
diff --git a/htdocs/langs/es_ES/other.lang b/htdocs/langs/es_ES/other.lang
index 4a5bb3911d3a1f5084820f7fcbd40c8573772215..cc5b44a2145fb2e12845a94276b0f5c9a32bbb14 100644
--- a/htdocs/langs/es_ES/other.lang
+++ b/htdocs/langs/es_ES/other.lang
@@ -238,3 +238,8 @@ ToExport=Exportar
 NewExport=Nueva exportación
 ##### External sites #####
 ExternalSites=Sitios externos
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/es_ES/paypal.lang b/htdocs/langs/es_ES/paypal.lang
index 6ee42112cfbbac1833cf265086cf4b2bae8fdf6d..2418a11a79d2b03daf30477ef8684c0581a9a547 100644
--- a/htdocs/langs/es_ES/paypal.lang
+++ b/htdocs/langs/es_ES/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Modo de pruebas (sandbox)
 PAYPAL_API_USER=Nombre usuario API
 PAYPAL_API_PASSWORD=Contraseña usuario API
 PAYPAL_API_SIGNATURE=Firma API
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Proponer pago integral (Tarjeta+Paypal) o sólo Paypal
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=Sólo PayPal
diff --git a/htdocs/langs/es_ES/products.lang b/htdocs/langs/es_ES/products.lang
index 25fe414bf619fca74f252f9c2f8152bb3cc093a6..e1ffef540861f98f2aad1ceaeb48f5cac52c70e1 100644
--- a/htdocs/langs/es_ES/products.lang
+++ b/htdocs/langs/es_ES/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Precio de compra unitario
 CostPmpHT=Coste de compra sin IVA
 ProductUsedForBuild=Auto consumido por producción
 ProductBuilded=Producción completada
-ProductsMultiPrice=Producto multi-precio
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Precios a clientes (productos o servicios, multiprecios)
 ProductSellByQuarterHT=Facturación trimestral de productos antes de impuestos
 ServiceSellByQuarterHT=Facturación trimestral de servicios antes de impuestos
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Seleccione los archivos PDF
 IncludingProductWithTag=Productos/servicios incluidos en el tag
 DefaultPriceRealPriceMayDependOnCustomer=Precio por defecto, el precio real puede depender del cliente
 WarningSelectOneDocument=Seleccione al menos un documento
-DefaultUnitToShow=Unidades
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/es_ES/projects.lang b/htdocs/langs/es_ES/projects.lang
index 98043ba04f82c6779f4bab52de216b838ed4c3f0..7ea4727302959c31c57663c595ec8fcf5dae02ce 100644
--- a/htdocs/langs/es_ES/projects.lang
+++ b/htdocs/langs/es_ES/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=Esta vista muestra todos los proyectos a los que tiene de
 ProjectsDesc=Esta vista muestra todos los proyectos (sus permisos de usuario le permiten tener una visión completa).
 MyTasksDesc=Esta vista se limita a los proyectos y tareas en los que usted es un contacto afectado en al menos una tarea (cualquier tipo).
 OnlyOpenedProject=Sólo los proyectos abiertos son visibles (los proyectos en estado borrador cerrado no son visibles).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Esta vista muestra todos los proyectos y tareas en los que usted tiene derecho a tener visibilidad.
 TasksDesc=Esta vista muestra todos los proyectos y tareas (sus permisos de usuario le permiten tener una visión completa).
 AllTaskVisibleButEditIfYouAreAssigned=Todas las tareas de este proyectos son visibles, pero solo puede indicar tiempos en las tareas que tenga asignadas. Asignese  tareas si desea indicar tiempos en ellas.
@@ -29,7 +30,9 @@ OfficerProject=Responsable del proyecto
 LastProjects=Los %s últimos proyectos
 AllProjects=Todos los proyectos
 OpenedProjects=Proyectos abiertos
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Importe oportunidades de proyectos abiertos por estado
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Listado de proyectos
 ShowProject=Ver proyecto
 SetProject=Definir proyecto
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=La tarea %s fue modificada
 TaskDeletedInDolibarr=La tarea %s fue eliminada
 OpportunityStatus=Estado de oportunidad
 OpportunityStatusShort=Estado oportunidad
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Importe Oportunidad
 OpportunityAmountShort=Importe oportunidad
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Proyectos con este usuario como contacto
 TasksWithThisUserAsContact=Tareas asignadas a este usuario
 ResourceNotAssignedToProject=No asignado al proyecto
 ResourceNotAssignedToTask=No asignado a la tarea
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Asignarme tarea
 AssignTask=Asignar
 ProjectOverview=Resumen
@@ -179,7 +185,7 @@ YouCanCompleteRef=Si quiere completar la referencia con alguna información (par
 OpenedProjectsByThirdparties=Proyectos abiertos de terceros
 OpportunityTotalAmount=Importe total oportunidades
 OpportunityPonderatedAmount=Importe medio oportunidades
-OpportunityPonderatedAmountDesc=Importe medio de oportunidades con probabilidad (dependiendo del estado de la oportunidad)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospección
 OppStatusQUAL=Cualificación
 OppStatusPROPO=Presupuesto
diff --git a/htdocs/langs/es_ES/propal.lang b/htdocs/langs/es_ES/propal.lang
index 8e27681c54d35d7a96450edfad455b9daa5f7504..a707e7742fff7abf522b4b97449fb67e0eba2db8 100644
--- a/htdocs/langs/es_ES/propal.lang
+++ b/htdocs/langs/es_ES/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Los %s últimos presupuestos modificados
 AllPropals=Todos los presupuestos
 LastProposals=Últimos presupuestos
 SearchAProposal=Buscar un presupuesto
+NoProposal=No proposal
 ProposalsStatistics=Estadísticas de presupuestos
 NumberOfProposalsByMonth=Número por mes
 AmountOfProposalsByMonthHT=Importe por mes (sin IVA)
@@ -62,7 +63,8 @@ DatePropal=Fecha presupuesto
 DateEndPropal=Fecha fin de validez
 DateEndPropalShort=Fecha fin
 ValidityDuration=Duración de validez
-CloseAs=Cerrar con el estado
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Clasificar facturado
 BuildBill=Crear factura
 ErrorPropalNotFound=Presupuesto %s inexistente
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Modelo por defecto
 DefaultModelPropalToBill=Modelo por defecto al cerrar un presupuesto (a facturar)
 DefaultModelPropalClosed=Modelo por defecto al cerrar un presupuesto (no facturado)
 ProposalCustomerSignature=Aceptación por escrito, sello de la empresa, fecha y firma
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/es_ES/salaries.lang b/htdocs/langs/es_ES/salaries.lang
index 4c10595f990b492c70a719a383f2d2d45b8e7a96..4e37236cc57a89e67e9959f33842e525514a4eb7 100644
--- a/htdocs/langs/es_ES/salaries.lang
+++ b/htdocs/langs/es_ES/salaries.lang
@@ -3,7 +3,6 @@ SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Código contable pago de salarios
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Código contable cargas financieras
 Salary=Salario
 Salaries=Salarios
-Employee=Empleado
 NewSalaryPayment=Nuevo pago
 SalaryPayment=Pago de salario
 SalariesPayments=Pagos de salarios
diff --git a/htdocs/langs/es_ES/sendings.lang b/htdocs/langs/es_ES/sendings.lang
index 7c4144a4a8046d16758650022b7ea32b88ae1ee5..071993395a425cfc639853cc05bcfd187775e12c 100644
--- a/htdocs/langs/es_ES/sendings.lang
+++ b/htdocs/langs/es_ES/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=Todos los envíos
 Shipment=Envío
 Shipments=Envíos
 ShowSending=Mostrar envíos
-Receivings=Recepciones
+Receivings=Delivery Receipts
 SendingsArea=Área envíos
 ListOfSendings=Listado de envíos
 SendingMethod=Método de envío
diff --git a/htdocs/langs/es_ES/sms.lang b/htdocs/langs/es_ES/sms.lang
index 346046e830c055c814b345ef660f690ab7d35a79..723092196bed6a6a1bcac64e6ca59f9352ed3724 100644
--- a/htdocs/langs/es_ES/sms.lang
+++ b/htdocs/langs/es_ES/sms.lang
@@ -49,5 +49,6 @@ SendSms=Enviar SMS
 SmsInfoCharRemain=Nº restante de caracteres
 SmsInfoNumero= (formato internacional ej : +33899701761)
 DelayBeforeSending=Retraso antes de enviarlo (en minutos)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=No hay destinatarios. Compruebe la configuración de su proveedor de SMS.
 
diff --git a/htdocs/langs/es_ES/supplier_proposal.lang b/htdocs/langs/es_ES/supplier_proposal.lang
index 53e9de1994a8403f4027b694f59b3c18408ccdfa..48eb73e8950e7c231542a343bc60026323993328 100644
--- a/htdocs/langs/es_ES/supplier_proposal.lang
+++ b/htdocs/langs/es_ES/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Presupuestos de proveedor
 supplier_proposalDESC=Gestionar presupuestos de proveedor
-supplier_proposalMENU_LEFT_TITLE=Presupuestos de proveedor
-supplier_proposalMENU_LEFT_TITLE_NEW=Nuevo presupuesto
-supplier_proposalMENU_LEFT_TITLE_LIST=Listado
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Presupuesto
 CommRequests=Presupuestos
 SearchRequest=Buscar un presupuesto
@@ -11,7 +10,7 @@ DraftRequests=Presupuestos borrador
 LastModifiedRequests=Los %s últimos presupuestos modificados
 RequestsOpened=Presupuestos abiertos
 SupplierProposalArea=Área presupuestos de proveedores
-SupplierProposalShort=Presupuesto de proveedor
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Presupuestos de proveedor
 NewAskPrice=Nuevo presupuesto
 NewAsk=Nuevo presupuesto
diff --git a/htdocs/langs/es_ES/trips.lang b/htdocs/langs/es_ES/trips.lang
index 150a496b776365ab76afe5b86b6ddccf8ee5200a..c91dff5ba8cc4e95a0dcc216851000a850bd03b6 100644
--- a/htdocs/langs/es_ES/trips.lang
+++ b/htdocs/langs/es_ES/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Información del gasto
 PDFStandardExpenseReports=Plantilla estandard para generar un documento de gasto
 ExpenseReportLine=Línea de gasto
 TF_OTHER=Otro
-TF_TRANSPORTATION=Transporte
+TF_TRIP=Transportation
 TF_LUNCH=Dieta
 TF_METRO=Metro
 TF_TRAIN=Tren
@@ -99,4 +99,5 @@ ConfirmSaveTrip=¿Está seguro de querer validar este gasto?
 NoTripsToExportCSV=Sin gastos a exportar para este periodo.
 ExpenseReportPayment=Informe de pagos de gastos
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Informe de gastos a pagar
diff --git a/htdocs/langs/es_ES/users.lang b/htdocs/langs/es_ES/users.lang
index 74d30ef6ebc087c2ae1f28d2ffed5ea421e5bcc5..a60fdd8268d4bafc474b984324bad5e2660b900b 100644
--- a/htdocs/langs/es_ES/users.lang
+++ b/htdocs/langs/es_ES/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=Dirección OpenID
 LoginUsingOpenID=Usar OpenID para iniciar sesión
 WeeklyHours=Horas semanales
 ColorUser=Color para el usuario
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/es_MX/accountancy.lang b/htdocs/langs/es_MX/accountancy.lang
new file mode 100644
index 0000000000000000000000000000000000000000..955ff24d02727668aecd04ffbf69dfa992bd815d
--- /dev/null
+++ b/htdocs/langs/es_MX/accountancy.lang
@@ -0,0 +1,81 @@
+# Dolibarr language file - Source file is en_US - accountancy
+ACCOUNTING_EXPORT_SEPARATORCSV=Separador de columnas para el archivo de exportación
+ACCOUNTING_EXPORT_DATE=Formato de fecha para el archivo de exportación
+ACCOUNTING_EXPORT_PIECE=Exportar el número de pieza
+ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Exportación con cuenta global
+ACCOUNTING_EXPORT_AMOUNT=Exportar la cantidad
+Globalparameters=Parámetros globales
+MenuTools=Herramientas
+Modelcsv_CEGID=Exportar a CEGID Expert
+AccountAccountingSuggest=Sugerencia de cuenta contable
+Ventilation=Desglose
+CustomersVentilation=Desglose de clientes
+SuppliersVentilation=Desglose de proveedores
+TradeMargin=Margen de ganancia
+Reports=Reportes
+ByCustomerInvoice=Clientes por factura
+UpdateAccount=Modificación de una cuenta contable
+UpdateMvts=Modificación de un movimiento
+WriteBookKeeping=Cuentas de registro en el libro mayor
+Bookkeeping=Libro mayor
+AccountBalanceByMonth=Balance de la cuenta por mes
+AccountingVentilation=Desglose de contablidad
+AccountingVentilationSupplier=Desglose de contabilidad de proveedores
+AccountingVentilationCustomer=Desglose de contabilidad de clientes
+CAHTF=Total de compra al proveedor antes de impuestos
+InvoiceLines=Partidas de factura por contabilizar
+InvoiceLinesDone=Partidas de factura contabilizadas
+IntoAccount=Contabilizar en la cuenta contable
+VentilationAuto=Desglose automático
+Processing=Procesando
+EndProcessing=Fin del proceso
+AnyLineVentilate=No hay partidas por contabilizar
+SelectedLines=Partidas seleccionadas
+Lineofinvoice=Partida de factura
+VentilatedinAccount=Contabilizado exitosamente en la cuenta contable
+NotVentilatedinAccount=No contabilizado en la cuenta contable
+ACCOUNTING_SEPARATORCSV=Separador de columna en el archivo de exportación
+ACCOUNTING_LIMIT_LIST_VENTILATION=Número de elementos a ser desglosados mostrados por página (máximo recomendado: 50)
+ACCOUNTING_LIST_SORT_VENTILATION_TODO=Empezar el orden de páginas desglosadas "Debe ser desglosado" por los elementos más recientes
+ACCOUNTING_LIST_SORT_VENTILATION_DONE=Empezar el orden de páginas desglosadas "Desglose" por los elementos más recientes
+AccountLengthDesc=Función que permite fingir una longitud de cuenta contable mediante la sustitución de espacios por la cifra cero. Esta función sólo afecta a lo que se muestra, no modifica las cuentas contables registradas en Dolibarr. Para la exportación, es necesario que esta función sea compatible con ciertos programas.
+ACCOUNTING_LENGTH_DESCRIPTION=Longitud para mostrar la descripción de productos y servicios en los listados (Ideal = 50)
+ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=Longitud para mostrar el formato de descripción de la cuenta de productos y servicios en listados (Ideal = 50)
+ACCOUNTING_LENGTH_AACCOUNT=Longitud de las cuentas de terceros
+ACCOUNTING_MISCELLANEOUS_JOURNAL=Diario de varios
+ACCOUNTING_EXPENSEREPORT_JOURNAL=Diario de reporte de gastos
+ACCOUNTING_SOCIAL_JOURNAL=Diario Social
+ACCOUNTING_ACCOUNT_TRANSFER_CASH=Cuenta de transferencia
+ACCOUNTING_ACCOUNT_SUSPENSE=Cuenta de espera
+ACCOUNTING_PRODUCT_BUY_ACCOUNT=Cuenta contable por defecto para productos comprados (si no ha sido definido por la hoja de producto)
+ACCOUNTING_PRODUCT_SOLD_ACCOUNT=Cuenta contable por defecto para los productos vendidos (si no ha sido definido en la hoja del producto)
+ACCOUNTING_SERVICE_BUY_ACCOUNT=Cuenta contable por defecto para los servicios comprados (si no ha sido definido en la hoja del servicio)
+ACCOUNTING_SERVICE_SOLD_ACCOUNT=Cuenta contable por defecto para los servicios vendidos (si no ha sido definido en la hoja del servicio)
+Labelcompte=Descripción de la cuenta
+Sens=Significado
+DelBookKeeping=Borrar los registros del libro mayor
+DescFinanceJournal=Diario financiero incluyendo todos los tipos de pagos por cuenta bancaria
+NumMvts=Número de movimiento
+ListeMvts=Lista del movimiento
+ErrorDebitCredit=Débito y Crédito no pueden tener un valor al mismo tiempo
+DescThirdPartyReport=Consulte aquí la lista de clientes y proveedores y sus cuentas contables
+Pcgtype=Tipo de cuenta
+Pcgsubtype=Subtipo de cuenta
+DescVentilCustomer=Consulte aquí el desglose contable anual de sus facturas a clientes
+TotalVente=Facturación total antes de impuestos
+TotalMarge=Margen de ventas total
+DescVentilDoneCustomer=Consulte aquí la lista de partidas de facturas a clientes y sus cuentas contables
+DescVentilTodoCustomer=Contabilice sus partidas de factura a cliente con una cuenta contable
+ChangeAccount=Cambie la cuenta contable para las partidas seleccionadas por la cuenta:
+DescVentilSupplier=Consulte aquí el desglose contable anual de sus facturas a proveedores
+DescVentilTodoSupplier=Contabilice sus partidas de factura a proveedor con una cuenta contable
+DescVentilDoneSupplier=Consulte aquí la lista de partidas de las facturas a proveedores y sus cuentas contables
+ValidateHistory=Validar Automáticamente
+ErrorAccountancyCodeIsAlreadyUse=Error, no es posible eliminar ésta cuenta contable porque está siendo usada
+MvtNotCorrectlyBalanced=Movimiento balanceado incorrectamente. Crédito = %s. Débito = %s
+FicheVentilation=Ficha de desglose
+GeneralLedgerIsWritten=Las operaciones son escritas en el libro mayor
+ExportFormat=Formato de Exportación
+Textframe=Marco de texto
+Headercol=Nombre de columna en el encabezado del archivo
+Headername=Nombre del encabezado
diff --git a/htdocs/langs/es_MX/admin.lang b/htdocs/langs/es_MX/admin.lang
index 1c53b65c99c6fee95d719213ae8ef0909a718a3f..29810d2d9d69401cf7c7922148e83b966dc6919a 100644
--- a/htdocs/langs/es_MX/admin.lang
+++ b/htdocs/langs/es_MX/admin.lang
@@ -1,4 +1,74 @@
 # Dolibarr language file - Source file is en_US - admin
-AntiVirusCommandExample=Example for ClamWin: c:\\Progra~1\\ClamWin\\bin\\clamscan.exe<br>Example for ClamAv: /usr/bin/clamscan
-AntiVirusParamExample=Example for ClamWin: --database="C:\\Program Files (x86)\\ClamWin\\lib"
+VersionProgram=Programa de versión
+VersionLastInstall=Versión inicial de la instalación
+VersionLastUpgrade=Versión de la última actualización
+VersionUnknown=Desconocido
+VersionRecommanded=Recomendado
+SessionId=ID de sesión
+SessionSavePath=Ubicación de la sesión guardada
+PurgeSessions=Depuración de sesiones
+ConfirmPurgeSessions=¿Realmente deseas depurar todas las sesiones? Ésto desconectará a todos los usuarios (excepto a ti).
+ConfirmLockNewSessions=¿Seguro que deseas restringir cualquier nueva conexión Dolibarr? Solamente el usuario <b>%s</b> será capaz de conectarse después de esto.
+UnlockNewSessions=Remover bloqueo de conexión
+YourSession=Tu sesión
+Sessions=Sesión de usuarios
+WebUserGroup=Usuario/Grupo del servidor web
+NoSessionFound=Tu PHP parece no permitir listar sesiones activas. El directorio usado para guardar las sesiones (<b>%s</b>) puede estar protegido (Por ejemplo, por permisos del SO o por la directiva open_basedir de PHP).
+HTMLCharset=Charset para las páginas HTML generadas
+DBStoringCharset=Charset de la base de datos para almacenar información
+DBSortingCharset=Charset de la base para ordenar información
+WarningModuleNotActive=El módulo <b>%s</b> debe estar habilitado
+WarningOnlyPermissionOfActivatedModules=Sólo los permisos relacionados a los módulos activados son mostrados aquí. Puedes activar otros módulos en la página Inicio->Configuración->Módulos
+DolibarrSetup=Instalación o actualización de Dolibarr
+GlobalSetup=Configuración global
+SetupArea=Área de configuración
+FormToTestFileUploadForm=Formulario para probar la carga de archivos (según la configuración)
+IfModuleEnabled=Nota: sí es efectivo sólo si el módulo <b>%s</b> está activado
+RemoveLock=Eliminar archivo <b>%s</b> si existe para permitir el uso de la herramienta para actualizar
+RestoreLock=Restablece el archivo <b>%s</b>, con permisos de sólo escritura, para deshabilitar cualquier uso de la herramienta para actualizar.
+SecuritySetup=Configuración de seguridad
+ErrorModuleRequirePHPVersion=Error, éste módulo requiere PHP versión %s o superior
+ErrorModuleRequireDolibarrVersion=Error, éste módulo requiere Dolibarr versión %s o superior
+ErrorDecimalLargerThanAreForbidden=Error, una precisión superior a <b>%s</b> no es soportada.
+ErrorReservedTypeSystemSystemAuto=Los valores 'system' y 'systemauto' para el tipo están reservados. Puedes usar 'user' como valor para añadir tu propio registro
+DisableJavascript=Deshabilita las funciones de JavaScript y Ajax (Recomendado para personas visualmente débiles o navegadores de texto)
+ConfirmAjax=Usar confirmaciones en popups Ajax
+UseSearchToSelectCompany=Usar campos de autocompletado para elegir terceros en lugar de utilizar un cuadro de lista.
+ActivityStateToSelectCompany=Añadir una opción de filtro para mostrar/ocultar terceros que están actualmente en activos o inactivos
+UseSearchToSelectContact=Usar campos de autocompletado para elegir contactos (en lugar de utilizar un cuadro de lista).
+SearchFilter=Opciones de filtros de búsqueda
+NumberOfKeyToSearch=N° de caracteres para activar la búsqueda: %s
+ViewFullDateActions=Mostrar fechas completas de eventos en la tercera hoja
+NotAvailableWhenAjaxDisabled=No disponible cuando Ajax está desactivado
+JavascriptDisabled=JavaScript desactivado
+UsePopupCalendar=Utilizar popup para ingresar fechas
+UsePreviewTabs=Utilizar pestañas de vista previa
+ShowPreview=Mostrar previsualización
+ThemeCurrentlyActive=Tema activo
+CurrentTimeZone=Zona horaria PHP (servidor)
+Space=Espacio
+NextValue=Valor siguiente
+NextValueForInvoices=Valor siguiente (facturas)
+NextValueForCreditNotes=Valor siguiente (notas de crédito)
+MustBeLowerThanPHPLimit=Nota: tu PHP limita el tamaño de cada carga de archivos a <b>%s</b> %s, sea cual sea el valor de este parámetro
+NoMaxSizeByPHPLimit=Nota: No hay límite establecido en la configuración de PHP
+MaxSizeForUploadedFiles=El tamaño máximo para los archivos subidos (0 para no permitir ninguna carga)
+UseCaptchaCode=Utilizar el código gráfico (CAPTCHA) en la página de inicio de sesión
+UseAvToScanUploadedFiles=Utilizar antivirus para escanear los archivos subidos
+AntiVirusCommand=Ruta completa del comando del antivirus
+AntiVirusCommandExample=Ejemplo para ClamWin: c:\\ Progra~1\\ClamWin\\bin\\clamscan.exe<br>Ejemplo para ClamAV: /usr/bin/clamscan
+AntiVirusParam=Más parámetros de línea de comandos
+AntiVirusParamExample=Ejemplo para ClamWin: --database="C:\\Archivos de programa (x86)\\ClamWin\\lib"
+AllMenus=Todo
+SetupShort=Configuración
+Position=Puesto
+URL=Vínculo
 ExampleOfDirectoriesForModelGen=Examples of syntax:<br>c:\\mydir<br>/home/mydir<br>DOL_DATA_ROOT/ecm/ecmdir
+Module770Name=Reporte de gastos
+Module1400Name=Contabilidad
+DictionaryCanton=Estado/Provincia
+Upgrade=Actualizar
+MenuCompanySetup=Empresa/Fundación
+CompanyName=Nombre
+EmptyNumRefModelDesc=El código es libre. Este código puede ser modificado en cualquier momento.
+LDAPFieldFirstName=Nombre(s)
diff --git a/htdocs/langs/es_MX/agenda.lang b/htdocs/langs/es_MX/agenda.lang
new file mode 100644
index 0000000000000000000000000000000000000000..a73ad5f979fb512aa386b411999d93863eb7c16f
--- /dev/null
+++ b/htdocs/langs/es_MX/agenda.lang
@@ -0,0 +1,65 @@
+# Dolibarr language file - Source file is en_US - agenda
+ActionsArea=Área de eventos (Acciones y tareas)
+ActionsOwnedBy=Evento propiedad de
+Event=Evento
+ListOfActions=Lista de eventos
+EventOnFullDay=Evento de todo el día(s)
+MenuToDoActions=Todos los eventos incompletos
+MenuDoneActions=Todos los eventos finalizados
+MenuDoneMyActions=Mis eventos finalizados
+ListOfEvents=Lista de eventos (calendario interno)
+ActionsAskedBy=Eventos reportados por
+ActionsDoneBy=Eventos realizado por
+ActionsForUser=Eventos para el usuario
+ActionsForUsersGroup=Eventos para todos los usuarios del grupo
+ViewCal=Vista del mes
+ViewDay=Vista de día
+ViewWeek=Vista de la semana
+ViewWithPredefinedFilters=Vista con filtros predefinidos
+AutoActions=Llenado automático
+AgendaAutoActionDesc=Defina aquí los eventos en los que desea que Dolibarr cree automáticamente un evento en la agenda. Si nada está marcado (por defecto), sólo las acciones manuales serán incluidos en la agenda.
+AgendaSetupOtherDesc=Esta página contiene opciones para permitir la exportación de sus eventos de Dolibarr en un calendario externo (Thunderbird, Google Calendar, ...)
+AgendaExtSitesDesc=Esta página permite declarar las fuentes externas de calendarios para ver sus eventos en la agenda de Dolibarr.
+ActionsEvents=Eventos para los que Dolibarr creará una acción en la agenda de forma automática
+PropalValidatedInDolibarr=Propuesta %s validada
+InvoiceValidatedInDolibarrFromPos=Factura %s validada desde POS
+InvoiceBackToDraftInDolibarr=Regresar factura %s al estado de borrador
+OrderValidatedInDolibarr=Orden %s validada
+OrderDeliveredInDolibarr=Orden %s clasificado como entregado
+OrderCanceledInDolibarr=Orden %s cancelada
+OrderBilledInDolibarr=Orden %s clasificada como facturada
+OrderApprovedInDolibarr=Orden %s aprovada
+OrderRefusedInDolibarr=Orden %s rechazada
+OrderBackToDraftInDolibarr=Regresar orden %s al estado de borrador
+ProposalSentByEMail=Propuesta comercial %s enviada por correo electrónico
+OrderSentByEMail=Orden de cliente %s enviada por correo electrónico
+InvoiceSentByEMail=Factura de cliente %s enviada por correo electrónico
+SupplierOrderSentByEMail=Orden de proveedor %s enviada por correo electrónico
+SupplierInvoiceSentByEMail=Factura de proveedor %s enviada por correo electrónico
+ShippingSentByEMail=Envío %s enviado por correo electrónico
+ShippingValidated=Envío %s validado
+InterventionSentByEMail=Intervención %s enviada por correo electrónico
+DateActionPlannedStart=Fecha de inicio planificada
+DateActionPlannedEnd=Fecha de finalización planificada
+DateActionDoneStart=Fecha de inicio real
+DateActionDoneEnd=Fecha de finalización real
+DateActionEnd=Fecha de finalización
+AgendaUrlOptions1=También puede agregar los siguientes parámetros para filtrar la salida:
+AgendaUrlOptions2=<b>login=%s</b> para restringir la salida a acciones creadas por o asignadas al usuario <b>%s</b>
+AgendaUrlOptions3=<b>logina=%s</b> para restringir la salida a las acciones propiedad del usuario <b>%s</b>.
+AgendaUrlOptions4=<b>logint=%s</b> para restringir la salida a acciones asignadas al usuario <b>%s</b>.
+AgendaUrlOptionsProject=<b>project=PROJECT_ID</b> para restringir la salida a acciones asociadas al proyecto <b>PROJECT_ID</b>.
+AgendaShowBirthdayEvents=Mostrar el cumpleaños de los contactos
+AgendaHideBirthdayEvents=Ocultar cumpleaños de contactos
+ExportDataset_event1=Lista de eventos de la agenda
+DefaultWorkingDays=Rango de días laborales por defecto en una semana (Example: 1-5, 1-6)
+DefaultWorkingHours=Horas laborales por defecto en un día (Ejemplo: 9-18)
+ExtSites=Importar calendarios externos
+ExtSitesEnableThisTool=Mostrar calendarios externos (definidos en la configuración global) en la agenda. No afecta a los calendarios externos definidos por los usuarios.
+AgendaExtNb=Número de calendario %s
+ExtSiteUrlAgenda=URL para acceder al archivo .iCal
+WorkingTimeRange=Rango de tiempo laboral
+WorkingDaysRange=Rango de días laborales
+DateActionBegin=Fecha inicial del evento
+ConfirmCloneEvent=Estás seguro de querer clonar el evento <b>%s</b>?
+DateStartPlusOne=Fecha de inicio + 1 hr
diff --git a/htdocs/langs/es_MX/banks.lang b/htdocs/langs/es_MX/banks.lang
new file mode 100644
index 0000000000000000000000000000000000000000..9a036a1ada6ceee0430f379d9b80b041229ff22b
--- /dev/null
+++ b/htdocs/langs/es_MX/banks.lang
@@ -0,0 +1,97 @@
+# Dolibarr language file - Source file is en_US - banks
+MenuBankCash=Banco/Efectivo
+MenuSetupBank=Configuración de banco/efectivo
+BankAccount=Cuenta de banco
+BankAccounts=Cuentas de banco
+AccountRef=Ref de la cuenta financiera
+AccountLabel=Descripción de la cuenta financiera
+CashAccount=Cuenta de caja
+CashAccounts=Cuentas de caja
+MainAccount=Cuenta principal
+CurrentAccount=Cuenta actual
+CurrentAccounts=Cuentas actuales
+ErrorBankLabelAlreadyExists=Ya existe descripción de la cuenta financiera
+BalanceMinimalAllowed=Saldo mínimo permitido
+ShowAllTimeBalance=Mostrar saldo desde el principio
+AllTime=Desde el principio
+Reconciliation=Reconciliación
+RIB=Número de cuenta bancaria
+IbanValid=CLABE Interbancaria es válida
+IbanNotValid=CLABE Interbancaria No es válida
+SwiftValid=BIC/SWIFT es válido
+SwiftNotValid=BIC/SWIFT No es válido
+AccountStatement=Estado de cuenta
+AccountStatementShort=Estado
+AccountStatements=Estados de cuenta
+LastAccountStatements=Últimos estados de cuenta
+Rapprochement=Reconciliar
+IOMonthlyReporting=Reporte mensual
+RIBControlError=Falló la comprobación de integridad de los valores. Esto significa que la información para éste número de cuenta está incompleta o incorrecta (compruebe el país, números y CLABE).
+MenuNewFinancialAccount=Nueva cuenta financiera
+EditFinancialAccount=Editar cuenta
+AccountSetup=Configuración de cuentas financieras
+SearchBankMovement=Buscar movimiento bancario
+LabelBankCashAccount=Etiqueta de cuenta o caja
+BankType0=Cuenta de ahorros
+BankType1=Cuenta corriente o de tarjeta de crédito
+BankType2=Cuenta de caja/efectivo
+AccountsArea=Área de cuentas
+AccountCard=Ficha de cuenta
+DeleteAccount=Eliminar cuenta
+ConfirmDeleteAccount=¿Seguro que quieres eliminar esta cuenta?
+BankTransactionByCategories=Transacciones bancarias por categorías
+BankTransactionForCategory=Transacciones bancarias por categoría <b>%s</b>
+RemoveFromRubriqueConfirm=¿Seguro que deseas eliminar el vínculo entre la transacción y la categoría?
+IdTransaction=ID de transacción
+SearchTransaction=Buscar transacciones
+ListTransactions=Listar transacciones
+ListTransactionsByCategory=Listar transacciones/categoría
+TransactionsToConciliate=Transacciones a conciliar
+Conciliable=Puede ser conciliado
+ConciliationForAccount=Conciliar esta cuenta
+OnlyOpenedAccount=Sólo las cuentas abiertas
+DisableConciliation=Desactivar función de conciliación para esta cuenta
+ConciliationDisabled=Característica conciliación deshabilitada
+LineRecord=Transacción
+AddBankRecord=Añadir transacción
+AddBankRecordLong=Añadir transacción manualmente
+DateConciliating=Fecha de conciliación
+BankLineConciliated=Transacción conciliada
+CustomerInvoicePayment=Pago de cliente
+WithdrawalPayment=Pago de retiro
+SocialContributionPayment=Pago de impuesto social/fiscal
+FinancialAccountJournal=Diario de cuenta financiera
+TransferDesc=Transfiere de una cuenta a otra, Dolibarr escribirá dos registros (uno de débito en la cuenta de origen y uno de crédito en la cuenta de destino, por la misma cantidad. La misma etiqueta y la fecha será utilizada para esta transacción)
+TransferFromToDone=La transferencia de <b>%s</b> hacia <b>%s</b> de <b>%s</b> %s ha sido registrada.
+ValidateCheckReceipt=¿Validar este recibo de cheque?
+ConfirmValidateCheckReceipt=¿Seguro que deseas validar este recibo de cheque? Ningún cambio será posible una vez que se valide
+DeleteCheckReceipt=¿Eliminar este recibo de cheque?
+ConfirmDeleteCheckReceipt=¿Seguro que quieres borrar este recibo de cheque?
+BankChecks=Cheques bancarios
+BankChecksToReceipt=Cheques en espera de depósito
+ShowCheckReceipt=Mostrar recibo de depósito de cheque
+NumberOfCheques=Número de cheque
+DeleteTransaction=Eliminar transacción
+ConfirmDeleteTransaction=¿Seguro que quieres eliminar esta transacción?
+ThisWillAlsoDeleteBankRecord=Esto también eliminará las transacciones bancarias generadas
+ExportDataset_banque_1=Transacciones bancarias y estado de cuenta
+ExportDataset_banque_2=Ficha de depósito
+TransactionOnTheOtherAccount=Transacción en la otra cuenta
+PaymentNumberUpdateSucceeded=Número de pago actualizado con éxito
+PaymentNumberUpdateFailed=Número de pago no se pudo actualizar
+PaymentDateUpdateSucceeded=Fecha de pago actualizada con éxito
+PaymentDateUpdateFailed=La fecha de pago no se pudo actualizar
+ShowAllAccounts=Mostrar todas las cuentas
+FutureTransaction=Transacción futura. No hay manera de conciliar.
+SelectChequeTransactionAndGenerate=Seleccione/filtre los cheques a incluir en el recibo de depósito de cheque y haga clic en "Crear".
+InputReceiptNumber=Seleccione el estado de cuenta bancaria relacionado con la conciliación. Utilice un valor numérico ordenable: AAAAMM o AAAAMMDD
+EventualyAddCategory=Eventualmente, especifique una categoría en la que clasificar los registros
+ThenCheckLinesAndConciliate=A continuación, compruebe las líneas presentes en el estado de cuenta bancaria y haga clic
+BankDashboard=Resumen de cuentas bancarias
+ConfirmDeleteRib=¿Seguro que quieres borrar esta cuenta bancaria?
+EndDate=Fecha final
+RejectCheck=Cheque rechazado
+ConfirmRejectCheck=¿Seguro que quieres marcar este cheque como rechazado?
+RejectCheckDate=Fecha en la que el cheque fue rechazado
+CheckRejected=Cheque rechazado
+CheckRejectedAndInvoicesReopened=Cheque rechazado y facturas reabiertas
diff --git a/htdocs/langs/es_MX/bills.lang b/htdocs/langs/es_MX/bills.lang
new file mode 100644
index 0000000000000000000000000000000000000000..1d635837210bf4bd748cd821b37ec9793ee96dcd
--- /dev/null
+++ b/htdocs/langs/es_MX/bills.lang
@@ -0,0 +1,17 @@
+# Dolibarr language file - Source file is en_US - bills
+PaymentAmount=Importe de pago
+BillStatusPaid=Pagado
+BillStatusStarted=Iniciado
+BillShortStatusPaid=Pagado
+BillShortStatusValidated=Validado
+BillShortStatusStarted=Iniciado
+BillShortStatusClosedUnpaid=Cerrada
+BillFrom=De
+BillTo=Hacia
+ReasonDiscount=Razón
+PaymentTypeCB=Tarjeta de crédito
+PaymentTypeShortCB=Tarjeta de crédito
+PaymentTypeCHQ=Verificar
+PaymentTypeShortCHQ=Verificar
+IBANNumber=CLABE Interbancaria
+BICNumber=Sucursal
diff --git a/htdocs/langs/es_MX/cashdesk.lang b/htdocs/langs/es_MX/cashdesk.lang
new file mode 100644
index 0000000000000000000000000000000000000000..220e3147974778f9edb89b853b8178bcff288552
--- /dev/null
+++ b/htdocs/langs/es_MX/cashdesk.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - cashdesk
+CashDeskBank=Cuenta de banco
diff --git a/htdocs/langs/es_MX/categories.lang b/htdocs/langs/es_MX/categories.lang
new file mode 100644
index 0000000000000000000000000000000000000000..201a88a21b57b5cd7ce4fde4c227b3d8d6ee64a5
--- /dev/null
+++ b/htdocs/langs/es_MX/categories.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - categories
+NoneCategory=Ninguno
diff --git a/htdocs/langs/es_MX/commercial.lang b/htdocs/langs/es_MX/commercial.lang
new file mode 100644
index 0000000000000000000000000000000000000000..d75c5f36121878e0d800a1fb02e1b216adee1fc2
--- /dev/null
+++ b/htdocs/langs/es_MX/commercial.lang
@@ -0,0 +1,12 @@
+# Dolibarr language file - Source file is en_US - commercial
+ListOfProspects=Lista de clientes potenciales
+ListOfCustomers=Lista de clientes
+StatusNotApplicable=No aplica
+StatusActionToDo=Por hacer
+LastProspectNeverContacted=Nunca contactado
+LastProspectToContact=Para contactar
+LastProspectContactInProcess=Contacto en proceso
+LastProspectContactDone=Contacto realizado
+ActionAC_CLO=Cerrar
+ActionAC_OTH=Otro
+StatusProsp=Estatus del cliente potencial
diff --git a/htdocs/langs/es_MX/companies.lang b/htdocs/langs/es_MX/companies.lang
new file mode 100644
index 0000000000000000000000000000000000000000..cf112e60f4e822601934222141734126d4d55b03
--- /dev/null
+++ b/htdocs/langs/es_MX/companies.lang
@@ -0,0 +1,197 @@
+# Dolibarr language file - Source file is en_US - companies
+ErrorCompanyNameAlreadyExists=El nombre de la empresa %s ya existe. Elige uno diferente.
+ErrorPrefixAlreadyExists=El prefijo %s ya existe. Elige uno diferente.
+ErrorSetACountryFirst=Ajusta primero el país
+SelectThirdParty=Selecciona un tercero
+ConfirmDeleteCompany=¿Seguro que quieres eliminar esta empresa y toda la información relacionada?
+DeleteContact=Eliminar un contacto/dirección
+ConfirmDeleteContact=¿Seguro que quieres eliminar este contacto y toda la información relacionada?
+NewSocGroup=Nuevo grupo de empresas
+CreateDolibarrThirdPartySupplier=Crear tercero (proveedor)
+SocGroup=Grupo de empresas
+IdThirdParty=ID de tercero
+IdCompany=ID de empresa
+IdContact=ID de contacto
+Contacts=Contactos/Direcciones
+ThirdPartyContacts=Contactos de terceros
+ThirdPartyContact=Contacto/Dirección de tercero
+StatusContactValidated=Estatus de contacto/dirección
+AliasNames=Nombre simple (comercial, marca registrada, ...)
+AliasNameShort=Nombre simple
+CountryIsInEEC=El país está dentro de la Comunidad Económica Europea
+ThirdPartyName=Nombre de tercero
+ThirdPartyCustomersWithIdProf12=Clientes con %s o %s
+Company/Fundation=Empresa/Fundación
+ToCreateContactWithSameName=Creará automáticamente un contacto físico con las mismas informaciones
+ParentCompany=Empresa matriz
+NoSubsidiary=No filial
+ReportByCustomers=Reporte por clientes
+ReportByQuarter=Reporte por tasa
+CivilityCode=Código de civilidad
+RegisteredOffice=Oficina registrada
+Lastname=Apellido
+Firstname=Nombre(s)
+PostOrFunction=Puesto/Función
+State=Estado/Provincia
+CountryCode=Código de país
+CountryId=ID de país
+PhonePro=Teléfono trabajo
+PhonePerso=Teléfono particular
+PhoneMobile=Celular
+No_Email=No enviar e-mailings masivos
+Town=Ciudad
+Web=Página de internet
+CopyAddressFromSoc=Rellenar la dirección con la dirección del tercero
+NoEmailDefined=No hay un correo electrónico definido
+LocalTax1IsUsed=Usar segundo impuesto
+LocalTax2IsUsed=Usar tercer impuesto
+WrongCustomerCode=Código de cliente inválido
+WrongSupplierCode=Código de proveedor inválido
+CustomerCodeModel=Modelo de código de cliente
+SupplierCodeModel=Modelo de código de proveedor
+ProfId1Short=ID Prof. 1
+ProfId2Short=ID Prof. 2
+ProfId3Short=ID Prof. 3
+ProfId4Short=ID Prof. 4
+ProfId5Short=ID Prof. 5
+ProfId6Short=ID Prof. 6
+ProfId1=ID Profesional 1
+ProfId2=ID Profesional 2
+ProfId3=ID Profesional 3
+ProfId4=ID Profesional 4
+ProfId5=ID Profesional 5
+ProfId6=ID Profesional 6
+ProfId1AR=ID Prof 1 (CUIT/CUIL)
+ProfId2AR=ID Prof 2 (Ingresos brutos)
+ProfId1AT=ID Prof 1 (USt.-IdNr)
+ProfId2AT=ID Prof 2 (USt.-Nr)
+ProfId3AT=ID Prof 3 (Handelsregister-Nr.)
+ProfId1AU=ID Prof 1 (ABN)
+ProfId1BE=ID Prof 1 (Professional number)
+ProfId3CH=ID Prof 1 (Federal number)
+ProfId4CH=ID Prof 2 (Commercial Record number)
+ProfId1CL=ID Prof 1 (R.U.T.)
+ProfId1CO=ID Prof 1 (R.U.T)
+ProfId1DE=ID Prof 1 (USt.-IdNr)
+ProfId2DE=ID Prof 2 (USt.-Nr)
+ProfId3DE=ID Prof 3 (Handelsregister-Nr.)
+ProfId1ES=ID Prof 1 (CIF/NIF)
+ProfId2ES=ID Prof 2 (Número de seguro social)
+ProfId3ES=ID Prof 3 (CNAE)
+ProfId4ES=ID Prof 4 (Número de colegiado)
+ProfId1FR=ID Prof 1 (SIREN)
+ProfId2FR=ID Prof 2 (SIRET)
+ProfId3FR=ID Prof 3 (NAF, antiguo APE)
+ProfId4FR=ID Prof 4 (RCS/RM)
+ProfId1GB=Número de registro
+ProfId1HN=ID Prof 1 (RTN)
+ProfId1IN=ID Prof 1 (TIN)
+ProfId2IN=ID Prof 2 (PAN)
+ProfId3IN=ID Prof 3 (SRVC TAX)
+ProfId4IN=ID Prof 4
+ProfId5IN=ID Prof 5
+ProfId1MA=ID Prof. 1 (R.C.)
+ProfId2MA=ID Prof. 2 (Patente)
+ProfId3MA=Id Prof. 3 (I.F.)
+ProfId4MA=ID Prof. 4 (C.N.S.S.)
+ProfId2MX=R.P. IMSS
+VATIntraSyntaxIsValid=La sintaxis es válida
+VATIntraValueIsValid=El valor es válido
+ProspectCustomer=Cliente potencial / Cliente
+CustomerCard=Ficha del cliente
+CustomerDiscount=Descuento del cliente
+CustomerRelativeDiscount=Descuento relativo del cliente
+CustomerAbsoluteDiscount=Descuento absoluto del cliente
+CustomerAbsoluteDiscountShort=Descuento absoluto
+CompanyHasRelativeDiscount=Éste cliente tiene un descuento por defecto de <b>%s%%</b>
+CompanyHasNoRelativeDiscount=Este cliente no tiene ningún descuento relativo por defecto
+CompanyHasAbsoluteDiscount=Este cliente aún tiene descuentos disponibles o abonos por <b>%s</b> %s
+CompanyHasCreditNote=Este cliente aún tiene notas de crédito por <b>%s</b> %s
+CompanyHasNoAbsoluteDiscount=Este cliente no tiene descuentos fijos disponibles
+CustomerAbsoluteDiscountAllUsers=Descuentos absolutos (otorgados por todos los usuarios)
+CustomerAbsoluteDiscountMy=Descuentos absolutos (otorgados por ti mismo)
+AvailableGlobalDiscounts=Descuentos absolutos disponibles
+DiscountNone=Ninguno
+CompanyList=Lista de empresas
+NoContactDefinedForThirdParty=No se ha definido un contacto para este tercero
+NoContactDefined=No hay contacto definido
+DefaultContact=Contacto/dirección por defecto
+DeleteACompany=Eliminar empresa
+PersonalInformations=Datos personales
+CustomerCode=Código de cliente
+SupplierCode=Código de proveedor
+CustomerCodeShort=Código de cliente
+SupplierCodeShort=Código de proveedor
+CustomerAccount=Cuenta de cliente
+SupplierAccount=Cuenta de proveedor
+CustomerCodeDesc=Código de cliente, único para todos los clientes
+SupplierCodeDesc=Código de proveedor, único para todos los proveedores
+RequiredIfCustomer=Requerido si el tercero es un cliente o cliente potencial
+RequiredIfSupplier=Requerido si el tercero es un proveedor
+LastProspect=Último cliente potencial
+CompanyDeleted=Empresa "%s" eliminada de la base de datos.
+ListOfContacts=Lista de contactos/direcciones
+ListOfContactsAddresses=Lista de contactos/direcciones
+ListOfProspectsContacts=Lista de contactos de clientes potenciales
+ListOfCustomersContacts=Lista de contactos de clientes
+ListOfSuppliersContacts=Lista de contactos de proveedores
+ListOfCompanies=Lista de empresas
+ListOfThirdParties=Lista de terceros
+ContactsAllShort=Todos (Sin filtro)
+ContactForInvoices=Contacto de facturación
+EditCompany=Editar empresa
+EditDeliveryAddress=Editar dirección de entrega
+ThisUserIsNot=Este usuario no es un cliente potencial, cliente ni proveedor
+VATIntraCheckDesc=El enlace <b>%s</b> permite consultar al servicio de control de números de IVA intracomunitario. Se requiere acceso a Internet desde el servidor para que este servicio funcione.
+VATIntraManualCheck=También puedes verificar manualmente desde el sitio web europeo <a href="%s" target="_blank">%s</a>
+ErrorVATCheckMS_UNAVAILABLE=No es posible realizar la verificación. El servicio de comprobación no es prestado por el país miembro (%s).
+JuridicalStatus=Estatus jurídico
+OthersNotLinkedToThirdParty=Otros, no vinculado a un tercero
+ProspectStatus=Estatus del cliente potencial
+TE_MEDIUM=Mediana empresa
+TE_ADMIN=Gubernamental
+TE_SMALL=Pequeña Empresa
+StatusProspect1=Para contactar
+StatusProspect2=Contacto en proceso
+ChangeDoNotContact=Cambiar estado a 'No contactar'
+ChangeNeverContacted=Cambiar estado a 'Nunca contactado'
+ChangeToContact=Cambiar estado a 'Para contactar'
+ChangeContactInProcess=Cambiar estado a 'Contacto en proceso'
+ChangeContactDone=Cambiar estado a 'Contacto realizado'
+BillingContact=Contacto de facturación
+NbOfAttachedFiles=Número de archivos adjuntos
+AttachANewFile=Adjuntar nuevo archivo
+NoParentCompany=Ninguno
+DolibarrLogin=Login de usuario
+ExportDataset_company_1=Terceros (Empresas/fundaciones/personas físicas) y propiedades
+ExportDataset_company_2=Contactos y propiedades
+ImportDataset_company_1=Terceros (Empresas/fundaciones/personas físicas) y propiedades
+ImportDataset_company_2=Contactos/Direciones (de terceros o no) y atributos
+ImportDataset_company_3=Datos bancarios
+ImportDataset_company_4=Terceros/Representantes de ventas (Afecta los usuarios representantes de ventas a empresas)
+DeliveriesAddress=Direcciones de envío
+DeliveryAddressLabel=Etiqueta de dirección de envío
+ConfirmDeleteDeliveryAddress=¿Seguro que quieres borrar esta dirección de envío?
+NoOtherDeliveryAddress=Sin dirección de envío alternativa definida
+DeleteFile=Borrar archivo
+ConfirmDeleteFile=¿Seguro que quieres borrar este archivo?
+AllocateCommercial=Asignado al representante de ventas
+SelectCountry=Selecciona un país
+SelectCompany=Selecciona un tercero
+Organization=Organización
+FiscalYearInformation=Información sobre el año fiscal
+FiscalMonthStart=Més de inicio del año fiscal
+YouMustCreateContactFirst=Debes crear contactos de correos electrónicos para terceros antes de ser capaz de añadir notificaciones de correos electrónicos.
+ListSuppliersShort=Lista de proveedores
+ListProspectsShort=Lista de clientes potenciales
+ListCustomersShort=Lista de clientes
+ThirdPartiesArea=Terceros y área de contacto
+LastModifiedThirdParties=Últimos %s terceros modificados
+MonkeyNumRefModelDesc=Devuelve un número con formato %syymm-nnnn para el código de cliente y %syymm-nnnn para código de proveedor donde yy es el año, mm el mes y nnnn una secuencia numérica sin ruptura y sin regresar a 0.
+LeopardNumRefModelDesc=El código es libre. Este código puede ser modificado en cualquier momento.
+ManagingDirectors=Administrador(es) (CEO, Director, Presidente...)
+MergeOriginThirdparty=Tercero duplicado (tercero que deseas eliminar)
+MergeThirdparties=Combinar terceros
+ConfirmMergeThirdparties=¿Seguro que deseas combinar este tercero con el actual? Todos los objetos vinculados (facturas, pedidos, ...) serán trasladados al tercero actual por lo que será capaz de eliminar el duplicado.
+ThirdpartiesMergeSuccess=Los terceros han sido combinados.
+ErrorThirdpartiesMerge=Hubo un error al eliminar los terceros. Por favor compruebe el log. Los cambios han sido revertidos.
diff --git a/htdocs/langs/es_MX/compta.lang b/htdocs/langs/es_MX/compta.lang
new file mode 100644
index 0000000000000000000000000000000000000000..3db712f0eab6d123df2280b496f9d2912979afc9
--- /dev/null
+++ b/htdocs/langs/es_MX/compta.lang
@@ -0,0 +1,5 @@
+# Dolibarr language file - Source file is en_US - compta
+Param=Configuración
+AccountsGeneral=Cuentas
+PaymentSocialContribution=Pago de impuesto social/fiscal
+ByThirdParties=Por terceros
diff --git a/htdocs/langs/es_MX/contracts.lang b/htdocs/langs/es_MX/contracts.lang
new file mode 100644
index 0000000000000000000000000000000000000000..6f1a9b21b460c7b2e23a0327b7dbc198d824c68c
--- /dev/null
+++ b/htdocs/langs/es_MX/contracts.lang
@@ -0,0 +1,12 @@
+# Dolibarr language file - Source file is en_US - contracts
+ServiceStatusClosed=Cerrada
+ContractStartDate=Fecha de inicio
+ContractEndDate=Fecha de finalización
+DateStartPlanned=Fecha de inicio planificada
+DateStartPlannedShort=Fecha de inicio planificada
+DateEndPlanned=Fecha de finalización planificada
+DateEndPlannedShort=Fecha de finalización planificada
+DateStartReal=Fecha de inicio real
+DateStartRealShort=Fecha de inicio real
+DateEndReal=Fecha de finalización real
+DateEndRealShort=Fecha de finalización real
diff --git a/htdocs/langs/es_MX/cron.lang b/htdocs/langs/es_MX/cron.lang
index e211c11dff5b4809131d6492f5c5ae876f5ec0c7..62ed313fa07528bcb32ad94b80b256ab1f3f9644 100644
--- a/htdocs/langs/es_MX/cron.lang
+++ b/htdocs/langs/es_MX/cron.lang
@@ -1,4 +1,10 @@
 # Dolibarr language file - Source file is en_US - cron
-CronListActive=List of active/scheduled jobs
-CronDtStart=Start date
-CronDtEnd=End date
+CronNone=Ninguno
+CronMethod=Método
+CronModule=Módulo
+CronStatus=Estado
+CronStatusActive=Habilitado
+CronStatusInactive=Deshabilitado
+CronLabel=Descripción
+CronArgs=Parámetros
+CronStatusInactiveBtn=Desactivar
diff --git a/htdocs/langs/es_MX/donations.lang b/htdocs/langs/es_MX/donations.lang
new file mode 100644
index 0000000000000000000000000000000000000000..c1000d846eff2875212d2fd4151abee42f51b2de
--- /dev/null
+++ b/htdocs/langs/es_MX/donations.lang
@@ -0,0 +1,4 @@
+# Dolibarr language file - Source file is en_US - donations
+DonationStatusPromiseNotValidatedShort=Borrador
+DonationStatusPromiseValidatedShort=Validado
+DonationStatusPaidShort=Recibido
diff --git a/htdocs/langs/es_MX/ecm.lang b/htdocs/langs/es_MX/ecm.lang
new file mode 100644
index 0000000000000000000000000000000000000000..3b832e37704556c64ff6ca91830a9a1e0b5bc4f6
--- /dev/null
+++ b/htdocs/langs/es_MX/ecm.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - ecm
+ECMCreationDate=Fecha de creación
diff --git a/htdocs/langs/es_MX/help.lang b/htdocs/langs/es_MX/help.lang
new file mode 100644
index 0000000000000000000000000000000000000000..35f356548c8fd8c928902cf6723820f018bf5279
--- /dev/null
+++ b/htdocs/langs/es_MX/help.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - help
+TypeOfHelp=Tasa
diff --git a/htdocs/langs/es_MX/holiday.lang b/htdocs/langs/es_MX/holiday.lang
new file mode 100644
index 0000000000000000000000000000000000000000..38b290a782403dfbe94831f6158aefc20dca0a5c
--- /dev/null
+++ b/htdocs/langs/es_MX/holiday.lang
@@ -0,0 +1,10 @@
+# Dolibarr language file - Source file is en_US - holiday
+DateDebCP=Fecha de inicio
+DateFinCP=Fecha de finalización
+ApprovedCP=Aprobado
+CancelCP=Cancelado
+RefuseCP=Rechazado
+EditCP=Editar
+ActionCancelCP=Cancelar
+MotifCP=Razón
+UserName=Nombre
diff --git a/htdocs/langs/es_MX/install.lang b/htdocs/langs/es_MX/install.lang
new file mode 100644
index 0000000000000000000000000000000000000000..3ba49997a855114ab09b939c8a97839f58223e6c
--- /dev/null
+++ b/htdocs/langs/es_MX/install.lang
@@ -0,0 +1,98 @@
+# Dolibarr language file - Source file is en_US - install
+InstallEasy=Sólo tienes que seguir las instrucciones paso a paso.
+MiscellaneousChecks=Verificación de requisitos previos
+ConfFileDoesNotExistsAndCouldNotBeCreated=!El archivo de configuración <b>%s</b> no existe y no fue posible crearlo!
+ConfFileCouldBeCreated=El archivo de configuración <b>%s</b> existe pudo ser creado.
+ConfFileIsNotWritable=El archivo de configuración <b>%s</b> no se puede escribir. Compruebe los permisos. Para la instalación inicial, el servidor web debe ser capaz de escribir en este archivo durante el proceso de configuración ("chmod 666", por ejemplo en un SO basado en Unix).
+ConfFileIsWritable=El archivo de configuración <b>%s</b> tiene permisos de escritura.
+PHPSupportSessions=Este PHP soporta sesiones.
+PHPSupportPOSTGETOk=Este PHP soporta variables POST y GET.
+PHPSupportPOSTGETKo=Es posible que su configuración de PHP no soporte las variables POST y/o GET. Revise su parámetro <b>variables_order</b> en php.ini.
+PHPSupportGD=Este PHP soporta funciones gráficas GD.
+PHPSupportUTF8=Este PHP soporta funciones UTF8.
+PHPMemoryOK=Su memória máxima de sesiones PHP está configurado en <b>%s</b>. Esto debe ser suficiente.
+PHPMemoryTooLow=Su memoria máxima de sesiones PHP está configurada en <b>%s</b> bytes. Esto debe ser muy bajo. Cambie su parámetro <b>memory_limit</b> en <b>php.ini</b> al menos a <b>%s</b> bytes.
+Recheck=Haga clic aquí para una prueba más significativa
+ErrorPHPDoesNotSupportSessions=Su instalación de PHP no soporta sesiones. Esta función es necesaria para hacer que Dolibarr funcione. Revise su configuración PHP.
+ErrorPHPDoesNotSupportGD=Su instalación de PHP no soporta la función gráfica GD. No estarán disponibles las gráficas.
+ErrorPHPDoesNotSupportUTF8=Su instalación de PHP no soporta funciones UTF8. Dolibarr no puede funcionar correctamente. Resuelva esto antes de instalar Dolibarr.
+ErrorDirDoesNotExists=El directorio %s no existe.
+ErrorGoBackAndCorrectParameters=Vuelva hacia atrás y corrija los parámetros erróneos.
+ErrorWrongValueForParameter=Puede haber escrito un valor incorrecto para el parámetro '%s'.
+ErrorFailedToConnectToDatabase=Error al conectar con la base de datos '%s'.
+ErrorDatabaseVersionTooLow=La versión de base de datos (%s) es demasiado antigua. Se requiere la versión %s o superior.
+ErrorPHPVersionTooLow=La versión de PHP es demasiado antigua. Se requiere la versión %s.
+WarningPHPVersionTooLow=La versión de PHP es demasiado antigua. Se espera la versión %s o superior. Esta versión debe permitir la instalación, pero no está soportada.
+ErrorConnectedButDatabaseNotFound=La conexión al servidor fue exitosa, pero no se encontró la base de datos '%s'.
+IfDatabaseNotExistsGoBackAndUncheckCreate=Si no existe la base de datos, vuelva atrás y marque la opción "Crear base de datos".
+IfDatabaseExistsGoBackAndCheckCreate=Si ya existe la base de datos, vuelva atrás y desmarque la opción "Crear base de datos".
+WarningBrowserTooOld=La versión del navegador es demasiado antigua. La actualización de su navegador a una versión más reciente de Firefox, Chrome u Opera es muy recomendado.
+YouCanContinue=Puedes continuar...
+License=Uso de licencia
+WebPagesDirectory=Directorio donde se almacenan las páginas web
+DocumentsDirectory=Directorio para almacenar los documentos cargados y generados
+URLRoot=URL raíz
+CheckToForceHttps=Marque esta opción para forzar conexiones seguras (https).<br>Esto requiere que el servidor web esté configurado con un certificado SSL.
+DatabaseChoice=Elección de base de datos
+DatabaseType=Tipo de base de datos
+ServerAddressDescription=Nombre o dirección IP para el servidor de base de datos, por lo general 'localhost' cuando el servidor de base de datos se encuentra alojado en el mismo servidor que el servidor web
+ServerPortDescription=Puerto del servidor de base de datos. Mantenga vacía si no se conoce.
+DatabasePrefix=Prefijo para las tablas de la base de datos
+AdminLogin=Inicio de sesión para el propietario de la base de Dolibarr.
+PasswordAgain=Vuelva a escribir la contraseña por segunda vez
+AdminPassword=Contraseña para el propietario de la base de datos de Dolibarr.
+DatabaseSuperUserAccess=Servidor de base de datos - acceso de Superusuario
+CheckToCreateDatabase=Marque la casilla si no existe base de datos y se debe crear.<br>En este caso, debe llenar el login/contraseña de la cuenta de superusuario en la parte inferior de esta página.
+CheckToCreateUser=Marque la casilla si el propietario de base de datos no existe y debe ser creado.<br>En este caso, debe elegir su nombre de usuario y contraseña y también llenar el login/contraseña de la cuenta de superusuario en la parte inferior de esta página. Si esta casilla no está marcada, el propietario de la base de datos y su contraseña deben existir.
+DatabaseRootLoginDescription=Login del usuario con permisos para crear nuevas bases de datos o nuevos usuarios, obligatorio si su base de datos o su propietario no existen.
+KeepEmptyIfNoPassword=Deje en blanco si el usuario no tiene contraseña (evite esto)
+SaveConfigurationFile=Guardar valores
+ConfigurationSaving=Guardando archivo de configuración
+ServerConnection=Conexión con el servidor
+DatabaseCreation=Creación de bases de datos
+UserCreation=Creación de usuario
+CreateDatabaseObjects=Creación de objetos de la base de datos
+ReferenceDataLoading=Referencia de carga de datos
+TablesAndPrimaryKeysCreation=Creación de Tablas y Llaves primarias
+CreateTableAndPrimaryKey=Crear la tabla %s
+CreateOtherKeysForTable=Crear claves externas e índices para la tabla %s
+OtherKeysCreation=Creación de llaves externas e índices
+AdminAccountCreation=Creación de inicio de sesión de Administrador
+PleaseTypePassword=¡Por favor escriba una contraseña, las contraseñas vacías no están permitidas!
+PleaseTypeALogin=¡Por favor escriba un inicio de sesión!
+PasswordsMismatch=¡Las contraseñas difieren, por favor intente de nuevo!
+SetupEnd=Fin de la configuración
+SystemIsInstalled=Esta instalación se ha completado.
+SystemIsUpgraded=Dolibarr se ha actualizado correctamente.
+YouNeedToPersonalizeSetup=Es necesario configurar Dolibarr para satisfacer sus necesidades (apariencia, características, ...). Para ello, por favor siga el siguiente enlace:
+AdminLoginCreatedSuccessfuly=Inicio de sesión del administrador Dolibarr '<b>%s</b>' ha sido creado exitosamente.
+GoToDolibarr=Ir a Dolibarr
+GoToSetupArea=Ir a Dolibarr (área de configuración)
+MigrationNotFinished=La versión de tu base de datos no está completamente actualizada, se requiere que corra el proceso de actualización de nuevo.
+GoToUpgradePage=Ir a actualizar la página de nuevo
+WithNoSlashAtTheEnd=Sin la diagonal "/" al final
+DirectoryRecommendation=Se recommanded utilizar un directorio fuera del directorio de sus páginas web.
+DolibarrAdminLogin=Dolibarr Admin Login
+AdminLoginAlreadyExists=Ya existe la cuenta de administrador Dolibarr '<b>%s</b>'. Regresa, si quieres crear otro.
+WarningRemoveInstallDir=Advertencia, por razones de seguridad, una vez que la instalación o actualización esté completa, para evitar el uso de herramientas de instalación de nuevo, se debe añadir un archivo llamado <b>install.lock</b> en el directorio de documentos Dolibarr, con el fin de evitar el uso malintencionado de la misma.
+ThisPHPDoesNotSupportTypeBase=Este sistema PHP no admite cualquier interfaz para acceder al tipo de base de datos %s
+ChoosedMigrateScript=Elija script de migración
+DataMigration=Migración de datos
+DatabaseMigration=Migración de estructura de base de datos
+ProcessMigrateScript=Procesamiento de script
+ChooseYourSetupMode=Elige tu modo de configuración y haga clic en "Iniciar"...
+FreshInstall=Nueva instalación
+FreshInstallDesc=Utilice este modo si esta es su primera instalación. Si no es así, este modo puede reparar una instalación anterior incompleta, pero si desea actualizar su versión, elija la opción del modo "Actualizar".
+UpgradeDesc=Utilice este modo si ha reemplazado archivos Dolibarr viejos con los archivos de una versión más reciente. Esto actualizará su base de datos y los datos.
+Start=Iniciar
+InstallNotAllowed=Configuración no permitida por permisos en <b>conf.php</b>
+YouMustCreateWithPermission=Debe crear el archivo %s y establecer permisos de escritura para el servidor web durante el proceso de instalación.
+CorrectProblemAndReloadPage=Por favor, corrija el problema y presione F5 para recargar la página.
+AlreadyDone=Ya migrado
+DatabaseVersion=Versión de Base de Datos
+ServerVersion=Versión del servidor de base de datos
+YouMustCreateItAndAllowServerToWrite=Debe crear este directorio y permitir al servidor web escribir en el.
+CharsetChoice=Opción de juego de caracteres
+CharacterSetClient=Juego de caracteres utilizado para páginas web HTML generadas
+CharacterSetClientComment=Seleccione el conjunto de caracteres para la visualización web.<br/>El conjunto de caracteres por defecto es el de su base de datos.
+DBSortingCollation=Orden de clasificación de caractér
diff --git a/htdocs/langs/es_MX/ldap.lang b/htdocs/langs/es_MX/ldap.lang
new file mode 100644
index 0000000000000000000000000000000000000000..30b7d6502922629457f6efe08c4c14cb3fad8ac5
--- /dev/null
+++ b/htdocs/langs/es_MX/ldap.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - ldap
+LDAPFieldStatus=Estado
diff --git a/htdocs/langs/es_MX/mails.lang b/htdocs/langs/es_MX/mails.lang
new file mode 100644
index 0000000000000000000000000000000000000000..1e565c362eb8314e9e9301f12f56672519c75610
--- /dev/null
+++ b/htdocs/langs/es_MX/mails.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - mails
+MailingStatusApproved=Aprobado
diff --git a/htdocs/langs/es_MX/main.lang b/htdocs/langs/es_MX/main.lang
index 2e691473326d372b5db42468423519b3171a0d8a..2a2e1d482ee74dc3e7ee084fb73caa0ee24f0f20 100644
--- a/htdocs/langs/es_MX/main.lang
+++ b/htdocs/langs/es_MX/main.lang
@@ -4,18 +4,341 @@ FONTFORPDF=helvetica
 FONTSIZEFORPDF=10
 SeparatorDecimal=.
 SeparatorThousand=,
-FormatDateShort=%m/%d/%Y
-FormatDateShortInput=%m/%d/%Y
-FormatDateShortJava=MM/dd/yyyy
-FormatDateShortJavaInput=MM/dd/yyyy
-FormatDateShortJQuery=mm/dd/yy
-FormatDateShortJQueryInput=mm/dd/yy
+FormatDateShort=%d/%m/%Y
+FormatDateShortInput=%d/%m/%Y
+FormatDateShortJava=dd/MM/yyyy
+FormatDateShortJavaInput=dd/MM/yyyy
+FormatDateShortJQuery=dd/mm/yy
+FormatDateShortJQueryInput=dd/mm/yy
 FormatHourShortJQuery=HH:MI
 FormatHourShort=%I:%M %p
 FormatHourShortDuration=%H:%M
-FormatDateTextShort=%b %d, %Y
-FormatDateText=%B %d, %Y
-FormatDateHourShort=%m/%d/%Y %I:%M %p
-FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
-FormatDateHourTextShort=%b %d, %Y, %I:%M %p
-FormatDateHourText=%B %d, %Y, %I:%M %p
+FormatDateTextShort=%d %b %Y
+FormatDateText=%d %B %Y
+FormatDateHourShort=%I:%M %p %d/%m/%Y
+FormatDateHourSecShort=%I:%M:%S %p %d/%m/%Y
+FormatDateHourTextShort=%I:%M %p, %d %b %Y
+FormatDateHourText=%I:%M %p, %d %B %Y
+NoRecordFound=Ningún registro fue encontrado
+NoError=No hay error
+ErrorFieldFormat=El campo '%s' contiene un valor incorrecto
+ErrorCanNotCreateDir=No es posible crear el directorio %s
+ErrorCanNotReadDir=No se puede leer el directorio %s
+ErrorConstantNotDefined=El parámetro %s no ha sido definido
+ErrorLogoFileNotFound=El archivo logo '%s' no fue encontrado
+ErrorGoToGlobalSetup=Vaya a la configuración de 'Empresa/Fundación' para solucionar esto
+ErrorGoToModuleSetup=Vaya a la configuración de Módulo para solucionar esto
+ErrorFailedToSendMail=Falló el envío del correo electrónico (remitente=%s, destinatario=%s)
+ErrorAttachedFilesDisabled=Los archivos adjuntos están deshabilitados en éste servidor
+ErrorFileNotUploaded=El archivo no fue transferido. Revise que el tamaño no exceda el máximo permitido, que haya espacio disponible suficiente en disco y que no exista algún archivo con el mismo nombre en el mismo directorio.
+ErrorWrongHostParameter=Parámetro de servidor inválido
+ErrorYourCountryIsNotDefined=Tu país no está definido. Corrígelo en Inicio-Configuración-Empresa/institución-Editar.
+ErrorRecordIsUsedByChild=Falló la eliminación de este registro. Este registro está siendo utilizado por al menos un registro hijo
+ErrorWrongValue=Valor erróneo
+ErrorWrongValueForParameterX=Valor erróneo para el parámetro %s
+ErrorServiceUnavailableTryLater=El servicio no está disponible por el momento. Intente de nuevo más tarde.
+ErrorDuplicateField=Valor duplicado en un campo único
+ErrorSomeErrorWereFoundRollbackIsDone=Se encontraron algunos errores. Modificaciones revertidas.
+ErrorConfigParameterNotDefined=El parámetro <b>%s</b> no está definido dentro del archivo de configuración de Dolibarr <b>conf.php</b>.
+ErrorCantLoadUserFromDolibarrDatabase=Imposible encontrar al usuario <b>%s</b> en la base de datos de Dolibarr
+ErrorNoVATRateDefinedForSellerCountry=Error, no se ha definido tasa para el IVA del país '%s'.
+ErrorNoSocialContributionForSellerCountry=Error, no hay tipos de impuestos sociales/fiscales definidos para el país '%s'.
+NotAuthorized=Usted no está autorizado para realizar ésta acción.
+SetDate=Ajustar fecha
+SeeHere=Mira aquí
+BackgroundColorByDefault=Color de fondo por defecto
+FileNotUploaded=El archivo no se ha subido
+FileWasNotUploaded=Un archivo fue seleccionado para adjuntar, sin embargo, no ha sido cargado aún. De clic en "Adjuntar archivo" para éllo.
+NbOfEntries=Número de entradas
+GoToWikiHelpPage=Consultar la ayuda (requiere acceso a internet)
+LevelOfFeature=Nivel de características
+NotDefined=No definido
+DefinedAndHasThisValue=Definido y con valor de
+IsNotDefined=No definido
+DolibarrInHttpAuthenticationSoPasswordUseless=El modo de autenticación de Dolibarr está configurado como <b>%s</b> en el archivo de configuración <b>conf.php</b>.<br>Esto significa que la base de datos de contraseñas es externa a Dolibarr, así que cambiar éste campo puede que no tenga efectos.
+PasswordForgotten=¿Contraseña olvidada?
+HomeArea=Área de Inicio
+PreviousConnexion=Conexión Anterior
+ConnectedOnMultiCompany=Conectado a la entidad
+DatabaseTypeManager=Administrador de tipo de base de datos
+RequestLastAccess=Solicitud de último acceso a la base de datos
+RequestLastAccessInError=Solicitud de último acceso a la base de datos erróneo
+ReturnCodeLastAccessInError=Devuelve el código para el último acceso a la base de datos erróneo
+InformationLastAccessInError=Información del último acceso de base de datos erróneo
+InformationToHelpDiagnose=Esta es información que puede ayudar para el diagnóstico
+TechnicalID=ID Técnico
+PrecisionUnitIsLimitedToXDecimals=Dolibarr fue instalado para limitar la precisión de los precios unitarios a<b>%s</b> decimales.
+WarningYouHaveAtLeastOneTaskLate=Advertencia, tiene al menos un elemento que ha superado la fecha de tolerancia.
+Alls=Todo
+Under=debajo
+PeriodEndDate=Fecha final para ell periódo
+Enabled=Habilitado
+Deprecated=Depreciado
+Disabled=Deshabilitado
+AddLink=Añadir vínculo
+RemoveLink=Remover enlace
+Update=Actualizar
+AddActionDone=Añadir evento realizado
+ConfirmSendCardByMail=¿Realmente deseas enviar el contenido de esta ficha por correo a <b>%s</b>?
+Cancel=Cancelar
+ValidateAndApprove=Validar y aprobar
+Save=Guardar
+SaveAs=Guardar como
+TestConnection=Probar conexión
+ToClone=Clonar
+ConfirmClone=Elige los datos que deseas clonar:
+NoCloneOptionsSpecified=No se definió información a clonar.
+Run=Ejecutar
+ShowCardHere=Ver la ficha
+ToLink=Vínculo
+ChooseLangage=Por favor elige tu idioma
+NoUserGroupDefined=Ningún grupo definido por el usuario
+NoteSomeFeaturesAreDisabled=Atención, muchas funciones/módulos están deshabilitadas en esta demostración.
+PersonalValue=Valor personal
+MultiLanguage=Multi-idioma
+Action=Evento
+AmountByMonth=Cantidad por mes
+DevelopmentTeam=Equipo de Desarrollo
+DateStart=Fecha de inicio
+DateEnd=Fecha de finalización
+DateCreationShort=Fecha de creación
+DateModificationShort=Fecha Modif.
+DateLastModification=Fecha de última modificación
+DateOperation=Fecha de operación
+DateOperationShort=Fecha Op.
+DateBuild=Fecha de generación del informe
+DatePayment=Fecha de pago
+HourShort=Hr
+Rate=Tasa
+UseLocalTax=Incluir impuesto
+DefaultValue=Valor predeterminado
+SupplierProposalUHT=P. U. neto solicitado
+PriceUTTC=P.U. (IVA incl.)
+AmountInvoice=Importe de la factura
+AmountPayment=Importe de pago
+AmountLT1=Importe impuestos 2
+AmountLT2=Importe impuestos 3
+AmountAverage=Importe promedio
+TotalHTforthispage=Total (neto de impuestos) para esta página
+TotalLT1=Total impuesto 2
+TotalLT2=Total impuesto 3
+TTC=IVA Incluido
+VATs=Impuestos de ventas
+VATRate=Tasa de IVA
+Average=Promedio
+List=Lista
+FullList=Lista completa
+RefSupplier=Ref. Proveedor
+RefPayment=Ref. Pago
+CommercialProposalsShort=Propuestas comerciales
+ActionsToDo=Eventos por realizar
+ActionsToDoShort=Por hacer
+ActionsRunningshort=Iniciado
+ActionsDoneShort=Hecho
+ActionNotApplicable=No aplica
+ActionRunningNotStarted=Empezar
+ActionRunningShort=Iniciado
+ActionDoneShort=Finalizado
+CompanyFoundation=Empresa/Fundación
+ContactsForCompany=Contactos para ste tercero
+ContactsAddressesForCompany=Contactos/Direcciones para este tercero
+AddressesForCompany=Direcciones para este tercero
+ActionsOnCompany=Eventos relacionados a este tercero
+ActionsOnMember=Eventos relacionados a éste miembro
+NActionsLate=%s tarde
+Filter=Filtrar
+FilterOnInto=Criterios de búsqueda '<strong>%s</strong>' en los campos %s
+RemoveFilter=Remover filtro
+ChartGenerated=Gráfico generado
+GeneratedOn=Generado en %s
+OtherInformationsBoxes=Otros cuadros de información
+DolibarrBoard=Tablero de Dolibarr
+DolibarrWorkBoard=Tablero de tareas de trabajo
+NotYetAvailable=No disponible aún
+Category=Tag/Categoría
+ChangedBy=Cambiado por
+ResultKo=Fallo
+Reporting=Informes
+Opened=Abierta
+ByCompanies=Por terceros
+ByUsers=Por usuarios
+Links=Vínculos
+Link=Vínculo
+Rejects=Rechazos
+Preview=Previsualización
+None=Ninguno
+NoneF=Ninguno
+Late=Tarde
+Photo=Imágen
+Photos=Imágenes
+AddPhoto=Añadir imágen
+Login=Inicio de sesión
+CurrentLogin=Inicio de sesión actual
+May=Mayo
+December=diciembre
+MayMin=Mayo
+Month05=Mayo
+MonthShort01=Ene
+MonthShort04=Abr
+MonthShort05=Mayo
+MonthShort08=Ago
+MonthShort12=Dic
+FileTransferComplete=Archivo fue subido exitosamente
+DateFormatYYYYMM=MM-YYYY
+DateFormatYYYYMMDD=DD-MM-YYYY
+DateFormatYYYYMMDDHHMM=DD-MM-YYYY HH:SS
+ReportPeriod=Período del informe
+Keyword=Palabra clave
+FillTownFromZip=Llenar ciudad desde C. P.
+Fill=Llenar
+Reset=Reiniciar
+ShowLog=Mostrar registro
+NotAllowed=No permitido
+ReadPermissionNotAllowed=Permiso de lectura no permitido
+AmountInCurrency=Monto en moneda %s
+NoExample=Ningún ejemplo
+FindBug=Reportar un bug
+NbOfLines=Número de líneas
+NbOfReferers=Número de remitentes
+Referers=Refiriéndose objetos
+DateFrom=Desde %s
+Uncheck=Desmarcar
+Internals=Interno
+Externals=Externo
+Warning=Advertencia
+Warnings=Advertencias
+BuildPDF=Generar PDF
+RebuildPDF=Volver a generar PDF
+BuildDoc=Generar Doc
+RebuildDoc=Volver a generar Doc
+Entity=Ambiente
+CustomerPreview=Vista previa del cliente
+SupplierPreview=Vista previa de proveedores
+AccountancyPreview=Vista previa de Contabilidad
+ShowCustomerPreview=Mostrar vista previa del cliente
+ShowSupplierPreview=Mostrar vista previa del proveedor
+ShowAccountancyPreview=Mostrar vista previa de contabilidad
+ShowProspectPreview=Mostrar vista previa del cliente potencial
+Currency=Moneda
+Undo=Deshacer
+UndoExpandAll=Deshacer ampliar
+FeatureNotYetSupported=Característica aún no soportada
+SendByMail=Enviar por correo electrónico
+MailSentBy=Correo electrónico enviado por
+TextUsedInTheMessageBody=Cuerpo del correo electronico
+SendAcknowledgementByMail=Enviar acuse de recibo por correo
+EMail=Email
+NoEMail=Sin correo electrónico
+FollowingConstantsWillBeSubstituted=Las siguientes constantes serán reemplazadas con el valor correspondiente.
+Refresh=Actualizar
+BackToList=Volver a la lista
+GoBack=Regresar
+CanBeModifiedIfOk=Puede ser modificado si es válido
+CanBeModifiedIfKo=Puede ser modificado si no es válido
+AutomaticCode=Código automático
+NotManaged=No gestionado
+FeatureDisabled=Característica deshabilitada
+MoveBox=Mover cuadro %s
+Offered=Presentado
+NotEnoughPermissions=Usted no tiene permiso para esta acción
+SessionName=Nombre de sesión
+Receive=Recibir
+YouCanChangeValuesForThisListFromDictionarySetup=Puede cambiar los valores para esta lista desde el menú configuración - dictionario
+Documents=Archivos vinculados
+DocumentsNb=Archivos vinculados (%s)
+UploadDisabled=Carga deshabilitada
+MenuAgendaGoogle=Agenda de Google
+ThisLimitIsDefinedInSetup=Límite de Dolibarr (Menú inicio-configuración-seguridad): %s Kb, Límite PHP: %s Kb
+CurrentMenuManager=Administrador de menú actual
+DisabledModules=Módulos deshabilitados
+ForCustomer=Para el cliente
+HidePassword=Mostrar comando con la contraseña oculta
+UnHidePassword=Mostrar comando real mostrando la contraseña
+Informations=Informaciones
+AddFile=Agregar archivo
+ListOfFiles=Lista de archivos disponibles
+FreeLineOfType=Entrada libre de tipo
+CloneMainAttributes=Clonar objeto con sus principales atributos
+PDFMerge=Unir PDF
+Merge=Unir
+PrintContentArea=Mostrar la página para imprimir el área de contenido principal
+MenuManager=Administrar menú
+NoMenu=Sin submenú
+WarningYouAreInMaintenanceMode=Advertencia, usted está en un modo de mantenimiento, solamente se permite el uso de la aplicación con el login <b>%s</b>
+CoreErrorMessage=Disculpe, ocurrió un error. Compruebe los registros o póngase en contacto con el administrador del sistema.
+FieldsWithAreMandatory=Los campos con <b>%s</b> son obligatorios
+FieldsWithIsForPublic=Los campos con <b>%s</b> se muestran en la lista pública de miembros. Si usted no desea esto, desmarque la casilla "público".
+AccordingToGeoIPDatabase=(de acuerdo con la conversión GeoIP)
+RequiredField=Campo requerido
+ValidateBefore=La tarjeta debe ser validada antes de usar esta característica
+Hidden=Oculto
+Source=Fuente
+Before=Antes de
+AttributeCode=Código de atributo
+OptionalFieldsSetup=Configuración de atributos adicionales
+URLPhoto=URL de la foto/logotipo
+SetToDraft=Regresar a borrador
+ClickToEdit=Haga clic para editar
+ObjectDeleted=Objeto %s suprimido
+ByCountry=Por país
+ByTown=Por municipio
+BySalesRepresentative=Por representante de ventas
+LinkedToSpecificUsers=Vinculado a un usuario de contacto determinado
+DeleteAFile=Eliminar un archivo
+ConfirmDeleteAFile=¿Seguro que quieres borrar el archivo?
+NoResults=No hay resultados
+SystemTools=Herramientas de sistema
+ModulesSystemTools=Módulos de herramientas
+Test=Probar
+NoPhotoYet=No hay fotos disponibles aún
+HomeDashboard=Resumen de inicio
+SelectAction=Seleccione la acción
+HelpCopyToClipboard=Utilice Ctrl + C para copiar al portapapeles
+SaveUploadedFileWithMask=Guarde el archivo en el servidor con el nombre "<strong>%s</strong>" (de lo contrario "%s")
+OriginFileName=Nombre original del archivo
+SetDemandReason=Seleccionar fuente
+SetBankAccount=Definir Cuenta Bancaria
+AccountCurrency=Moneda de la cuenta
+XMoreLines=%s línea(s) oculta(s)
+PublicUrl=URL Pública
+AddBox=Añade una caja
+SelectElementAndClickRefresh=Seleccione un elemento y haga clic en Actualizar
+GoIntoSetupToChangeLogo=Ve a Inicio - Configuración - Empresa para cambiar el logo o ve a Inicio - Configuración - Vista para ocultarlo.
+Denied=Denegado
+ListOfTemplates=Lista de plantillas
+Gender=Género
+ViewList=Vista de la lista
+Sincerely=Sinceramente
+DeleteLine=Borrar línea
+ConfirmDeleteLine=¿Seguro que quieres eliminar esta línea?
+Monday=lunes
+Tuesday=martes
+Wednesday=miércoles
+Thursday=jueves
+Friday=viernes
+Saturday=sábado
+Sunday=domingo
+MondayMin=Lun
+TuesdayMin=Mar
+WednesdayMin=Mie
+ThursdayMin=Jue
+FridayMin=Vie
+SaturdayMin=Sab
+SundayMin=Dom
+Day1=lunes
+Day2=martes
+Day3=miércoles
+Day4=jueves
+Day5=viernes
+Day6=sábado
+Day0=domingo
+ShortWednesday=M
+ShortThursday=MJ
+SelectMailModel=Seleccionar plantilla de correo electrónico
+Select2NotFound=No se encontró ningún resultado
+Select2Enter=Entrar
+SearchIntoCustomerInvoices=Facturas de clientes
+SearchIntoCustomerOrders=Pedidos de los clientes
+SearchIntoCustomerProposals=Propuestas de clientes
+SearchIntoSupplierProposals=Propuestas de proveedores
+SearchIntoExpenseReports=Reporte de gastos
diff --git a/htdocs/langs/es_MX/margins.lang b/htdocs/langs/es_MX/margins.lang
new file mode 100644
index 0000000000000000000000000000000000000000..13e233f4f27896c60110c20d42a91df05ec69604
--- /dev/null
+++ b/htdocs/langs/es_MX/margins.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - margins
+Launch=Iniciar
diff --git a/htdocs/langs/es_MX/members.lang b/htdocs/langs/es_MX/members.lang
new file mode 100644
index 0000000000000000000000000000000000000000..3ee99cfb6020d737955b0727f9663a75f9d5b5f8
--- /dev/null
+++ b/htdocs/langs/es_MX/members.lang
@@ -0,0 +1,5 @@
+# Dolibarr language file - Source file is en_US - members
+MemberStatusDraftShort=Borrador
+SubscriptionLate=Tarde
+SubscriptionLateShort=Tarde
+SubscriptionNotReceivedShort=Nunca recibido
diff --git a/htdocs/langs/es_MX/orders.lang b/htdocs/langs/es_MX/orders.lang
new file mode 100644
index 0000000000000000000000000000000000000000..248ecd8d34d4e7c2dd69d6753bc910b91eb68576
--- /dev/null
+++ b/htdocs/langs/es_MX/orders.lang
@@ -0,0 +1,4 @@
+# Dolibarr language file - Source file is en_US - orders
+CustomersOrders=Pedidos de los clientes
+StatusOrderCanceledShort=Cancelado
+StatusOrderCanceled=Cancelado
diff --git a/htdocs/langs/es_MX/other.lang b/htdocs/langs/es_MX/other.lang
new file mode 100644
index 0000000000000000000000000000000000000000..a84e58cb5e221a4d8871d932043460a536c25c10
--- /dev/null
+++ b/htdocs/langs/es_MX/other.lang
@@ -0,0 +1,5 @@
+# Dolibarr language file - Source file is en_US - other
+Tools=Herramientas
+Notify_COMPANY_CREATE=Tercero creado
+ShipmentValidatedInDolibarr=Envío %s validado
+Export=Exportar
diff --git a/htdocs/langs/es_MX/paybox.lang b/htdocs/langs/es_MX/paybox.lang
new file mode 100644
index 0000000000000000000000000000000000000000..b5e026cdced5284da0b71233233d797db94d032d
--- /dev/null
+++ b/htdocs/langs/es_MX/paybox.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - paybox
+Continue=Siguiente
diff --git a/htdocs/langs/es_MX/printing.lang b/htdocs/langs/es_MX/printing.lang
new file mode 100644
index 0000000000000000000000000000000000000000..91ea24ea9f3f06b020d87aa03064edc9a5d2f258
--- /dev/null
+++ b/htdocs/langs/es_MX/printing.lang
@@ -0,0 +1,4 @@
+# Dolibarr language file - Source file is en_US - printing
+TestDriver=Probar
+PRINTIPP_USER=Inicio de sesión
+STATE_IPP_none=Ninguno
diff --git a/htdocs/langs/es_MX/productbatch.lang b/htdocs/langs/es_MX/productbatch.lang
new file mode 100644
index 0000000000000000000000000000000000000000..0bc8f15506fdeb2f9fc3196854331bfec0f2ce7a
--- /dev/null
+++ b/htdocs/langs/es_MX/productbatch.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - productbatch
+BatchDefaultNumber=No definido
diff --git a/htdocs/langs/es_MX/products.lang b/htdocs/langs/es_MX/products.lang
index 3c7dd771227e57791d85b0d8970a4d0e2e963bdd..8566a94b95ca92bfc3e9b6c0d4e752dde1d4776b 100644
--- a/htdocs/langs/es_MX/products.lang
+++ b/htdocs/langs/es_MX/products.lang
@@ -1,2 +1,3 @@
 # Dolibarr language file - Source file is en_US - products
-ProductsMultiPrice=Product multi-price
+ContractStatusClosed=Cerrada
+QtyNeed=Cant.
diff --git a/htdocs/langs/es_MX/projects.lang b/htdocs/langs/es_MX/projects.lang
new file mode 100644
index 0000000000000000000000000000000000000000..a61042da6ef7762188ee439a66cd6763fa8b7dc6
--- /dev/null
+++ b/htdocs/langs/es_MX/projects.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - projects
+ProjectReferers=Refiriéndose objetos
diff --git a/htdocs/langs/es_MX/propal.lang b/htdocs/langs/es_MX/propal.lang
new file mode 100644
index 0000000000000000000000000000000000000000..6d8738586bfea7fcc74b755840769e95dd11edff
--- /dev/null
+++ b/htdocs/langs/es_MX/propal.lang
@@ -0,0 +1,10 @@
+# Dolibarr language file - Source file is en_US - propal
+Proposals=Propuestas comerciales
+Prop=Propuestas comerciales
+CommercialProposals=Propuestas comerciales
+PropalsDraft=Borradores
+PropalsOpened=Abierta
+PropalStatusClosed=Cerrada
+PropalStatusOpenedShort=Abierta
+PropalStatusClosedShort=Cerrada
+DateEndPropalShort=Fecha de finalización
diff --git a/htdocs/langs/es_MX/sendings.lang b/htdocs/langs/es_MX/sendings.lang
index 4020b40d6e277ba6917b7de67d2803b66b307029..ea9f35bd5dd924f4fa7d79cff25443cb700ac4ea 100644
--- a/htdocs/langs/es_MX/sendings.lang
+++ b/htdocs/langs/es_MX/sendings.lang
@@ -1,2 +1,3 @@
 # Dolibarr language file - Source file is en_US - sendings
-Receivings=Receipts
+StatusSendingCanceled=Cancelado
+StatusSendingCanceledShort=Cancelado
diff --git a/htdocs/langs/es_MX/stocks.lang b/htdocs/langs/es_MX/stocks.lang
new file mode 100644
index 0000000000000000000000000000000000000000..d1579ea863aedac77ee2bc32d0d952e4a77c9128
--- /dev/null
+++ b/htdocs/langs/es_MX/stocks.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - stocks
+Location=Ubicación
diff --git a/htdocs/langs/es_MX/supplier_proposal.lang b/htdocs/langs/es_MX/supplier_proposal.lang
index 321dbcb4cdc0539d3014a09a483b265fdb61493d..bd822c41cd154dda4a5d387f963f36aa3295b609 100644
--- a/htdocs/langs/es_MX/supplier_proposal.lang
+++ b/htdocs/langs/es_MX/supplier_proposal.lang
@@ -1,2 +1,6 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
-SupplierProposalShort=Supplier proposal
+SupplierProposals=Propuestas de proveedores
+SupplierProposalOpened=Abierta
+SupplierProposalStatusClosed=Cerrada
+SupplierProposalStatusOpenedShort=Abierta
+SupplierProposalStatusClosedShort=Cerrada
diff --git a/htdocs/langs/es_MX/suppliers.lang b/htdocs/langs/es_MX/suppliers.lang
new file mode 100644
index 0000000000000000000000000000000000000000..0e64c07df37d2ee3e150cde366fd24a7065b0021
--- /dev/null
+++ b/htdocs/langs/es_MX/suppliers.lang
@@ -0,0 +1,3 @@
+# Dolibarr language file - Source file is en_US - suppliers
+ListOfSuppliers=Lista de proveedores
+RefSupplierShort=Ref. Proveedor
diff --git a/htdocs/langs/es_MX/trips.lang b/htdocs/langs/es_MX/trips.lang
new file mode 100644
index 0000000000000000000000000000000000000000..59ba01b895cddaab2130ab742347b20e43140a95
--- /dev/null
+++ b/htdocs/langs/es_MX/trips.lang
@@ -0,0 +1,4 @@
+# Dolibarr language file - Source file is en_US - trips
+ExpenseReports=Reporte de gastos
+Trips=Reporte de gastos
+ModifyInfoGen=Editar
diff --git a/htdocs/langs/es_MX/users.lang b/htdocs/langs/es_MX/users.lang
new file mode 100644
index 0000000000000000000000000000000000000000..3e96baed58ccd436324598a8ec7cf3ce722d9cea
--- /dev/null
+++ b/htdocs/langs/es_MX/users.lang
@@ -0,0 +1,3 @@
+# Dolibarr language file - Source file is en_US - users
+LastName=Nombre
+FirstName=Nombre(s)
diff --git a/htdocs/langs/es_MX/withdrawals.lang b/htdocs/langs/es_MX/withdrawals.lang
new file mode 100644
index 0000000000000000000000000000000000000000..47a1bdeb24d24d20fdab42b9193a8b6c94b4059c
--- /dev/null
+++ b/htdocs/langs/es_MX/withdrawals.lang
@@ -0,0 +1,4 @@
+# Dolibarr language file - Source file is en_US - withdrawals
+Withdrawals=Retiros
+Withdrawal=Retiro
+StatusRefused=Rechazado
diff --git a/htdocs/langs/es_PE/cron.lang b/htdocs/langs/es_PE/cron.lang
deleted file mode 100644
index e211c11dff5b4809131d6492f5c5ae876f5ec0c7..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_PE/cron.lang
+++ /dev/null
@@ -1,4 +0,0 @@
-# Dolibarr language file - Source file is en_US - cron
-CronListActive=List of active/scheduled jobs
-CronDtStart=Start date
-CronDtEnd=End date
diff --git a/htdocs/langs/es_PE/products.lang b/htdocs/langs/es_PE/products.lang
deleted file mode 100644
index 3c7dd771227e57791d85b0d8970a4d0e2e963bdd..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_PE/products.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - products
-ProductsMultiPrice=Product multi-price
diff --git a/htdocs/langs/es_PE/sendings.lang b/htdocs/langs/es_PE/sendings.lang
deleted file mode 100644
index 4020b40d6e277ba6917b7de67d2803b66b307029..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_PE/sendings.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - sendings
-Receivings=Receipts
diff --git a/htdocs/langs/es_PE/supplier_proposal.lang b/htdocs/langs/es_PE/supplier_proposal.lang
deleted file mode 100644
index 321dbcb4cdc0539d3014a09a483b265fdb61493d..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_PE/supplier_proposal.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - supplier_proposal
-SupplierProposalShort=Supplier proposal
diff --git a/htdocs/langs/es_PY/cron.lang b/htdocs/langs/es_PY/cron.lang
deleted file mode 100644
index e211c11dff5b4809131d6492f5c5ae876f5ec0c7..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_PY/cron.lang
+++ /dev/null
@@ -1,4 +0,0 @@
-# Dolibarr language file - Source file is en_US - cron
-CronListActive=List of active/scheduled jobs
-CronDtStart=Start date
-CronDtEnd=End date
diff --git a/htdocs/langs/es_PY/products.lang b/htdocs/langs/es_PY/products.lang
deleted file mode 100644
index 3c7dd771227e57791d85b0d8970a4d0e2e963bdd..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_PY/products.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - products
-ProductsMultiPrice=Product multi-price
diff --git a/htdocs/langs/es_PY/sendings.lang b/htdocs/langs/es_PY/sendings.lang
deleted file mode 100644
index 4020b40d6e277ba6917b7de67d2803b66b307029..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_PY/sendings.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - sendings
-Receivings=Receipts
diff --git a/htdocs/langs/es_PY/supplier_proposal.lang b/htdocs/langs/es_PY/supplier_proposal.lang
deleted file mode 100644
index 321dbcb4cdc0539d3014a09a483b265fdb61493d..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_PY/supplier_proposal.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - supplier_proposal
-SupplierProposalShort=Supplier proposal
diff --git a/htdocs/langs/es_VE/margins.lang b/htdocs/langs/es_VE/margins.lang
index 1cd8a041abca041d67164e331c049ad9e3ecf788..3f84b463aa7724bdb58ccd06541cf909c647fc38 100644
--- a/htdocs/langs/es_VE/margins.lang
+++ b/htdocs/langs/es_VE/margins.lang
@@ -1,4 +1,3 @@
 # Dolibarr language file - Source file is en_US - margins
 MargeType1=Margen de proveedor con mejor precio
 MargeType2=Margen de Precio Promedio Ponderado (WAP)
-MarginTypeDesc=Margin on best buying price : Margen de precio de venta - El mejor precio con proveedor definido en la tarjeta del producto <br/>
diff --git a/htdocs/langs/es_VE/orders.lang b/htdocs/langs/es_VE/orders.lang
new file mode 100644
index 0000000000000000000000000000000000000000..b1d31ea06047d43ab30edece86d76f2f31824e7e
--- /dev/null
+++ b/htdocs/langs/es_VE/orders.lang
@@ -0,0 +1,3 @@
+# Dolibarr language file - Source file is en_US - orders
+RelatedCustomerOrders=Pedidos de clientes relacionados
+RelatedSupplierOrders=Pedidos a clientes relacionados
diff --git a/htdocs/langs/es_VE/supplier_proposal.lang b/htdocs/langs/es_VE/supplier_proposal.lang
deleted file mode 100644
index 321dbcb4cdc0539d3014a09a483b265fdb61493d..0000000000000000000000000000000000000000
--- a/htdocs/langs/es_VE/supplier_proposal.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - supplier_proposal
-SupplierProposalShort=Supplier proposal
diff --git a/htdocs/langs/et_EE/accountancy.lang b/htdocs/langs/et_EE/accountancy.lang
index d6b7fa5ab870c8a0cebc3e125d4536a2caec9c77..531d10a2fd64b1e5416459660be08f69193ae3e6 100644
--- a/htdocs/langs/et_EE/accountancy.lang
+++ b/htdocs/langs/et_EE/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Return
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sales journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/et_EE/admin.lang b/htdocs/langs/et_EE/admin.lang
index 2ddfdc4bbf7ce9e5a19fb9afebfe14b55ef5f398..37de780e420aebfd2b83c4b682ba1b0e982dbb48 100644
--- a/htdocs/langs/et_EE/admin.lang
+++ b/htdocs/langs/et_EE/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Peida loodud PDFis kõik käibemaksudega seotud andme
 HideDescOnPDF=Peida loodud PDFis toodete kirjeldused
 HideRefOnPDF=Peida loodud PDFis toodete viited
 HideDetailsOnPDF=Peida loodud PDFis toodete ridade üksikasjad
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Raamatukogu
 UrlGenerationParameters=URLide turvamise parameetrid
 SecurityTokenIsUnique=Kasuta iga URLi jaoks unikaalset turvalise võtme parameetrit
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Kas oled täiesti kindel, et soovid kustutada kõi
 AllBarcodeReset=Kõik triipkoodi väärtused on eemaldatud
 NoBarcodeNumberingTemplateDefined=Vöötkoodide mooduli seadistuses pole määratletud ühtki vöötkoodide numeratsiooni malli
 NoRecordWithoutBarcodeDefined=Pole ühtki puuduva vöötkoodiga kirjet
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Kasutajad ja grupid
@@ -499,7 +500,7 @@ Module510Desc=Töötajate palkade ja palkade maksmise haldamine
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Teated
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Annetused
 Module700Desc=Annetuste haldamine
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Hilinemised enne hoiatust
 DelaysOfToleranceBeforeWarning=Hilinemiste viivitus enne hoiatuse näitamist
 DelaysOfToleranceDesc=See ekraan võimaldab määratleda lubatud hilinemist lubatud enne hoiatuskasti näitamist ekraanil pildiga %s iga hilinenud elemendi kohta.
 Delays_MAIN_DELAY_ACTIONS_TODO=Hilinemise viivitus (päevades) enne hoiatust täitmata planeeritud tegevuste kohta
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Hilinemise viivitus (päevades) enne hoiatust töötlemata tellimuste kohta
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Hilinemise viivitus (päevades) enne hoiatust töötlemata ostutellimuste kohta
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Hilinemise viivitus (päevades) enne hoiatust sulgemata pakkumiste kohta
@@ -1087,6 +1089,7 @@ PathDirectory=Kaust
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Tõlke seadistus
 TranslationDesc=Ekraanil kasutatava keele valikut saab muuta:<br>* Üldist keelt menüüst <strong>Kodu->Seadistamine->Kuva</strong><br>* Kasutajapõhiselt sakist <strong>Kasutaja kuva</strong> kasutaja kaardilt (klõpsa kasutajanime ekraani ülaosas).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Aktiveeritud mooduleid kokku: <b>%s</b>
 YouMustEnableOneModule=Pead vähemalt 1 mooduli sisse lülitama
 ClassNotFoundIntoPathWarning=Klassi %s ei ole PHP rajas
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/et_EE/agenda.lang b/htdocs/langs/et_EE/agenda.lang
index 7fa53d5f5504a0ee6e7616d22034007b3235bcbf..1225e21399ecb15bde5d1a7f0f1a892b2440a36d 100644
--- a/htdocs/langs/et_EE/agenda.lang
+++ b/htdocs/langs/et_EE/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Kõik tegevused/ülesanded
 ViewCal=Kuu vaade
 ViewDay=Päeva vaade
 ViewWeek=Nädala vaade
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Näita määratletud filtritega
 AutoActions= Automaatne täitmine
 AgendaAutoActionDesc= Määratle siin need tegevused, mille kohta loob Dolibarr automaatselt päevakavasse tegevuse. Kui midagi pole märgistatud (vaikimisi), siis lisatakse päevakavasse ainult käsitsi lisatud tegevused.
diff --git a/htdocs/langs/et_EE/bills.lang b/htdocs/langs/et_EE/bills.lang
index 7eaae242b717c6e0e1ca296054c423ad9b40e2dc..0d4cec4e195c4fd5891c86e6eb320ee8e9d8abbe 100644
--- a/htdocs/langs/et_EE/bills.lang
+++ b/htdocs/langs/et_EE/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Juba tehtud maksed
 PaymentsBackAlreadyDone=Juba tehtud tagasimaksed
 PaymentRule=Maksereegel
 PaymentMode=Makse liik
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Maksetähtaeg
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=Näita arvet
 ShowInvoiceReplace=Näita asendusarvet
 ShowInvoiceAvoir=Näita kreeditarvet
 ShowInvoiceDeposit=Näita ettemaksuarvet
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Näita makset
 AlreadyPaid=Juba makstud
 AlreadyPaidBack=Juba tagasi makstud
@@ -221,6 +224,7 @@ NonPercuRecuperable=Tagastamatu
 SetConditions=Määra maksetingimusi
 SetMode=Määra makseviis
 Billed=Arve esitatud
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Sellest summast on loobutud (kuna tegu olevat halva klien
 HelpAbandonOther=Sellest summast on loobutud, kuna tegu oli veaga (näiteks: vale klient või arve on asendatud teisega).
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Makse ID
+PaymentRef=Payment ref.
 InvoiceId=Arve ID
 InvoiceRef=Arve viide
 InvoiceDateCreation=Arve loomise kuupäev
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Kohene
@@ -393,6 +402,7 @@ Reported=Hilinenud
 DisabledBecausePayments=Pole võimalik, kuna on mõningaid makseid
 CantRemovePaymentWithOneInvoicePaid=Ei saa makset eemaldada, kuna vähemalt üks arve on märgitud makstuks
 ExpectedToPay=Oodatud makse
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Makstud selle maksega
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Liigita kõik täielikult tagasi makstud kreeditarved makstuks.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Märkus: see nimekiri sisaldab vaid nende kolmandat
 RevenueStamp=Maksumärk
 YouMustCreateInvoiceFromThird=Lisavõimalus on saadaval vaid juhul, kui arve luuakse kolmanda isiku sakilt "Klient"
 PDFCrabeDescription=PDF mall Crabe arvete jaoks. Täielik arve mall (soovitatav mall).
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Tagastab numbri formaadiga %syymm-nnnn tavaliste arvete jaoks ja %syymm-nnnn kreeditarvete jaoks, kus yy on aasta, mm on kuu ja nnnn on katkestusteta jada, mis ei lähe kunagi 0 tagasi.
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=Arve algusega $syymm on juba olemas ja ei ole antud jada mudeliga ühtiv. Eemalda see või muuda selle nimi antud mooduli aktiveerimiseks.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/et_EE/boxes.lang b/htdocs/langs/et_EE/boxes.lang
index c10200ffcc2e43b275366fb24f166c88e22a6c0a..f80b40c8cdd714219944a911e35aaa50c9ffddd7 100644
--- a/htdocs/langs/et_EE/boxes.lang
+++ b/htdocs/langs/et_EE/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Müügiarved
 ForCustomersOrders=Müügiarved
 ForProposals=Pakkumised
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/et_EE/categories.lang b/htdocs/langs/et_EE/categories.lang
index 3a36df238a257319ca6a7e478635f2cd2c678c1a..081c31e09eec1eb7f616a59f99e4146054c95e20 100644
--- a/htdocs/langs/et_EE/categories.lang
+++ b/htdocs/langs/et_EE/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Kliendi-/Huvil kategooriad
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/et_EE/companies.lang b/htdocs/langs/et_EE/companies.lang
index ad50e555cb44a1a0a17f56095d7d569f0de1de44..f709a1d415f6d4d06d6453e7a5ee2152a2f858c1 100644
--- a/htdocs/langs/et_EE/companies.lang
+++ b/htdocs/langs/et_EE/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (RC)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (IF)
 ProfId4MA=Id prof. 4 (CNSS)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (RFC).
 ProfId2MX=Prof Id 2 (R.. P. IMSS)
diff --git a/htdocs/langs/et_EE/compta.lang b/htdocs/langs/et_EE/compta.lang
index 12afc673054a38088a3d536c9ae14eb7609695cf..ba4a4d7760db7bc6de4dc0256d1a728309617cf7 100644
--- a/htdocs/langs/et_EE/compta.lang
+++ b/htdocs/langs/et_EE/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Eelmaksuarved pole lisatud
 DepositsAreIncluded=- Eelmaksuarved on lisatud
 LT2ReportByCustomersInInputOutputModeES=Kolmandate isikute IRPFi aruanne
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Sisend- ja väljundkäibemaks kliendi alusel
 VATReportByCustomersInDueDebtMode=Sisend- ja väljundkäibemaks kliendi alusel
 VATReportByQuartersInInputOutputMode=Sisend- ja väljundkäibemaks käibemaksumäärade järgi
diff --git a/htdocs/langs/et_EE/cron.lang b/htdocs/langs/et_EE/cron.lang
index 96909ea5459898ff1bd045a27d6d9eb857c846b7..83d05e1a6564d942ba6b109bab9d82478419463c 100644
--- a/htdocs/langs/et_EE/cron.lang
+++ b/htdocs/langs/et_EE/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Plaanitud käivitused
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=Välja lülitatud tööde nimekiri
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Viimane käivitus
 CronLastOutput=Viimase käivituse väljund
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Tegevus
 CronNone=Mitte ükski
-CronDtStart=Alguskuupäev
-CronDtEnd=Lõppkuupäev
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Järgmine käivitus
 CronDtLastLaunch=Viimane käivitus
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=Pole ühtki registreeritud programm
 CronPriority=Prioriteet
 CronLabel=Kirjeldus
 CronNbRun=Käivituste arv
+CronMaxRun=Max nb. launch
 CronEach=Iga
 JobFinished=Tegevus käivitatud ja lõpetatud
 #Page card
diff --git a/htdocs/langs/et_EE/deliveries.lang b/htdocs/langs/et_EE/deliveries.lang
index 9a4980bd13cea57a1d11eb73f60bca3842c79170..93dbf79b4a31ea4370bf1e561bd13aefcd8e79a5 100644
--- a/htdocs/langs/et_EE/deliveries.lang
+++ b/htdocs/langs/et_EE/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Kas soovite kindlasti kustutada saadetise vastuvõt
 DeliveryMethod=Tarneviis
 TrackingNumber=Jälgimiskood
 DeliveryNotValidated=Saadetis on kinnitamata
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Nimi ja allkiri:
 ToAndDate=___________________________________ kuupäev "____" / _____ / __________
diff --git a/htdocs/langs/et_EE/holiday.lang b/htdocs/langs/et_EE/holiday.lang
index 49eb3f524e315ee5113cca5e6f3a383c879bf26b..b440510648dacd06d8333377674a44a7a7b4bbd8 100644
--- a/htdocs/langs/et_EE/holiday.lang
+++ b/htdocs/langs/et_EE/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Töötaja
 DateDebCP=Alguskuupäev
 DateFinCP=Lõppkuupäev
 DateCreateCP=Loomiskuupäev
@@ -23,7 +22,7 @@ ReviewedByCP=Ülevaatav isik
 DescCP=Kirjeldus
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=Lõppkuupäev peab olema alguskuupäevast suurem.
@@ -79,9 +78,9 @@ PrevSoldeCP=Eelmine saldo
 NewSoldeCP=Uus saldo
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Nimi
-Employee=Töötaja
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Igakuine uuendus
 ManualUpdate=Käsitsi uuendus
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/et_EE/hrm.lang b/htdocs/langs/et_EE/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/et_EE/hrm.lang
+++ b/htdocs/langs/et_EE/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/et_EE/interventions.lang b/htdocs/langs/et_EE/interventions.lang
index 52200b15dc7d5f5acea7e558aa13fd284e9caff9..cbf11ca4e22803982a414c11b80d83ad224b24af 100644
--- a/htdocs/langs/et_EE/interventions.lang
+++ b/htdocs/langs/et_EE/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Tagastab numbri formaadiga %syymm-nnnn kus yy on aasta,
 PacificNumRefModelError=$syymm algusega sekkumise kaart on juba olemas ja too ei sobi kokku sellise mudeliga jadaga. Kustuta või nimeta too kaart ümber selle mooduli aktiveerimiseks.
 PrintProductsOnFichinter=Trüki tooted sekkumise kaardile
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/et_EE/mails.lang b/htdocs/langs/et_EE/mails.lang
index 67109956955165a11db7c7284bd8ba887908819a..ffd60b6b301fa779ea2758a594846b8f8c072f84 100644
--- a/htdocs/langs/et_EE/mails.lang
+++ b/htdocs/langs/et_EE/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=E-kiri saadetud %s aadressile.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/et_EE/main.lang b/htdocs/langs/et_EE/main.lang
index 5923bd6f5599ad86ac97ebd6eaec5690e9db7627..15d82cedb7e4e7de4b04d97abc846bd323a15644 100644
--- a/htdocs/langs/et_EE/main.lang
+++ b/htdocs/langs/et_EE/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%d.%m.%Y %I:%M:%S %p
 FormatDateHourTextShort=%d. %b %Y. %I:%M %p
 FormatDateHourText=%d. %b %Y. %I:%M %p
 DatabaseConnection=Andmebaasi ühendus
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Tõlge puudub
 NoRecordFound=Kirjet ei leitud
 NoError=Vigu ei tekkinud
@@ -105,6 +106,7 @@ NotePrivate=Märkus (privaatne)
 PrecisionUnitIsLimitedToXDecimals=Seadistamise ajal piirati Dolibarr arvestama komakohti <b>%s</b> kümnendkohani.
 DoTest=Test
 ToFilter=Filtreeri
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Hoiatus: vähemalt üks element on ületanud viivitusaja tolerantsi.
 yes=jah
 Yes=Jah
@@ -228,6 +230,8 @@ Now=Nüüd
 HourStart=Algustund
 Date=Kuupäev
 DateAndHour=Päev ja tund
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Alguskuupäev
 DateEnd=Lõppkuupäev
 DateCreation=Loomise kuupäev
@@ -608,6 +612,7 @@ TotalMan=Täielik
 NeverReceived=Pole vastu võetud
 Canceled=Tühistatud
 YouCanChangeValuesForThisListFromDictionarySetup=Antud nimekirja väärtusi saab muuta Seadistamine->Sõnastik menüüst
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Värv
 Documents=Seotud failid
 DocumentsNb=Seotud failid (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=Pildid puuduvad
 HomeDashboard=Kodu kokkuvõte
+Dashboard=Dashboard
 Deductible=Maha arvatav
 from=alates
 toward=kuni
diff --git a/htdocs/langs/et_EE/margins.lang b/htdocs/langs/et_EE/margins.lang
index f8bdcf27861506f7110b660b82bf315b0fe3e656..bedb014ee4463dd645331e5b91dab79687add2fb 100644
--- a/htdocs/langs/et_EE/margins.lang
+++ b/htdocs/langs/et_EE/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Vali toode või teenus
 StartDate=Alguskuupäev
 EndDate=Lõppkuupäev
 Launch=Algus
-ForceBuyingPriceIfNull=Sunni ostuhind, kui tühi
-ForceBuyingPriceIfNullDetails=Kui "SEES", siis on rea marginaal null (ostuhind = müügihind), vastasel juhul ("OFF") on marginaal võrdne müügihinnaga (ostuhind = 0).
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Üldiste allahindluste marginaali meetod
 UseDiscountAsProduct=Tootena
 UseDiscountAsService=Teenusena
@@ -35,8 +35,9 @@ MargeBrute=Toores marginaal
 MargeNette=Netomarginaal
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Toores marginaal: müügihind - ostuhind<br/>Netomarginaal: müügihind - tootmishind
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Tootmishind
 BuyingCost=Tootmishind
 UnitCharges=Ühiku kulud
diff --git a/htdocs/langs/et_EE/oauth.lang b/htdocs/langs/et_EE/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/et_EE/oauth.lang
+++ b/htdocs/langs/et_EE/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/et_EE/orders.lang b/htdocs/langs/et_EE/orders.lang
index d01604a727d0078eb15700a037179a345dd70286..a25c9780feed55ac9e6de8f87c76673c918d9bcc 100644
--- a/htdocs/langs/et_EE/orders.lang
+++ b/htdocs/langs/et_EE/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=Ühtki tellimuse mustandit ei ole
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Muud tellimused
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/et_EE/other.lang b/htdocs/langs/et_EE/other.lang
index d3c1b690720902a99aada8dab4f9e409a8ece2c2..026e96e9dd73d29ad3558f4d83153be7cdb48b3c 100644
--- a/htdocs/langs/et_EE/other.lang
+++ b/htdocs/langs/et_EE/other.lang
@@ -238,3 +238,8 @@ ToExport=Eksport
 NewExport=Uus eksport
 ##### External sites #####
 ExternalSites=Välised lehed
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/et_EE/paypal.lang b/htdocs/langs/et_EE/paypal.lang
index 055116f9f26782a011ce38d279194bb4e64357a0..577dd26ef1f79cee2cabf7bd3868b74e43b81d01 100644
--- a/htdocs/langs/et_EE/paypal.lang
+++ b/htdocs/langs/et_EE/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Testimise/liivakasti režii
 PAYPAL_API_USER=API kasutajanimi
 PAYPAL_API_PASSWORD=API parool
 PAYPAL_API_SIGNATURE=API signatuur
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Paku "terviklik" (krediitkaart + Paypal) või ainult "Paypal" makseviisi
 PaypalModeIntegral=Terviklik
 PaypalModeOnlyPaypal=Ainult PayPal
diff --git a/htdocs/langs/et_EE/products.lang b/htdocs/langs/et_EE/products.lang
index c6b0667ff5acfeb2c8bc7a0002a7e95e36a07406..1777909bafc34fe10c8f3731ae993942258cc94b 100644
--- a/htdocs/langs/et_EE/products.lang
+++ b/htdocs/langs/et_EE/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Neto kogus VWAP
 CostPmpHT=Neto kokku VWAP
 ProductUsedForBuild=Automaatne tootmise kul
 ProductBuilded=Tootmine lõpetatud
-ProductsMultiPrice=Toote mitmikhind
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/et_EE/projects.lang b/htdocs/langs/et_EE/projects.lang
index 4aa39b8a742f65d9c07a4869443fbe18e223eb11..4aa3a22b7a92c5c208e46d3db7d3574380bd7429 100644
--- a/htdocs/langs/et_EE/projects.lang
+++ b/htdocs/langs/et_EE/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=See vaade näitab kõiki projekte (sinu kasutajaõigused annavad ligipääsu kõigele)
 MyTasksDesc=Selles vaates näidatakse vaid neid projekte või ülesandeid, mille kontaktiks oled märgitud (hoolimata liigist)
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=See vaade esitab kõik projektid ja ülesanded, mida sul on lubatud vaadata.
 TasksDesc=See vaade näitab kõiki projekte ja ülesandeid (sinu kasutajaõigused annavad ligipääsu kõigele)
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Juhi projekti
 LastProjects=Viimased %s projekt
 AllProjects=Kõik projektid
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Projektide nimekir
 ShowProject=Kuva projekt
 SetProject=Määra projekt
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Ülesannet %s on muudetud
 TaskDeletedInDolibarr=Ülesanne %s on kustutatud
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/et_EE/propal.lang b/htdocs/langs/et_EE/propal.lang
index 21e8ad14968b3952a984dde817b51b5dd70ff161..3dc891237eb8213a3a19fb16ad9c58dc6c1a5b56 100644
--- a/htdocs/langs/et_EE/propal.lang
+++ b/htdocs/langs/et_EE/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Viimased %s muudetud pakkumist
 AllPropals=Kõik pakkumised
 LastProposals=Viimased pakkumised
 SearchAProposal=Otsi pakkumist
+NoProposal=No proposal
 ProposalsStatistics=Pakkumiste statistika
 NumberOfProposalsByMonth=Arv kuus
 AmountOfProposalsByMonthHT=Arv kuus (km-ta)
@@ -62,7 +63,8 @@ DatePropal=Pakkumise kuupäev
 DateEndPropal=Kehtib kuni
 DateEndPropalShort=Lõppkuupäev
 ValidityDuration=Kehtivuse kestvus
-CloseAs=Sulge staatusega
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Liigita 'Arve esitatud'
 BuildBill=Loo arve
 ErrorPropalNotFound=Pakkumist %s ei leitud
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Vaikimisi mudeli loomine
 DefaultModelPropalToBill=Vaikimisi mall pakkumise sulgemiseks (arve esitada)
 DefaultModelPropalClosed=Vaikimisi mall pakkumise sulgemiseks (arvet ei esitata)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/et_EE/salaries.lang b/htdocs/langs/et_EE/salaries.lang
index bf229ba4d8510d408d26cdbc4e6c37e474fc3ae6..c6ef7d6998682322c444f86c2ec6281e4d0486f1 100644
--- a/htdocs/langs/et_EE/salaries.lang
+++ b/htdocs/langs/et_EE/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Palk
 Salaries=Palgad
-Employee=Töötaja
 NewSalaryPayment=Uus palga makse
 SalaryPayment=Palga makse
 SalariesPayments=Palkade maksed
diff --git a/htdocs/langs/et_EE/sendings.lang b/htdocs/langs/et_EE/sendings.lang
index c336d0ceb4eaab2168312d6d34861fe2fc9c52ee..def802c2684ed30b67bd270031e1da64807b9e54 100644
--- a/htdocs/langs/et_EE/sendings.lang
+++ b/htdocs/langs/et_EE/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Saadetis
 Shipments=Saadetised
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Saadetiste ala
 ListOfSendings=Saadetiste nimekiri
 SendingMethod=Saatmisviis
diff --git a/htdocs/langs/et_EE/sms.lang b/htdocs/langs/et_EE/sms.lang
index a381b154e7d20002298858fe99c0afa36b6e995d..3baf03cac387ef140778336929145a52c9ab8ade 100644
--- a/htdocs/langs/et_EE/sms.lang
+++ b/htdocs/langs/et_EE/sms.lang
@@ -49,5 +49,6 @@ SendSms=Saada SMS
 SmsInfoCharRemain=Nb järelejäänud tähemärki
 SmsInfoNumero= (Formaat rahvusvaheline st: 33899701761)
 DelayBeforeSending=Viivitus enne saatmist (minutites)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Ei siht olemas. Vaata setup oma SMS teenust.
 
diff --git a/htdocs/langs/et_EE/supplier_proposal.lang b/htdocs/langs/et_EE/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/et_EE/supplier_proposal.lang
+++ b/htdocs/langs/et_EE/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/et_EE/trips.lang b/htdocs/langs/et_EE/trips.lang
index a6efe6b6f5150f702774d18ec1b04bb31b37e530..ca6cac7fa04bf21b95b6a3a9bf3bce803e908c01 100644
--- a/htdocs/langs/et_EE/trips.lang
+++ b/htdocs/langs/et_EE/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Muu
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Lõuna
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/et_EE/users.lang b/htdocs/langs/et_EE/users.lang
index 1eeb0cd38c2c89b5b7ca8e934dcf730b802eb420..9109975668564f7f5f5c62753b72ffb55d1b6f86 100644
--- a/htdocs/langs/et_EE/users.lang
+++ b/htdocs/langs/et_EE/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Kasuta sisselogimiseks OpenIDd
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/eu_ES/accountancy.lang b/htdocs/langs/eu_ES/accountancy.lang
index 5ee7e8de9f54f863782f095d33e3d4f43b2e78d2..87e3200f57c3544cb69c4a4d2a00867fbc5af632 100644
--- a/htdocs/langs/eu_ES/accountancy.lang
+++ b/htdocs/langs/eu_ES/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Return
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sells journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/eu_ES/admin.lang b/htdocs/langs/eu_ES/admin.lang
index 5ac80638933b49fb1384348ccbf2bb5f49dfd28a..fb1e8c4565618f07a67169ef14bde120aa6e72dd 100644
--- a/htdocs/langs/eu_ES/admin.lang
+++ b/htdocs/langs/eu_ES/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Hide all information related to VAT on generated PDF
 HideDescOnPDF=Hide products description on generated PDF
 HideRefOnPDF=Hide products ref. on generated PDF
 HideDetailsOnPDF=Hide products lines details on generated PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Liburutegia
 UrlGenerationParameters=Parameters to secure URLs
 SecurityTokenIsUnique=Use a unique securekey parameter for each URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Erabiltzaileak & Taldeak
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Jakinarazpenak
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Diru-emateak
 Module700Desc=Diru-emateak kudeatzea
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Delays before warning
 DelaysOfToleranceBeforeWarning=Tolerance delays before warning
 DelaysOfToleranceDesc=This screen allows you to define the tolerated delays before an alert is reported on screen with picto %s for each late element.
 Delays_MAIN_DELAY_ACTIONS_TODO=Delay tolerance (in days) before alert on planned events not yet realised
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on orders not yet processed
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on suppliers orders not yet processed
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Delay tolerance (in days) before alert on proposals to close
@@ -1087,6 +1089,7 @@ PathDirectory=Directory
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/eu_ES/agenda.lang b/htdocs/langs/eu_ES/agenda.lang
index 99ab39fa3cc430c96ab247c07bff76e7ac3b04e6..8136f2cf01e59fa0fe74b06ee27723326b56b345 100644
--- a/htdocs/langs/eu_ES/agenda.lang
+++ b/htdocs/langs/eu_ES/agenda.lang
@@ -35,7 +35,9 @@ AllActions= All events/tasks
 ViewCal=Month view
 ViewDay=Day view
 ViewWeek=Week view
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= View with predefined filters
 AutoActions= Automatic filling
 AgendaAutoActionDesc= Define here events for which you want Dolibarr to create automatically an event in agenda. If nothing is checked (by default), only manual actions will be included in agenda.
diff --git a/htdocs/langs/eu_ES/bills.lang b/htdocs/langs/eu_ES/bills.lang
index e39434e8bdbe5c1a6e6114154ce081d1c33b2a4e..c6ef3a2e2efaf7916d46081d0a5b4deaf93ea105 100644
--- a/htdocs/langs/eu_ES/bills.lang
+++ b/htdocs/langs/eu_ES/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Jada egindako ordainketak
 PaymentsBackAlreadyDone=Payments back already done
 PaymentRule=Payment rule
 PaymentMode=Ordainketa mota
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=Faktura erakutsi
 ShowInvoiceReplace=Show replacing invoice
 ShowInvoiceAvoir=Show credit note
 ShowInvoiceDeposit=Show deposit invoice
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Ordainketa erakutsi
 AlreadyPaid=Jada ordainduta
 AlreadyPaidBack=Already paid back
@@ -221,6 +224,7 @@ NonPercuRecuperable=Non-recoverable
 SetConditions=Set payment terms
 SetMode=Set payment mode
 Billed=Billed
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=This amount has been abandoned (customer said to be a bad
 HelpAbandonOther=This amount has been abandoned since it was an error (wrong customer or invoice replaced by an other for example)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Payment id
+PaymentRef=Payment ref.
 InvoiceId=Invoice id
 InvoiceRef=Invoice ref.
 InvoiceDateCreation=Invoice creation date
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Immediate
@@ -393,6 +402,7 @@ Reported=Delayed
 DisabledBecausePayments=Not possible since there are some payments
 CantRemovePaymentWithOneInvoicePaid=Can't remove payment since there is at least one invoice classified paid
 ExpectedToPay=Expected payment
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Paid by this payment
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third pa
 RevenueStamp=Revenue stamp
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Invoice PDF template Crabe. A complete invoice template (recommended Template)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=A bill starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/eu_ES/boxes.lang b/htdocs/langs/eu_ES/boxes.lang
index 634b058f6d40f39c5434322b8c1ee431c6efccfa..8595403dc30264fc25e0890343920207a3b2fcc2 100644
--- a/htdocs/langs/eu_ES/boxes.lang
+++ b/htdocs/langs/eu_ES/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Customers invoices
 ForCustomersOrders=Customers orders
 ForProposals=Proposals
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/eu_ES/categories.lang b/htdocs/langs/eu_ES/categories.lang
index 81c73356c9313f8f6b58ca91fb632a9d894f335b..ccf22bb5003ca9dd4d684ff764aeb69eef7f739b 100644
--- a/htdocs/langs/eu_ES/categories.lang
+++ b/htdocs/langs/eu_ES/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo./Prosp. categories
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/eu_ES/companies.lang b/htdocs/langs/eu_ES/companies.lang
index 589909a7ef04f9245cba66cf6419686d9efe8d2f..1943621e98f68a043cec87392aa444a98ffdf1aa 100644
--- a/htdocs/langs/eu_ES/companies.lang
+++ b/htdocs/langs/eu_ES/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (R.C.)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (R.F.C).
 ProfId2MX=Prof Id 2 (R..P. IMSS)
diff --git a/htdocs/langs/eu_ES/compta.lang b/htdocs/langs/eu_ES/compta.lang
index d73f580cc8b8a84426e53b5a0c38c03dc8511bb6..07b609a17e428435a16e70932ee1763b18a0a7fa 100644
--- a/htdocs/langs/eu_ES/compta.lang
+++ b/htdocs/langs/eu_ES/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Deposit invoices are nor included
 DepositsAreIncluded=- Deposit invoices are included
 LT2ReportByCustomersInInputOutputModeES=Report by third party IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/eu_ES/cron.lang b/htdocs/langs/eu_ES/cron.lang
index 992addfe944891ad86e8b4fe13a7f23c5ee64a16..c3dc167f4f5098150073bb918bfd6bddabf65f08 100644
--- a/htdocs/langs/eu_ES/cron.lang
+++ b/htdocs/langs/eu_ES/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=List of disabled jobs
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Last run
 CronLastOutput=Last run output
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Job
 CronNone=None
-CronDtStart=Start date
-CronDtEnd=End date
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Next execution
 CronDtLastLaunch=Last execution
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=No jobs registered
 CronPriority=Priority
 CronLabel=Description
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
diff --git a/htdocs/langs/eu_ES/deliveries.lang b/htdocs/langs/eu_ES/deliveries.lang
index c513f3e347c28f0df14813efd7136bc833d51445..47e210744704ae9f083d6f1cf6630f7037ad794b 100644
--- a/htdocs/langs/eu_ES/deliveries.lang
+++ b/htdocs/langs/eu_ES/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Are you sure you want to delete delivery receipt <b
 DeliveryMethod=Delivery method
 TrackingNumber=Tracking number
 DeliveryNotValidated=Delivery not validated
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Name and Signature :
 ToAndDate=To___________________________________ on ____/_____/__________
diff --git a/htdocs/langs/eu_ES/holiday.lang b/htdocs/langs/eu_ES/holiday.lang
index 4beedf7021fa5d57420d3598b776c0af633abbed..a15b2d97224d732e1eceb7b84ff0947dd62e1cff 100644
--- a/htdocs/langs/eu_ES/holiday.lang
+++ b/htdocs/langs/eu_ES/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Employee
 DateDebCP=Start date
 DateFinCP=End date
 DateCreateCP=Creation date
@@ -23,7 +22,7 @@ ReviewedByCP=Will be reviewed by
 DescCP=Description
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=You must select an end date greater than the start date.
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Name
-Employee=Employee
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Monthly update
 ManualUpdate=Manual update
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/eu_ES/hrm.lang b/htdocs/langs/eu_ES/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/eu_ES/hrm.lang
+++ b/htdocs/langs/eu_ES/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/eu_ES/interventions.lang b/htdocs/langs/eu_ES/interventions.lang
index 5c08c3063534c07d4eea4a2096402a33cccadd41..cbcba219f1139b397fa8fe54ef5292c2ddf22248 100644
--- a/htdocs/langs/eu_ES/interventions.lang
+++ b/htdocs/langs/eu_ES/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Return numero with format %syymm-nnnn where yy is year,
 PacificNumRefModelError=An intervention card starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
 PrintProductsOnFichinter=Print products on intervention card
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/eu_ES/mails.lang b/htdocs/langs/eu_ES/mails.lang
index f7386beab73c85d2414821056890a8ea885a2a64..1ef40ac0efd201a13d712d51625d5342b40ec03d 100644
--- a/htdocs/langs/eu_ES/mails.lang
+++ b/htdocs/langs/eu_ES/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail sent to %s recipients.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/eu_ES/main.lang b/htdocs/langs/eu_ES/main.lang
index d2ec650dc50d86a5a490648be357af9adc4f0835..be9838981253c7dd374e472b8a769809f2ae18b6 100644
--- a/htdocs/langs/eu_ES/main.lang
+++ b/htdocs/langs/eu_ES/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=Database connection
+NoTemplateDefined=No template defined for this email type
 NoTranslation=No translation
 NoRecordFound=No record found
 NoError=No error
@@ -105,6 +106,7 @@ NotePrivate=Note (private)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr was setup to limit precision of unit prices to <b>%s</b> decimals.
 DoTest=Test
 ToFilter=Iragazia
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Warning, you have at least one element that has exceeded the tolerance delay.
 yes=bai
 Yes=Bai
@@ -228,6 +230,8 @@ Now=Orain
 HourStart=Start hour
 Date=Data
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Date start
 DateEnd=Date end
 DateCreation=Creation date
@@ -608,6 +612,7 @@ TotalMan=Total
 NeverReceived=Never received
 Canceled=Canceled
 YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Color
 Documents=Linked files
 DocumentsNb=Linked files (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=No pictures available yet
 HomeDashboard=Home summary
+Dashboard=Dashboard
 Deductible=Deductible
 from=from
 toward=toward
diff --git a/htdocs/langs/eu_ES/margins.lang b/htdocs/langs/eu_ES/margins.lang
index 7db5ea4892e47d38f81f47f47b7beb00e1177280..27bb4de9fa34bef827f4501268d659670a983767 100644
--- a/htdocs/langs/eu_ES/margins.lang
+++ b/htdocs/langs/eu_ES/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Choose product or service
 StartDate=Start date
 EndDate=End date
 Launch=Start
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=As a product
 UseDiscountAsService=As a service
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/eu_ES/oauth.lang b/htdocs/langs/eu_ES/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/eu_ES/oauth.lang
+++ b/htdocs/langs/eu_ES/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/eu_ES/orders.lang b/htdocs/langs/eu_ES/orders.lang
index 29c2a0b5e21d6c38fe10363675a1bc04bdd5b309..c0bfc3ccce39be48af6c839b61305244d9261c47 100644
--- a/htdocs/langs/eu_ES/orders.lang
+++ b/htdocs/langs/eu_ES/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=No draft orders
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Other orders
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/eu_ES/other.lang b/htdocs/langs/eu_ES/other.lang
index 5fff107fde9aef8b5b102b11516d063214201ce7..c53f32346fe31f4f3ab22fa18f5933e33d5e97e2 100644
--- a/htdocs/langs/eu_ES/other.lang
+++ b/htdocs/langs/eu_ES/other.lang
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=New export
 ##### External sites #####
 ExternalSites=External sites
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/eu_ES/paypal.lang b/htdocs/langs/eu_ES/paypal.lang
index a4204f919825385332e460f03280067caa62dbb4..c6905f2ecc4299f59205dda7302732f0f7e67666 100644
--- a/htdocs/langs/eu_ES/paypal.lang
+++ b/htdocs/langs/eu_ES/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Mode test/sandbox
 PAYPAL_API_USER=API username
 PAYPAL_API_PASSWORD=API password
 PAYPAL_API_SIGNATURE=API signature
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Offer payment "integral" (Credit card+Paypal) or "Paypal" only
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/eu_ES/products.lang b/htdocs/langs/eu_ES/products.lang
index 0faea3691b0bd0e55ac1001d24cb88993cab4347..3926759fccadd1d5d9a3e2b3caf0d17fda789b7f 100644
--- a/htdocs/langs/eu_ES/products.lang
+++ b/htdocs/langs/eu_ES/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Production completed
-ProductsMultiPrice=Product multi-price
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/eu_ES/projects.lang b/htdocs/langs/eu_ES/projects.lang
index 7c94e3eb257ae07dea71f32084407e741fd94b1b..f6f6dd8ecaf09ead7b9c5d088f9ce307da860db9 100644
--- a/htdocs/langs/eu_ES/projects.lang
+++ b/htdocs/langs/eu_ES/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=This view presents all projects (your user permissions grant you permission to view everything).
 MyTasksDesc=This view is limited to projects or tasks you are a contact for (whatever is the type).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=This view presents all projects and tasks you are allowed to read.
 TasksDesc=This view presents all projects and tasks (your user permissions grant you permission to view everything).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Officer project
 LastProjects=Last %s projects
 AllProjects=All projects
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=List of projects
 ShowProject=Show project
 SetProject=Set project
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/eu_ES/propal.lang b/htdocs/langs/eu_ES/propal.lang
index d12d7595f94d6a48a961cc635329e86ed543a7ea..79ae1f1cd50add8ebf9f9f1275481055ed84ce06 100644
--- a/htdocs/langs/eu_ES/propal.lang
+++ b/htdocs/langs/eu_ES/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Last %s modified proposals
 AllPropals=All proposals
 LastProposals=Last proposals
 SearchAProposal=Search a proposal
+NoProposal=No proposal
 ProposalsStatistics=Commercial proposal's statistics
 NumberOfProposalsByMonth=Number by month
 AmountOfProposalsByMonthHT=Amount by month (net of tax)
@@ -62,7 +63,8 @@ DatePropal=Date of proposal
 DateEndPropal=Validity ending date
 DateEndPropalShort=Date end
 ValidityDuration=Validity duration
-CloseAs=Close with status
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Classify billed
 BuildBill=Build invoice
 ErrorPropalNotFound=Propal %s not found
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Default model creation
 DefaultModelPropalToBill=Default template when closing a business proposal (to be invoiced)
 DefaultModelPropalClosed=Default template when closing a business proposal (unbilled)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/eu_ES/salaries.lang b/htdocs/langs/eu_ES/salaries.lang
index 3a5c7b07796b94ac7632bfec1348524449bc55f4..3010d9a5c61e94f4f4d02433bd40bf72954e7908 100644
--- a/htdocs/langs/eu_ES/salaries.lang
+++ b/htdocs/langs/eu_ES/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Soldata
 Salaries=Soldatak
-Employee=Langilea
 NewSalaryPayment=Soldata ordainketa berria
 SalaryPayment=Soldata ordainketa
 SalariesPayments=Soldaten ordainketak
diff --git a/htdocs/langs/eu_ES/sendings.lang b/htdocs/langs/eu_ES/sendings.lang
index fa7da0b00794647c45f8777bbc68fb23a31e1c0e..fb7b9c08868e29621711a9651a94ed955c6b223f 100644
--- a/htdocs/langs/eu_ES/sendings.lang
+++ b/htdocs/langs/eu_ES/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Shipment
 Shipments=Shipments
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Shipments area
 ListOfSendings=List of shipments
 SendingMethod=Shipping method
diff --git a/htdocs/langs/eu_ES/sms.lang b/htdocs/langs/eu_ES/sms.lang
index 0ec0e61a588bedc541daf217d80885bddf755973..70066caac96971420d7c55b09879e200888763c2 100644
--- a/htdocs/langs/eu_ES/sms.lang
+++ b/htdocs/langs/eu_ES/sms.lang
@@ -1,53 +1,54 @@
 # Dolibarr language file - Source file is en_US - sms
-# Sms=Sms
-# SmsSetup=Sms setup
-# SmsDesc=This page allows you to define globals options on SMS features
-# SmsCard=SMS Card
-# AllSms=All SMS campains
-# SmsTargets=Targets
-# SmsRecipients=Targets
-# SmsRecipient=Target
-# SmsTitle=Description
-# SmsFrom=Sender
-# SmsTo=Target
-# SmsTopic=Topic of SMS
-# SmsText=Message
-# SmsMessage=SMS Message
-# ShowSms=Show Sms
-# ListOfSms=List SMS campains
-# NewSms=New SMS campain
-# EditSms=Edit Sms
-# ResetSms=New sending
-# DeleteSms=Delete Sms campain
-# DeleteASms=Remove a Sms campain
-# PreviewSms=Previuw Sms
-# PrepareSms=Prepare Sms
-# CreateSms=Create Sms
-# SmsResult=Result of Sms sending
-# TestSms=Test Sms
-# ValidSms=Validate Sms
-# ApproveSms=Approve Sms
-# SmsStatusDraft=Draft
-# SmsStatusValidated=Validated
-# SmsStatusApproved=Approved
-# SmsStatusSent=Sent
-# SmsStatusSentPartialy=Sent partially
-# SmsStatusSentCompletely=Sent completely
-# SmsStatusError=Error
-# SmsStatusNotSent=Not sent
-# SmsSuccessfulySent=Sms correctly sent (from %s to %s)
-# ErrorSmsRecipientIsEmpty=Number of target is empty
-# WarningNoSmsAdded=No new phone number to add to target list
-# ConfirmValidSms=Do you confirm validation of this campain ?
-# ConfirmResetMailing=Warning, if you make a reinit of Sms campain <b>%s</b>, you will allow to make a mass sending of it a second time. Is it really what you wan to do ?
-# ConfirmDeleteMailing=Do you confirm removing of campain ?
-# NbOfRecipients=Number of targets
-# NbOfUniqueSms=Nb dof unique phone numbers
-# NbOfSms=Nbre of phon numbers
-# ThisIsATestMessage=This is a test message
-# SendSms=Send SMS
-# SmsInfoCharRemain=Nb of remaining characters
-# SmsInfoNumero= (format international ie : +33899701761)
-# DelayBeforeSending=Delay before sending (minutes)
-# SmsNoPossibleRecipientFound=No target available. Check setup of your SMS provider.
+Sms=Sms
+SmsSetup=Sms setup
+SmsDesc=This page allows you to define globals options on SMS features
+SmsCard=SMS Card
+AllSms=All SMS campains
+SmsTargets=Targets
+SmsRecipients=Targets
+SmsRecipient=Target
+SmsTitle=Description
+SmsFrom=Sender
+SmsTo=Target
+SmsTopic=Topic of SMS
+SmsText=Message
+SmsMessage=SMS Message
+ShowSms=Show Sms
+ListOfSms=List SMS campains
+NewSms=New SMS campain
+EditSms=Edit Sms
+ResetSms=New sending
+DeleteSms=Delete Sms campain
+DeleteASms=Remove a Sms campain
+PreviewSms=Previuw Sms
+PrepareSms=Prepare Sms
+CreateSms=Create Sms
+SmsResult=Result of Sms sending
+TestSms=Test Sms
+ValidSms=Validate Sms
+ApproveSms=Approve Sms
+SmsStatusDraft=Draft
+SmsStatusValidated=Validated
+SmsStatusApproved=Approved
+SmsStatusSent=Sent
+SmsStatusSentPartialy=Sent partially
+SmsStatusSentCompletely=Sent completely
+SmsStatusError=Error
+SmsStatusNotSent=Not sent
+SmsSuccessfulySent=Sms correctly sent (from %s to %s)
+ErrorSmsRecipientIsEmpty=Number of target is empty
+WarningNoSmsAdded=No new phone number to add to target list
+ConfirmValidSms=Do you confirm validation of this campain ?
+ConfirmResetMailing=Warning, if you make a reinit of Sms campain <b>%s</b>, you will allow to make a mass sending of it a second time. Is it really what you wan to do ?
+ConfirmDeleteMailing=Do you confirm removing of campain ?
+NbOfRecipients=Number of targets
+NbOfUniqueSms=Nb dof unique phone numbers
+NbOfSms=Nbre of phon numbers
+ThisIsATestMessage=This is a test message
+SendSms=Send SMS
+SmsInfoCharRemain=Nb of remaining characters
+SmsInfoNumero= (format international ie : +33899701761)
+DelayBeforeSending=Delay before sending (minutes)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
+SmsNoPossibleRecipientFound=No target available. Check setup of your SMS provider.
 
diff --git a/htdocs/langs/eu_ES/supplier_proposal.lang b/htdocs/langs/eu_ES/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/eu_ES/supplier_proposal.lang
+++ b/htdocs/langs/eu_ES/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/eu_ES/trips.lang b/htdocs/langs/eu_ES/trips.lang
index ed5930f90f1f9b888e8e93b8f02d4d9c78cd5cf3..fc4ca4783c543d4812d0fcf7eb31e6954f8ad66e 100644
--- a/htdocs/langs/eu_ES/trips.lang
+++ b/htdocs/langs/eu_ES/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Other
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Bazkaria
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/eu_ES/users.lang b/htdocs/langs/eu_ES/users.lang
index 5b85ec80cf7e8a65d24d83c7359f831f9d150669..8a7dfcfe78753c5bda61b8d82208350a9e362652 100644
--- a/htdocs/langs/eu_ES/users.lang
+++ b/htdocs/langs/eu_ES/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Use OpenID to login
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/fa_IR/accountancy.lang b/htdocs/langs/fa_IR/accountancy.lang
index 3d1cd6e01b7657b1bc8caa605d8899edce6cfe7d..321c459b7af24b4fec0ec9843991827a1dbba407 100644
--- a/htdocs/langs/fa_IR/accountancy.lang
+++ b/htdocs/langs/fa_IR/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=انتخاب مدل استخراج
 Modelcsv_normal=استخراج سنتی
 Modelcsv_CEGID=استخراج بصورت کارشناس CEGID
 BackToChartofaccounts=برگردان جدول حساب ها
-Back=برگشت
 
 Definechartofaccounts=تعریف یک جدول از حساب ها
 Selectchartofaccounts=انتخاب یک جدول از حساب ها
@@ -109,10 +108,6 @@ DelBookKeeping=حذف پرونده از دفتر کل
 
 DescSellsJournal=مجله فروش
 DescPurchasesJournal=Purchases journal
-BankJournal=مجله بانک
-DescBankJournal=مجله بانک شامل انواع پرداختها بغیر از پول نقد
-CashJournal=مجله های نقدی
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/fa_IR/admin.lang b/htdocs/langs/fa_IR/admin.lang
index 22bba820cc790519c0cff7c12332cfe3fbf93f1c..fa42a3d32c303ef51ee1c24ada1185e9c60a5f5b 100644
--- a/htdocs/langs/fa_IR/admin.lang
+++ b/htdocs/langs/fa_IR/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=مخفی کردن همه اطلاعات مربوط ب
 HideDescOnPDF=پنهان کردن محصولات توضیحات در تولید PDF
 HideRefOnPDF=پنهان کردن محصولات کد عکس. در تولید PDF
 HideDetailsOnPDF=جزئیات پنهان کردن محصولات خطوط در تولید PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=کتابخانه
 UrlGenerationParameters=پارامترهای به امن آدرس
 SecurityTokenIsUnique=استفاده از یک پارامتر securekey منحصر به فرد برای هر URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=آیا مطمئن هستید که می خواهی
 AllBarcodeReset=همه مقادیر بارکد حذف شده اند
 NoBarcodeNumberingTemplateDefined=بدون قالب بارکد شماره فعال به راه اندازی ماژول بارکد.
 NoRecordWithoutBarcodeDefined=هیچ سابقه ای با ارزش بارکد تعریف شده است.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=کاربران و گروه های
@@ -499,7 +500,7 @@ Module510Desc=مدیریت کارکنان حقوق و پرداخت
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=اطلاعیه ها
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=کمک های مالی
 Module700Desc=مدیریت کمک مالی
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=تاخیر قبل از هشدار دهنده
 DelaysOfToleranceBeforeWarning=تاخیر تحمل قبل از هشدار دهنده
 DelaysOfToleranceDesc=این صفحه نمایش به شما اجازه تعریف تاخیر قابل تحمل قبل از یک هشدار بر روی صفحه نمایش با picto٪ برای هر یک از عناصر در اواخر گزارش شده است.
 Delays_MAIN_DELAY_ACTIONS_TODO=تحمل (در روز) تاخیر قبل از آماده باش در مراسم برنامه ریزی شده هنوز متوجه شدم
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=تحمل (در روز) تاخیر قبل از آماده باش در دستور هنوز پردازش نشده
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=تحمل (در روز) تاخیر قبل از آماده باش در تامین کنندگان سفارشات هنوز پردازش نشده
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=تحمل (در روز) تاخیر قبل از آماده باش در طرح به بستن
@@ -1087,6 +1089,7 @@ PathDirectory=دایرکتوری
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=پیکربندی د لا traduction
 TranslationDesc=انتخاب زبان بر روی صفحه نمایش قابل مشاهده است می تواند اصلاح شود: <br> * در سطح جهانی را از منوی <strong>صفحه اصلی - راه اندازی - نمایش</strong> <br> * برای کاربر تنها از تب <strong>صفحه نمایش کاربر</strong> از کارت کاربر (در ورود در بالای صفحه کلیک کنید).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=مجموع ماژول ها از ویژگی های <b>فعال:٪ s را</b>
 YouMustEnableOneModule=شما باید حداقل قادر می سازد 1 ماژول
 ClassNotFoundIntoPathWarning=کلاس٪ s ​​را به مسیر PHP یافت نشد
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/fa_IR/agenda.lang b/htdocs/langs/fa_IR/agenda.lang
index 69782235e873f2fab4a105f5b9dc2b4aa14d16e3..7b93953f0574c39c3ba9b1f98923c59af82fbb51 100644
--- a/htdocs/langs/fa_IR/agenda.lang
+++ b/htdocs/langs/fa_IR/agenda.lang
@@ -35,7 +35,9 @@ AllActions= همه رویدادها / وظایف
 ViewCal=مشاهده ماه
 ViewDay=نمای روز
 ViewWeek=مشاهده هفته
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= نمایش با فیلترهای از پیش تعریف شده
 AutoActions= پر کردن خودکار
 AgendaAutoActionDesc= تعریف اینجا رویدادی که می خواهید Dolibarr برای ایجاد به طور خودکار یک رویداد در دستور کار. اگر چیزی (به طور پیش فرض) انتخاب شود، فقط اقدامات تجاری خواهد شد در دستور کار گنجانده شده است.
diff --git a/htdocs/langs/fa_IR/bills.lang b/htdocs/langs/fa_IR/bills.lang
index 9443de76b54441e93df3ff8ba64b2306fcfd2671..22449249018e14339f73694d76ec114a58cf2a1d 100644
--- a/htdocs/langs/fa_IR/bills.lang
+++ b/htdocs/langs/fa_IR/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=پرداخت از قبل انجام می شود
 PaymentsBackAlreadyDone=پرداخت به عقب در حال حاضر انجام می شود
 PaymentRule=قانون پرداخت
 PaymentMode=نحوه پرداخت
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=نمایش فاکتور
 ShowInvoiceReplace=نمایش جایگزین فاکتور
 ShowInvoiceAvoir=نمایش توجه داشته باشید اعتباری
 ShowInvoiceDeposit=نمایش فاکتور سپرده
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=نمایش پرداخت
 AlreadyPaid=در حال حاضر پرداخت می شود
 AlreadyPaidBack=در حال حاضر باز پرداخت
@@ -221,6 +224,7 @@ NonPercuRecuperable=غیر قابل بازیابی
 SetConditions=تنظیم شرایط پرداخت
 SetMode=تنظیم حالت پرداخت
 Billed=ثبت شده در صورتحساب یا لیست
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=این مقدار متوقف شده (مشتری گفته
 HelpAbandonOther=این مقدار متوقف شده از آن خطا بود (مشتری اشتباه و یا فاکتور های دیگر به عنوان مثال به جای)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=شناسه پرداخت
+PaymentRef=Payment ref.
 InvoiceId=شناسه فاکتور
 InvoiceRef=کد عکس فاکتور.
 InvoiceDateCreation=تاریخ ایجاد فاکتور
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=فوری
@@ -393,6 +402,7 @@ Reported=به تاخیر افتاده
 DisabledBecausePayments=ممکن نیست زیرا بعضی از پرداخت وجود دارد
 CantRemovePaymentWithOneInvoicePaid=آیا می توانم پرداخت را حذف کنید از حداقل یک فاکتور طبقه بندی شده پرداخت می شود وجود دارد
 ExpectedToPay=پرداخت مورد انتظار
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=پرداخت شده توسط این پرداخت
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=طبقه بندی "پرداخت" تمام یادداشت های اعتباری به طور کامل دوباره پرداخت می شود.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=توجه: این لیست فقط شامل صورت
 RevenueStamp=تمبر درآمد
 YouMustCreateInvoiceFromThird=این گزینه تنها زمانی ایجاد فاکتور از تب "مشتری" از thirdparty
 PDFCrabeDescription=فاکتور PDF قالب Crabe. قالب فاکتور کامل (قالب توصیه می شود)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=تعداد بازگشت با فرمت٪ syymm-NNNN برای فاکتورها استاندارد و٪ syymm-NNNN برای یادداشت های اعتباری که در آن YY سال است، میلی متر در ماه است و NNNN دنباله بدون استراحت و بدون بازگشت به 0 است
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=لایحه با $ شروع میشوند syymm حال حاضر وجود دارد و سازگار با این مدل توالی نیست. آن را حذف و یا تغییر نام آن را به این ماژول را فعال کنید.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/fa_IR/boxes.lang b/htdocs/langs/fa_IR/boxes.lang
index cd330a99fa53588746443192050007819d24bb5c..16f27544ce6ba1ebad003f5dddd44bd2a7095ee9 100644
--- a/htdocs/langs/fa_IR/boxes.lang
+++ b/htdocs/langs/fa_IR/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=مشتریان فاکتورها
 ForCustomersOrders=سفارشات مشتریان
 ForProposals=پیشنهادات
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/fa_IR/categories.lang b/htdocs/langs/fa_IR/categories.lang
index 9149199da878ab37f157094fc4d32fef41d23995..61b0d928ead043c62a377331ba77f9712f65ee83 100644
--- a/htdocs/langs/fa_IR/categories.lang
+++ b/htdocs/langs/fa_IR/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=مشتریان مشخصات. / Prosp. مجموعه ها
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/fa_IR/companies.lang b/htdocs/langs/fa_IR/companies.lang
index 814a265bb555c8c40491272d3f97ffeb08f0a25f..26f5f6cb68537906f58ef909326274928f1cf4ac 100644
--- a/htdocs/langs/fa_IR/companies.lang
+++ b/htdocs/langs/fa_IR/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=استاد آیدی. 1 (RC)
 ProfId2MA=استاد آیدی. 2 (Patente)
 ProfId3MA=استاد آیدی. 3 (IF)
 ProfId4MA=استاد آیدی. 4 (CNSS)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=پروفسور شناسه 1 (RFC).
 ProfId2MX=پروفسور کد 2 (R..P. IMSS)
diff --git a/htdocs/langs/fa_IR/compta.lang b/htdocs/langs/fa_IR/compta.lang
index 5101f33e2850ae44158c97f919500e3d33093fd9..a6ea0b5857488da8d3767129cc400db0c9f5e4c4 100644
--- a/htdocs/langs/fa_IR/compta.lang
+++ b/htdocs/langs/fa_IR/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- صورت حساب های سپرده ها و نه شام
 DepositsAreIncluded=- صورت حساب های سپرده را شامل می شوند
 LT2ReportByCustomersInInputOutputModeES=گزارش شده توسط شخص ثالث IRPF
 LT1ReportByCustomersInInputOutputModeES=گزارش شده توسط شخص ثالث RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=گزارش های مالیات بر ارزش افزوده مشتری جمع آوری و پرداخت
 VATReportByCustomersInDueDebtMode=گزارش های مالیات بر ارزش افزوده مشتری جمع آوری و پرداخت
 VATReportByQuartersInInputOutputMode=گزارش های نرخ مالیات بر ارزش افزوده جمع آوری و پرداخت
diff --git a/htdocs/langs/fa_IR/cron.lang b/htdocs/langs/fa_IR/cron.lang
index bdd36eddb746a5f7a62e656027d2b73946ba8afd..9ebc376be38d53e5e38d7a5b7d2612e18286f4ce 100644
--- a/htdocs/langs/fa_IR/cron.lang
+++ b/htdocs/langs/fa_IR/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=شغل برنامه ریزی
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=لیست شغل ها غیر فعال
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=تاریخ و زمان آخرین اجرا
 CronLastOutput=تاریخ و زمان آخرین خروجی اجرا
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=کار
 CronNone=هیچ یک
-CronDtStart=تاریخ شروع
-CronDtEnd=تاریخ پایان
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=اعدام بعدی
 CronDtLastLaunch=تاریخ و زمان آخرین اعدام
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=بدون شغل ثبت نام
 CronPriority=اولویت
 CronLabel=توصیف
 CronNbRun=نیوبیوم. راه اندازی
+CronMaxRun=Max nb. launch
 CronEach=هر
 JobFinished=کار راه اندازی به پایان رسید و
 #Page card
diff --git a/htdocs/langs/fa_IR/deliveries.lang b/htdocs/langs/fa_IR/deliveries.lang
index 82602e847025ae27d674578ca7da1363f68a116f..ed843992c20b9e0a4b959549443cda0cccd4d104 100644
--- a/htdocs/langs/fa_IR/deliveries.lang
+++ b/htdocs/langs/fa_IR/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=آیا مطمئن هستید که می خواهید
 DeliveryMethod=روش تحویل
 TrackingNumber=تعداد پیگیری
 DeliveryNotValidated=تحویل اعتبار نیست
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=نام و امضا:
 ToAndDate=To___________________________________ در ____ / ____ / __________
diff --git a/htdocs/langs/fa_IR/holiday.lang b/htdocs/langs/fa_IR/holiday.lang
index fac8de4ef16b5dac1d961c693b4921f1d498ab6c..042248d37149e454dcc35714107a63a9b17c897e 100644
--- a/htdocs/langs/fa_IR/holiday.lang
+++ b/htdocs/langs/fa_IR/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=کارمند
 DateDebCP=تاریخ شروع
 DateFinCP=تاریخ پایان
 DateCreateCP=تاریخ ایجاد
@@ -23,7 +22,7 @@ ReviewedByCP=خواهد شد بررسی
 DescCP=توصیف
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=شما باید تاریخ پایان بیشتر از تاریخ شروع انتخاب کنید.
@@ -79,9 +78,9 @@ PrevSoldeCP=موجودی قبلی
 NewSoldeCP=موجودی جدید
 alreadyCPexist=A leave request has already been done on this period.
 UserName=نام
-Employee=کارمند
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=به روز رسانی ماهانه
 ManualUpdate=دستی به روز رسانی
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/fa_IR/hrm.lang b/htdocs/langs/fa_IR/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/fa_IR/hrm.lang
+++ b/htdocs/langs/fa_IR/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/fa_IR/interventions.lang b/htdocs/langs/fa_IR/interventions.lang
index 8f8cdb95decbc7687af33f934cfe00ffe0c44641..d99289e1fd234770f85fb75ee0a6319ab1052da7 100644
--- a/htdocs/langs/fa_IR/interventions.lang
+++ b/htdocs/langs/fa_IR/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=بازگشت numero با فرمت٪ syymm-NNNN که در
 PacificNumRefModelError=کارت مداخله با $ شروع میشوند syymm حال حاضر وجود دارد و سازگار با این مدل توالی نیست. آن را حذف و یا تغییر نام آن را به این ماژول را فعال کنید.
 PrintProductsOnFichinter=محصول چاپ بر روی کارت مداخله
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/fa_IR/mails.lang b/htdocs/langs/fa_IR/mails.lang
index 4c91483fa287a4f9f555ae9d1061bc8fcea26231..3021fae1df3cb2d59edf405106d8239a78363da5 100644
--- a/htdocs/langs/fa_IR/mails.lang
+++ b/htdocs/langs/fa_IR/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=ارسال به٪ s را دریافت کنندگان ارسال می شود.
 XTargetsAdded=<b>٪ s را</b> دریافت کنندگان اضافه به لیست هدف
 EachInvoiceWillBeAttachedToEmail=یک سند با استفاده از پیش فرض فاکتور قالب سند ایجاد شده و متصل به هر یک از ایمیل.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=یادآوری از فاکتور از٪ s (٪ بازدید کنندگان)
 SendRemind=ارسال یادآور شده توسط ایمیل
 RemindSent=٪ s را یادآور (بازدید کنندگان) ارسال می شود
diff --git a/htdocs/langs/fa_IR/main.lang b/htdocs/langs/fa_IR/main.lang
index a46e097c8a35babef4a82078cb764cd98bed6541..65a54f0d790ad49fe9a14a19bd8503a66940ed0a 100644
--- a/htdocs/langs/fa_IR/main.lang
+++ b/htdocs/langs/fa_IR/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d %Y %I:%M %p
 FormatDateHourText=%B %d %Y %H:%M %p
 DatabaseConnection=اتصال به پایگاه داده
+NoTemplateDefined=No template defined for this email type
 NoTranslation=بدون ترجمه
 NoRecordFound=هیچ سابقه ای پیدا نشد
 NoError=بدون خطا
@@ -105,6 +106,7 @@ NotePrivate=توجه داشته باشید (خصوصی)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr راه اندازی به دقت محدود از قیمت واحد <b>به٪ s</b> اعشار بود.
 DoTest=تست
 ToFilter=صافی
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=اخطار، شما باید حداقل یک عنصر است که بیش از تأخیر تحمل.
 yes=بله
 Yes=بله
@@ -228,6 +230,8 @@ Now=اکنون
 HourStart=Start hour
 Date=تاریخ
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=تاریخ شروع
 DateEnd=تاریخ پایان
 DateCreation=تاریخ ایجاد
@@ -608,6 +612,7 @@ TotalMan=کل
 NeverReceived=هرگز دریافت
 Canceled=لغو شد
 YouCanChangeValuesForThisListFromDictionarySetup=شما می توانید مقادیر را برای این لیست را از تنظیمات منو را تغییر دهید - فرهنگ لغت
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=رنگ
 Documents=فایل های مرتبط
 DocumentsNb=فایل های لینک شده (٪ بازدید کنندگان)
@@ -695,6 +700,7 @@ Test=تست
 Element=عنصر
 NoPhotoYet=بدون ورود دست هنوز
 HomeDashboard=خلاصه صفحه اصلی
+Dashboard=Dashboard
 Deductible=مالیات پذیر
 from=از
 toward=نسبت به
diff --git a/htdocs/langs/fa_IR/margins.lang b/htdocs/langs/fa_IR/margins.lang
index 176c477189be9157b52a4f481268f1c25316f729..796c7129928df47937c25a70e9ebbfd50930730c 100644
--- a/htdocs/langs/fa_IR/margins.lang
+++ b/htdocs/langs/fa_IR/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=انتخاب محصول و یا خدمات
 StartDate=تاریخ شروع
 EndDate=تاریخ پایان
 Launch=شروع
-ForceBuyingPriceIfNull=نیروی قیمت خرید اگر تهی
-ForceBuyingPriceIfNullDetails=اگر "ON"، حاشیه صفر خواهد بود در خط (خرید قیمت = قیمت فروش)، در غیر این صورت ("OFF")، مرگ به قیمت فروش برابر خواهد بود با (قیمت خرید = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=روش مارجین برای تخفیف جهانی
 UseDiscountAsProduct=به عنوان یک محصول
 UseDiscountAsService=به عنوان یک سرویس
@@ -35,8 +35,9 @@ MargeBrute=حاشیه خام
 MargeNette=حاشیه خالص
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=حاشیه خام: فروش قیمت - خرید قیمت <br/> حاشیه خالص: فروش قیمت - قیمت تمام شده
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=قیمت تمام شده
 BuyingCost=قیمت تمام شده
 UnitCharges=اتهامات واحد
diff --git a/htdocs/langs/fa_IR/oauth.lang b/htdocs/langs/fa_IR/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/fa_IR/oauth.lang
+++ b/htdocs/langs/fa_IR/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/fa_IR/orders.lang b/htdocs/langs/fa_IR/orders.lang
index 33fda1408bf12f6530e1041f8772ec1de39e0760..c58a758c474ab1672a5a55a3ffa6216e69913867 100644
--- a/htdocs/langs/fa_IR/orders.lang
+++ b/htdocs/langs/fa_IR/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=بدون پیش نویس سفارشات
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=دیگر سفارشات
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/fa_IR/other.lang b/htdocs/langs/fa_IR/other.lang
index e17ce0cda2c61dae38a51009e27f3171b50ff739..99017096dc41509290a46256278fe7b2d6563763 100644
--- a/htdocs/langs/fa_IR/other.lang
+++ b/htdocs/langs/fa_IR/other.lang
@@ -238,3 +238,8 @@ ToExport=صادرات
 NewExport=صادرات جدید
 ##### External sites #####
 ExternalSites=سایت های خارجی
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/fa_IR/paypal.lang b/htdocs/langs/fa_IR/paypal.lang
index 0befbcf10e2a6a3b0e6af9fd72d9dca55f7762c4..b5927c2425700a546122150269719d9e14c7b9a6 100644
--- a/htdocs/langs/fa_IR/paypal.lang
+++ b/htdocs/langs/fa_IR/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=تست حالت / گودال ماسهبازی
 PAYPAL_API_USER=نام کاربری API
 PAYPAL_API_PASSWORD=رمز عبور API
 PAYPAL_API_SIGNATURE=امضا API
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=ارائه پرداخت "جدایی ناپذیر" (کارت اعتباری + پی پال) و یا "پی پال" تنها
 PaypalModeIntegral=انتگرال
 PaypalModeOnlyPaypal=پی پال تنها
diff --git a/htdocs/langs/fa_IR/products.lang b/htdocs/langs/fa_IR/products.lang
index 9635edd1efa2832446f7c13dcaa9c99d13c8efaf..8aa566851f20b846643fed54d20e84aaa04c1d16 100644
--- a/htdocs/langs/fa_IR/products.lang
+++ b/htdocs/langs/fa_IR/products.lang
@@ -252,7 +252,7 @@ UnitPmp=خالص واحد VWAP
 CostPmpHT=خالص VWAP کل
 ProductUsedForBuild=خودکار مصرف شده توسط تولید
 ProductBuilded=تولید کامل
-ProductsMultiPrice=محصولات چند قیمت
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/fa_IR/projects.lang b/htdocs/langs/fa_IR/projects.lang
index 606ec332c76cf558af047d1cd957f85aa244a26d..cc1032675b91cc5aca10c88531604b8e122c37e0 100644
--- a/htdocs/langs/fa_IR/projects.lang
+++ b/htdocs/langs/fa_IR/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=این دیدگاه ارائه تمام پروژه (مجوز دسترسی خود را به شما عطا اجازه دسترسی به همه چیز).
 MyTasksDesc=این دیدگاه به پروژه ها و یا کارهای شما تماس برای (هر چه باشد نوع) می باشد محدود است.
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=این دیدگاه ارائه تمام پروژه ها و کارهای شما مجاز به خواندن.
 TasksDesc=این دیدگاه ارائه تمام پروژه ها و وظایف (مجوز دسترسی خود را به شما عطا اجازه دسترسی به همه چیز).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=پروژه افسر
 LastProjects=پروژه تاریخ و زمان آخرین٪ بازدید کنندگان
 AllProjects=همه پروژه ها
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=لیست پروژه ها
 ShowProject=نمایش پروژه
 SetProject=تنظیم پروژه
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=وظیفه٪ s تغییر
 TaskDeletedInDolibarr=وظیفه٪ s را حذف
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/fa_IR/propal.lang b/htdocs/langs/fa_IR/propal.lang
index 1a22dda5cab24e05e6ae949d6640999aa9741e69..121583377d48adeb99c1d525a6eedc4c4d7703ee 100644
--- a/htdocs/langs/fa_IR/propal.lang
+++ b/htdocs/langs/fa_IR/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=تاریخ و زمان آخرین٪ s را پیشنهاد
 AllPropals=تمام طرح های پیشنهادی
 LastProposals=آخرین پیشنهادات
 SearchAProposal=جستجوی یک پیشنهاد
+NoProposal=No proposal
 ProposalsStatistics=آمار طرح های تجاری
 NumberOfProposalsByMonth=شماره ماه
 AmountOfProposalsByMonthHT=مقدار در ماه (خالص از مالیات)
@@ -62,7 +63,8 @@ DatePropal=تاریخ پیشنهاد
 DateEndPropal=اعتبار تاریخ پایان
 DateEndPropalShort=تاریخ پایان
 ValidityDuration=مدت اعتبار
-CloseAs=نزدیک با وضعیت
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=طبقه بندی صورتحساب
 BuildBill=ساخت فاکتور
 ErrorPropalNotFound=Propal٪ s را یافت نشد
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=ایجاد مدل پیش فرض
 DefaultModelPropalToBill=قالب پیش فرض هنگام بستن یک طرح کسب و کار (به صورتحساب می شود)
 DefaultModelPropalClosed=قالب پیش فرض هنگام بستن یک طرح کسب و کار (unbilled)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/fa_IR/salaries.lang b/htdocs/langs/fa_IR/salaries.lang
index 004ce47f74c74c97ac60682522e13abc071074c2..bd483e0f21a31e439466fcc9c7d073bdd5bf21d7 100644
--- a/htdocs/langs/fa_IR/salaries.lang
+++ b/htdocs/langs/fa_IR/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=حقوق
 Salaries=حقوق
-Employee=کارمند
 NewSalaryPayment=پرداخت حقوق و دستمزد جدید
 SalaryPayment=پرداخت حقوق و دستمزد
 SalariesPayments=حقوق پرداخت
diff --git a/htdocs/langs/fa_IR/sendings.lang b/htdocs/langs/fa_IR/sendings.lang
index 80c18de03b48647083a0cab60e7c42ea856182fa..1cc7e3bd237cbae44939effe2617911816807dbd 100644
--- a/htdocs/langs/fa_IR/sendings.lang
+++ b/htdocs/langs/fa_IR/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=حمل
 Shipments=حمل و نقل
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=منطقه حمل و نقل
 ListOfSendings=فهرست محموله
 SendingMethod=روش حمل و نقل
diff --git a/htdocs/langs/fa_IR/sms.lang b/htdocs/langs/fa_IR/sms.lang
index c4a3f0c0803280053f3caaf17125a58ddfaf3ed9..27f6a25339567916a1465b4e759ba3ad40eeb954 100644
--- a/htdocs/langs/fa_IR/sms.lang
+++ b/htdocs/langs/fa_IR/sms.lang
@@ -35,7 +35,7 @@ SmsStatusSentPartialy=ارسال شده تا حدی
 SmsStatusSentCompletely=به طور کامل ارسال شد
 SmsStatusError=خطا
 SmsStatusNotSent=ارسال نشده
-SmsSuccessfulySent=اس ام اس به درستی ارسال می شود (از%s به%s)
+SmsSuccessfulySent=اس ام اس به درستی ارسال می شود (از٪ s به٪ s)
 ErrorSmsRecipientIsEmpty=تعداد مورد نظر خالی است
 WarningNoSmsAdded=بدون شماره تلفن جدید برای اضافه کردن به لیست مورد هدف قرار دهند
 ConfirmValidSms=آیا اعتبار این campain از تایید شما؟
@@ -49,5 +49,6 @@ SendSms=ارسال SMS
 SmsInfoCharRemain=Nb و از حرف باقی مانده است
 SmsInfoNumero= (فرمت یعنی بین المللی: 33899701761)
 DelayBeforeSending=تاخیری پیش از ارسال (دقیقه)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=بدون هدف در دسترس است. راه اندازی ارائه دهنده SMS خود را چک کنید.
 
diff --git a/htdocs/langs/fa_IR/supplier_proposal.lang b/htdocs/langs/fa_IR/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/fa_IR/supplier_proposal.lang
+++ b/htdocs/langs/fa_IR/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/fa_IR/trips.lang b/htdocs/langs/fa_IR/trips.lang
index 974da65a061c9afe505ddf534271cc53bf8fd149..db2ee23303bf1814977bc562fe92c1a46dbdf38f 100644
--- a/htdocs/langs/fa_IR/trips.lang
+++ b/htdocs/langs/fa_IR/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=دیگر
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=ناهار
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/fa_IR/users.lang b/htdocs/langs/fa_IR/users.lang
index 357205be6e41efd5ed053f2436d7758e9591ecf7..413cae2b6fe52198e164972e0b037475ff2c650d 100644
--- a/htdocs/langs/fa_IR/users.lang
+++ b/htdocs/langs/fa_IR/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=URL OpenID
 LoginUsingOpenID=استفاده از حساب کاربری برای ورود به سایت
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/fi_FI/accountancy.lang b/htdocs/langs/fi_FI/accountancy.lang
index 5ee7e8de9f54f863782f095d33e3d4f43b2e78d2..87e3200f57c3544cb69c4a4d2a00867fbc5af632 100644
--- a/htdocs/langs/fi_FI/accountancy.lang
+++ b/htdocs/langs/fi_FI/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Return
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sells journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/fi_FI/admin.lang b/htdocs/langs/fi_FI/admin.lang
index 61b34e781fc4f718b1742d2646480f944d0bd053..e6b8a366a6e0cdf79a432e96470d8e4d3e88d5ce 100644
--- a/htdocs/langs/fi_FI/admin.lang
+++ b/htdocs/langs/fi_FI/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Piilota kaikki tiedot, jotka liittyvät arvonlisäver
 HideDescOnPDF=Hide products description on generated PDF
 HideRefOnPDF=Hide products ref. on generated PDF
 HideDetailsOnPDF=Hide products lines details on generated PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Kirjasto
 UrlGenerationParameters=Parametrit turvata URL
 SecurityTokenIsUnique=Käytä ainutlaatuinen securekey parametri jokaiselle URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Käyttäjät & ryhmät
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Ilmoitukset
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Lahjoitukset
 Module700Desc=Lahjoitukset hallinto
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Viivästykset ennen varoitus
 DelaysOfToleranceBeforeWarning=Suvaitsevaisuus viivästyksellä ennen varoitus
 DelaysOfToleranceDesc=Tässä näytössä voidaan määrittää siedetty viivästyksiä, ennen kuin hälytys on raportoitu näytön kanssa picto %s kunkin myöhään elementti.
 Delays_MAIN_DELAY_ACTIONS_TODO=Viive toleranssi (päivinä) ennen varoituskynnysten suunnitelluista toimista ei vielä ole
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Viive toleranssi (päivinä) ennen varoituskynnysten tilauksissa ei ole vielä tehty
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Viive toleranssi (päivinä) ennen ilmoituksen toimittajille tilauksia ei ole vielä käsitelty
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Viive toleranssi (päivinä) ennen varoituskynnysten ehdotuksista lopettaa
@@ -1087,6 +1089,7 @@ PathDirectory=Directory
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/fi_FI/agenda.lang b/htdocs/langs/fi_FI/agenda.lang
index 84232e67752c77d9c05755078d1f8b65e81613c7..36136bcb010f6c22df1548a4ebb059a6c94d2d61 100644
--- a/htdocs/langs/fi_FI/agenda.lang
+++ b/htdocs/langs/fi_FI/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Toutes les actions / tehtävät
 ViewCal=Näytä kalenteri
 ViewDay=Päivä näkymä
 ViewWeek=Viikkonäkymä
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Näytä ennalta suodattimet
 AutoActions= Automaattinen täyttö Esityslistan
 AgendaAutoActionDesc= Määritä tässä tapahtumia joihin haluat Dolibarr luoda automaattisesti toimia asialistalla. Jos mitään ei tarkastettu (oletuksena), vain ruumiillisen toimien on oltava mukana esityslistalla.
diff --git a/htdocs/langs/fi_FI/bills.lang b/htdocs/langs/fi_FI/bills.lang
index fbcad93835ec3c5de2e3f5e79b0b5e27fada035e..9b76e19c30408ac175aa81bfe2f2a66eb5fa910b 100644
--- a/htdocs/langs/fi_FI/bills.lang
+++ b/htdocs/langs/fi_FI/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Maksut jo
 PaymentsBackAlreadyDone=Payments back already done
 PaymentRule=Maksu sääntö
 PaymentMode=Maksutapa
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=Näytä lasku
 ShowInvoiceReplace=Näytä korvaa lasku
 ShowInvoiceAvoir=Näytä menoilmoitus
 ShowInvoiceDeposit=Näytä tallettaa laskun
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Näytä maksu
 AlreadyPaid=Jo maksanut
 AlreadyPaidBack=Already paid back
@@ -221,6 +224,7 @@ NonPercuRecuperable=Ei-korvattaviksi
 SetConditions=Aseta maksuehdot
 SetMode=Aseta maksun tila
 Billed=Laskutetun
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Tämä määrä on luovuttu (asiakas sanoi olla huono asi
 HelpAbandonOther=Tämä määrä on luovuttu, koska se oli virhe (väärä asiakas-tai laskunumeroa korvata toinen esimerkki)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Maksu-id
+PaymentRef=Payment ref.
 InvoiceId=Laskun numero
 InvoiceRef=Laskun ref.
 InvoiceDateCreation=Laskun luontipäivämäärä
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Varoitus, yksi tai useampi lasku jo olemassa
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Välittömät
@@ -393,6 +402,7 @@ Reported=Myöhässä
 DisabledBecausePayments=Ole mahdollista, koska on olemassa joitakin maksuja
 CantRemovePaymentWithOneInvoicePaid=Ei voi poistaa maksua koska siellä on ainakin laskulla luokiteltu maksanut
 ExpectedToPay=Odotettu maksu
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Maksanut tämän maksun
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third pa
 RevenueStamp=Revenue stamp
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Laskun malli Crabe. Täydellinen laskun malli (Tuki alv vaihtoehto, alennukset, maksut edellytykset, logo, jne. ..)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=A bill alkaen $ syymm jo olemassa, ja ei ole yhteensopiva tämän mallin järjestyksessä. Poistaa sen tai nimetä sen aktivoida tämän moduulin.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/fi_FI/boxes.lang b/htdocs/langs/fi_FI/boxes.lang
index 37e9458e1795dc26e4daf4ab61c5be3bd55ce6e9..fb8c77a6750606eb7920fee2c2e8caef3aae1981 100644
--- a/htdocs/langs/fi_FI/boxes.lang
+++ b/htdocs/langs/fi_FI/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Asiakkaiden laskut
 ForCustomersOrders=Asiakkaiden tilaukset
 ForProposals=Ehdotukset
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/fi_FI/categories.lang b/htdocs/langs/fi_FI/categories.lang
index c96a3f22e14c1e8e45768e9111d4dad5ea6e2a1b..c865b4ed576659160464c242224789d0be3c31b8 100644
--- a/htdocs/langs/fi_FI/categories.lang
+++ b/htdocs/langs/fi_FI/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo. / prosp. luokat
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/fi_FI/companies.lang b/htdocs/langs/fi_FI/companies.lang
index a882be86e0858e0302c9f13198224b92aa76fdf3..9419fd576b23a0902a5fd5aaa7fbd0cbfd507288 100644
--- a/htdocs/langs/fi_FI/companies.lang
+++ b/htdocs/langs/fi_FI/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (RC)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (IF)
 ProfId4MA=Id prof. 4 (CNSS)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Professori Id 1 (RFC).
 ProfId2MX=Professori Id 2 (R. P. IMSS)
diff --git a/htdocs/langs/fi_FI/compta.lang b/htdocs/langs/fi_FI/compta.lang
index aab115886654bf7f87065a05fcc3c1859c81abbf..f8700af6c1d76d4b068ae1c39773269a957f18e8 100644
--- a/htdocs/langs/fi_FI/compta.lang
+++ b/htdocs/langs/fi_FI/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Talletus laskut eivät sisälly
 DepositsAreIncluded=- Talletus laskut kuuluvat
 LT2ReportByCustomersInInputOutputModeES=Raportti kolmannen osapuolen IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/fi_FI/cron.lang b/htdocs/langs/fi_FI/cron.lang
index 381ac00b7a59eec0e078cd1ffdfb9cf0be99992d..b3bfcd31c46a8e41939f929e28c00bfc405eae14 100644
--- a/htdocs/langs/fi_FI/cron.lang
+++ b/htdocs/langs/fi_FI/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=Hylättyjen tehtävien lista
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Viimeinen ajo
 CronLastOutput=Viimeisen ajon tulostus
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Job
 CronNone=Ei mitään
-CronDtStart=Aloituspäivämäärä
-CronDtEnd=Lopetuspäivä
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Next execution
 CronDtLastLaunch=Last execution
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=No jobs registered
 CronPriority=Prioriteetti
 CronLabel=Kuvaus
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
diff --git a/htdocs/langs/fi_FI/deliveries.lang b/htdocs/langs/fi_FI/deliveries.lang
index 2fddfa6cf1c8fa29327e92d9ef6692dd146643b8..6421da77ef1cf2115cd66800a605cf15eeee031e 100644
--- a/htdocs/langs/fi_FI/deliveries.lang
+++ b/htdocs/langs/fi_FI/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Oletko varma että haluat poistaa toimituskuitti <b
 DeliveryMethod=Toimitustapa
 TrackingNumber=Seurantanumero
 DeliveryNotValidated=Toimitus ei validoitu
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Nimi ja allekirjoitus:
 ToAndDate=To___________________________________ on ____ / _____ / __________
diff --git a/htdocs/langs/fi_FI/holiday.lang b/htdocs/langs/fi_FI/holiday.lang
index 618d6fba9ff33f757a6035dbbed22ec9d96d82d0..6cdc0f5ba6761b426a5e3d7bf15b97b9e3b29305 100644
--- a/htdocs/langs/fi_FI/holiday.lang
+++ b/htdocs/langs/fi_FI/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Työntekijä
 DateDebCP=Aloituspäivämäärä
 DateFinCP=Lopetuspäivä
 DateCreateCP=Luontipäivämäärä
@@ -23,7 +22,7 @@ ReviewedByCP=Will be reviewed by
 DescCP=Kuvaus
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=You must select an end date greater than the start date.
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Nimi
-Employee=Employee
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Monthly update
 ManualUpdate=Manual update
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/fi_FI/hrm.lang b/htdocs/langs/fi_FI/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/fi_FI/hrm.lang
+++ b/htdocs/langs/fi_FI/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/fi_FI/interventions.lang b/htdocs/langs/fi_FI/interventions.lang
index 28c9bb71fcf0dd06f4f77b3bc2ba4b4b8f548e9f..4d95d872ef3cd07795d0fe9724d0a5ece54ef772 100644
--- a/htdocs/langs/fi_FI/interventions.lang
+++ b/htdocs/langs/fi_FI/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Paluu numero on muodossa %syymm-nnnn jossa VV on vuosi,
 PacificNumRefModelError=Interventiokynnyksen kortin alkaen $ syymm jo olemassa, ja ei ole yhteensopiva tämän mallin järjestyksessä. Poistaa sen tai nimetä sen aktivoida tämän moduulin.
 PrintProductsOnFichinter=Print products on intervention card
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/fi_FI/mails.lang b/htdocs/langs/fi_FI/mails.lang
index d36bdbcc84761bdcf51c2b343d230270bdfe4db9..ee19e27d4d3ab2be9b1e9dab22d47cd39e2a9c36 100644
--- a/htdocs/langs/fi_FI/mails.lang
+++ b/htdocs/langs/fi_FI/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail sent to %s recipients.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/fi_FI/main.lang b/htdocs/langs/fi_FI/main.lang
index b63a4c1808aa86fc739964efe9237c7f2b821bba..677e288f9e560323e40c737548eaca45f460d266 100644
--- a/htdocs/langs/fi_FI/main.lang
+++ b/htdocs/langs/fi_FI/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%d. %b %Y %H.%M
 FormatDateHourText=%d. %B %Y %H.%M
 DatabaseConnection=Tietokantayhteys
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Ei käännöstä
 NoRecordFound=Tietueita ei löytynyt
 NoError=Ei virheitä
@@ -105,6 +106,7 @@ NotePrivate=Huomautus (yksityinen)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr oli asetettu raja tarkkuus <b>yksikköhinnat %s</b> desimaalit.
 DoTest=Testi
 ToFilter=Suodata
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Varoitus, sinulla on ainakin yksi elementti, joka on ylittänyt toleranssi viivytystä.
 yes=kyllä
 Yes=Kyllä
@@ -228,6 +230,8 @@ Now=Nyt
 HourStart=Start hour
 Date=Päivä
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Alkaen
 DateEnd=Päättyen
 DateCreation=Luotu
@@ -608,6 +612,7 @@ TotalMan=Yhteensä
 NeverReceived=Ei ole saapunut
 Canceled=Peruutettu
 YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Väri
 Documents=Linkitettyjä tiedostoja
 DocumentsNb=Linkitetyt tiedostot (%s)
@@ -695,6 +700,7 @@ Test=Testi
 Element=Osa
 NoPhotoYet=Ei kuvaa saatavilla vielä
 HomeDashboard=Kotiyhteenveto
+Dashboard=Dashboard
 Deductible=Deductible
 from=from
 toward=eteenpäin
diff --git a/htdocs/langs/fi_FI/margins.lang b/htdocs/langs/fi_FI/margins.lang
index 9c81c1b2bf51af8c9bb34efc096f9d566d760d44..c778925a9b57bf170dd1c8990dfc8e6112427ef3 100644
--- a/htdocs/langs/fi_FI/margins.lang
+++ b/htdocs/langs/fi_FI/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Valitse tuote tai palvelu
 StartDate=Aloituspäivämäärä
 EndDate=Lopetuspäivä
 Launch=Alku
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=As a product
 UseDiscountAsService=As a service
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/fi_FI/oauth.lang b/htdocs/langs/fi_FI/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/fi_FI/oauth.lang
+++ b/htdocs/langs/fi_FI/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/fi_FI/orders.lang b/htdocs/langs/fi_FI/orders.lang
index d71335bb37545304847663cd8ecab0fc78bf3c8c..b00e1b8fa8d0bcbd6245b5876359a9c92ff2c6da 100644
--- a/htdocs/langs/fi_FI/orders.lang
+++ b/htdocs/langs/fi_FI/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=No draft orders
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Muut tilaukset
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/fi_FI/other.lang b/htdocs/langs/fi_FI/other.lang
index e54e39fbdc27e01673b604276fb8b3db3fcb0769..306b95dc1eebb729eaea23f52a5cbd31a64b7053 100644
--- a/htdocs/langs/fi_FI/other.lang
+++ b/htdocs/langs/fi_FI/other.lang
@@ -238,3 +238,8 @@ ToExport=Vienti
 NewExport=Uusia vientimahdollisuuksia
 ##### External sites #####
 ExternalSites=Ulkoiset sivustot
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/fi_FI/paypal.lang b/htdocs/langs/fi_FI/paypal.lang
index 43fa17000656c974cf01e7f0e46f8e885f69c267..d0d7437c439750aba9923d9311a88c2db89da249 100644
--- a/htdocs/langs/fi_FI/paypal.lang
+++ b/htdocs/langs/fi_FI/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Tila testi / hiekkalaatikko
 PAYPAL_API_USER=API käyttäjätunnus
 PAYPAL_API_PASSWORD=API salasana
 PAYPAL_API_SIGNATURE=API allekirjoitus
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Voit maksaa &quot;kiinteä&quot; (luottokortti + Paypal) tai &quot;PayPal&quot; vain
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/fi_FI/products.lang b/htdocs/langs/fi_FI/products.lang
index c9f7861c3d13aa000b4b2426a363a2e73ab78114..78df9b99b94efd9dead8acef077c74c9af79ae87 100644
--- a/htdocs/langs/fi_FI/products.lang
+++ b/htdocs/langs/fi_FI/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Production completed
-ProductsMultiPrice=Product multi-price
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/fi_FI/projects.lang b/htdocs/langs/fi_FI/projects.lang
index 7b848a54b9fdb4f3a79fe0bb6145e36b1f12174b..668517ff23ed26ed2189fb55200f4ef2568dfd67 100644
--- a/htdocs/langs/fi_FI/projects.lang
+++ b/htdocs/langs/fi_FI/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=Tämä näkemys esitetään kaikki hankkeet (käyttäjäoikeuksien antaa sinulle luvan katsella kaikkea).
 MyTasksDesc=Tämä näkemys on vain hankkeisiin tai tehtäviä olet yhteyshenkilö (mikä on tyyppi).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Tämä näkemys esitetään kaikki hankkeet ja tehtävät sinulla voi lukea.
 TasksDesc=Tämä näkemys esitetään kaikki hankkeet ja tehtävät (käyttäjäoikeuksien antaa sinulle luvan katsella kaikkea).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Officer hanke
 LastProjects=Viimeisin %s hankkeiden
 AllProjects=Kaikki hankkeet
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Luettelo hankkeista
 ShowProject=Näytä hankkeen
 SetProject=Aseta hankkeen
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/fi_FI/propal.lang b/htdocs/langs/fi_FI/propal.lang
index 674cec8a3e6b1b32f60cc24f36cfd549dd4a3123..81ff00278a725dc97cc4a604b4aa248c7b3229ef 100644
--- a/htdocs/langs/fi_FI/propal.lang
+++ b/htdocs/langs/fi_FI/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Viimeisin %s muutetut ehdotukset
 AllPropals=Kaikki ehdotukset
 LastProposals=Viimeisin ehdotuksia
 SearchAProposal=Haku ehdotuksen
+NoProposal=No proposal
 ProposalsStatistics=Kaupalliset ehdotuksia tilastot
 NumberOfProposalsByMonth=Lukumäärä kuukausittain
 AmountOfProposalsByMonthHT=Määrä kuukausittain (ilman veroja)
@@ -62,7 +63,8 @@ DatePropal=Päiväys Ehdotuksen
 DateEndPropal=Päiväys loppuun voimassaoloaika
 DateEndPropalShort=Voimassaolo päättyy
 ValidityDuration=Voimassaolo kesto
-CloseAs=Sulje joiden tila
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Luokittele laskutetaan
 BuildBill=Rakenna lasku
 ErrorPropalNotFound=Propal %s ei löydy
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Default model creation
 DefaultModelPropalToBill=Default template when closing a business proposal (to be invoiced)
 DefaultModelPropalClosed=Default template when closing a business proposal (unbilled)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/fi_FI/salaries.lang b/htdocs/langs/fi_FI/salaries.lang
index 953a9c7540cbb06d6209140b32aaa0d23261e324..da177410860fb80d4d2d0872ec3b258ed787ba0e 100644
--- a/htdocs/langs/fi_FI/salaries.lang
+++ b/htdocs/langs/fi_FI/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Salary
 Salaries=Salaries
-Employee=Employee
 NewSalaryPayment=New salary payment
 SalaryPayment=Salary payment
 SalariesPayments=Salaries payments
diff --git a/htdocs/langs/fi_FI/sendings.lang b/htdocs/langs/fi_FI/sendings.lang
index 4ee80e579fcce08afb2a29d5ea80828875711e66..0573278ffb3a23eb75611b01aed5131cedc4f826 100644
--- a/htdocs/langs/fi_FI/sendings.lang
+++ b/htdocs/langs/fi_FI/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Lähettävä
 Shipments=Toimitukset
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Sendings alueella
 ListOfSendings=Luettelo sendings
 SendingMethod=Lähetysvalinnat menetelmä
diff --git a/htdocs/langs/fi_FI/sms.lang b/htdocs/langs/fi_FI/sms.lang
index 53cb80e2a6805f6bdd5e06e921e3e4fd7521ca49..5b802b8a0863d6a008fe0f3a2bd705ecb140dbd6 100644
--- a/htdocs/langs/fi_FI/sms.lang
+++ b/htdocs/langs/fi_FI/sms.lang
@@ -49,5 +49,6 @@ SendSms=Lähetä tekstiviesti
 SmsInfoCharRemain=Nb jäljellä olevien merkkien
 SmsInfoNumero= (Muoto kansainvälinen eli +33899701761)
 DelayBeforeSending=Viive ennen lähettämistä (min)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Ei tavoite käytettävissä. Tarkista asetukset oman SMS tarjoaja.
 
diff --git a/htdocs/langs/fi_FI/supplier_proposal.lang b/htdocs/langs/fi_FI/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/fi_FI/supplier_proposal.lang
+++ b/htdocs/langs/fi_FI/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/fi_FI/trips.lang b/htdocs/langs/fi_FI/trips.lang
index 71b57c08caaa365243715caaee63733121411884..de67afa36b927283b57f02482d7a32f3fc3b1499 100644
--- a/htdocs/langs/fi_FI/trips.lang
+++ b/htdocs/langs/fi_FI/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Muu
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Lounas
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/fi_FI/users.lang b/htdocs/langs/fi_FI/users.lang
index b93e4246d2770f3bdab97b47ca33bb7ab29ce24a..edb566a00c80c51234b7cd23a44991768f0ad213 100644
--- a/htdocs/langs/fi_FI/users.lang
+++ b/htdocs/langs/fi_FI/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Use OpenID to login
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/fr_BE/accountancy.lang b/htdocs/langs/fr_BE/accountancy.lang
index c09e7418805e75937f634202c035129c12ea33c8..883df19c0984b27d329d0fb0ae4c8b1700fb7f05 100644
--- a/htdocs/langs/fr_BE/accountancy.lang
+++ b/htdocs/langs/fr_BE/accountancy.lang
@@ -11,7 +11,6 @@ TradeMargin=Marge d'affaire
 ByCustomerInvoice=Clients par factures
 UpdateAccount=Modification d'un compte comptable
 UpdateMvts=Modification d'un mouvement
-InvoiceLines=Lignes de facture à ventiler
 InvoiceLinesDone=Lignes de facture ventilées
 VentilationAuto=Subdivision automatique
 Processing=Exécution
@@ -21,10 +20,6 @@ VentilatedinAccount=Ventilé(es) correctement dans le compte comptable
 NotVentilatedinAccount=Non ventilé(es) dans le compte comptable
 AccountLength=Longeur du compte comptable affiché dans Dolibarr
 Doctype=Type de document
-BankJournal=Journal bancaire
-DescBankJournal=Journal bancaire incluant tous les types de paiement autres qu'en espèces
-CashJournal=Journal en espèces
-DescCashJournal=Journal du cash incluant le type de payement en espèces
 CashPayment=Paiement en espèces
 ThirdPartyAccount=Compte tiers
 ErrorDebitCredit=Débit et crédit ne peuvent pas être non-nuls en même temps
diff --git a/htdocs/langs/fr_BE/boxes.lang b/htdocs/langs/fr_BE/boxes.lang
index ea5a514d0a26e9ea4db0086fb6a703bd2a409d56..3abdea658eeb5517ded0a4af36f266b0d41fc146 100644
--- a/htdocs/langs/fr_BE/boxes.lang
+++ b/htdocs/langs/fr_BE/boxes.lang
@@ -46,7 +46,6 @@ BoxLastExpiredServices=%s plus anciens contacts avec des services actifs expiré
 BoxTitleLastActionsToDo=%s dernières actions à faire
 BoxTitleLastContracts=%s derniers contrats
 BoxTitleLastModifiedDonations=%s derniers dons modifiés
-BoxTitleLastModifiedExpenses=%s dernières dépenses modifiées
 BoxGlobalActivity=Activité globale (factures, propales, commandes)
 FailedToRefreshDataInfoNotUpToDate=Impossible de rafraîchir le flux RSS. Dernière date de mise à jour: %s
 LastRefreshDate=Dernière date de mise à jour
diff --git a/htdocs/langs/fr_BE/cron.lang b/htdocs/langs/fr_BE/cron.lang
deleted file mode 100644
index e211c11dff5b4809131d6492f5c5ae876f5ec0c7..0000000000000000000000000000000000000000
--- a/htdocs/langs/fr_BE/cron.lang
+++ /dev/null
@@ -1,4 +0,0 @@
-# Dolibarr language file - Source file is en_US - cron
-CronListActive=List of active/scheduled jobs
-CronDtStart=Start date
-CronDtEnd=End date
diff --git a/htdocs/langs/fr_BE/margins.lang b/htdocs/langs/fr_BE/margins.lang
new file mode 100644
index 0000000000000000000000000000000000000000..f93f8ff712cedc9f4ef2d7efa693acf6d046117a
--- /dev/null
+++ b/htdocs/langs/fr_BE/margins.lang
@@ -0,0 +1,3 @@
+# Dolibarr language file - Source file is en_US - margins
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
diff --git a/htdocs/langs/fr_BE/products.lang b/htdocs/langs/fr_BE/products.lang
deleted file mode 100644
index 3c7dd771227e57791d85b0d8970a4d0e2e963bdd..0000000000000000000000000000000000000000
--- a/htdocs/langs/fr_BE/products.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - products
-ProductsMultiPrice=Product multi-price
diff --git a/htdocs/langs/fr_BE/projects.lang b/htdocs/langs/fr_BE/projects.lang
new file mode 100644
index 0000000000000000000000000000000000000000..3a53dd52c2dc6ef0eb48d716e2fde53011617928
--- /dev/null
+++ b/htdocs/langs/fr_BE/projects.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - projects
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
diff --git a/htdocs/langs/fr_BE/sendings.lang b/htdocs/langs/fr_BE/sendings.lang
deleted file mode 100644
index 4020b40d6e277ba6917b7de67d2803b66b307029..0000000000000000000000000000000000000000
--- a/htdocs/langs/fr_BE/sendings.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - sendings
-Receivings=Receipts
diff --git a/htdocs/langs/fr_CA/admin.lang b/htdocs/langs/fr_CA/admin.lang
index 9d9e91df1d26a7e18fdbe5eaef1fcadee0ffcde7..a0d128330fea1bd7cd78bbb3217498cd73fdd6b8 100644
--- a/htdocs/langs/fr_CA/admin.lang
+++ b/htdocs/langs/fr_CA/admin.lang
@@ -1,5 +1,6 @@
 # Dolibarr language file - Source file is en_US - admin
 FilesUpdated=Mettre à jour les fichiers
+Fiscalyear=Année fiscale
 InstrucToEncodePass=Pour chiffrer le mot de passe de la base dans le fichier de configuration <b>conf.php</b>, remplacer la ligne<br><b>$dolibarr_main_db_pass="...";</b><br>par<br><b>$dolibarr_main_db_pass="crypted:%s";</b>
 InstrucToClearPass=Pour avoir le mot de passe de la base décodé (en clair) dans le fichier de configuration <b>conf.php</b>, remplacer dans ce fichier la ligne<br><b>$dolibarr_main_db_pass="crypted:..."</b><br>par<br><b>$dolibarr_main_db_pass="%s"</b>
 DownloadPackageFromWebSite=Télécharger le package %s.
@@ -12,7 +13,6 @@ LocalTaxDesc=Certains pays appliquent 2 voire 3 taux sur chaque ligne de facture
 Module75Name=Notes de frais et déplacements
 Module500Name=Dépenses spéciales (taxes, charges, dividendes)
 Module500Desc=Gestion des dépenses spéciales comme les taxes, charges sociales et dividendes
-Module600Desc=Envoi de notifications Email sur certains événements métiers Dolibarr, aux contacts de tiers (configuration réalisé sur chaque tiers)
 Module770Name=Note de frais
 Module2600Desc=Active le serveur de Web Services de Dolibarr
 Module20000Name=Gestion des demandes de congès
@@ -42,4 +42,13 @@ ShippableOrderIconInList=Ajouter un icône dans la liste des commandes qui indiq
 TaxSetup=Configuration du module Taxes, charges sociales et dividendes
 YourCompanyDoesNotUseVAT=Votre institution est configurée comme non assujettie à la TVA (TPS) (Accueil - Configuration - Société/Institution), aussi il n'y a aucune option sur la gestion TVA à paramétrer.
 AGENDA_USE_EVENT_TYPE=Utilisez les types des évenements (administrable dans Configuration -> Dictionnaires -> Liste des types d'évenements de l'agenda)
+FiscalYears=Années fiscales
+FiscalYear=Année fiscale
+FiscalYearCard=Fiche année fiscale
+NewFiscalYear=Nouvelle année fiscale
+EditFiscalYear=Editer année fiscale
+OpenFiscalYear=Ouvrir année fiscale
+CloseFiscalYear=Fermer année fiscale
+DeleteFiscalYear=Effacer année fiscale
+ConfirmDeleteFiscalYear=Êtes-vous sûr de vouloir supprimer cette année fiscale ?
 SalariesSetup=Configuration du module salariés
diff --git a/htdocs/langs/fr_CA/agenda.lang b/htdocs/langs/fr_CA/agenda.lang
index 975f389cf1a8204c70d807b7090321e79fafbe6d..915dcce8276d2f8cf27ded345582f20ea468054d 100644
--- a/htdocs/langs/fr_CA/agenda.lang
+++ b/htdocs/langs/fr_CA/agenda.lang
@@ -1,2 +1,5 @@
 # Dolibarr language file - Source file is en_US - agenda
+ShippingSentByEMail=Bon expédition %s envoyé par EMail
+InterventionSentByEMail=Intervention %s envoyée par EMail
+AgendaUrlOptionsProject=<b>project=PROJECT_ID</b> pour restreindre aux écévements associés au projet <b>PROJECT_ID</b>.
 ExportDataset_event1=Liste évênements de l'agenda
diff --git a/htdocs/langs/fr_CA/boxes.lang b/htdocs/langs/fr_CA/boxes.lang
index fb5ff91eaea143bdd6fc481211609ad19dd9d455..89af24da64df587c6500a2b9da77f17ba849262a 100644
--- a/htdocs/langs/fr_CA/boxes.lang
+++ b/htdocs/langs/fr_CA/boxes.lang
@@ -1,3 +1,4 @@
 # Dolibarr language file - Source file is en_US - boxes
 BoxCurrentAccounts=Soldes Comptes ouverts
+BoxTitleLastCustomersOrProspects=Les %s derniers prospects
 BoxTitleCurrentAccounts=Soldes des comptes ouverts
diff --git a/htdocs/langs/fr_CA/categories.lang b/htdocs/langs/fr_CA/categories.lang
index 7d62812e1d5bc9550a420217999eacd74731dfd9..e90b2884ba40035469d360030e9d3bb89c15fc23 100644
--- a/htdocs/langs/fr_CA/categories.lang
+++ b/htdocs/langs/fr_CA/categories.lang
@@ -1,4 +1,5 @@
 # Dolibarr language file - Source file is en_US - categories
+MembersCategoriesArea=Espace tags/catégories de membres
 CategorySuccessfullyCreated=Ce(tte) tag/catégorie %s a été ajouté avec succès
 ProductIsInCategories=Produit/service appartient aux tags/catégories suivant(e)s
 SupplierIsInCategories=Tiers appartient aux libellés/catégories fournisseurs suivant(e)s:
@@ -8,3 +9,4 @@ MemberIsInCategories=Ce membre appartient aux tags/catégories suivant(e)s
 ContactIsInCategories=Ce contact appartient aux tags/catégories suivant(e)s
 CompanyHasNoCategory=Ce tiers n'appartient à aucun tag/catégorie
 ClassifyInCategory=Classer dans le(a) tag/catégorie
+MembersCategoryShort=Tags/catégories de membres
diff --git a/htdocs/langs/fr_CA/commercial.lang b/htdocs/langs/fr_CA/commercial.lang
new file mode 100644
index 0000000000000000000000000000000000000000..dac000d90beea0628c6c5b159710bf4ecc52ddc6
--- /dev/null
+++ b/htdocs/langs/fr_CA/commercial.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - commercial
+ActionAC_OTH_AUTO=Autre (evênements insérés automatiquement)
diff --git a/htdocs/langs/fr_CA/cron.lang b/htdocs/langs/fr_CA/cron.lang
deleted file mode 100644
index e211c11dff5b4809131d6492f5c5ae876f5ec0c7..0000000000000000000000000000000000000000
--- a/htdocs/langs/fr_CA/cron.lang
+++ /dev/null
@@ -1,4 +0,0 @@
-# Dolibarr language file - Source file is en_US - cron
-CronListActive=List of active/scheduled jobs
-CronDtStart=Start date
-CronDtEnd=End date
diff --git a/htdocs/langs/fr_CA/margins.lang b/htdocs/langs/fr_CA/margins.lang
new file mode 100644
index 0000000000000000000000000000000000000000..f93f8ff712cedc9f4ef2d7efa693acf6d046117a
--- /dev/null
+++ b/htdocs/langs/fr_CA/margins.lang
@@ -0,0 +1,3 @@
+# Dolibarr language file - Source file is en_US - margins
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
diff --git a/htdocs/langs/fr_CA/products.lang b/htdocs/langs/fr_CA/products.lang
deleted file mode 100644
index 3c7dd771227e57791d85b0d8970a4d0e2e963bdd..0000000000000000000000000000000000000000
--- a/htdocs/langs/fr_CA/products.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - products
-ProductsMultiPrice=Product multi-price
diff --git a/htdocs/langs/fr_CA/projects.lang b/htdocs/langs/fr_CA/projects.lang
new file mode 100644
index 0000000000000000000000000000000000000000..3a53dd52c2dc6ef0eb48d716e2fde53011617928
--- /dev/null
+++ b/htdocs/langs/fr_CA/projects.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - projects
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
diff --git a/htdocs/langs/fr_CA/sendings.lang b/htdocs/langs/fr_CA/sendings.lang
deleted file mode 100644
index 4020b40d6e277ba6917b7de67d2803b66b307029..0000000000000000000000000000000000000000
--- a/htdocs/langs/fr_CA/sendings.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - sendings
-Receivings=Receipts
diff --git a/htdocs/langs/fr_CH/cron.lang b/htdocs/langs/fr_CH/cron.lang
deleted file mode 100644
index e211c11dff5b4809131d6492f5c5ae876f5ec0c7..0000000000000000000000000000000000000000
--- a/htdocs/langs/fr_CH/cron.lang
+++ /dev/null
@@ -1,4 +0,0 @@
-# Dolibarr language file - Source file is en_US - cron
-CronListActive=List of active/scheduled jobs
-CronDtStart=Start date
-CronDtEnd=End date
diff --git a/htdocs/langs/fr_CH/margins.lang b/htdocs/langs/fr_CH/margins.lang
new file mode 100644
index 0000000000000000000000000000000000000000..f93f8ff712cedc9f4ef2d7efa693acf6d046117a
--- /dev/null
+++ b/htdocs/langs/fr_CH/margins.lang
@@ -0,0 +1,3 @@
+# Dolibarr language file - Source file is en_US - margins
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
diff --git a/htdocs/langs/fr_CH/products.lang b/htdocs/langs/fr_CH/products.lang
deleted file mode 100644
index 3c7dd771227e57791d85b0d8970a4d0e2e963bdd..0000000000000000000000000000000000000000
--- a/htdocs/langs/fr_CH/products.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - products
-ProductsMultiPrice=Product multi-price
diff --git a/htdocs/langs/fr_CH/projects.lang b/htdocs/langs/fr_CH/projects.lang
new file mode 100644
index 0000000000000000000000000000000000000000..3a53dd52c2dc6ef0eb48d716e2fde53011617928
--- /dev/null
+++ b/htdocs/langs/fr_CH/projects.lang
@@ -0,0 +1,2 @@
+# Dolibarr language file - Source file is en_US - projects
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
diff --git a/htdocs/langs/fr_CH/sendings.lang b/htdocs/langs/fr_CH/sendings.lang
deleted file mode 100644
index 4020b40d6e277ba6917b7de67d2803b66b307029..0000000000000000000000000000000000000000
--- a/htdocs/langs/fr_CH/sendings.lang
+++ /dev/null
@@ -1,2 +0,0 @@
-# Dolibarr language file - Source file is en_US - sendings
-Receivings=Receipts
diff --git a/htdocs/langs/fr_FR/accountancy.lang b/htdocs/langs/fr_FR/accountancy.lang
index 83712273d25b355ec4ceca9f0f41781812a50c96..b33bd1e34212b600fa4196fb67cb7299d1b26b47 100644
--- a/htdocs/langs/fr_FR/accountancy.lang
+++ b/htdocs/langs/fr_FR/accountancy.lang
@@ -1,8 +1,8 @@
 # Dolibarr language file - en_US - Accounting Expert
 ACCOUNTING_EXPORT_SEPARATORCSV=Séparateur de colonnes pour le fichier exporté
 ACCOUNTING_EXPORT_DATE=Format de date pour le fichier d'exportation
-ACCOUNTING_EXPORT_PIECE=Export the number of piece
-ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Export with global account
+ACCOUNTING_EXPORT_PIECE=Exporter la référence de la pièce ?
+ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Exporter avec les lignes regroupées ?
 ACCOUNTING_EXPORT_LABEL=Exporter le libellé
 ACCOUNTING_EXPORT_AMOUNT=Exporter le montant
 ACCOUNTING_EXPORT_DEVISE=Exporter la devise
@@ -26,7 +26,6 @@ Selectmodelcsv=Sélectionner un modèle d'export
 Modelcsv_normal=Export standard
 Modelcsv_CEGID=Export vers CEGID Expert
 BackToChartofaccounts=Retour au plan comptable
-Back=Retour
 
 Definechartofaccounts=Définir un plan comptable
 Selectchartofaccounts=Sélectionner un plan comptable
@@ -53,10 +52,10 @@ AccountingVentilation=Ventilation comptable
 AccountingVentilationSupplier=Ventilation comptable client
 AccountingVentilationCustomer=Ventilation comptable fournisseur
 
-CAHTF=Total purchase supplier before tax
-InvoiceLines=Lignes de factures à ventiler
+CAHTF=Total achat fournisseur HT
+InvoiceLines=Lignes de facture à ventiler
 InvoiceLinesDone=Lignes de factures ventilées
-IntoAccount=Ventilate in the accounting account
+IntoAccount=Ventiler dans le compte comptable
 
 Ventilate=Ventiler
 VentilationAuto=Ventilation automatique
@@ -109,12 +108,8 @@ DelBookKeeping=Supprimer les écritures du grand livre
 
 DescSellsJournal=Journal des ventes
 DescPurchasesJournal=Journal des achats
-BankJournal=Journal de banque
-DescBankJournal=Journal de banque comprenant tous les types de règlements autres que espèce\t
-CashJournal=Journal de caisse
-DescCashJournal=Journal de caisse comprenant le type de règlement "espèce"
-FinanceJournal=Finance journal
-DescFinanceJournal=Finance journal including all the types of payments by bank account
+FinanceJournal=Journal de trésorerie
+DescFinanceJournal=Journal de trésorerie comprenant tous les types de paiements par compte bancaire / caisse
 
 CashPayment=Règlement espèce
 
@@ -124,7 +119,7 @@ CustomerInvoicePayment=Paiement de facture client
 ThirdPartyAccount=Comptes de tiers
 
 NewAccountingMvt=Nouveau mouvement
-NumMvts=Nombre de mouvement
+NumMvts=Numéro du mouvement
 ListeMvts=Liste des mouvements
 ErrorDebitCredit=Débit et crédit ne peuvent pas avoir la même valeur en même temps.
 
@@ -139,7 +134,7 @@ Pcgsubtype=Sous classe de compte
 Accountparent=Racine des comptes
 
 DescVentilCustomer=Consultez ici la ventilation comptable annuelle de vos factures clients
-TotalVente=Total chiffre affaire hors taxe
+TotalVente=Total chiffre affaires hors taxe
 TotalMarge=Total marge
 DescVentilDoneCustomer=Consultez ici la liste des lignes de factures clients et leur compte comptable
 DescVentilTodoCustomer=Consultez ici la liste des lignes de factures clients et leur compte comptable
@@ -152,22 +147,28 @@ DescVentilDoneSupplier=Consultez ici la liste des lignes de factures fournisseur
 ValidateHistory=Valider Automatiquement
 
 ErrorAccountancyCodeIsAlreadyUse=Erreur, vous ne pouvez pas détruire de compte comptable car il est utilisé
-
+MvtNotCorrectlyBalanced=Le mouvement n'est pas équilibré. Crédit = %s. Débit = %s
 FicheVentilation=Fiche ventilation
-GeneralLedgerIsWritten=Operations are written in the general ledger
+GeneralLedgerIsWritten=Les opérations ont été inscrites dans le grand livre
 
 ##Export Journal Feature
-ExportFormat=Format of Export
-Prefixname=Prefix of export File
-Separate=Export separator
-Textframe=Frame of text value
-Headercol=Colname in header of file
-Fieldname=Name of Field
-Headername=Name in header
-Type=Type of fields
-Param=Additionnal parameters
-EnabledProduct=In Product
-EnabledTiers=In Tiers
-EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+ExportFormat=Format de l'export
+Prefixname=Préfixe du fichier d'export
+Separate=Séparateur
+Textframe=Cadre de la valeur de texte
+Headercol=Ligne contenant le nom des colonnes en-tête du fichier
+Fieldname=Nom du champ
+Headername=Nom en-tête
+Type=Type de champs
+Param=Paramètres Supplémentaires
+EnabledProduct=Dans produit
+EnabledTiers=In third party
+EnabledVat=Dans TVA
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/fr_FR/admin.lang b/htdocs/langs/fr_FR/admin.lang
index b3b0bf9f702d7d61c250e9f9cc51bde134f624d1..6966dac11c446ac580d3a05203289ff7201c64c3 100644
--- a/htdocs/langs/fr_FR/admin.lang
+++ b/htdocs/langs/fr_FR/admin.lang
@@ -329,7 +329,7 @@ UMaskExplanation=Ce paramètre permet de définir les droits des fichiers créé
 SeeWikiForAllTeam=Voir le wiki pour le détail de tous les acteurs et leur organisation
 UseACacheDelay= Délai de mise en cache de l'export en secondes (0 ou vide pour aucun cache)
 DisableLinkToHelpCenter=Cacher le lien «<b>Besoin d'aide ou d'assistance</b>» sur la page de connexion
-DisableLinkToHelp=Hide link to online help "<b>%s</b>"
+DisableLinkToHelp=Cacher le lien vers l'aide en ligne <b>%s</b>
 AddCRIfTooLong=Il n'y a pas de coupure de ligne automatique, aussi si votre texte est trop long sur les documents, il faudra ajouter vous même des retours chariot dans la zone de saisie du texte
 ModuleDisabled=Module désactivé
 ModuleDisabledSoNoEvent=Module désactivé donc événement jamais créé
@@ -352,7 +352,7 @@ ThemeDir=Répertoire des thèmes
 ConnectionTimeout=Délai expiration de connexion
 ResponseTimeout=Délai expiration de réponse
 SmsTestMessage=Message de test de __PHONEFROM__ vers __PHONETO__
-ModuleMustBeEnabledFirst=Module <b>%s</b> must be enabled first if you need this feature.
+ModuleMustBeEnabledFirst=Le module <b>%s</b> doit être activé pour utiliser cette fonction.
 SecurityToken=Clé de sécurisation des URLs
 NoSmsEngine=Aucun gestionnaire d'envoi de SMS n'est disponible. Les gestionnaires d'envois SMS ne sont pas installés en standard (car dépendent d'un fournisseur) mais vous pourrez en trouver depuis la plateforme %s
 PDF=PDF
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Cacher toutes les informations en rapport avec la TVA
 HideDescOnPDF=Cacher la description des produits sur les PDF générés
 HideRefOnPDF=Cacher la référence des produits sur les PDF générés
 HideDetailsOnPDF=Cacher les détails des lignes de produits sur les PDF générés
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Bibliothèque
 UrlGenerationParameters=Sécurisation des URLs
 SecurityTokenIsUnique=Utiliser un paramètre securekey unique pour chaque URL ?
@@ -393,8 +393,8 @@ ExtrafieldLink=Lier à un objet
 ExtrafieldParamHelpselect=La liste doit être de la forme clef,valeur<br><br> par exemple : <br>1,valeur1<br>2,valeur2<br>3,valeur3<br>...<br><br>Pour que la liste soit dépendante d'une autre :<br>1,valeur1|code_liste_parent:clef_parent<br>2,valeur2|code_liste_parent:clef_parent
 ExtrafieldParamHelpcheckbox=La liste doit être de la forme clef,valeur<br><br> par exemple : <br>1,valeur1<br>2,valeur2<br>3,valeur3<br>...
 ExtrafieldParamHelpradio=La liste doit être de la forme clef,valeur<br><br> par exemple : <br>1,valeur1<br>2,valeur2<br>3,valeur3<br>...
-ExtrafieldParamHelpsellist=Parameters list comes from a table<br>Syntax : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntaxt  extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
-ExtrafieldParamHelpchkbxlst=Parameters list comes from a table<br>Syntax : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntaxt  extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
+ExtrafieldParamHelpsellist=Les paramètres de la liste viennent de la table<br>Syntax : table_name:label_field:id_field::filter<br>Exemple : c_typent:libelle:id::filter<br><br>Le filtre peut être un simple test (e.g. actif=1) pour seulement montrer la valeur active<br>Vous pouvez aussi utiliser $ID$ dans le filtre qui est le ID actuel de l'objet<br>
+ExtrafieldParamHelpchkbxlst=Les paramètres de la liste viennent de la table<br>Syntax : table_name:label_field:id_field::filter<br>Exemple : c_typent:libelle:id::filter<br><br>Le filtre peut être un simple test (e.g. actif=1) pour seulement montrer la valeur active<br>Vous pouvez aussi utiliser $ID$ dans le filtre qui est le ID actuel de l'objet<br>
 ExtrafieldParamHelplink=Les paramètres doivent être ObjectName: Classpath<br>Syntaxe: ObjectName:Classpath<br>Exemple: Société:societe/class/societe.class.php
 LibraryToBuildPDF=Bibliothèque utilisée pour la génération des PDF
 WarningUsingFPDF=Attention : votre fichier <b>conf.php</b> contient la directive <b>dolibarr_pdf_force_fpdf=1</b>. Cela signifie que vous utilisez la librairie FPDF pour générer vos fichiers PDF. Cette librairie est ancienne et ne couvre pas de nombreuses fonctionnalités (Unicode, transparence des images, langues cyrilliques, arabes ou asiatiques...), aussi vous pouvez rencontrer des problèmes durant la génération des PDF.<br>Pour résoudre cela et avoir une prise en charge complète de PDF, vous pouvez télécharger la <a href="http://www.tcpdf.org/" target="_blank">bibliothèque TCPDF</a> puis commenter ou supprimer la ligne <b>$dolibarr_pdf_force_fpdf=1</b>, et ajouter à la place <b>$dolibarr_lib_TCPDF_PATH='chemin_vers_TCPDF'</b>
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Etes-vous sur de vouloir effacer toutes les valeur
 AllBarcodeReset=Tous les codes-barre ont été supprimés
 NoBarcodeNumberingTemplateDefined=Aucun modèle de numérotation de code-barre n'a été activé dans la configuration du module code-barre.
 NoRecordWithoutBarcodeDefined=Aucun enregistrement sans code-barre défini.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Utilisateurs & groupes
@@ -499,7 +500,7 @@ Module510Desc=Gestion des paiements des salaires des employés
 Module520Name=Emprunt
 Module520Desc=Gestion des emprunts
 Module600Name=Notifications
-Module600Desc=Envoi de notifications Email sur certains événements métiers Dolibarr, aux contacts de tiers (configuration réalisée sur chaque tiers)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Dons
 Module700Desc=Gestion des dons
 Module770Name=Notes de frais
@@ -930,8 +931,8 @@ DefaultMenuSmartphoneManager=Gestionnaire du menu smartphone
 Skin=Thème visuel
 DefaultSkin=Thème visuel par défaut
 MaxSizeList=Longueur maximale des listes
-DefaultMaxSizeList=Default max length for lists
-DefaultMaxSizeShortList=Default max length for short lists (ie in customer card)
+DefaultMaxSizeList=Longueur maximale par défaut des listes
+DefaultMaxSizeShortList=Longueur maximale par défaut des listes courtes (e.g. dans la carte du client)
 MessageOfDay=Message du jour
 MessageLogin=Message page de connexion
 PermanentLeftSearchForm=Zone de recherche permanente du menu de gauche
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Délais avant alerte
 DelaysOfToleranceBeforeWarning=Délais de tolérance avant alerte
 DelaysOfToleranceDesc=Cet écran permet de définir les délais de tolérance après lesquels une alerte sera signalée à l'écran par le pictogramme %s sur chaque élément en retard.
 Delays_MAIN_DELAY_ACTIONS_TODO=Tolérance de retard avant alerte (en jours) sur actions planifiées non réalisées
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Tolérance de retard avant alerte (en jours) sur commandes clients non traitées
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Tolérance de retard avant alerte (en jours) sur commandes fournisseurs non traitées
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Tolérance de retard avant alerte (en jours) sur propales à cloturer
@@ -974,7 +976,7 @@ Delays_MAIN_DELAY_CUSTOMER_BILLS_UNPAYED=Tolérance de retard avant alerte (en j
 Delays_MAIN_DELAY_TRANSACTIONS_TO_CONCILIATE=Tolérance de retard avant alerte (en jours) sur rapprochements bancaires à faire
 Delays_MAIN_DELAY_MEMBERS=Tolérance de retard avant alerte (en jours) sur cotisations adhérents en retard
 Delays_MAIN_DELAY_CHEQUES_TO_DEPOSIT=Tolérance de retard avant alerte (en jours) sur chèques à déposer
-Delays_MAIN_DELAY_EXPENSEREPORTS=Tolerance delay (in days) before alert for expense reports to approve
+Delays_MAIN_DELAY_EXPENSEREPORTS=Tolérance de retard avant alerte (en jours) sur les notes de frais à approuver
 SetupDescription1=Toutes les options de l'espace configuration sont des options permettant de configurer Dolibarr avant de commencer son utilisation.
 SetupDescription2=Les 2 étapes indispensables de configuration sont les 2 premières dans le menu gauche, à savoir, la configuration de la société/institution et la configuration des modules :
 SetupDescription3=Les données du menu <a href="%s">Configuration -> Société/institution</a> sont requises car les informations saisies sont utilisées dans la plupart des écrans, en affichage, ou pour modifier le comportement de Dolibarr (comme par exemple des fonctions qui dépendent de votre pays).
@@ -1087,6 +1089,7 @@ PathDirectory=Répertoire
 SendmailOptionMayHurtBuggedMTA=La fonction d'envoi de mails par la méthode "PHP mail directe" génère un message mail qui peut être mal interprété par certains serveurs mal configurés de réception de mail. Cela se traduit par des mails non lisibles chez les personnes hébergés par ces plateformes boguées. C'est le cas des clients de certains fournisseurs d'accès internet (Ex: Orange). Ce n'est pas un problème, ni dans Dolibarr ni dans PHP mais sur le serveur de réception. Vous pouvez toutefois ajouter l'option MAIN_FIX_FOR_BUGGED_MTA à 1 dans configuration - divers pour modifier Dolibarr afin de compenser le bug. Toutefois ce sont les serveurs respectueux du standard d'envoi de mail qui pourront avoir des problèmes. L'autre solution (recommandée) est d'utiliser la méthode d'envoi SMTP socket library qui n'a aucun de ces inconvénients.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Le choix de la langue affichée à l'écran se modifie:<br>* Soit de manière globale depuis le menu <strong>Accueil - Configuration - Affichage</strong><br>* Soit de manière spécifique à l'utilisateur depuis l'onglet <strong>Interface utilisateur</strong> de sa fiche utilisateur (cliquer sur l'identifiant en haut de l'écran).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Nombre total de modules fonctionnels activés: <b>%s</b>
 YouMustEnableOneModule=Vous devez activer au moins une fonctionnalité
 ClassNotFoundIntoPathWarning=La classe %s n'a pas été trouvée dans le chemin PHP
@@ -1110,10 +1113,10 @@ GetBarCode=Récupérer code barre
 EmptyNumRefModelDesc=Code libre sans vérification. Peut être modifié à tout moment.
 ##### Module password generation
 PasswordGenerationStandard=Renvoie un mot de passe généré selon l'algorithme interne de Dolibarr : 8 caractères, chiffres et caractères en minuscules mélangés.
-PasswordGenerationNone=Do not suggest any generated password. Password must be typed in manually.
-PasswordGenerationPerso=Return a password according to your personally defined configuration.
+PasswordGenerationNone=Ne pas suggérer un mot de passe généré. Le mot de passe doit être entré manuellement. 
+PasswordGenerationPerso=Retourner un mot de passe en fonction de votre configuration personnellement défini.
 SetupPerso=Selon votre configuration
-PasswordPatternDesc=Password pattern description
+PasswordPatternDesc=Description du masque du mot de passe
 ##### Users setup #####
 UserGroupSetup=Configuration module utilisateurs et groupes
 GeneratePassword=Proposer un mot de passe généré
@@ -1177,7 +1180,7 @@ CreditNotePDFModules=Modèles de documents des avoirs
 CreditNote=Avoir
 CreditNotes=Avoirs
 ForceInvoiceDate=Forcer la date de facturation à la date de validation
-AllowCreditNoteWithoutRelatedInvoice=Allow to create credit note without a related invoice
+AllowCreditNoteWithoutRelatedInvoice=Permet de créer une facture d'avoir sans une facture liée
 DisableRepeatable=Désactiver les factures récurrentes
 SuggestedPaymentModesIfNotDefinedInInvoice=Mode de paiement suggéré par défaut si non défini au niveau de la facture
 EnableEditDeleteValidInvoice=Activer la possibilité de rééditer/supprimer une facture validée sans paiement
@@ -1201,13 +1204,13 @@ FreeLegalTextOnProposal=Mention complémentaire sur les propositions commerciale
 WatermarkOnDraftProposal=Filigrane sur les brouillons de propositions commerciales (aucun si vide)
 BANK_ASK_PAYMENT_BANK_DURING_PROPOSAL=Saisir le compte bancaire cible lors de la proposition commerciale
 ##### SupplierProposal #####
-SupplierProposalSetup=Price requests suppliers module setup
-SupplierProposalNumberingModules=Price requests suppliers numbering models
-SupplierProposalPDFModules=Price requests suppliers documents models
-FreeLegalTextOnSupplierProposal=Free text on price requests suppliers
-WatermarkOnDraftSupplierProposal=Watermark on draft price requests suppliers (none if empty)
-BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_PROPOSAL=Ask for bank account destination of price request
-WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER=Ask for Warehouse Source for order
+SupplierProposalSetup=Configuration du module Demande de tarifs forunisseurs
+SupplierProposalNumberingModules=Modèles de numérotation des demandes de prix
+SupplierProposalPDFModules=Modèles de documents des demandes de prix
+FreeLegalTextOnSupplierProposal=Texte libre sur les demande de tarifs fournisseurs
+WatermarkOnDraftSupplierProposal=Filigrane sur le brouillon de la demande de prix-fournisseur (aucun si vide)
+BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_PROPOSAL=Demander le compte bancaire cible durant la création de la demande de prix fournisseur
+WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER=Demander pour l'entrepôt-source pour la commande
 ##### Orders #####
 OrdersSetup=Configuration du module Commandes
 OrdersNumberingModules=Modèles de numérotation des commandes
@@ -1417,7 +1420,7 @@ SetDefaultBarcodeTypeThirdParties=Type de code-barre utilisé par défaut pour l
 UseUnits=Définir une unité de mesure pour la quantité lors de l'édition de lignes de commande, proposition ou facture
 ProductCodeChecker= Modèles de numérotation des produits / services
 ProductOtherConf= Paramètres des produits / services
-IsNotADir=is not a directory!
+IsNotADir=Ce n'est pas un répertoire!
 ##### Syslog #####
 SyslogSetup=Configuration du module Journaux et traces
 SyslogOutput=Sortie des journaux
@@ -1529,7 +1532,7 @@ DetailLevel=Niveau (-1:menu haut, 0:entête menu, >0 menu et sous menu)
 ModifMenu=Modification du menu
 DeleteMenu=Effacer entrée de menu
 ConfirmDeleteMenu=Êtes-vous sûr de vouloir supprimer l'entrée de menu <b>%s</b> ?
-FailedToInitializeMenu=Failed to initialize menu
+FailedToInitializeMenu=Échec à inisialiser le menu
 ##### Tax #####
 TaxSetup=Configuration du module TVA, charges fiscales ou sociales et dividendes
 OptionVatMode=Option d'exigibilité de TVA par défaut
@@ -1560,9 +1563,9 @@ AGENDA_DEFAULT_FILTER_TYPE=Régler automatiquement ce type d'événement dans le
 AGENDA_DEFAULT_FILTER_STATUS=Régler automatiquement le statut d'événement dans le filtre de recherche de la vue agenda
 AGENDA_DEFAULT_VIEW=Quel onglet voulez-vous voir ouvrir par défaut quand on choisit le menu Agenda
 ##### ClickToDial #####
-ClickToDialDesc=This module allows to make phone numbers clickable. A click on this icon will call make your phone to call the phone number. This can be used to call a call center system from Dolibarr that can call the phone number on a SIP system for example.
-ClickToDialUseTelLink=Use just a link "tel:" on phone numbers
-ClickToDialUseTelLinkDesc=Use this method if your users have a softphone or a software interface installed on same computer than the browser, and called when you click on a link in your browser that start with "tel:". If you need a full server solution (no need of local software installation), you must set this to "No" and fill next field.
+ClickToDialDesc=Ce module permet de rendre un numéro de téléphone cliquable. Un clique sur cet icone fera votre téléphone appeler le numéro cliqué. Ce module peut être utilisé pour appeler un système de centre d'appel à partir de Dolibarr. 
+ClickToDialUseTelLink=Utiliser un lien «Tel.» sur les numéros de téléphone
+ClickToDialUseTelLinkDesc=Utilisez cette méthode si vos utilisateurs ont un softphone ou une interface de logiciel installé sur un même ordinateur que le navigateur, et a appelé lorsque vous cliquez sur un lien dans votre navigateur qui commencent par "tel:". Si vous avez besoin d'une solution de serveur complet (pas besoin d'installation locale du logiciel), vous devez définir ce "Non" et remplissez champ suivant.
 ##### Point Of Sales (CashDesk) #####
 CashDesk=Caisse enregistreuse
 CashDeskSetup=Configuration du module Point de vente/caisse enregistreuse
@@ -1588,7 +1591,7 @@ EndPointIs=Les clients SOAP doivent envoyer leur requêtes vers le point de sort
 ApiSetup=Configuration du module API REST
 ApiDesc=En activant ce module, Dolibarr devient aussi serveur de services API de type REST
 KeyForApiAccess=Clé pour utiliser les API (paramètre "api_key")
-ApiProductionMode=Enable production mode (this will activate use of a caches for services management)
+ApiProductionMode=Activer le mode « production » (ceci activera l'utilisation de la cache pour la gestion des services)
 ApiEndPointIs=Vous pouvez accéder aux API par l'URL
 ApiExporerIs=Vous pouvez consulter la liste des API par l'URL
 OnlyActiveElementsAreExposed=Seuls les éléments en rapport avec un module actif sont présentés.
@@ -1663,8 +1666,9 @@ SomethingMakeInstallFromWebNotPossible2=Pour cette raison, le processus de mise
 InstallModuleFromWebHasBeenDisabledByFile=L'installation de module externe depuis l'application a été désactivé par l'administrator. Vous devez lui demander de supprimer le fichier <strong>%s</strong> pour permettre cette fonctionnalité.
 ConfFileMuseContainCustom=Installé un module externe pour l'application enregistre les fichiers de module dans le répertoire <strong>%s</strong>. Pour avoir ce répertoire vu par Dolibarr, vous devez configurer votre <strong>conf/conf.php</strong> d'avoir l'option <br> - <strong>$dolibarr_main_url_root_alt</strong> activé à la valeur <strong>$dolibarr_main_url_root_alt="/custom"</strong><br> - <strong>$dolibarr_main_document_root_alt</strong> activé à la valeur <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Mettez en surbrillance les lignes de la table lorsque la souris passe au-dessus
-HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
-LinkColor=Color of links
+HighlightLinesColor=Mettez en surbrillance les lignes de la table lorsque la souris passe au-dessus (garder vide pour ne pas avoir de surbrillance)
+TextTitleColor=Color of page title
+LinkColor=Couleur des liens
 PressF5AfterChangingThis=Appuyez sur F5 sur le clavier après avoir modifié cette valeur pour que le changement soit effectif
 NotSupportedByAllThemes=Fonctionne avec le thème eldy mais n'est pas pris en charge par tous les thèmes
 BackgroundColor=Couleur de fond
@@ -1704,4 +1708,4 @@ TitleExampleForMajorRelease=Exemple de message que vous pouvez utiliser pour ann
 TitleExampleForMaintenanceRelease=Exemple de message que vous pouvez utiliser pour annonce une nouvelle version de maintenance (n'hésitez pas à l'utilisez pour vos propres news)
 ExampleOfNewsMessageForMajorRelease=Dolibarr ERP & CRM %s est disponible. La version %s est une version majeure avec de nouvelles fonctionnalités pour les utilisateurs et les développeurs. Vous pouvez la télécharger à partir de la zone de téléchargement du portail http://www.dolibarr.org (sous-répertoire "Versions stables"). Vous pouvez lire le <a href="https://github.com/Dolibarr/dolibarr/blob/develop/ChangeLog">ChangeLog</a> pour la liste complète des changements.
 ExampleOfNewsMessageForMaintenanceRelease=Dolibarr ERP & CRM %s est disponible. La version %s est une version de maintanance, aussi elle ne contient que des correctifs de bugs. Nous recommandons tout personne utilisant une version plus ancienne de migrer sur celle-ci. En tant que version de maintenance, aucune nouvelle fonctionnalité n'est ajouté, ni modification de format de données. Vous pouvez télécharger cette version à partir de la zone de téléchargement du portail http://www.dolibarr.org (sous-répertoire "Versions stables"). Vous pouvez lire le <a href="https://github.com/Dolibarr/dolibarr/blob/develop/ChangeLog">ChangeLog</a> pour la liste complète des changements.
-MultiPriceRuleDesc=When option "Several level of prices per product/service" is on, you can define different prices (one per price level) for each product. To save you time, you can enter here rule to have price for each level autocalculated according to price of first level, so you will have to enter only price for first level on each product. This page is here to save you time and can be usefull only if your prices for each leve are relative to first level. You can ignore this page in most cases.
+MultiPriceRuleDesc=Quand l'option « Plusieurs niveaux de prix par produit/service» est activée, vous pouvez définir différents prix (un par niveau de prix) pour chaque produits. Pour sauver du temps, vous pouvez entrer ici une règle pour avoir un prix pour chaque niveau calculé automatiquement. Cette page est ici pour sauver du temps et peut être utile si vos prix pour chaque niveaux sont relatif au premier niveau. Vous pouvez ignorer cette page dans la plupart des cas
diff --git a/htdocs/langs/fr_FR/agenda.lang b/htdocs/langs/fr_FR/agenda.lang
index 20b504c20fe41d6761d27f0dac9339993d14f8ce..b42ef84146e334d7d7e69099a647f696246f94cd 100644
--- a/htdocs/langs/fr_FR/agenda.lang
+++ b/htdocs/langs/fr_FR/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Tous les événements
 ViewCal=Vue mois
 ViewDay=Vue jour
 ViewWeek=Vue semaine
+ViewYear=Vue an
 ViewPerUser=Vue par utilisateur
+ViewPerType=Vue par type
 ViewWithPredefinedFilters= Vues avec filtres prédéfinis
 AutoActions= Alimentation automatique
 AgendaAutoActionDesc= Définissez dans cet onglet les événements pour lesquels Dolibarr créera automatiquement une action dans l'agenda. Si aucune case n'est cochée (par défaut), seules les actions manuelles seront incluses dans l'agenda.
@@ -59,9 +61,9 @@ OrderSentByEMail=Commande client %s envoyée par email
 InvoiceSentByEMail=Facture client %s envoyée par eMail
 SupplierOrderSentByEMail=Commande fournisseur %s envoyée par email
 SupplierInvoiceSentByEMail=Facture fournisseur %s envoyée par email
-ShippingSentByEMail=Bon expédition %s envoyé par EMail
+ShippingSentByEMail=Bon d'expédition %s envoyé par email
 ShippingValidated= Expédition %s validée
-InterventionSentByEMail=Intervention %s envoyée par EMail
+InterventionSentByEMail=Intervention %s envoyée par email
 NewCompanyToDolibarr= Tiers créé
 DateActionPlannedStart= Date de début de réalisation prévue
 DateActionPlannedEnd= Date de fin de réalisation prévue
@@ -73,7 +75,7 @@ AgendaUrlOptions1=Vous pouvez aussi ajouter les paramètres suivants pour filtre
 AgendaUrlOptions2=<b>login=%s</b> pour limiter l'export aux actions créées par ou assignées à l'utilisateur <b>%s</b>.
 AgendaUrlOptions3=<b>logina=%s</b> pour limiter l'export aux actions dont l'utilisateur <b>%s</b> est propriétaire.
 AgendaUrlOptions4=<b>logint=%s</b> pour limiter l'export aux actions affectées à l'utilisateur <b>%s</b>.
-AgendaUrlOptionsProject=<b>project=PROJECT_ID</b> pour restreindre aux écévements associés au projet <b>PROJECT_ID</b>.
+AgendaUrlOptionsProject=<b>project=PROJECT_ID</b> pour restreindre aux événements associés au projet <b>PROJECT_ID</b>.
 AgendaShowBirthdayEvents=Afficher l'anniversaire des contacts
 AgendaHideBirthdayEvents=Cacher l'anniversaire des contacts
 Busy=Occupé
diff --git a/htdocs/langs/fr_FR/bills.lang b/htdocs/langs/fr_FR/bills.lang
index 9cf4e0c013b5632b97d6f5e1f8cf8dc96d41c484..b3cee6853c8f93b246b9e87bde60267d95e2fc2c 100644
--- a/htdocs/langs/fr_FR/bills.lang
+++ b/htdocs/langs/fr_FR/bills.lang
@@ -59,7 +59,6 @@ PaymentBack=Remboursement
 Payments=Règlements
 PaymentsBack=Remboursements
 PaidBack=Remboursé
-DatePayment=Date paiement
 DeletePayment=Supprimer le paiement
 ConfirmDeletePayment=Êtes-vous sûr de vouloir supprimer ce paiement ?
 ConfirmConvertToReduc=Voulez-vous convertir cet avoir ou acompte en réduction future ?<br>Le montant sera alors stocké en réduction fixe en attente pour le client. Cette dernière pourra être utilisée pour réduire le montant d'une facture en cours ou prochaine de ce client.
@@ -74,6 +73,7 @@ PaymentsAlreadyDone=Versements déjà effectués
 PaymentsBackAlreadyDone=Remboursements déjà effectués
 PaymentRule=Mode de paiement
 PaymentMode=Mode de règlement
+PaymentModeShort=Mode de règlement
 IdPaymentMode=Mode de règlement (id)
 LabelPaymentMode=Mode de règlement (libéllé)
 PaymentTerm=Condition de règlement
@@ -90,6 +90,7 @@ ClassifyCanceled=Classer 'Abandonnée'
 ClassifyClosed=Classer 'Fermée'
 ClassifyUnBilled=Classer 'Non facturée'
 CreateBill=Créer Facture
+CreateCreditNote=Créer facture avoir
 AddBill=Créer une facture ou un avoir
 AddToDraftInvoices=Ajouter à facture brouillon
 DeleteBill=Supprimer facture
@@ -103,7 +104,6 @@ ConvertToReduc=Convertir en réduction future
 EnterPaymentReceivedFromCustomer=Saisie d'un règlement reçu du client
 EnterPaymentDueToCustomer=Saisie d'un remboursement d'un avoir client
 DisabledBecauseRemainderToPayIsZero=Désactivé car reste à payer est nul
-Amount=Montant
 PriceBase=Base du prix
 BillStatus=État de la facture
 BillStatusDraft=Brouillon (à valider)
@@ -186,9 +186,12 @@ ShowInvoice=Afficher facture
 ShowInvoiceReplace=Afficher facture de remplacement
 ShowInvoiceAvoir=Afficher facture d'avoir
 ShowInvoiceDeposit=Afficher facture d'acompte
+<<<<<<< HEAD
 ShowInvoiceSituation=Afficher facture de situation
+=======
+ShowInvoiceSituation=Show situation invoice
+>>>>>>> refs/remotes/origin/3.9
 ShowPayment=Afficher règlement
-File=Fichier
 AlreadyPaid=Déjà réglé
 AlreadyPaidBack=Déjà remboursé
 AlreadyPaidNoCreditNotesNoDeposits=Déjà réglé (hors avoirs et acomptes)
@@ -219,12 +222,13 @@ DateEcheance=Date échéance
 DateInvoice=Date facturation
 NoInvoice=Aucune facture
 ClassifyBill=Classer la facture
-SupplierBillsToPay=Factures fournisseurs à payer
+SupplierBillsToPay=Factures fournisseurs impayées
 CustomerBillsUnpaid=Factures clients impayées
 NonPercuRecuperable=Non perçue réc.
 SetConditions=Définir conditions de règlement
 SetMode=Définir mode de règlement
 Billed=Facturé
+RecurringInvoices=Factures récurrentes
 RepeatableInvoice=Facture modèle
 RepeatableInvoices=Factures modèles
 Repeatable=Modèle
@@ -241,7 +245,6 @@ Reduction=Réduction
 ReductionShort=Réduc.
 Reductions=Réductions
 ReductionsShort=Réduc.
-Discount=Remise
 Discounts=Remises
 AddDiscount=Editer remises
 AddRelativeDiscount=Créer remise relative
@@ -274,6 +277,7 @@ HelpAbandonBadCustomer=Ce montant a été abandonné (client jugé mauvais payeu
 HelpAbandonOther=Ce montant a été abandonné car il s'agissait d'une erreur de facturation (saisie mauvais client, facture remplacée par une autre).
 IdSocialContribution=Id de paiement charge fiscale ou sociale
 PaymentId=Id paiement
+PaymentRef=Ref paiement
 InvoiceId=Id facture
 InvoiceRef=Réf. facture
 InvoiceDateCreation=Date création facture
@@ -301,8 +305,15 @@ RelatedSupplierInvoices=Factures fournisseurs liées
 LatestRelatedBill=Dernière facture en rapport
 WarningBillExist=Attention, une ou plusieurs factures existent déjà
 MergingPDFTool=Outil de fusion de PDF
+<<<<<<< HEAD
 ListOfPreviousSituationInvoices=Liste des précédentes factures de situation
 ListOfNextSituationInvoices=Liste des factures suivantes de situation
+=======
+AmountPaymentDistributedOnInvoice=Montant paiement affecté à la facture
+PaymentNote=Note du paiement
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
+>>>>>>> refs/remotes/origin/3.9
 
 # PaymentConditions
 PaymentConditionShortRECEP=À réception
@@ -356,7 +367,7 @@ ExtraInfos=Informations complémentaires
 RegulatedOn=Réglé le
 ChequeNumber=Chèque N°
 ChequeOrTransferNumber=Chèque/Virement N°
-ChequeMaker=Emetteur du chèque
+ChequeMaker=Chèque/Virement N°
 ChequeBank=Banque du chèque
 CheckBank=Chèque
 NetToBePaid=Net à payer
@@ -400,6 +411,7 @@ Reported=Différé
 DisabledBecausePayments=Non disponible car il existe des paiements
 CantRemovePaymentWithOneInvoicePaid=Suppression impossible quand il existe au moins une facture classée payée.
 ExpectedToPay=Paiement attendu
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Règlé par ce paiement
 ClosePaidInvoicesAutomatically=Classer "Payées" les factures standards ou de remplacements ayant un reste à payer nul 
 ClosePaidCreditNotesAutomatically=Classer automatiquement à "Payé" les factures avoirs entièrement remboursées.
@@ -411,7 +423,11 @@ NoteListOfYourUnpaidInvoices=Remarque: Cette liste ne contient que les factures
 RevenueStamp=Timbre fiscal
 YouMustCreateInvoiceFromThird=Cette option n'est disponible que lorsqu'on accède à la création de facture depuis l'onglet "Client" d'un Tiers.
 PDFCrabeDescription=Modèle de facture PDF complet (modèle recommandé par défaut)
+<<<<<<< HEAD
 PDFCrevetteDescription=Modèle de facture PDF pour les factures de situations
+=======
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+>>>>>>> refs/remotes/origin/3.9
 TerreNumRefModelDesc1=Renvoie le numéro sous la forme %syymm-nnnn pour les factures et factures de remplacement, %syymm-nnnn pour les avoirs et %syymm-nnnn pour les acomptes où yy est l'année, mm le mois et nnnn un compteur séquentiel sans rupture et sans remise à 0
 MarsNumRefModelDesc1=Renvoie le numéro sous la forme %syymm-nnnn pour les factures, %syymm-nnnn pour les factures de remplacement, %syymm-nnnn pour les acomptes et %syymm-nnnn pour les avoirs où yy est l'année, mm le mois et nnnn un compteur séquentiel sans rupture et sans remise à 0
 TerreNumRefModelError=Une facture commençant par $syymm existe déjà et est incompatible avec cet modèle de numérotation. Supprimez-la ou renommez-la pour activer ce module.
@@ -442,6 +458,7 @@ CantBeLessThanMinPercent=La progression ne peut être inférieure à la valeur d
 NoSituations=Pas de situations ouvertes
 InvoiceSituationLast=Dernière facture
 PDFCrevetteSituationNumber=Situation N°%s
+<<<<<<< HEAD
 PDFCrevetteSituationOrderTitle=Commande d'origine
 PDFCrevetteSituationInvoiceTitle=Facture de situation
 PDFCrevetteSituationInvoiceLineDecompte=Facture de situation - DECOMPTE
@@ -449,3 +466,12 @@ PDFCrevetteSituationInvoiceLine=Situation N°%s : Fact. N°%s au %s
 TotalSituationInvoice=Total Situtation
 invoiceLineProgressError=La progression de la ligne de situation ne peut être égale ou supérieure à la ligne de situation suivante
 updatePriceNextInvoiceErrorUpdateline=Erreur de mise à jour d'un prix sur la facture : %s
+=======
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
+>>>>>>> refs/remotes/origin/3.9
diff --git a/htdocs/langs/fr_FR/boxes.lang b/htdocs/langs/fr_FR/boxes.lang
index 5eb6d9772a041848711e81ea3f5097f46527d3cd..4f9c5fa95049a6509710bdc155473f615f1dd52f 100644
--- a/htdocs/langs/fr_FR/boxes.lang
+++ b/htdocs/langs/fr_FR/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Factures clients
 ForCustomersOrders=Commandes clients
 ForProposals=Propositions commerciales
 LastXMonthRolling=Les %s derniers mois tournant
+ChooseBoxToAdd=Choisissez une boîte à ajouter
diff --git a/htdocs/langs/fr_FR/cashdesk.lang b/htdocs/langs/fr_FR/cashdesk.lang
index 460925e857560a2418a2dfb4c64db1e4ad77871f..5fdaca1c754bebc844ff4d109cfcdb7eb16039f0 100644
--- a/htdocs/langs/fr_FR/cashdesk.lang
+++ b/htdocs/langs/fr_FR/cashdesk.lang
@@ -38,4 +38,4 @@ ShowStock=Voir entrepôt
 DeleteArticle=Cliquez pour enlever cet article
 FilterRefOrLabelOrBC=Recherche (Ref/Lib.)
 UserNeedPermissionToEditStockToUsePos=Vous avez demandé de réduire le stock sur création de facture, aussi l'utilisateur qui utilise le Point De Vente doit avoir la permission d'éditer le stock.
-DolibarrReceiptPrinter=Dolibarr Receipt Printer
+DolibarrReceiptPrinter=Imprimante reçu
diff --git a/htdocs/langs/fr_FR/categories.lang b/htdocs/langs/fr_FR/categories.lang
index b359c5f368d5132a4b343aeed20932710245af87..403a0d34b6a050499a43952fe30bdccf1500049c 100644
--- a/htdocs/langs/fr_FR/categories.lang
+++ b/htdocs/langs/fr_FR/categories.lang
@@ -13,7 +13,7 @@ ProductsCategoriesArea=Espace tags/catégories de produits/services
 SuppliersCategoriesArea=Espace tags/catégories de fournisseurs
 CustomersCategoriesArea=Espace tags/catégories de clients
 ThirdPartyCategoriesArea=Espace tags/catégories de tiers
-MembersCategoriesArea=Espace tags/catégories de membres
+MembersCategoriesArea=Espace tags/catégories adhérents
 ContactsCategoriesArea=Espace tags/catégories de contacts
 MainCats=Tags/catégories principaux(ales)
 SubCats=Sous-catégories
@@ -73,9 +73,10 @@ NoCategoriesDefined=Aucun(e) tag/catégorie défini(e)
 SuppliersCategoryShort=Tags/catégories de fournisseurs
 CustomersCategoryShort=Tags/catégories de clients
 ProductsCategoryShort=Tags/catégories de produits
-MembersCategoryShort=Tags/catégories de membres
+MembersCategoryShort=Tags/catégories adhérents
 SuppliersCategoriesShort=Tags fournisseurs
 CustomersCategoriesShort=Tags/catégories de clients
+ProspectsCategoriesShort=Tags/Catégories de prospects
 CustomersProspectsCategoriesShort=Tags clients/prosp.
 ProductsCategoriesShort=Tags/catégories de produits
 MembersCategoriesShort=Tags/catégories de membres
@@ -109,4 +110,3 @@ CategorieRecursivHelp=Si activé : quand un élément est ajouté dans une cat
 AddProductServiceIntoCategory=Ajouter le produit/service suivant
 ShowCategory=Afficher tag/catégorie
 ByDefaultInList=Par défaut dans la liste
-Translation=Traduction
\ No newline at end of file
diff --git a/htdocs/langs/fr_FR/commercial.lang b/htdocs/langs/fr_FR/commercial.lang
index bf248a88e9bf5dbf54429babdc083c186bde8376..305f310b085b4ccb31b8d5aa8af0d24397a7ec8e 100644
--- a/htdocs/langs/fr_FR/commercial.lang
+++ b/htdocs/langs/fr_FR/commercial.lang
@@ -81,7 +81,7 @@ ActionAC_SHIP=Envoi bon d'expédition par email
 ActionAC_SUP_ORD=Envoi commande fournisseur par email
 ActionAC_SUP_INV=Envoi facture fournisseur par email
 ActionAC_OTH=Autre
-ActionAC_OTH_AUTO=Autre (evênements insérés automatiquement)
+ActionAC_OTH_AUTO=Autre (Événements insérés automatiquement)
 ActionAC_MANUAL=Événements insérés manuellement
 ActionAC_AUTO=Événements insérés automatiquement
 Stats=Statistiques de vente
diff --git a/htdocs/langs/fr_FR/companies.lang b/htdocs/langs/fr_FR/companies.lang
index 5e7ac89f275d24747cd741d5d43e19bb78df7555..d9a85c72175997b866081813dd1e1e5e41d353b9 100644
--- a/htdocs/langs/fr_FR/companies.lang
+++ b/htdocs/langs/fr_FR/companies.lang
@@ -88,10 +88,10 @@ VATIsNotUsed=Non assujetti à la TVA
 CopyAddressFromSoc=Remplir avec l'adresse du tiers
 NoEmailDefined=Aucun email défini
 ##### Local Taxes #####
-LocalTax1IsUsed=Use second tax
+LocalTax1IsUsed=Assujetti à la deuxième taxe
 LocalTax1IsUsedES= Assujetti à RE
 LocalTax1IsNotUsedES= Non assujetti à RE
-LocalTax2IsUsed=Use third tax
+LocalTax2IsUsed=Assujetti à la troisième taxe
 LocalTax2IsUsedES= Assujetti à IRPF
 LocalTax2IsNotUsedES= Non assujetti à IRPF
 LocalTax1ES=RE
@@ -206,7 +206,7 @@ ProfId1MA=Id. prof. 1 (R.C.)
 ProfId2MA=Id. prof. 2 (Patente)
 ProfId3MA=Id. prof. 3 (I.F.)
 ProfId4MA=Id. prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Id. Prof. 1 (R.F.C).
 ProfId2MX=ID. Prof. 2 (R..P. IMSS)
diff --git a/htdocs/langs/fr_FR/compta.lang b/htdocs/langs/fr_FR/compta.lang
index accb0faa9bf400e2ae5e6f3253ab3165bd0cc278..dd7ca2fc4ccb6378a802e5b83dff0b067fc9f986 100644
--- a/htdocs/langs/fr_FR/compta.lang
+++ b/htdocs/langs/fr_FR/compta.lang
@@ -82,12 +82,12 @@ ListOfSupplierPayments=Liste des règlements fournisseurs
 DateStartPeriod=Date de début
 DateEndPeriod=Date de fin
 NewVATPayment=Nouveau règlement de TVA
-newLT1Payment=New tax 2 payment
-newLT2Payment=New tax 3 payment
-LT1Payment=Tax 2 payment
-LT1Payments=Tax 2 payments
-LT2Payment=Tax 3 payment
-LT2Payments=Tax 3 payments
+newLT1Payment=Nouveau paiement de taxe 2
+newLT2Payment=Nouveau paiement de taxe 3
+LT1Payment=Paiement de la taxe 2
+LT1Payments=Paiements de la taxe 2
+LT2Payment=Paiement de la taxe 3
+LT2Payments=Paiements de la taxe 3
 newLT1PaymentES=Nouveau règlement de RE
 newLT2PaymentES=Nouveau règlement de IRPF
 LT1PaymentES=Règlement RE
@@ -147,14 +147,15 @@ AnnualByCompaniesInputOutputMode=Bilan des recettes et dépenses, détail par ti
 SeeReportInInputOutputMode=Cliquer sur <b>%sRecettes-Dépenses%s</b> dit <b>comptabilité de caisse</b> pour un calcul sur les paiements effectivement réalisés
 SeeReportInDueDebtMode=Cliquer sur <b>%sCréances-Dettes%s</b> dit <b>comptabilité d'engagement</b> pour un calcul sur les factures émises
 RulesAmountWithTaxIncluded=- Les montants affichés sont les montants taxe incluse
-RulesResultDue=- It includes outstanding invoices, expenses, VAT, donations whether they are paid or not. Is also includes paid salaries.<br>- It is based on the validation date of invoices and VAT and on the due date for expenses. For salaries defined with Salary module, the value date of payment is used.
-RulesResultInOut=- It includes the real payments made on invoices, expenses, VAT and salaries. <br>- It is based on the payment dates of the invoices, expenses, VAT and salaries. The donation date for donation.
-RulesCADue=- It includes the client's due invoices whether they are paid or not. <br>- It is based on the validation date of these invoices.<br>
+RulesResultDue=- Il comprend les factures impayées, les dépenses, la TVA, les dons qu'elles soient payées ou non. Il comprend également les salaires versés. <br> - Il est basé sur la date de validation de factures et de la TVA et à la date prévue pour les dépenses. Pour les salaires définis avec le module de salaire, la date de paiement de la valeur est utilisée.
+RulesResultInOut=- Il comprend les paiements réels effectués sur les factures, les dépenses, la TVA et les salaires. <br> - Il est basé sur les dates de paiement des factures, les dépenses, la TVA et les salaires. La date du don pour le don.
+RulesCADue=- Il comprend les factures dues par le client si elles sont payées ou non. <br> - Il est basé sur la date de validation de ces factures. <br>
 RulesCAIn=- Il inclut les règlements effectivement reçus des factures clients.<br>- Il se base sur la date de règlement de ces factures<br>
 DepositsAreNotIncluded=- Les factures d'acomptes ne sont pas incluses
 DepositsAreIncluded=- Les factures d'acomptes sont incluses
 LT2ReportByCustomersInInputOutputModeES=Rapport par client des IRPF
 LT1ReportByCustomersInInputOutputModeES=Rapport par tiers des RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Rapport par client des TVA collectées et payées
 VATReportByCustomersInDueDebtMode=Rapport par client des TVA collectées et payées
 VATReportByQuartersInInputOutputMode=Rapport par taux des TVA collectées et payées
diff --git a/htdocs/langs/fr_FR/contracts.lang b/htdocs/langs/fr_FR/contracts.lang
index d7b9d41757a007d21857086447179f0afb801c75..004218ebd291a8e883725788dc0f6ff194bfb0c2 100644
--- a/htdocs/langs/fr_FR/contracts.lang
+++ b/htdocs/langs/fr_FR/contracts.lang
@@ -19,7 +19,7 @@ ServiceStatusLateShort=Expiré
 ServiceStatusClosed=Fermé
 ServicesLegend=Légende pour les services
 Contracts=Contrats
-ContractsSubscriptions=Contracts/Subscriptions
+ContractsSubscriptions=Contrats/Abonnements
 ContractsAndLine=Contrats et lignes de contrats
 Contract=Contrat
 ContractLine=Ligne de contrat
@@ -31,7 +31,7 @@ MenuRunningServices=Services actifs
 MenuExpiredServices=Services expirés
 MenuClosedServices=Services fermés
 NewContract=Nouveau contrat
-NewContractSubscription=New contract/subscription
+NewContractSubscription=Nouveau contrat/abonn.
 AddContract=Créer contrat
 SearchAContract=Rechercher un contrat
 DeleteAContract=Supprimer un contrat
diff --git a/htdocs/langs/fr_FR/cron.lang b/htdocs/langs/fr_FR/cron.lang
index 84d3a2aa2053886d2fe0d89483d108dc27330111..93e79c2991fdf9b1b0a8e2d1974952ba3be3602a 100644
--- a/htdocs/langs/fr_FR/cron.lang
+++ b/htdocs/langs/fr_FR/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=Sur un environnement Unix vous pouvez utiliser l'entrée
 CronExplainHowToRunWin=Sur un environement Microsoft(tm) Windows vous pouvez utiliser le planificateur de tache pour lancer cette commande toute les 5 minutes.
 # Menu
 CronJobs=Travaux programmés
-CronListActive=Liste des travaux
+CronListActive=Liste des travaux activés/planifiés
 CronListInactive=Liste des travaux inactifs
+EnabledAndDisabled=Activés et désactivés
 # Page list
 CronDateLastRun=Dernier lancement
 CronLastOutput=Sortie du dernier lancement
@@ -35,8 +36,8 @@ CronInfo=Le module des travaux planifiés permet d'exécuter des opérations qui
 CronWaitingJobs=Travaux en attente
 CronTask=Travail planifié
 CronNone=Aucun(e)
-CronDtStart=Date de début
-CronDtEnd=Date de fin
+CronDtStart=Pas avant
+CronDtEnd=Pas après
 CronDtNextLaunch=Prochaine exécution
 CronDtLastLaunch=Dernière exécution
 CronFrequency=Fréquence
@@ -51,11 +52,12 @@ CronNoJobs=Aucun travail enregistré
 CronPriority=Priorité
 CronLabel=Description
 CronNbRun=Nb. exec.
+CronMaxRun=Nb max de lancement
 CronEach=Tous les
 JobFinished=Travail lancé et terminé
 #Page card
 CronAdd= Ajoutez des travaux
-CronHourStart= Date et heure de démarrage de la tâche 
+CronHourStart= Date et heure de démarrage de la tâche
 CronEvery=Exécuter chaque tâche
 CronObject=Instance/objet à créer
 CronArgs=Paramètres
diff --git a/htdocs/langs/fr_FR/deliveries.lang b/htdocs/langs/fr_FR/deliveries.lang
index 0107752fc002e8992eba01b4174cecd1c5e020ec..84ba2e40185a9bebd9c46acd90d28c60e9f6a52c 100644
--- a/htdocs/langs/fr_FR/deliveries.lang
+++ b/htdocs/langs/fr_FR/deliveries.lang
@@ -7,7 +7,7 @@ DeliveryOrders=Bons de réception
 DeliveryDate=Date de livraison
 DeliveryDateShort=Date réc.
 CreateDeliveryOrder=Générer bon de réception
-DeliveryStateSaved=Delivery state saved
+DeliveryStateSaved=Le statut de livraison est enregistré
 QtyDelivered=Qté livrée
 SetDeliveryDate=Définir la date de livraison
 ValidateDeliveryReceipt=Valider le bon de livraison
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Êtes-vous sûr de vouloir supprimer ce bon de livr
 DeliveryMethod=Méthode de livraison
 TrackingNumber=Numéro de suivi
 DeliveryNotValidated=Bon de réception non validé
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Nom et Signature :
 ToAndDate=A___________________________________ le ____/_____/__________
diff --git a/htdocs/langs/fr_FR/errors.lang b/htdocs/langs/fr_FR/errors.lang
index 47be13aac6f554aebfc2b4bac273255fc0c94484..79bba51615c6764081b30844571b172428142dcb 100644
--- a/htdocs/langs/fr_FR/errors.lang
+++ b/htdocs/langs/fr_FR/errors.lang
@@ -170,11 +170,11 @@ ErrorFieldMustBeANumeric=Le champ <b>%s</b> doit être un numérique
 ErrorFieldMustBeAnInteger=Le champ <b>%s</b> doit être un numérique
 ErrorMandatoryParametersNotProvided=Paramètre(s) obligatoire(s) non fournis
 ErrorOppStatusRequiredIfAmount=Vous avez fixé un montant estimé pour cette opportunité/affaire. Aussi, vous devez également entrer son statut
-ErrorBadDefinitionOfMenuArrayInModuleDescriptor=Bad Definition Of Menu Array In Module Descriptor (bad value for key fk_menu)
-ErrorSavingChanges=An error has ocurred when saving the changes
+ErrorBadDefinitionOfMenuArrayInModuleDescriptor=Mauvaise définition du tableau Menu dans le descripteur de module (mauvaise valeur pour la clé fk_menu)
+ErrorSavingChanges=Une erreur est survenue lors de la sauvegarde des modifications
 
 # Warnings
-WarningPasswordSetWithNoAccount=A password was set for this member. However, no user account was created. So this password is stored but can't be used to login to Dolibarr. It may be used by an external module/interface but if you don't need to define any login nor password for a member, you can disable option "Manage a login for each member" from Member module setup. If you need to manage a login but don't need any password, you can keep this field empty to avoid this warning. Note: Email can also be used as a login if the member is linked to a user.
+WarningPasswordSetWithNoAccount=Un mot de passe a été fixé pour cet adhérent. Cependant, aucun compte d'utilisateur n'a été créé. Donc, ce mot de passe est stocké, mais ne peut être utilisé pour accéder à Dolibarr. Il peut être utilisé par un module/interface externe, mais si vous n'avez pas besoin de définir ni login ni mot de passe pour un adhérent, vous pouvez désactiver l'option «Gérer un login pour chaque adhérent" depuis la configuration du module Adhérents. Si vous avez besoin de gérer un login, mais pas de mot de passe, vous pouvez laisser ce champ vide pour éviter cet avertissement. Remarque: L'email peut également être utilisé comme login si l'adhérent est lié à un utilisateur.
 WarningMandatorySetupNotComplete=Les informations de configuration obligatoire doivent être renseignées
 WarningSafeModeOnCheckExecDir=Attention, l'option PHP <b>safe_mode</b> est active, la commande doit dont être dans un répertoire déclaré dans le paramètre php <b>safe_mode_exec_dir</b>.
 WarningAllowUrlFopenMustBeOn=Attention, le paramètre <b>allow_url_fopen</b> doit être positionné à <b>on</b> dans le fichier <b>php.ini</b> pour que ce module soit pleinement opérationnel. Vous devez modifier ce fichier manuellement.
diff --git a/htdocs/langs/fr_FR/holiday.lang b/htdocs/langs/fr_FR/holiday.lang
index d201181188df61cd78ff3a3b53eb59fdd19f6edb..d4332d16927546b76e294ceed715fae32ed710c3 100644
--- a/htdocs/langs/fr_FR/holiday.lang
+++ b/htdocs/langs/fr_FR/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=Vous devez activer le module Congés pour afficher cette page.
 NotConfigModCP=Vous devez configurer le module Congés pour afficher cette page. Pour effectuer cette opération, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;">cliquer ici</a>.
 NoCPforUser=Vous n'avez plus de jours disponibles
 AddCP=Créer une demande de congés
-Employe=Employé
 DateDebCP=Date Début
 DateFinCP=Date Fin
 DateCreateCP=Date de création
@@ -23,7 +22,7 @@ ReviewedByCP=Sera approuvé par
 DescCP=Description
 SendRequestCP=Créer une demande de congés
 DelayToRequestCP=Les demandes de congés doivent être faites au moins <b>%s jour(s)</b> avant la date de ceux-ci.
-MenuConfCP=Éditer le solde de congés
+MenuConfCP=Solde des congès
 UpdateAllCP=Mettre à jour les congés
 SoldeCPUser=Solde de congés: <b>%s jours</b>.
 ErrorEndDateCP=Vous devez choisir une date de fin supérieur à la date de début.
@@ -79,9 +78,9 @@ PrevSoldeCP=Précédent Solde
 NewSoldeCP=Nouveau Solde
 alreadyCPexist=Une demande de congés a déjà été faite sur cette période.
 UserName=Nom Prénom
-Employee=Salarié
 FirstDayOfHoliday=Premier jour de congés
 LastDayOfHoliday=Dernier jours de congés
+BoxTitleLastLeaveRequests=Les %s dernières demandes de congès modifiées
 HolidaysMonthlyUpdate=Mise à jour mensuelle
 ManualUpdate=Mise à jour manuelle
 HolidaysCancelation=Annulation de la demande de congés
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Votre demande de congés payés %s à %s vient d'être refus
 HolidaysCanceled=Abandonner la demande de congés
 HolidaysCanceledBody=Votre demande de congés du %s au %s a été annulée.
 NewByMonth=Ajouté par mois
+Affect=Suivi par un compteur
+FollowedByACounter=1: Ce type de congé doit être suivis par un compteur. Le compteur est incrémenté manuellement ou automatiquement et quand une demande de congé est validée, le compteur est décrémenté.<br>0: Non suivi par un compteur.
+NoLeaveWithCounterDefined=Il n'y a pas de type de congés définis qui requiert un suivi par un compteur
 GoIntoDictionaryHolidayTypes=Aller dans <strong>Accueil - Configuration - Dictionnaires - Type de congés</strong> pour configurer les différents types de congés.
diff --git a/htdocs/langs/fr_FR/hrm.lang b/htdocs/langs/fr_FR/hrm.lang
index 582506b9dc5777085d3afa9afc784c87a56498b2..43f97555ff826b87b578f289913901391594179b 100644
--- a/htdocs/langs/fr_FR/hrm.lang
+++ b/htdocs/langs/fr_FR/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=GRH - List des fonctions
 ListOfEmployees=List des salariés
 Employees=Salariés
 Employee=Salarié
+Employe=Employe
 NewEmployee=Nouveau salarié
 EmployeeCard=Fiche salarié
diff --git a/htdocs/langs/fr_FR/interventions.lang b/htdocs/langs/fr_FR/interventions.lang
index 9667fdcc8c5465d2798c9b4661200e1aa1ccaf7a..86f34a77158b48bf1e6111ed3f3caaf5614fa9fa 100644
--- a/htdocs/langs/fr_FR/interventions.lang
+++ b/htdocs/langs/fr_FR/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Renvoie le numéro sous la forme %syymm-nnnn où yy est
 PacificNumRefModelError=Une facture commençant par $syymm existe en base et est incompatible avec cette numérotation. Supprimez la ou renommez la pour activer ce module.
 PrintProductsOnFichinter=Afficher les produits sur la fiche d'intervention
 PrintProductsOnFichinterDetails=interventions générées à partir des commandes
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Id intervention
 InterRef=Intervention ref.
diff --git a/htdocs/langs/fr_FR/mails.lang b/htdocs/langs/fr_FR/mails.lang
index a15fb8ec6d6e3dd4557836fec71a4b4fb533602d..dd6cbf9ec77c304f6d5160f75e287ff0853cfdf4 100644
--- a/htdocs/langs/fr_FR/mails.lang
+++ b/htdocs/langs/fr_FR/mails.lang
@@ -81,15 +81,16 @@ ActivateCheckReadKey=Clé de sécurité permettant le chiffrement des URL utilis
 EMailSentToNRecipients=Email envoyé à %s destinataires.
 XTargetsAdded=<b>%s</b> destinataires ajoutés dans la liste cible
 EachInvoiceWillBeAttachedToEmail=Un document utilisant le modèle par défaut de facture sera généré et attaché à l'email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Rappel de la facture %s (%s)
 SendRemind=Envoyer relance par email
 RemindSent=%s relance(s) envoyée(s)
-AllRecipientSelected=All thirdparties selected and if an email is set.
+AllRecipientSelected=Tous les tiers sélectionnés et si un email est défini
 NoRemindSent=Aucun email de relance envoyé
-ResultOfMailSending=Result of mass EMail sending
-NbSelected=Nb selected
-NbIgnored=Nb ignored
-NbSent=Nb sent
+ResultOfMailSending=Résultat de l'envoi d'EMail en masse
+NbSelected=Nb sélectionné
+NbIgnored=Nb ignoré
+NbSent=Nb envoyé
 
 # Libelle des modules de liste de destinataires mailing
 MailingModuleDescContactCompanies=Contacts de tiers (prospects, clients, fournisseurs…)
@@ -100,7 +101,7 @@ MailingModuleDescEmailsFromUser=Emails saisis manuellement (email;nom;prenom;aut
 MailingModuleDescContactsCategories=Tiers (par catégorie)
 MailingModuleDescDolibarrContractsLinesExpired=Tiers avec lignes de contrats de services expirées
 MailingModuleDescContactsByCompanyCategory=Contacts de tiers (par catégorie de tiers)
-MailingModuleDescContactsByCategory=Contacts/addresses of third parties (by category)
+MailingModuleDescContactsByCategory=Contacts/adresses de tiers (par catégorie)
 MailingModuleDescMembersCategories=Adhérents (par catégorie)
 MailingModuleDescContactsByFunction=Contacts de tiers (par poste/fonction)
 LineInFile=Ligne %s du fichier
diff --git a/htdocs/langs/fr_FR/main.lang b/htdocs/langs/fr_FR/main.lang
index 5d0a8b6048373e53c26334f322901db182439b51..672261fcbac1925d2afbb38f96f0b4bcfceb64b9 100644
--- a/htdocs/langs/fr_FR/main.lang
+++ b/htdocs/langs/fr_FR/main.lang
@@ -24,7 +24,7 @@ FormatDateHourSecShort=%d/%m/%Y %H:%M:%S
 FormatDateHourTextShort=%d %b %Y %H:%M
 FormatDateHourText=%d %B %Y %H:%M
 DatabaseConnection=Connexion à la base
-Translation=Traduction
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Pas de traduction
 NoRecordFound=Aucun enregistrement trouvé
 NoError=Aucune erreur
@@ -106,6 +106,7 @@ NotePrivate=Note (privée)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr a été configuré pour limiter la précision des prix unitaires à <b>%s</b> décimales.
 DoTest=Tester
 ToFilter=Filtrer
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Attention, vous avez au moins un élément qui a dépassé le délai de tolérance de retard.
 yes=oui
 Yes=Oui
@@ -229,6 +230,8 @@ Now=Maintenant
 HourStart=Heure de début
 Date=Date
 DateAndHour=Date et heure
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Date début
 DateEnd=Date fin
 DateCreation=Date création
@@ -609,6 +612,7 @@ TotalMan=Total
 NeverReceived=Jamais reçu
 Canceled=Annulé
 YouCanChangeValuesForThisListFromDictionarySetup=Vous pouvez changer ces valeurs depuis le menu accueil - configuration - dictionnaires
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Couleur
 Documents=Fichiers joints
 DocumentsNb=Fichiers joints (%s)
@@ -696,6 +700,7 @@ Test=Test
 Element=Élément
 NoPhotoYet=Pas de photo disponible pour l'instant
 HomeDashboard=Synthèse accueil
+Dashboard=Dashboard
 Deductible=Déductible
 from=de
 toward=vers
diff --git a/htdocs/langs/fr_FR/margins.lang b/htdocs/langs/fr_FR/margins.lang
index 76690b6a0295403f58946dda388533dc0ce9c99d..4d7d552ab06d693d0e8731868378fdeee5fe7ad2 100644
--- a/htdocs/langs/fr_FR/margins.lang
+++ b/htdocs/langs/fr_FR/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Choisissez le produit ou le service
 StartDate=Date de début
 EndDate=Date de fin
 Launch=Démarrer
-ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
-ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
+ForceBuyingPriceIfNull=Forcer le prix d'achat au prix de vente si non renseigné
+ForceBuyingPriceIfNullDetails=Si le prix d'achat/revient n'est pas défini, et que cette option est "ON", la marge sera de zéro sur la ligne (le prix d'achat/revient = prix de vente), autrement ("OFF"), la marge sera égale à la valeur suggérée par défaut.
 MARGIN_METHODE_FOR_DISCOUNT=Méthode de gestion des remises globales
 UseDiscountAsProduct=Comme un produit
 UseDiscountAsService=Comme un service
@@ -35,8 +35,9 @@ MargeBrute=Marge brute
 MargeNette=Marge nette
 MargeType1=Marge sur le meilleur prix fournisseur
 MargeType2=Marge sur le Prix Moyen Pondéré (PMP)
-MARGIN_TYPE_DETAILS=Marge brute : Prix de vente HT - Prix d'achat HT<br/>Marge nette : Prix de vente HT - Weighted Average Price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined
+MargeType3=Marge sur le Prix de Revient
+MARGIN_TYPE_DETAILS=Marge brute : Prix de vente - Prix d'achat<br>Marge nette : Prix de vente - Prix de revient
+MarginTypeDesc=* Marge sur le meilleur prix d'achat fournisseur = Prix de vente - Meilleur prix d'achat défini sur la fiche produit<br>* Marge sur le Prix Moyen Pondéré (PMP) = Prix de vente - Prix Moyen Pondéré (PMP) ou meilleur prix d'achat fournisseur sir le PMP n'est pas encore défini.<br>* Marge sur le Prix de Revient = Prix de vente - Prix de revient défini sur la fiche produit ou PMP si le prix de revient n'est pas défini, ou meilleur prix d'achat fournisseur si le PMP n'est pas défini.
 CostPrice=Prix de revient
 BuyingCost=Coût de revient
 UnitCharges=Charge unitaire
diff --git a/htdocs/langs/fr_FR/oauth.lang b/htdocs/langs/fr_FR/oauth.lang
index 67c10aea161ee93baf0c4ab5893fd717e8b62336..dd15e3c882e9ff8d9dd46036807299bf89a28705 100644
--- a/htdocs/langs/fr_FR/oauth.lang
+++ b/htdocs/langs/fr_FR/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/fr_FR/orders.lang b/htdocs/langs/fr_FR/orders.lang
index 038b54af7ba43f24425cdc2495432b30bba5f7c5..fae303e678ea7f824f10842ada0fd07f74eddff0 100644
--- a/htdocs/langs/fr_FR/orders.lang
+++ b/htdocs/langs/fr_FR/orders.lang
@@ -31,12 +31,12 @@ StatusOrderSentShort=En cours
 StatusOrderSent=Envoi en cours
 StatusOrderOnProcessShort=Commandé
 StatusOrderProcessedShort=Traitée
-StatusOrderDelivered=Delivered
+StatusOrderDelivered=Livrée
 StatusOrderToBillShort=Délivrée
 StatusOrderToBill2Short=À facturer
 StatusOrderApprovedShort=Approuvée
 StatusOrderRefusedShort=Refusée
-StatusOrderBilledShort=Billed
+StatusOrderBilledShort=Facturée
 StatusOrderToProcessShort=À traiter
 StatusOrderReceivedPartiallyShort=Reçue partiellement
 StatusOrderReceivedAllShort=Reçue complètement
@@ -50,7 +50,7 @@ StatusOrderToBill=Délivrée
 StatusOrderToBill2=À facturer
 StatusOrderApproved=Approuvée
 StatusOrderRefused=Refusée
-StatusOrderBilled=Billed
+StatusOrderBilled=Facturée
 StatusOrderReceivedPartially=Reçue partiellement
 StatusOrderReceivedAll=Reçue complètement
 ShippingExist=Une expédition existe
@@ -72,7 +72,7 @@ ValidateOrder=Valider la commande
 UnvalidateOrder=Dévalider la commande
 DeleteOrder=Supprimer la commande
 CancelOrder=Annuler la commande
-OrderReopened= Order %s Reopened
+OrderReopened= Commande %s réouverte
 AddOrder=Créer commande
 AddToMyOrders=Ajouter à mes commandes
 AddToOtherOrders=Ajouter aux autres commandes
@@ -82,8 +82,8 @@ OrdersOpened=Commandes à traiter
 NoOpenedOrders=Pas de commande ouvertes
 NoOtherOpenedOrders=Pas d'autres commande ouvertes
 NoDraftOrders=Pas de commandes brouillons
-NoOrder=No Order
-NoSupplierOrder=No supplier order
+NoOrder=No order
+NoSupplierOrder=Pas de commande fournisseur
 OtherOrders=Autres commandes
 LastOrders=Les %s dernières commandes clients
 LastCustomerOrders=Les %s dernières commandes clients
@@ -110,7 +110,7 @@ ClassifyShipped=Classer délivrée
 ClassifyBilled=Classer facturée
 ComptaCard=Fiche compta
 DraftOrders=Commandes brouillons
-DraftSuppliersOrders=Draft suppliers orders
+DraftSuppliersOrders=Brouillon de commandes fournisseurs
 RelatedOrders=Commandes rattachées
 RelatedCustomerOrders=Commandes clients liées
 RelatedSupplierOrders=Commandes fournisseurs liées
diff --git a/htdocs/langs/fr_FR/other.lang b/htdocs/langs/fr_FR/other.lang
index 8d4b510b140019346cd3889f19f5bb8338ce17ad..2868420bc94ecc8177fcd6a3935828645447af73 100644
--- a/htdocs/langs/fr_FR/other.lang
+++ b/htdocs/langs/fr_FR/other.lang
@@ -57,13 +57,13 @@ Miscellaneous=Divers
 NbOfActiveNotifications=Nombre de notifications (nb de destinataires emails)
 PredefinedMailTest=Ceci est un message de test.\nLes 2 lignes sont séparées par un retour à la ligne.\n\n__SIGNATURE__
 PredefinedMailTestHtml=Ceci est un message de <b>test</b> (le mot test doit être en gras).<br>Les 2 lignes sont séparées par un retour à la ligne.<br><br>__SIGNATURE__
-PredefinedMailContentSendInvoice=__CONTACTCIVNAME__\n\nYou will find here the invoice __REF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
-PredefinedMailContentSendInvoiceReminder=__CONTACTCIVNAME__\n\nWe would like to warn you that the invoice  __REF__ seems to not being payed. So this is the invoice in attachment again, as a reminder.\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
+PredefinedMailContentSendInvoice=__CONTACTCIVNAME__\n\nVous trouverez ci-joint la facture __REF__\n\n__PERSONALIZED__Cordialement\n\n__SIGNATURE__
+PredefinedMailContentSendInvoiceReminder=__CONTACTCIVNAME__\n\nNous voudrions vous avertir que le facture __REF__ ne semble pas avoir été payée. Nous vous avons joins la dite facture comme rappel.\n\n__PERSONALIZED__Cordialement\n\n__SIGNATURE__
 PredefinedMailContentSendProposal=__CONTACTCIVNAME__\n\nVeuillez trouver ci-joint la proposition commerciale __PROPREF__\n\n__PERSONALIZED__Cordialement\n\n__SIGNATURE__
-PredefinedMailContentSendSupplierProposal=__CONTACTCIVNAME__\n\nYou will find here the price request __ASKREF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
+PredefinedMailContentSendSupplierProposal=__CONTACTCIVNAME__\n\nVous trouverez ci-joint la demande de prix __ASKREF__\n\n__PERSONALIZED__Cordialement\n\n__SIGNATURE__
 PredefinedMailContentSendOrder=__CONTACTCIVNAME__\n\nVeuillez trouver ci-joint la commande __ORDERREF__\n\n__PERSONALIZED__Cordialement\n\n__SIGNATURE__
 PredefinedMailContentSendSupplierOrder=__CONTACTCIVNAME__\n\nVeuillez trouver ci-joint notre commande __ORDERREF__\n\n__PERSONALIZED__Cordialement\n\n__SIGNATURE__
-PredefinedMailContentSendSupplierInvoice=__CONTACTCIVNAME__\n\nYou will find here the invoice __REF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
+PredefinedMailContentSendSupplierInvoice=__CONTACTCIVNAME__\n\nVous trouverez ci-joint la facture __REF__\n\n__PERSONALIZED__Cordialement\n\n__SIGNATURE__
 PredefinedMailContentSendShipping=__CONTACTCIVNAME__\n\nVeuillez trouver ci-joint le bon d'expédition __SHIPPINGREF__\n\n__PERSONALIZED__Cordialement\n\n__SIGNATURE__
 PredefinedMailContentSendFichInter=__CONTACTCIVNAME__\n\nVeuillez trouver ci-joint la fiche d'intervention __FICHINTERREF__\n\n__PERSONALIZED__Cordialement\n\n__SIGNATURE__
 PredefinedMailContentThirdparty=__CONTACTCIVNAME__\n\n__PERSONALIZED__\n\n__SIGNATURE__
@@ -124,16 +124,16 @@ SurfaceUnitm2=m²
 SurfaceUnitdm2=dm²
 SurfaceUnitcm2=cm²
 SurfaceUnitmm2=mm²
-SurfaceUnitfoot2=ft²
-SurfaceUnitinch2=in²
+SurfaceUnitfoot2=pied²
+SurfaceUnitinch2=pouce²
 Volume=Volume
 TotalVolume=Volume total
 VolumeUnitm3=m³
 VolumeUnitdm3=dm³ (L)
 VolumeUnitcm3=cm³ (ml)
 VolumeUnitmm3=mm³ (µl)
-VolumeUnitfoot3=ft³
-VolumeUnitinch3=in³
+VolumeUnitfoot3=pied³
+VolumeUnitinch3=pouce³
 VolumeUnitounce=once
 VolumeUnitlitre=litre
 VolumeUnitgallon=gallon
@@ -238,3 +238,8 @@ ToExport=Exporter
 NewExport=Nouvel export
 ##### External sites #####
 ExternalSites=Sites externes
+WebsiteSetup=Configuration du module Sites webs
+WEBSITE_PAGEURL=URL de la page
+WEBSITE_TITLE=Titre
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Mots clés
diff --git a/htdocs/langs/fr_FR/paypal.lang b/htdocs/langs/fr_FR/paypal.lang
index 1b166c724070dd9317ff02578bc1dd5f162e0395..b267e1f1671aefadce2773bbabe29bb065c5883b 100644
--- a/htdocs/langs/fr_FR/paypal.lang
+++ b/htdocs/langs/fr_FR/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Mode test/bac à sable (sandbox)
 PAYPAL_API_USER=Nom utilisateur API
 PAYPAL_API_PASSWORD=Mot de passe utilisateur API
 PAYPAL_API_SIGNATURE=Signature API
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Proposer le paiement intégral (Carte+Paypal) ou Paypal seul
 PaypalModeIntegral=Intégral
 PaypalModeOnlyPaypal=PayPal seul
@@ -25,7 +26,7 @@ ValidationOfPaypalPaymentFailed=Echéc de validation du paiement Paypal
 PaypalConfirmPaymentPageWasCalledButFailed=La page de confirmation de paiement Paypal a été appelé par Paypal mais cette confirmation a échouée
 SetExpressCheckoutAPICallFailed=SetExpressCheckout API call failed.
 DoExpressCheckoutPaymentAPICallFailed=DoExpressCheckoutPayment API call failed.
-DetailedErrorMessage=Detailed Error Message
-ShortErrorMessage=Short Error Message
-ErrorCode=Error Code
+DetailedErrorMessage=Message d'erreur détaillé
+ShortErrorMessage=Message d'erreur court
+ErrorCode=Code erreur
 ErrorSeverityCode=Error Severity Code
diff --git a/htdocs/langs/fr_FR/printing.lang b/htdocs/langs/fr_FR/printing.lang
index 083b9f5acd86ba7442c17c4a0668f117e3c357b0..a05ae27f75e954b3e6c6726dfdf55f61b75c2ce9 100644
--- a/htdocs/langs/fr_FR/printing.lang
+++ b/htdocs/langs/fr_FR/printing.lang
@@ -3,7 +3,7 @@ Module64000Name=Impressions Directe
 Module64000Desc=Activer le système d'impression Directe
 PrintingSetup=Réglages du module Impression Directe
 PrintingDesc=Ce module ajoute un bouton Imprimer afin d'envoyer directement les documents à une imprimante (sans ouvrir le document dans une application).
-MenuDirectPrinting=Impressions Directe
+MenuDirectPrinting=Travaux d'impressions directe
 DirectPrint=Impressions Directe
 ModuleDriverSetup=Configuration des drivers impression
 PrintingDriverDesc=Paramètres de configuration pour le driver d'impression
@@ -18,6 +18,13 @@ TestDriver=Test
 TargetedPrinter=Imprimante cible
 UserConf=Configuration par utilisateur
 PRINTGCP=Impression Google Cloud Print
+PRINTGCP_INFO=Configuration Google OAuth API
+PRINTGCP_AUTHLINK=Authentification
+PRINTGCP_TOKEN_ACCESS=Token OAuth Google Cloud Impression
+PRINTGCP_TOKEN_REFRESH=Actualiser token présent
+PRINTGCP_TOKEN_EXPIRED=Token expiré
+PRINTGCP_TOKEN_EXPIRE_AT=Token expirant le
+PRINTGCP_DELETE_TOKEN=Supprimer token sauvegardé
 PrintGCPDesc=Ce driver permet d'envoyer des documents directement à l'imprimante via Google Cloud Print
 PrintingDriverDescprintgcp=Paramètres de configuration pour l'impression Google Cloud Print
 PrintTestDescprintgcp=Liste des imprimantes pour Google Cloud Print
@@ -74,3 +81,6 @@ STATE_IPP_none=Aucune
 MEDIA_IPP_stationery=En attente
 MEDIA_IPP_thermal=Température
 IPP_COLOR_print-black=Imprimante NB
+DirectPrintingJobsDesc=Cette page liste les travaux d'impression trouvés sur les imprimantes disponibles
+GoogleAuthNotConfigured=Configuration Google OAuth non terminé. Activer le module OAuth et entrer un Google ID/Secret
+GoogleAuthConfigured=Google OAuth credentials found into setup of module OAuth.
diff --git a/htdocs/langs/fr_FR/productbatch.lang b/htdocs/langs/fr_FR/productbatch.lang
index 9427500524eddc5d29148d00f8d0965bbe163f1e..9aa4d25715dde9d4abe24371b55cf5f28a5c82d9 100644
--- a/htdocs/langs/fr_FR/productbatch.lang
+++ b/htdocs/langs/fr_FR/productbatch.lang
@@ -5,16 +5,16 @@ ProductStatusNotOnBatch=Non (Lot/Série non utilisé)
 ProductStatusOnBatchShort=Oui
 ProductStatusNotOnBatchShort=Non
 Batch=Lot/Série
-atleast1batchfield=Date limite consommation, péremption ou numéro de lot/série
+atleast1batchfield=Date limite utilisation optimale, de consommation ou numéro de lot/série
 batch_number=Numéro de Lot/Série
 BatchNumberShort=Lot/Série
 l_eatby=Date limite de consommation
 l_sellby=Date de péremption
 DetailBatchNumber=Détails Lot/Série
-DetailBatchFormat=Lot/Série: %s - E: %s - S: %s (Qté: %d)
+DetailBatchFormat=Lot/Série: %s - DMD: %s - DLC: %s (Qté: %d)
 printBatch=Lot/Série: %s
-printEatby=Limite de consommation : %s
-printSellby=Péremption : %s
+printEatby=DMD/DLUO: %s
+printSellby=DLC: %s
 printQty=Qté: %d
 AddDispatchBatchLine=Ajouter une ligne pour la répartition par durée de conservation
 BatchDefaultNumber=Non défini
diff --git a/htdocs/langs/fr_FR/products.lang b/htdocs/langs/fr_FR/products.lang
index 4e5163a93af09a06465d892b2f55862fb76c36f7..dc2c7d76554b859f0498238044f97bcb3242f4e6 100644
--- a/htdocs/langs/fr_FR/products.lang
+++ b/htdocs/langs/fr_FR/products.lang
@@ -3,7 +3,7 @@ ProductRef=Réf. produit
 ProductLabel=Libellé produit
 ProductLabelTranslated=Translated product label
 ProductDescriptionTranslated=Translated product description
-ProductNoteTranslated=Translated product note
+ProductNoteTranslated=Traduire la note de produit
 ProductServiceCard=Fiche produit/service
 Products=Produits
 Services=Services
@@ -67,17 +67,17 @@ ProductStatusNotOnBuy=Hors achat
 ProductStatusOnBuyShort=En achat
 ProductStatusNotOnBuyShort=Hors achat
 UpdatePrice=Changer le prix
-UpdateVAT=Update vat
-UpdateDefaultPrice=Update default price
-UpdateLevelPrices=Update prices for each level
+UpdateVAT=Mise-à-Jour de la TVA
+UpdateDefaultPrice=Mise-à-Jour de prix par défaut
+UpdateLevelPrices=Mise-à-Jour des prix pour chaque niveau
 AppliedPricesFrom=Prix de vente pratiqués à partir du
 SellingPrice=Prix de vente
 SellingPriceHT=Prix de vente HT
 SellingPriceTTC=Prix de vente TTC
 PublicPrice=Prix public
 CurrentPrice=Prix actuel
-CostPriceDescription=This price (net of tax) can be used to store the average amount this product cost to your company. It may be any price you calculate yourself, for example from the average buying price plus average production and distribution cost.
-CostPriceUsage=In a future version, this value could be used for margin calculation.
+CostPriceDescription=Ce prix (net de taxe) peut être utilisée pour stocker le montant moyen de ce produit de coût pour votre entreprise. Il peut être tout prix vous vous calculer, par exemple à partir du prix d'achat moyen majoré des coûts de production et de la distribution moyenne.
+CostPriceUsage=Dans une version future, cette valeur pourrait être utilisée pour le calcul de la marge.
 NewPrice=Nouveau prix
 MinPrice=Prix de vente min.
 MinPriceHT=Prix de vente min. (HT)
@@ -108,8 +108,8 @@ AddToOtherBills=Ajouter aux autres factures
 CorrectStock=Corriger stock
 ListOfStockMovements=Liste des mouvements de stock
 BuyingPrice=Prix d'achat
-PriceForEachProduct=Products with specific prices
-NoPriceSpecificToCustomer=This customer has no specific prices. All standard prices for products/services will be used.
+PriceForEachProduct=Produits avec des prix spécifiques
+NoPriceSpecificToCustomer=Ce client n'a pas de prix spécifiques. Tous les prix standard pour les produits / services seront utilisés.
 SupplierCard=Fiche fournisseur
 CommercialCard=Fiche commerciale
 AllWays=Chemin pour trouver votre produit dans le stock
@@ -133,6 +133,7 @@ ParentProductsNumber=Nbre de produits virtuels/packages parent
 IfZeroItIsNotAVirtualProduct=Si 0, ce produit n'est pas utilisé par un produit package
 IfZeroItIsNotUsedByVirtualProduct=Si 0, ce produit n'est pas un produit package
 EditAssociate=Composer comme produit virtuel
+Translation=Traduction
 KeywordFilter=Filtre par mot-clé
 CategoryFilter=Filtre par catégorie
 ProductToAddSearch=Recherche des produits à ajouter
@@ -189,8 +190,8 @@ ClonePricesProduct=Cloner les informations générales et les prix
 CloneCompositionProduct=Cloner le produits packagés
 ProductIsUsed=Ce produit est utilisé
 NewRefForClone=Réf. du nouveau produit/service
-SellingPrices=Selling prices
-BuyingPrices=Buying prices
+SellingPrices=Les prix de vente
+BuyingPrices=Prix d'achat
 CustomerPrices=Prix clients
 SuppliersPrices=Prix fournisseurs
 SuppliersPricesOfProductsOrServices=Prix fournisseurs (des produits ou services)
@@ -237,8 +238,8 @@ PriceByQuantityRange=Grille de quantités
 ProductsDashboard=Synthèse produits/services
 UpdateOriginalProductLabel=Modifier étiquette d'origine
 HelpUpdateOriginalProductLabel=Permet modifier le nom du produit
-MultipriceRules=Price level rules
-UseMultipriceRules=Use price level rules (defined into product module setup) to autocalculate prices of all other level according to first level
+MultipriceRules=Règles du niveau de prix
+UseMultipriceRules=Utilisation des règles de niveau de prix (défini dans la configuration du module de produit) pour calcul automatique du prix de tous les autres niveau en fonction de premier niveau
 PercentVariationOver=%% variation over %s
 PercentDiscountOver=%% discount over %s
 ### composition fabrication
@@ -251,7 +252,7 @@ UnitPmp=Prix Achat Unitaire
 CostPmpHT=Cout à l'achat HT
 ProductUsedForBuild=Consommé automatiquement par la fabrication
 ProductBuilded=Fabrication terminée
-ProductsMultiPrice=Produits multi-prix
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Prix clients (des produits ou services, multi-prix)
 ProductSellByQuarterHT=Chiffre d'affaires trimestriel des produits hors taxes
 ServiceSellByQuarterHT=Chiffre d'affaire trimestriel des services hors taxes
@@ -307,7 +308,8 @@ LastUpdated=Dernière mise à jour
 CorrectlyUpdated=Mise à jour avec succès
 PropalMergePdfProductActualFile=Fichiers utilisés pour l'ajout au PDF Azur sont
 PropalMergePdfProductChooseFile=Sélectionnez les fichiers PDF
-IncludingProductWithTag=Including product/service with tag
+IncludingProductWithTag=Comprenant produit / service avec tag
 DefaultPriceRealPriceMayDependOnCustomer=Prix ​​par défaut, le prix réel peut dépendre du client
 WarningSelectOneDocument=Sélectionnez au moins un document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qté en propositions
diff --git a/htdocs/langs/fr_FR/projects.lang b/htdocs/langs/fr_FR/projects.lang
index 54cb8cb0ab3e3a4924fc1728b58992a994ad092e..a579f4f20ab15e2090509a037fd3cf6ef1c34c7d 100644
--- a/htdocs/langs/fr_FR/projects.lang
+++ b/htdocs/langs/fr_FR/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=Cette vue présente tous les projets et tâches pour lesq
 ProjectsDesc=Cette vue présente tous les projets (vos habilitations vous offrant une vue exhaustive).
 MyTasksDesc=Cette vue est restreinte aux projets et tâches pour lesquels vous êtes un contact affecté à au moins une tâche (quel qu'en soit le type).
 OnlyOpenedProject=Seuls les projets ouverts sont visibles (les projets à l'état brouillon ou fermé ne sont pas visibles).
+ClosedProjectsAreHidden=Les projets fermés ne sont pas visible.
 TasksPublicDesc=Cette vue présente tous les projets et tâches pour lesquels vous êtes habilité à avoir une visibilité.
 TasksDesc=Cette vue présente tous les projets et tâches (vos habilitations vous offrant une vue exhaustive).
 AllTaskVisibleButEditIfYouAreAssigned=Toutes les tâches de ce projet sont visibles, mais vous pouvez entrer le temps seulement pour une tâche qui vous est attribuée. Attribuez-vous la tâche si vous voulez entrer du temps dessus.
@@ -29,7 +30,9 @@ OfficerProject=Responsable du projet
 LastProjects=Les %s derniers projets
 AllProjects=Tous les projets
 OpenedProjects=Projets ouverts
+OpenedTasks=Tâches ouvertes
 OpportunitiesStatusForOpenedProjects=Montant des opportunités des projets ouverts par statut
+OpportunitiesStatusForProjects=Montant des opportunités des projets par statut
 ProjectsList=Liste des projets
 ShowProject=Afficher projet
 SetProject=Définir projet
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Tâche %s modifiée
 TaskDeletedInDolibarr=Tâche %s supprimée
 OpportunityStatus=Statut opportunité
 OpportunityStatusShort=Status opp.
+OpportunityProbability=Probabilité d'opportunité
+OpportunityProbabilityShort=Prob. opp.
 OpportunityAmount=Montant opportunité
 OpportunityAmountShort=Montant Opp.
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projets avec cet utilisateur comme contact
 TasksWithThisUserAsContact=Tâches assignées à cet utilisateur
 ResourceNotAssignedToProject=Non assigné à un projet
 ResourceNotAssignedToTask=Non assigné à une tâche
+ResourceNotAssignedToTheTask=Non assigné à la tache
 AssignTaskToMe=M'assigner la tâche
 AssignTask=Assigner
 ProjectOverview=Vue d'ensemble
@@ -174,12 +180,12 @@ ProjectWeightedOppAmountOfProjectsByMonth=Montant pondéré des opportunités pa
 ProjectOpenedProjectByOppStatus=Opportunités/affaires ouvertes par statut
 ProjectsStatistics=Statistics sur les projets
 TaskAssignedToEnterTime=Tâche assignée. La saisie de temps sur cette tâche devrait être possible.
-IdTaskTime=Id task time
-YouCanCompleteRef=If you want to complete the ref with some information (to use it as search filters), it is recommanded to add a - character to separate it, so the automatic numbering will still work correctly for next projects. For example %s-ABC. You may also prefer to add search keys into label.
+IdTaskTime=Id ligne de temps
+YouCanCompleteRef=Si vous souhaitez compléter la référence avec quelques informations (pour l'utiliser comme filtres de recherche), il est recommandé d'ajouter un caractère - pour la séparer, de sorte que la numérotation automatique fonctionne toujours correctement pour les projets à venir. Par exemple %s-ABC. Vous pouvez aussi préférer ajouter des clés de recherche dans le libellé.
 OpenedProjectsByThirdparties=Projets ouverts par tiers
 OpportunityTotalAmount=Montant total des opportunités
 OpportunityPonderatedAmount=Montant pondéré des opportunités
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Montant des opportunités pondéré par la probabilité
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposition
diff --git a/htdocs/langs/fr_FR/propal.lang b/htdocs/langs/fr_FR/propal.lang
index 62b89b2feb7f1bce05946187e31739dbd6b750ce..fc138bd05ad6455a7dae5a676f7d5ddc700b12f3 100644
--- a/htdocs/langs/fr_FR/propal.lang
+++ b/htdocs/langs/fr_FR/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Les %s dernières propositions commerciales modifiées
 AllPropals=Toutes les propales
 LastProposals=Dernières propositions
 SearchAProposal=Rechercher une proposition commerciale
+NoProposal=No proposal
 ProposalsStatistics=Statistiques des propositions commerciales
 NumberOfProposalsByMonth=Nombre par mois
 AmountOfProposalsByMonthHT=Montant par mois (HT)
@@ -53,7 +54,7 @@ ListOfProposals=Liste des devis/propositions commerciales
 ActionsOnPropal=Événements sur la proposition
 NoOpenedPropals=Pas de propositions commerciales ouvertes
 NoOtherOpenedPropals=Pas d'autres propositions commerciales ouvertes
-NoPropal=No commercial proposal
+NoPropal=Pas de propositions commerciales
 RefProposal=Réf. proposition commerciale
 SendPropalByMail=Envoyer proposition commerciale par email
 AssociatedDocuments=Documents associés à la proposition :
@@ -62,7 +63,8 @@ DatePropal=Date de proposition
 DateEndPropal=Date de fin de validité
 DateEndPropalShort=Date de fin
 ValidityDuration=Durée de validité
-CloseAs=Clôturer au statut
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Classer facturée
 BuildBill=Créer facture
 ErrorPropalNotFound=Propale %s inexistante
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Modèle par défaut à la création
 DefaultModelPropalToBill=Modèle par défaut lors de la clôture d'une proposition commerciale (à facturer)
 DefaultModelPropalClosed=Modèle par défaut lors de la clôture d'une proposition commerciale (non facturée)
 ProposalCustomerSignature=Cachet, Date, Signature et mention "Bon pour Accord"
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/fr_FR/receiptprinter.lang b/htdocs/langs/fr_FR/receiptprinter.lang
index 28b63d7de792c0b34ddb98af50936450fd611f11..d829e5a51aeda6b4422c7e91831166d71333e0ae 100644
--- a/htdocs/langs/fr_FR/receiptprinter.lang
+++ b/htdocs/langs/fr_FR/receiptprinter.lang
@@ -1,21 +1,21 @@
 # Dolibarr language file - Source file is en_US - receiptprinter
-PrinterAdded=Printer %s added
-PrinterUpdated=Printer %s updated
-PrinterDeleted=Printer %s deleted
-TestSentToPrinter=Test Sent To Printer %s
+PrinterAdded=Imprimante %s ajoutée
+PrinterUpdated=Imprimante %s mis à jour
+PrinterDeleted=Imprimante %s supprimée
+TestSentToPrinter=Test envoyé à l'imprimante %s
 ReceiptPrinterDesc=Setup of printers
 ReceiptPrinterTemplateDesc=Setup of Templates
 ReceiptPrinterTypeDesc=Description of Receipt Printer's type
 ReceiptPrinterProfileDesc=Description of Receipt Printer's Profile
 ListPrinters=List of Printers
 SetupReceiptTemplate=Template Setup
-CONNECTOR_DUMMY=Dummy Printer
-CONNECTOR_NETWORK_PRINT=Network Printer
-CONNECTOR_FILE_PRINT=Local Printer
-CONNECTOR_WINDOWS_PRINT=Local Windows Printer
-CONNECTOR_DUMMY_HELP=Fake Printer for test, does nothing
+CONNECTOR_DUMMY=Imprimante Test
+CONNECTOR_NETWORK_PRINT=Imprimante réseau
+CONNECTOR_FILE_PRINT=Imprimante locale
+CONNECTOR_WINDOWS_PRINT=Imprimante Windows local
+CONNECTOR_DUMMY_HELP=Fausse imprimante pour le test, ne fait rien
 CONNECTOR_NETWORK_PRINT_HELP=10.x.x.x:9100
-CONNECTOR_FILE_PRINT_HELP=/dev/usb/lp0, /dev/usb/lp1
+CONNECTOR_FILE_PRINT_HELP=/ dev / usb / lp0, / dev / usb / lp1
 CONNECTOR_WINDOWS_PRINT_HELP=LPT1, COM1, smb://FooUser:secret@computername/workgroup/Receipt Printer
 PROFILE_DEFAULT=Default Profile
 PROFILE_SIMPLE=Simple Profile
@@ -27,15 +27,15 @@ PROFILE_SIMPLE_HELP=Simple Profile No Graphics
 PROFILE_EPOSTEP_HELP=Epos Tep Profile Help
 PROFILE_P822D_HELP=P822D Profile No Graphics
 PROFILE_STAR_HELP=Star Profile
-DOL_ALIGN_LEFT=Left align text
-DOL_ALIGN_CENTER=Center text
-DOL_ALIGN_RIGHT=Right align text
-DOL_USE_FONT_A=Use font A of printer
-DOL_USE_FONT_B=Use font B of printer
-DOL_USE_FONT_C=Use font C of printer
-DOL_BOLD=Text Bold
-/DOL_BOLD=End of Text Bold
-DOL_DOUBLE_HEIGHT=Text double height
+DOL_ALIGN_LEFT=Texte aligner à gauche
+DOL_ALIGN_CENTER=Centrer le texte
+DOL_ALIGN_RIGHT=Texte aligner à droite
+DOL_USE_FONT_A=Utilisez la police A de l'imprimante 
+DOL_USE_FONT_B=Utilisez la police B de l'imprimante 
+DOL_USE_FONT_C=Utilisez la police C de l'imprimante 
+DOL_BOLD=Le texte en gras
+/DOL_BOLD=Fin du texte en gras
+DOL_DOUBLE_HEIGHT=Texte double hauteur
 /DOL_DOUBLE_HEIGHT=End of Text double height
 DOL_DOUBLE_WIDTH=Text double width
 /DOL_DOUBLE_WIDTH=End of Text double width
diff --git a/htdocs/langs/fr_FR/salaries.lang b/htdocs/langs/fr_FR/salaries.lang
index 303a42d76774e8ea1579736f0caca4518720801d..54253e4a6da57fff9efbfb0f87f5d9ca95a34c60 100644
--- a/htdocs/langs/fr_FR/salaries.lang
+++ b/htdocs/langs/fr_FR/salaries.lang
@@ -3,7 +3,6 @@ SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Code comptable pour les paiements des salair
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Code comptable pour les charges de personnel
 Salary=Salaire
 Salaries=Salaires
-Employee=Employé
 NewSalaryPayment=Nouveau règlement de salaire
 SalaryPayment=Règlement salaire
 SalariesPayments=Règlements des salaires
diff --git a/htdocs/langs/fr_FR/sendings.lang b/htdocs/langs/fr_FR/sendings.lang
index c8214c405d547afc8d723b1d9c1bb937a4737f88..d73112049d4483417eb5f26c8bfa57f19f0cee61 100644
--- a/htdocs/langs/fr_FR/sendings.lang
+++ b/htdocs/langs/fr_FR/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=Toutes les expéditions
 Shipment=Expédition
 Shipments=Expéditions
 ShowSending=Afficher Expéditions
-Receivings=Réceptions
+Receivings=Delivery Receipts
 SendingsArea=Espace expéditions
 ListOfSendings=Liste des expéditions
 SendingMethod=Méthode d'expédition
@@ -69,7 +69,7 @@ ProductQtyInCustomersOrdersRunning=Quantité de produit en commandes client ouve
 ProductQtyInSuppliersOrdersRunning=Quantité de produit en commandes fournisseur ouvertes
 ProductQtyInShipmentAlreadySent=Quantité du produit parmi les commandes clients déjà envoyées
 ProductQtyInSuppliersShipmentAlreadyRecevied=Quantité de produit déjà reçu en commandes fournisseur ouvertes
-NoProductToShipFoundIntoStock=No product to ship found into warehouse <b>%s</b>. Correct stock or go back to choose another warehouse.
+NoProductToShipFoundIntoStock=Aucun produit à expédier n'a été trouver dans l'entrepôt <b>%s</b>. Corrigez l'inventaire ou retourner choisir un autre entrepôt.
 
 # Sending methods
 SendingMethodCATCH=Enlèvement par le client
diff --git a/htdocs/langs/fr_FR/sms.lang b/htdocs/langs/fr_FR/sms.lang
index 4f9cba5c541154531a99d2f8e20639c07f3ffe20..7f1f8b03fb3ad567d3dc4c203e2aca5df435546d 100644
--- a/htdocs/langs/fr_FR/sms.lang
+++ b/htdocs/langs/fr_FR/sms.lang
@@ -49,5 +49,6 @@ SendSms=Envoyer SMS
 SmsInfoCharRemain=Nombre de caractères restant
 SmsInfoNumero= (format international ex : +33899701761)
 DelayBeforeSending=Délai avant envoi (en minutes)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Aucun destinataire disponible. Vérifier la configuration de votre fournisseur de SMS.
 
diff --git a/htdocs/langs/fr_FR/stocks.lang b/htdocs/langs/fr_FR/stocks.lang
index 4b2de64658bbb6a032da77d7f19a1b3136505553..3714dee47c1cb68ddd7f765c40ad271de92b38c1 100644
--- a/htdocs/langs/fr_FR/stocks.lang
+++ b/htdocs/langs/fr_FR/stocks.lang
@@ -53,8 +53,8 @@ QtyDispatched=Quantité ventilée
 QtyDispatchedShort=Qté ventilée
 QtyToDispatchShort=Qté à ventiler
 OrderDispatch=Réception vers stocks
-RuleForStockManagementDecrease=Rule for automatic stock management decrease (manual decrease is always possible, even if an automatic decrease rule is activated)
-RuleForStockManagementIncrease=Rule for automatic stock management increase (manual increase is always possible, even if an automatic increase rule is activated)
+RuleForStockManagementDecrease=Règle de gestion des décrémentations automatiques de stock (la décrémentation manuelle est toujours possible, même si une décrémentation automatique est activée)
+RuleForStockManagementIncrease=Règle de gestion des incrémentations de stock (l'incrémentation manuelle est toujours possible, même si une incrémentation automatique est activée)
 DeStockOnBill=Décrémente les stocks physiques sur validation des factures/avoirs clients
 DeStockOnValidateOrder=Décrémente les stocks physiques sur validation des commandes clients
 DeStockOnShipment=Décrémenter les stocks physiques sur validation des expéditions
@@ -113,7 +113,7 @@ AlertOnly= Alertes seulement
 WarehouseForStockDecrease=L'entrepôt <b>%s</b> sera utilisé pour la décrémentation du stock
 WarehouseForStockIncrease=L'entrepôt <b>%s</b> sera utilisé pour l'incrémentation du stock
 ForThisWarehouse=Pour cet entrepôt
-ReplenishmentStatusDesc=This is a list of all products with a stock lower than desired stock (or lower than alert value if checkbox "alert only" is checked). Using the checkbox, you can create supplier orders to fill the difference.
+ReplenishmentStatusDesc=Ceci est une liste de tous les produits avec un stock inférieur au stock souhaité (ou inférieure à la valeur d'alerte si la case "alerte uniquement" est cochée). En sélectionnant la ligne, vous pouvez créer les commandes fournisseurs pour compléter la différence.
 ReplenishmentOrdersDesc=Ceci est une liste de toutes les commandes fournisseurs ouvertes comportant des produits prédéfinis. Seules les commandes ouvertes avec des produits prédéfinis, donc les commandes qui peuvent affecter les stocks, sont visibles ici.
 Replenishments=Réapprovisionnement
 NbOfProductBeforePeriod=Quantité du produit <b>%s</b> en stock avant la période sélectionnée (< <b>%s</b>)
diff --git a/htdocs/langs/fr_FR/supplier_proposal.lang b/htdocs/langs/fr_FR/supplier_proposal.lang
index 8a23c91ff474441168b81b58a78b6693a495a41c..ec3a21a17c709ece8243bbccfdb164ece159f007 100644
--- a/htdocs/langs/fr_FR/supplier_proposal.lang
+++ b/htdocs/langs/fr_FR/supplier_proposal.lang
@@ -1,47 +1,46 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
-SupplierProposal=Supplier commercial proposals
+SupplierProposal=Demande de prix fournisseur
 supplier_proposalDESC=Gestion des demandes de prix aux fournisseurs
-supplier_proposalMENU_LEFT_TITLE=Propositions commerciales founisseurs
-supplier_proposalMENU_LEFT_TITLE_NEW=Nouvelle demande
-supplier_proposalMENU_LEFT_TITLE_LIST=Liste
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Demande de prix
 CommRequests=Demandes de prix
 SearchRequest=Rechercher une demande
 DraftRequests=Demandes brouillons
 LastModifiedRequests=Les %s dernières demandes de prix modifiées
 RequestsOpened=Demandes de prix ouvertes
-SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalArea=Zone des propositions de fournisseurs
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Propositions commerciales founisseurs
 NewAskPrice=Nouvelle demande de prix
 NewAsk=Nouvelle demande
-ShowSupplierProposal=Show price request
-AddSupplierProposal=Create a price request
-SupplierProposalRefFourn=Supplier ref
-SupplierProposalDate=Delivery date
-SupplierProposalRefFournNotice=Before closing to "Accepted", think to grasp suppliers references.
-RelatedSupplierProposal=Related price requests suppliers
+ShowSupplierProposal=Afficher demande de prix
+AddSupplierProposal=Créer une demande de prix
+SupplierProposalRefFourn=Ref fournisseur
+SupplierProposalDate=Date de livraison
+SupplierProposalRefFournNotice=Avant de fermer à «Accepté», pensez à saisir fournisseurs références.
+RelatedSupplierProposal=Prix ​​demandes liées fournisseurs
 ConfirmValidateAsk=Êtes-vous sûr de vouloir valider cette demande de prix sous la référence <b>%s</b> ?
 DateAsk=Date de demande
 DeleteAsk=Supprimer demande
 ValidateAsk=Valider demande
 AddAsk=Créer une demande
-SupplierProposalDraft=Drafts
-SupplierProposalOpened=Open
-SupplierProposalStatusDraft=Draft (needs to be validated)
-SupplierProposalStatusValidated=Validated (request is open)
-SupplierProposalStatusOpened=Validated (request is open)
-SupplierProposalStatusClosed=Closed
-SupplierProposalStatusSigned=Accepted
-SupplierProposalStatusNotSigned=Refused
-SupplierProposalStatusBilled=Billed
-SupplierProposalStatusDraftShort=Draft
-SupplierProposalStatusValidatedShort=Validated
-SupplierProposalStatusOpenedShort=Open
-SupplierProposalStatusClosedShort=Closed
-SupplierProposalStatusSignedShort=Accepted
-SupplierProposalStatusNotSignedShort=Refused
-SupplierProposalStatusBilledShort=Billed
+SupplierProposalDraft=Brouillons
+SupplierProposalOpened=Ouvert
+SupplierProposalStatusDraft=Brouillon (à valider)
+SupplierProposalStatusValidated=Validée (demande ouverte)
+SupplierProposalStatusOpened=Validée (demande ouverte)
+SupplierProposalStatusClosed=Fermé
+SupplierProposalStatusSigned=Accepté
+SupplierProposalStatusNotSigned=Refusé
+SupplierProposalStatusBilled=Facturé
+SupplierProposalStatusDraftShort=Brouillon
+SupplierProposalStatusValidatedShort=Validé
+SupplierProposalStatusOpenedShort=Ouvert
+SupplierProposalStatusClosedShort=Fermé
+SupplierProposalStatusSignedShort=Accepté
+SupplierProposalStatusNotSignedShort=Refusé
+SupplierProposalStatusBilledShort=Facturé
 CopyAskFrom=Créer demande/devis par recopie d'une demande existante
 CreateEmptyAsk=Créer demande/devis vierge
 CloneAsk=Cloner demande de prix
@@ -49,12 +48,12 @@ ConfirmCloneAsk=Êtes-vous sûr de vouloir cloner la demande de prix <b>%s</b> ?
 ConfirmReOpenAsk=Êtes-vous sûr de vouloir réouvrir la demande de prix <b>%s</b> ?
 SendAskByMail=Envoyer demande de prix par email
 SendAskRef=Envoi de la demande de prix %s
-SupplierProposalCard=Request card
+SupplierProposalCard=Carte de demande
 ConfirmDeleteAsk=Êtes-vous sûr de vouloir effacer cette demande de prix <b>%s</b> ?
-ActionsOnSupplierProposal=Events on price request
+ActionsOnSupplierProposal=Evénements sur demande de prix
 DocModelAuroreDescription=Modèle de demande de prix fournisseur complet (logo…)
 CommercialAsk=Demande de prix
-DefaultModelSupplierProposalCreate=Default model creation
-DefaultModelSupplierProposalToBill=Default template when closing a price request (accepted)
-DefaultModelSupplierProposalClosed=Default template when closing a price request (refused)
-ListOfSupplierProposal=List of supplier proposal requests
+DefaultModelSupplierProposalCreate=Création d'un modèle par défaut
+DefaultModelSupplierProposalToBill=Modèle par défaut lors de la fermeture d'une demande de prix (accepté)
+DefaultModelSupplierProposalClosed=Modèle par défaut lors de la fermeture d'une demande de prix (refusé)
+ListOfSupplierProposal=Liste des demandes de propositions de fournisseur
diff --git a/htdocs/langs/fr_FR/trips.lang b/htdocs/langs/fr_FR/trips.lang
index 23ecceddbcd4e97ed1ba26fb60f3417db9647b3e..91fb6549825793a593ecf7e20a370219c53ea11b 100644
--- a/htdocs/langs/fr_FR/trips.lang
+++ b/htdocs/langs/fr_FR/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations note de frais
 PDFStandardExpenseReports=Modèle de note de frais PDF standard
 ExpenseReportLine=Ligne de la note de frais
 TF_OTHER=Autre
-TF_TRANSPORTATION=Transport
+TF_TRIP=Transport
 TF_LUNCH=Repas
 TF_METRO=Métro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Êtes-vous sûr de vouloir valider cette note de frais ?
 NoTripsToExportCSV=Pas de note de frais à exporter dans cette période
 ExpenseReportPayment=Paiement des notes de frais
 
+ExpenseReportsToApprove=Notes de frais à approuver
 ExpenseReportsToPay=Notes de frais à payer
diff --git a/htdocs/langs/fr_FR/users.lang b/htdocs/langs/fr_FR/users.lang
index 83388bded6f37b27ab10275b64fbfad80d56c543..41d9e1a2a988f275f7ff719ee4dc2cf7ded47616 100644
--- a/htdocs/langs/fr_FR/users.lang
+++ b/htdocs/langs/fr_FR/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=URL OpenID
 LoginUsingOpenID=Se connecter par OpenID
 WeeklyHours=Heures de travail hebdomadaires
 ColorUser=Couleur de l'utilisateur
+DisabledInMonoUserMode=Désactivé en mode maintenance
diff --git a/htdocs/langs/fr_FR/workflow.lang b/htdocs/langs/fr_FR/workflow.lang
index 8f20f7c82b3d37c886605853c196bca5f74a23b2..c4257f2689884bc9a9c731d1120724b9afa56008 100644
--- a/htdocs/langs/fr_FR/workflow.lang
+++ b/htdocs/langs/fr_FR/workflow.lang
@@ -3,9 +3,9 @@ WorkflowSetup=Configuration du module workflow
 WorkflowDesc=Ce module est conçu pour modifier le comportement des actions automatiques dans l'application. Par défaut, le workflow est ouvert (vous pouvez faire les choses dans l'ordre que vous voulez). Vous pouvez toutefois activer des actions automatiques qui vous intéressent.
 ThereIsNoWorkflowToModify=Il n'y a pas de modifications de workflow disponibles avec les modules activés.
 descWORKFLOW_PROPAL_AUTOCREATE_ORDER=Créer une commande client automatiquement à la signature d'une proposition commerciale
-descWORKFLOW_PROPAL_AUTOCREATE_INVOICEAutomatically Créer une facture client automatiquement à la signature d'une proposition commerciale
-descWORKFLOW_CONTRACT_AUTOCREATE_INVOICEAutomatically Créer une facture client automatiquement à la validation d'un contrat
-descWORKFLOW_ORDER_AUTOCREATE_INVOICEAutomatically Créer une facture client automatiquement à la clôture d'une commande client
+descWORKFLOW_PROPAL_AUTOCREATE_INVOICE=Créer une commande client automatiquement lorsqu'une proposition commerciale est signée
+descWORKFLOW_CONTRACT_AUTOCREATE_INVOICE=Créer une facture client automatiquement à la validation d'un contrat
+descWORKFLOW_ORDER_AUTOCREATE_INVOICE=Créer une facture client automatiquement à la clôture d'une commande client
 descWORKFLOW_ORDER_CLASSIFY_BILLED_PROPAL=Classer facturée la proposition commerciale source quand la commande client dérivée est classée payée
 descWORKFLOW_INVOICE_CLASSIFY_BILLED_ORDER=Classer facturée la ou les commandes clients source quand la facture client dérivée est classée payée
 descWORKFLOW_INVOICE_AMOUNT_CLASSIFY_BILLED_ORDER=Classer facturée la ou les commandes clients source lorsque la facture client dérivée est validée
diff --git a/htdocs/langs/he_IL/accountancy.lang b/htdocs/langs/he_IL/accountancy.lang
index 5ee7e8de9f54f863782f095d33e3d4f43b2e78d2..87e3200f57c3544cb69c4a4d2a00867fbc5af632 100644
--- a/htdocs/langs/he_IL/accountancy.lang
+++ b/htdocs/langs/he_IL/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Return
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sells journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/he_IL/admin.lang b/htdocs/langs/he_IL/admin.lang
index 12ff33e8a7126fa11de13b1714e9650c18d279b2..44f99ccd7b0d21d630ee539abf9561a5d502813e 100644
--- a/htdocs/langs/he_IL/admin.lang
+++ b/htdocs/langs/he_IL/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=הסתר כל מידע הקשור מע&quot;מ על P
 HideDescOnPDF=Hide products description on generated PDF
 HideRefOnPDF=Hide products ref. on generated PDF
 HideDetailsOnPDF=Hide products lines details on generated PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Library
 UrlGenerationParameters=פרמטרים כדי להבטיח את כתובות האתרים
 SecurityTokenIsUnique=השתמש פרמטר ייחודי securekey עבור כל כתובת אתר
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=משתמשים להקות
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=הודעות
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=תרומות
 Module700Desc=התרומה של ההנהלה
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=עיכובים לפני אזהרה
 DelaysOfToleranceBeforeWarning=סובלנות עיכובים לפני אזהרה
 DelaysOfToleranceDesc=מסך זה מאפשר לך להגדיר את העיכובים נסבל לפני התראה מדווח על המסך עם %s picto עבור כל רכיב מאוחר.
 Delays_MAIN_DELAY_ACTIONS_TODO=סובלנות עיכוב (בימים) לפני התראה על אירועים מתוכננים שטרם
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=סובלנות עיכוב (בימים) לפני התראה על הזמנות לא מעובד עדיין
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=סובלנות עיכוב (בימים) לפני התראה על הזמנות ספקים לא מעובד עדיין
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=סובלנות עיכוב (בימים) לפני התראה על הצעות לסגור
@@ -1087,6 +1089,7 @@ PathDirectory=מדריך
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=תצורת דה לה traduction
 TranslationDesc=בחירת שפה גלוי על המסך יכול להיות שונה: <br> * בכל העולם <strong>מהבית</strong> התפריט <strong>- התקנה - תצוגה</strong> <br> * עבור המשתמש רק <strong>מהתצוגה</strong> כרטיסיית <strong>המשתמש</strong> של כרטיס המשתמש (לחץ על כניסה על גבי המסך).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/he_IL/agenda.lang b/htdocs/langs/he_IL/agenda.lang
index b29a1a7fe08b7bdd2f817f153bdd63bc6fbec826..ad78900464a020dd8c96fa579d22d8abc7567cfc 100644
--- a/htdocs/langs/he_IL/agenda.lang
+++ b/htdocs/langs/he_IL/agenda.lang
@@ -35,7 +35,9 @@ AllActions= All events/tasks
 ViewCal=Month view
 ViewDay=Day view
 ViewWeek=Week view
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= View with predefined filters
 AutoActions= Automatic filling
 AgendaAutoActionDesc= Define here events for which you want Dolibarr to create automatically an event in agenda. If nothing is checked (by default), only manual actions will be included in agenda.
diff --git a/htdocs/langs/he_IL/bills.lang b/htdocs/langs/he_IL/bills.lang
index 783d42a4abc1a9fce9c5c61fd0c09233530e4879..dfe8f3e7ce4127d8c6d30d9ce93cd095ca275f69 100644
--- a/htdocs/langs/he_IL/bills.lang
+++ b/htdocs/langs/he_IL/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Payments already done
 PaymentsBackAlreadyDone=Payments back already done
 PaymentRule=Payment rule
 PaymentMode=Payment type
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=Show invoice
 ShowInvoiceReplace=Show replacing invoice
 ShowInvoiceAvoir=Show credit note
 ShowInvoiceDeposit=Show deposit invoice
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Show payment
 AlreadyPaid=Already paid
 AlreadyPaidBack=Already paid back
@@ -221,6 +224,7 @@ NonPercuRecuperable=Non-recoverable
 SetConditions=Set payment terms
 SetMode=Set payment mode
 Billed=Billed
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=This amount has been abandoned (customer said to be a bad
 HelpAbandonOther=This amount has been abandoned since it was an error (wrong customer or invoice replaced by an other for example)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Payment id
+PaymentRef=Payment ref.
 InvoiceId=Invoice id
 InvoiceRef=Invoice ref.
 InvoiceDateCreation=Invoice creation date
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Immediate
@@ -393,6 +402,7 @@ Reported=Delayed
 DisabledBecausePayments=Not possible since there are some payments
 CantRemovePaymentWithOneInvoicePaid=Can't remove payment since there is at least one invoice classified paid
 ExpectedToPay=Expected payment
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Paid by this payment
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third pa
 RevenueStamp=Revenue stamp
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Invoice PDF template Crabe. A complete invoice template (recommended Template)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=A bill starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/he_IL/boxes.lang b/htdocs/langs/he_IL/boxes.lang
index 074b2cc56906845650a093b4ec68cfe26d6133d8..ec76f79496db70520ffffe3fe6f66198e81d9235 100644
--- a/htdocs/langs/he_IL/boxes.lang
+++ b/htdocs/langs/he_IL/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Customers invoices
 ForCustomersOrders=Customers orders
 ForProposals=הצעות
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/he_IL/categories.lang b/htdocs/langs/he_IL/categories.lang
index 81c73356c9313f8f6b58ca91fb632a9d894f335b..ccf22bb5003ca9dd4d684ff764aeb69eef7f739b 100644
--- a/htdocs/langs/he_IL/categories.lang
+++ b/htdocs/langs/he_IL/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo./Prosp. categories
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/he_IL/companies.lang b/htdocs/langs/he_IL/companies.lang
index cb994f57c4cb338d6c505703ce102a20e624c98f..24e3adc04f89136d85d347628868a0a038a2569d 100644
--- a/htdocs/langs/he_IL/companies.lang
+++ b/htdocs/langs/he_IL/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (R.C.)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (R.F.C).
 ProfId2MX=Prof Id 2 (R..P. IMSS)
diff --git a/htdocs/langs/he_IL/compta.lang b/htdocs/langs/he_IL/compta.lang
index 25bc823b346d4847783ec6371a926a06028e59b9..33b57ba3ff0887df3df444c33eda59043c72f905 100644
--- a/htdocs/langs/he_IL/compta.lang
+++ b/htdocs/langs/he_IL/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Deposit invoices are nor included
 DepositsAreIncluded=- Deposit invoices are included
 LT2ReportByCustomersInInputOutputModeES=Report by third party IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/he_IL/cron.lang b/htdocs/langs/he_IL/cron.lang
index 008010d0fec89c509dbb2c75ac2d15b41e9b0d11..94551a711f0de3632cac5b6259cad7f7065c159e 100644
--- a/htdocs/langs/he_IL/cron.lang
+++ b/htdocs/langs/he_IL/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=List of disabled jobs
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Last run
 CronLastOutput=Last run output
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Job
 CronNone=None
-CronDtStart=Start date
-CronDtEnd=End date
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Next execution
 CronDtLastLaunch=Last execution
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=No jobs registered
 CronPriority=Priority
 CronLabel=תאור
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
diff --git a/htdocs/langs/he_IL/deliveries.lang b/htdocs/langs/he_IL/deliveries.lang
index c513f3e347c28f0df14813efd7136bc833d51445..47e210744704ae9f083d6f1cf6630f7037ad794b 100644
--- a/htdocs/langs/he_IL/deliveries.lang
+++ b/htdocs/langs/he_IL/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Are you sure you want to delete delivery receipt <b
 DeliveryMethod=Delivery method
 TrackingNumber=Tracking number
 DeliveryNotValidated=Delivery not validated
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Name and Signature :
 ToAndDate=To___________________________________ on ____/_____/__________
diff --git a/htdocs/langs/he_IL/holiday.lang b/htdocs/langs/he_IL/holiday.lang
index 52586b1a89647137f2ee3fafe2aa0295de10da99..2a09e665a900ed8308817b1d67e359a7e31082e9 100644
--- a/htdocs/langs/he_IL/holiday.lang
+++ b/htdocs/langs/he_IL/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Employee
 DateDebCP=Start date
 DateFinCP=End date
 DateCreateCP=Creation date
@@ -23,7 +22,7 @@ ReviewedByCP=Will be reviewed by
 DescCP=תאור
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=You must select an end date greater than the start date.
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=שם
-Employee=Employee
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Monthly update
 ManualUpdate=Manual update
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/he_IL/hrm.lang b/htdocs/langs/he_IL/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/he_IL/hrm.lang
+++ b/htdocs/langs/he_IL/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/he_IL/interventions.lang b/htdocs/langs/he_IL/interventions.lang
index 620b51c35c68a4c703a30a3ad43cb28b45e6bd1b..943f275e62ac097c95ac2a85bf0a02607f5107d7 100644
--- a/htdocs/langs/he_IL/interventions.lang
+++ b/htdocs/langs/he_IL/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Return numero with format %syymm-nnnn where yy is year,
 PacificNumRefModelError=An intervention card starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
 PrintProductsOnFichinter=Print products on intervention card
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/he_IL/mails.lang b/htdocs/langs/he_IL/mails.lang
index 072e801a2a240e3bf4a0f931344cdde8b53d87a0..7e331e4e8f7fcd00c8a5cf387204b4605dc55dda 100644
--- a/htdocs/langs/he_IL/mails.lang
+++ b/htdocs/langs/he_IL/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail sent to %s recipients.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/he_IL/main.lang b/htdocs/langs/he_IL/main.lang
index 37f5fcbcf06ba29b558a0107372c031dabec597c..2077028a9e65d9d80e7f47a386b85f11e977bdf6 100644
--- a/htdocs/langs/he_IL/main.lang
+++ b/htdocs/langs/he_IL/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=Database connection
+NoTemplateDefined=No template defined for this email type
 NoTranslation=No translation
 NoRecordFound=No record found
 NoError=No error
@@ -105,6 +106,7 @@ NotePrivate=Note (private)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr was setup to limit precision of unit prices to <b>%s</b> decimals.
 DoTest=Test
 ToFilter=Filter
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Warning, you have at least one element that has exceeded the tolerance delay.
 yes=yes
 Yes=כן
@@ -228,6 +230,8 @@ Now=Now
 HourStart=Start hour
 Date=Date
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Date start
 DateEnd=Date end
 DateCreation=Creation date
@@ -608,6 +612,7 @@ TotalMan=Total
 NeverReceived=Never received
 Canceled=Canceled
 YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Color
 Documents=Linked files
 DocumentsNb=Linked files (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=No pictures available yet
 HomeDashboard=Home summary
+Dashboard=Dashboard
 Deductible=Deductible
 from=from
 toward=toward
diff --git a/htdocs/langs/he_IL/margins.lang b/htdocs/langs/he_IL/margins.lang
index 7db5ea4892e47d38f81f47f47b7beb00e1177280..27bb4de9fa34bef827f4501268d659670a983767 100644
--- a/htdocs/langs/he_IL/margins.lang
+++ b/htdocs/langs/he_IL/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Choose product or service
 StartDate=Start date
 EndDate=End date
 Launch=Start
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=As a product
 UseDiscountAsService=As a service
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/he_IL/oauth.lang b/htdocs/langs/he_IL/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/he_IL/oauth.lang
+++ b/htdocs/langs/he_IL/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/he_IL/orders.lang b/htdocs/langs/he_IL/orders.lang
index 6fbe903402b5d25696e50358403109afdd1b8c3b..5b56dca3616cf7e29098364756542f37634e1776 100644
--- a/htdocs/langs/he_IL/orders.lang
+++ b/htdocs/langs/he_IL/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=No draft orders
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Other orders
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/he_IL/other.lang b/htdocs/langs/he_IL/other.lang
index 1b3097f33dd7866ecb62eaff671aef851b8363d5..2f1163b40bcd31d99311817b7dff6ea8ff2a64bf 100644
--- a/htdocs/langs/he_IL/other.lang
+++ b/htdocs/langs/he_IL/other.lang
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=New export
 ##### External sites #####
 ExternalSites=External sites
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/he_IL/paypal.lang b/htdocs/langs/he_IL/paypal.lang
index a4204f919825385332e460f03280067caa62dbb4..c6905f2ecc4299f59205dda7302732f0f7e67666 100644
--- a/htdocs/langs/he_IL/paypal.lang
+++ b/htdocs/langs/he_IL/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Mode test/sandbox
 PAYPAL_API_USER=API username
 PAYPAL_API_PASSWORD=API password
 PAYPAL_API_SIGNATURE=API signature
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Offer payment "integral" (Credit card+Paypal) or "Paypal" only
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/he_IL/products.lang b/htdocs/langs/he_IL/products.lang
index e93f71b0010911b1b93f48880f45adffb221da80..7a0bd1ac917093cbfc2f4c7df83d0076ef3d56b2 100644
--- a/htdocs/langs/he_IL/products.lang
+++ b/htdocs/langs/he_IL/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Production completed
-ProductsMultiPrice=Product multi-price
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/he_IL/projects.lang b/htdocs/langs/he_IL/projects.lang
index aef344c44c6a34f3591373534176c00d62946310..3f900ff255fddfca9d7a407ac8244616110e75c8 100644
--- a/htdocs/langs/he_IL/projects.lang
+++ b/htdocs/langs/he_IL/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=This view presents all projects (your user permissions grant you permission to view everything).
 MyTasksDesc=This view is limited to projects or tasks you are a contact for (whatever is the type).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=This view presents all projects and tasks you are allowed to read.
 TasksDesc=This view presents all projects and tasks (your user permissions grant you permission to view everything).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Officer project
 LastProjects=Last %s projects
 AllProjects=All projects
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=List of projects
 ShowProject=Show project
 SetProject=Set project
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/he_IL/propal.lang b/htdocs/langs/he_IL/propal.lang
index d12d7595f94d6a48a961cc635329e86ed543a7ea..79ae1f1cd50add8ebf9f9f1275481055ed84ce06 100644
--- a/htdocs/langs/he_IL/propal.lang
+++ b/htdocs/langs/he_IL/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Last %s modified proposals
 AllPropals=All proposals
 LastProposals=Last proposals
 SearchAProposal=Search a proposal
+NoProposal=No proposal
 ProposalsStatistics=Commercial proposal's statistics
 NumberOfProposalsByMonth=Number by month
 AmountOfProposalsByMonthHT=Amount by month (net of tax)
@@ -62,7 +63,8 @@ DatePropal=Date of proposal
 DateEndPropal=Validity ending date
 DateEndPropalShort=Date end
 ValidityDuration=Validity duration
-CloseAs=Close with status
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Classify billed
 BuildBill=Build invoice
 ErrorPropalNotFound=Propal %s not found
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Default model creation
 DefaultModelPropalToBill=Default template when closing a business proposal (to be invoiced)
 DefaultModelPropalClosed=Default template when closing a business proposal (unbilled)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/he_IL/salaries.lang b/htdocs/langs/he_IL/salaries.lang
index 953a9c7540cbb06d6209140b32aaa0d23261e324..da177410860fb80d4d2d0872ec3b258ed787ba0e 100644
--- a/htdocs/langs/he_IL/salaries.lang
+++ b/htdocs/langs/he_IL/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Salary
 Salaries=Salaries
-Employee=Employee
 NewSalaryPayment=New salary payment
 SalaryPayment=Salary payment
 SalariesPayments=Salaries payments
diff --git a/htdocs/langs/he_IL/sendings.lang b/htdocs/langs/he_IL/sendings.lang
index b9544ad577116dbf68d5655f520970d4dc19d18e..c499762b0bb56cb8dd911031cef797c7239bcb04 100644
--- a/htdocs/langs/he_IL/sendings.lang
+++ b/htdocs/langs/he_IL/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Shipment
 Shipments=משלוחים
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Shipments area
 ListOfSendings=List of shipments
 SendingMethod=Shipping method
diff --git a/htdocs/langs/he_IL/sms.lang b/htdocs/langs/he_IL/sms.lang
index 3b2309fd974c24ae2bec0d1dd11813bcf9510f17..e05674db25e9dc5bd92508ba16e13d75e26e9dce 100644
--- a/htdocs/langs/he_IL/sms.lang
+++ b/htdocs/langs/he_IL/sms.lang
@@ -1,53 +1,54 @@
 # Dolibarr language file - Source file is en_US - sms
-# Sms=Sms
-# SmsSetup=Sms setup
-# SmsDesc=This page allows you to define globals options on SMS features
-# SmsCard=SMS Card
-# AllSms=All SMS campains
-# SmsTargets=Targets
-# SmsRecipients=Targets
-# SmsRecipient=Target
+Sms=Sms
+SmsSetup=Sms setup
+SmsDesc=This page allows you to define globals options on SMS features
+SmsCard=SMS Card
+AllSms=All SMS campains
+SmsTargets=Targets
+SmsRecipients=Targets
+SmsRecipient=Target
 SmsTitle=תאור
-# SmsFrom=Sender
-# SmsTo=Target
-# SmsTopic=Topic of SMS
-# SmsText=Message
-# SmsMessage=SMS Message
-# ShowSms=Show Sms
-# ListOfSms=List SMS campains
-# NewSms=New SMS campain
-# EditSms=Edit Sms
-# ResetSms=New sending
-# DeleteSms=Delete Sms campain
-# DeleteASms=Remove a Sms campain
-# PreviewSms=Previuw Sms
-# PrepareSms=Prepare Sms
-# CreateSms=Create Sms
-# SmsResult=Result of Sms sending
-# TestSms=Test Sms
-# ValidSms=Validate Sms
-# ApproveSms=Approve Sms
-# SmsStatusDraft=Draft
-# SmsStatusValidated=Validated
-# SmsStatusApproved=Approved
-# SmsStatusSent=Sent
-# SmsStatusSentPartialy=Sent partially
-# SmsStatusSentCompletely=Sent completely
-# SmsStatusError=Error
-# SmsStatusNotSent=Not sent
-# SmsSuccessfulySent=Sms correctly sent (from %s to %s)
-# ErrorSmsRecipientIsEmpty=Number of target is empty
-# WarningNoSmsAdded=No new phone number to add to target list
-# ConfirmValidSms=Do you confirm validation of this campain ?
-# ConfirmResetMailing=Warning, if you make a reinit of Sms campain <b>%s</b>, you will allow to make a mass sending of it a second time. Is it really what you wan to do ?
-# ConfirmDeleteMailing=Do you confirm removing of campain ?
-# NbOfRecipients=Number of targets
-# NbOfUniqueSms=Nb dof unique phone numbers
-# NbOfSms=Nbre of phon numbers
-# ThisIsATestMessage=This is a test message
-# SendSms=Send SMS
-# SmsInfoCharRemain=Nb of remaining characters
-# SmsInfoNumero= (format international ie : +33899701761)
-# DelayBeforeSending=Delay before sending (minutes)
-# SmsNoPossibleRecipientFound=No target available. Check setup of your SMS provider.
+SmsFrom=Sender
+SmsTo=Target
+SmsTopic=Topic of SMS
+SmsText=Message
+SmsMessage=SMS Message
+ShowSms=Show Sms
+ListOfSms=List SMS campains
+NewSms=New SMS campain
+EditSms=Edit Sms
+ResetSms=New sending
+DeleteSms=Delete Sms campain
+DeleteASms=Remove a Sms campain
+PreviewSms=Previuw Sms
+PrepareSms=Prepare Sms
+CreateSms=Create Sms
+SmsResult=Result of Sms sending
+TestSms=Test Sms
+ValidSms=Validate Sms
+ApproveSms=Approve Sms
+SmsStatusDraft=Draft
+SmsStatusValidated=Validated
+SmsStatusApproved=Approved
+SmsStatusSent=Sent
+SmsStatusSentPartialy=Sent partially
+SmsStatusSentCompletely=Sent completely
+SmsStatusError=Error
+SmsStatusNotSent=Not sent
+SmsSuccessfulySent=Sms correctly sent (from %s to %s)
+ErrorSmsRecipientIsEmpty=Number of target is empty
+WarningNoSmsAdded=No new phone number to add to target list
+ConfirmValidSms=Do you confirm validation of this campain ?
+ConfirmResetMailing=Warning, if you make a reinit of Sms campain <b>%s</b>, you will allow to make a mass sending of it a second time. Is it really what you wan to do ?
+ConfirmDeleteMailing=Do you confirm removing of campain ?
+NbOfRecipients=Number of targets
+NbOfUniqueSms=Nb dof unique phone numbers
+NbOfSms=Nbre of phon numbers
+ThisIsATestMessage=This is a test message
+SendSms=Send SMS
+SmsInfoCharRemain=Nb of remaining characters
+SmsInfoNumero= (format international ie : +33899701761)
+DelayBeforeSending=Delay before sending (minutes)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
+SmsNoPossibleRecipientFound=No target available. Check setup of your SMS provider.
 
diff --git a/htdocs/langs/he_IL/supplier_proposal.lang b/htdocs/langs/he_IL/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/he_IL/supplier_proposal.lang
+++ b/htdocs/langs/he_IL/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/he_IL/trips.lang b/htdocs/langs/he_IL/trips.lang
index 6f05ac42e4e7ad1f4e3ae1858dfaf431381815fe..fcfd24fd5f3b360ece5b9908df1e6f6e567f30ba 100644
--- a/htdocs/langs/he_IL/trips.lang
+++ b/htdocs/langs/he_IL/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=אחר
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Lunch
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/he_IL/users.lang b/htdocs/langs/he_IL/users.lang
index 221b1e0cad5e9f77b0fa970135bf1a3fd29e1c65..c064b99303c93440d6d826a46e025e73e42e1dc8 100644
--- a/htdocs/langs/he_IL/users.lang
+++ b/htdocs/langs/he_IL/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Use OpenID to login
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/hr_HR/accountancy.lang b/htdocs/langs/hr_HR/accountancy.lang
index 5ee7e8de9f54f863782f095d33e3d4f43b2e78d2..87e3200f57c3544cb69c4a4d2a00867fbc5af632 100644
--- a/htdocs/langs/hr_HR/accountancy.lang
+++ b/htdocs/langs/hr_HR/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Return
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sells journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/hr_HR/admin.lang b/htdocs/langs/hr_HR/admin.lang
index 637cb916ef934dfb1b793f71a292640082366133..b5ef73db1621e1b269112dee2bb9b66456a4341b 100644
--- a/htdocs/langs/hr_HR/admin.lang
+++ b/htdocs/langs/hr_HR/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Hide all information related to VAT on generated PDF
 HideDescOnPDF=Hide products description on generated PDF
 HideRefOnPDF=Hide products ref. on generated PDF
 HideDetailsOnPDF=Hide products lines details on generated PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Library
 UrlGenerationParameters=Parameters to secure URLs
 SecurityTokenIsUnique=Use a unique securekey parameter for each URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Users & groups
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Notifications
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Donations
 Module700Desc=Donation management
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Delays before warning
 DelaysOfToleranceBeforeWarning=Tolerance delays before warning
 DelaysOfToleranceDesc=This screen allows you to define the tolerated delays before an alert is reported on screen with picto %s for each late element.
 Delays_MAIN_DELAY_ACTIONS_TODO=Delay tolerance (in days) before alert on planned events not yet realised
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on orders not yet processed
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on suppliers orders not yet processed
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Delay tolerance (in days) before alert on proposals to close
@@ -1087,6 +1089,7 @@ PathDirectory=Directory
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/hr_HR/agenda.lang b/htdocs/langs/hr_HR/agenda.lang
index 0a32f126110fbe71e97f276a0c90b371cb95c427..811e16d7cb59f4452009c796da88b621732a5b95 100644
--- a/htdocs/langs/hr_HR/agenda.lang
+++ b/htdocs/langs/hr_HR/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Svi događaji/zadaci
 ViewCal=Mjesečni pregled
 ViewDay=Dnevni pregled
 ViewWeek=Tjedni pregled
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Pogledaj sa unaprijed definiranim filterima
 AutoActions= Automasko filtriranje
 AgendaAutoActionDesc= Ovdje definirajte događaje za koje želite da Dolibarr automatski kreira događaj u podsjetnike. Ukoliko se ništa ne provjerava( po defaultu), samo manualne akcije će biti uključene u dnevni red.
diff --git a/htdocs/langs/hr_HR/bills.lang b/htdocs/langs/hr_HR/bills.lang
index 5a22b8961d46d42482460949a9869dcf21f7ca5a..baed5f638ba9f5ff47912c2d083b1a394ccf2224 100644
--- a/htdocs/langs/hr_HR/bills.lang
+++ b/htdocs/langs/hr_HR/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Izvršena plaćanja
 PaymentsBackAlreadyDone=Izvršeni povrati plaćanja
 PaymentRule=Pravilo plaćanja
 PaymentMode=Oblik plaćanja
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=Prikaži račun
 ShowInvoiceReplace=Prikaži zamjenski računa
 ShowInvoiceAvoir=Prikaži bonifikaciju
 ShowInvoiceDeposit=Prikaži račun za polog
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Prikaži plaćanje
 AlreadyPaid=Plaćeno do sada
 AlreadyPaidBack=Povrati do sada
@@ -221,6 +224,7 @@ NonPercuRecuperable=Nepovratno
 SetConditions=Odredi rok plaćanja
 SetMode=Odredi oblik plaćanja
 Billed=Nplaćeno
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Predložak računa
 RepeatableInvoices=Predlošci računa
 Repeatable=Predložak
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=This amount has been abandoned (customer said to be a bad
 HelpAbandonOther=This amount has been abandoned since it was an error (wrong customer or invoice replaced by an other for example)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Oznaka plaćanja
+PaymentRef=Payment ref.
 InvoiceId=Oznaka računa
 InvoiceRef=Broj računa
 InvoiceDateCreation=Datum izrade računa
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Odmah
@@ -393,6 +402,7 @@ Reported=Odgođeno
 DisabledBecausePayments=Nije moguće obzirom da postoje neka plaćanja
 CantRemovePaymentWithOneInvoicePaid=Plaćanje se ne može izbrisati obzirom da postoji barem jedan račun koji je označen kao plaćen
 ExpectedToPay=Očekivano plaćanje
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Plaćeno s ovom uplatom
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Klasificiraj "plaćene" bonifikacije kao plaćene u cjelosti.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Napomena: Ovaj popis sadrži samo račune za treće
 RevenueStamp=Revenue stamp
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription="Crabe" predložak PDF računa. Potpuni predložak računa (preporučeni)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=A bill starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/hr_HR/boxes.lang b/htdocs/langs/hr_HR/boxes.lang
index c4df19eda6cb49c7f7df3c85c4d45c3b6afd55dd..310f3490481981316a7b9e818206721e0e069d5a 100644
--- a/htdocs/langs/hr_HR/boxes.lang
+++ b/htdocs/langs/hr_HR/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Kupci računi
 ForCustomersOrders=Kupci narudžbe
 ForProposals=Prijedlozi
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/hr_HR/categories.lang b/htdocs/langs/hr_HR/categories.lang
index 81c73356c9313f8f6b58ca91fb632a9d894f335b..ccf22bb5003ca9dd4d684ff764aeb69eef7f739b 100644
--- a/htdocs/langs/hr_HR/categories.lang
+++ b/htdocs/langs/hr_HR/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo./Prosp. categories
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/hr_HR/companies.lang b/htdocs/langs/hr_HR/companies.lang
index 9941275b5e4eff4d99534a741a6baa91a26367c7..87183afac74757c744adf9cedb8e675b91d4880c 100644
--- a/htdocs/langs/hr_HR/companies.lang
+++ b/htdocs/langs/hr_HR/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (R.C.)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (R.F.C).
 ProfId2MX=Prof Id 2 (R..P. IMSS)
diff --git a/htdocs/langs/hr_HR/compta.lang b/htdocs/langs/hr_HR/compta.lang
index d73f580cc8b8a84426e53b5a0c38c03dc8511bb6..07b609a17e428435a16e70932ee1763b18a0a7fa 100644
--- a/htdocs/langs/hr_HR/compta.lang
+++ b/htdocs/langs/hr_HR/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Deposit invoices are nor included
 DepositsAreIncluded=- Deposit invoices are included
 LT2ReportByCustomersInInputOutputModeES=Report by third party IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/hr_HR/cron.lang b/htdocs/langs/hr_HR/cron.lang
index bd85715642ec700a51b7365535762b2760ae54e5..21786df66cfcf912dd12c81c03fbb604e2255c26 100644
--- a/htdocs/langs/hr_HR/cron.lang
+++ b/htdocs/langs/hr_HR/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=List of disabled jobs
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Last run
 CronLastOutput=Last run output
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Job
 CronNone=None
-CronDtStart=Start date
-CronDtEnd=End date
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Next execution
 CronDtLastLaunch=Last execution
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=No jobs registered
 CronPriority=Priority
 CronLabel=Description
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
diff --git a/htdocs/langs/hr_HR/deliveries.lang b/htdocs/langs/hr_HR/deliveries.lang
index 1277554c4c67c28de8ec1a6bafef5497a2f2ce4e..c5dae6638e4140678821f90c20ab4ffbb42c9ec8 100644
--- a/htdocs/langs/hr_HR/deliveries.lang
+++ b/htdocs/langs/hr_HR/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Jeste li sigurni da želite ovjeriti otpremnicu <b>
 DeliveryMethod=Metoda dostave
 TrackingNumber=Broj za praćenje
 DeliveryNotValidated=Dostava nije potvrđena
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Ime i potpis:
 ToAndDate=Za___________________________________ dana ____/_____/__________
diff --git a/htdocs/langs/hr_HR/holiday.lang b/htdocs/langs/hr_HR/holiday.lang
index 4beedf7021fa5d57420d3598b776c0af633abbed..a15b2d97224d732e1eceb7b84ff0947dd62e1cff 100644
--- a/htdocs/langs/hr_HR/holiday.lang
+++ b/htdocs/langs/hr_HR/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Employee
 DateDebCP=Start date
 DateFinCP=End date
 DateCreateCP=Creation date
@@ -23,7 +22,7 @@ ReviewedByCP=Will be reviewed by
 DescCP=Description
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=You must select an end date greater than the start date.
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Name
-Employee=Employee
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Monthly update
 ManualUpdate=Manual update
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/hr_HR/hrm.lang b/htdocs/langs/hr_HR/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/hr_HR/hrm.lang
+++ b/htdocs/langs/hr_HR/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/hr_HR/interventions.lang b/htdocs/langs/hr_HR/interventions.lang
index 5c08c3063534c07d4eea4a2096402a33cccadd41..cbcba219f1139b397fa8fe54ef5292c2ddf22248 100644
--- a/htdocs/langs/hr_HR/interventions.lang
+++ b/htdocs/langs/hr_HR/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Return numero with format %syymm-nnnn where yy is year,
 PacificNumRefModelError=An intervention card starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
 PrintProductsOnFichinter=Print products on intervention card
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/hr_HR/mails.lang b/htdocs/langs/hr_HR/mails.lang
index 87a1bd3c4d77c148a4c9554f25e94c5ca4becd9e..fbd7a14cd0471869ac1a1a0f1ec364a41ab9a244 100644
--- a/htdocs/langs/hr_HR/mails.lang
+++ b/htdocs/langs/hr_HR/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail sent to %s recipients.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/hr_HR/main.lang b/htdocs/langs/hr_HR/main.lang
index e4e61ceb766327df571443526b908fa04be25709..6d4dc33faef150196f12d33c3a4fa2d1ab45e8ab 100644
--- a/htdocs/langs/hr_HR/main.lang
+++ b/htdocs/langs/hr_HR/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=Database connection
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Bez prijevoda
 NoRecordFound=Nema pronađenih bilješki
 NoError=Bez greške
@@ -105,6 +106,7 @@ NotePrivate=Note (private)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr was setup to limit precision of unit prices to <b>%s</b> decimals.
 DoTest=Test
 ToFilter=Filter
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Warning, you have at least one element that has exceeded the tolerance delay.
 yes=yes
 Yes=Yes
@@ -228,6 +230,8 @@ Now=Now
 HourStart=Start hour
 Date=Date
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Date start
 DateEnd=Date end
 DateCreation=Creation date
@@ -608,6 +612,7 @@ TotalMan=Total
 NeverReceived=Never received
 Canceled=Canceled
 YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Color
 Documents=Linked files
 DocumentsNb=Linked files (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=No pictures available yet
 HomeDashboard=Home summary
+Dashboard=Dashboard
 Deductible=Deductible
 from=od
 toward=toward
diff --git a/htdocs/langs/hr_HR/margins.lang b/htdocs/langs/hr_HR/margins.lang
index 7db5ea4892e47d38f81f47f47b7beb00e1177280..27bb4de9fa34bef827f4501268d659670a983767 100644
--- a/htdocs/langs/hr_HR/margins.lang
+++ b/htdocs/langs/hr_HR/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Choose product or service
 StartDate=Start date
 EndDate=End date
 Launch=Start
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=As a product
 UseDiscountAsService=As a service
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/hr_HR/oauth.lang b/htdocs/langs/hr_HR/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/hr_HR/oauth.lang
+++ b/htdocs/langs/hr_HR/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/hr_HR/orders.lang b/htdocs/langs/hr_HR/orders.lang
index 3216c03ccc37f74517b3bb515421285a774d93e8..f63f6a6f0fed0c2fc365cb83909cd0a859f90e09 100644
--- a/htdocs/langs/hr_HR/orders.lang
+++ b/htdocs/langs/hr_HR/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=No draft orders
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Other orders
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/hr_HR/other.lang b/htdocs/langs/hr_HR/other.lang
index 5fff107fde9aef8b5b102b11516d063214201ce7..c53f32346fe31f4f3ab22fa18f5933e33d5e97e2 100644
--- a/htdocs/langs/hr_HR/other.lang
+++ b/htdocs/langs/hr_HR/other.lang
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=New export
 ##### External sites #####
 ExternalSites=External sites
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/hr_HR/paypal.lang b/htdocs/langs/hr_HR/paypal.lang
index a4204f919825385332e460f03280067caa62dbb4..c6905f2ecc4299f59205dda7302732f0f7e67666 100644
--- a/htdocs/langs/hr_HR/paypal.lang
+++ b/htdocs/langs/hr_HR/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Mode test/sandbox
 PAYPAL_API_USER=API username
 PAYPAL_API_PASSWORD=API password
 PAYPAL_API_SIGNATURE=API signature
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Offer payment "integral" (Credit card+Paypal) or "Paypal" only
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/hr_HR/products.lang b/htdocs/langs/hr_HR/products.lang
index 6677fd21833efcc50ae6e2f58868165ecded3af0..5715edbd1993b6b4604c2ac1280d5a37dbfdecdb 100644
--- a/htdocs/langs/hr_HR/products.lang
+++ b/htdocs/langs/hr_HR/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Production completed
-ProductsMultiPrice=Product multi-price
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/hr_HR/projects.lang b/htdocs/langs/hr_HR/projects.lang
index 0e4f72a170b00096d6d41b0583336fb6a2e64cb7..4b08cea259640ac43d8b77969030771ddf7c895d 100644
--- a/htdocs/langs/hr_HR/projects.lang
+++ b/htdocs/langs/hr_HR/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=This view presents all projects (your user permissions grant you permission to view everything).
 MyTasksDesc=This view is limited to projects or tasks you are a contact for (whatever is the type).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=This view presents all projects and tasks you are allowed to read.
 TasksDesc=This view presents all projects and tasks (your user permissions grant you permission to view everything).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Officer project
 LastProjects=Posljednjih %s projekata
 AllProjects=Svi projekti
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Lista projekata
 ShowProject=Prikaži projekt
 SetProject=Postavi projekt
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/hr_HR/propal.lang b/htdocs/langs/hr_HR/propal.lang
index 4c922ebdc19a7a37ce521445aeacf41c7acc7f7a..2defee0201d66c773cba518c32d17f7f9fd4a5c0 100644
--- a/htdocs/langs/hr_HR/propal.lang
+++ b/htdocs/langs/hr_HR/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Zadnjih %s izmjenjenih ponuda
 AllPropals=Sve ponude
 LastProposals=Zadnje ponude
 SearchAProposal=Pronađi ponudu
+NoProposal=No proposal
 ProposalsStatistics=Statistika trgovačkih ponuda
 NumberOfProposalsByMonth=Broj u mjesecu
 AmountOfProposalsByMonthHT=Iznos po mjesecu (netto bez PDV-a)
@@ -62,7 +63,8 @@ DatePropal=Datum ponude
 DateEndPropal=Datum dospijeća
 DateEndPropalShort=Datum završetka
 ValidityDuration=Vrijedi do
-CloseAs=Zatvori sa stanjem
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Označi kao naplaćena
 BuildBill=Izradi račun
 ErrorPropalNotFound=Ponuda %s nije pronađena
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Izrada osnovnog modela
 DefaultModelPropalToBill=Osnovni predložak prilikom zatvaranja poslovne ponude (za naplatu)
 DefaultModelPropalClosed=Osnovni predložak prilikom zatvaranja poslovne ponude (nenaplaćeno)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/hr_HR/salaries.lang b/htdocs/langs/hr_HR/salaries.lang
index 953a9c7540cbb06d6209140b32aaa0d23261e324..da177410860fb80d4d2d0872ec3b258ed787ba0e 100644
--- a/htdocs/langs/hr_HR/salaries.lang
+++ b/htdocs/langs/hr_HR/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Salary
 Salaries=Salaries
-Employee=Employee
 NewSalaryPayment=New salary payment
 SalaryPayment=Salary payment
 SalariesPayments=Salaries payments
diff --git a/htdocs/langs/hr_HR/sendings.lang b/htdocs/langs/hr_HR/sendings.lang
index a29d059f47f8641388e1f21958b2e92152faaaad..bc6e07b704b710a8e383f49e2a97466c8cd82123 100644
--- a/htdocs/langs/hr_HR/sendings.lang
+++ b/htdocs/langs/hr_HR/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Pošiljka
 Shipments=Pošiljke
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Shipments area
 ListOfSendings=Popis pošiljki
 SendingMethod=Metoda dostave
diff --git a/htdocs/langs/hr_HR/sms.lang b/htdocs/langs/hr_HR/sms.lang
index 0ec0e61a588bedc541daf217d80885bddf755973..70066caac96971420d7c55b09879e200888763c2 100644
--- a/htdocs/langs/hr_HR/sms.lang
+++ b/htdocs/langs/hr_HR/sms.lang
@@ -1,53 +1,54 @@
 # Dolibarr language file - Source file is en_US - sms
-# Sms=Sms
-# SmsSetup=Sms setup
-# SmsDesc=This page allows you to define globals options on SMS features
-# SmsCard=SMS Card
-# AllSms=All SMS campains
-# SmsTargets=Targets
-# SmsRecipients=Targets
-# SmsRecipient=Target
-# SmsTitle=Description
-# SmsFrom=Sender
-# SmsTo=Target
-# SmsTopic=Topic of SMS
-# SmsText=Message
-# SmsMessage=SMS Message
-# ShowSms=Show Sms
-# ListOfSms=List SMS campains
-# NewSms=New SMS campain
-# EditSms=Edit Sms
-# ResetSms=New sending
-# DeleteSms=Delete Sms campain
-# DeleteASms=Remove a Sms campain
-# PreviewSms=Previuw Sms
-# PrepareSms=Prepare Sms
-# CreateSms=Create Sms
-# SmsResult=Result of Sms sending
-# TestSms=Test Sms
-# ValidSms=Validate Sms
-# ApproveSms=Approve Sms
-# SmsStatusDraft=Draft
-# SmsStatusValidated=Validated
-# SmsStatusApproved=Approved
-# SmsStatusSent=Sent
-# SmsStatusSentPartialy=Sent partially
-# SmsStatusSentCompletely=Sent completely
-# SmsStatusError=Error
-# SmsStatusNotSent=Not sent
-# SmsSuccessfulySent=Sms correctly sent (from %s to %s)
-# ErrorSmsRecipientIsEmpty=Number of target is empty
-# WarningNoSmsAdded=No new phone number to add to target list
-# ConfirmValidSms=Do you confirm validation of this campain ?
-# ConfirmResetMailing=Warning, if you make a reinit of Sms campain <b>%s</b>, you will allow to make a mass sending of it a second time. Is it really what you wan to do ?
-# ConfirmDeleteMailing=Do you confirm removing of campain ?
-# NbOfRecipients=Number of targets
-# NbOfUniqueSms=Nb dof unique phone numbers
-# NbOfSms=Nbre of phon numbers
-# ThisIsATestMessage=This is a test message
-# SendSms=Send SMS
-# SmsInfoCharRemain=Nb of remaining characters
-# SmsInfoNumero= (format international ie : +33899701761)
-# DelayBeforeSending=Delay before sending (minutes)
-# SmsNoPossibleRecipientFound=No target available. Check setup of your SMS provider.
+Sms=Sms
+SmsSetup=Sms setup
+SmsDesc=This page allows you to define globals options on SMS features
+SmsCard=SMS Card
+AllSms=All SMS campains
+SmsTargets=Targets
+SmsRecipients=Targets
+SmsRecipient=Target
+SmsTitle=Description
+SmsFrom=Sender
+SmsTo=Target
+SmsTopic=Topic of SMS
+SmsText=Message
+SmsMessage=SMS Message
+ShowSms=Show Sms
+ListOfSms=List SMS campains
+NewSms=New SMS campain
+EditSms=Edit Sms
+ResetSms=New sending
+DeleteSms=Delete Sms campain
+DeleteASms=Remove a Sms campain
+PreviewSms=Previuw Sms
+PrepareSms=Prepare Sms
+CreateSms=Create Sms
+SmsResult=Result of Sms sending
+TestSms=Test Sms
+ValidSms=Validate Sms
+ApproveSms=Approve Sms
+SmsStatusDraft=Draft
+SmsStatusValidated=Validated
+SmsStatusApproved=Approved
+SmsStatusSent=Sent
+SmsStatusSentPartialy=Sent partially
+SmsStatusSentCompletely=Sent completely
+SmsStatusError=Error
+SmsStatusNotSent=Not sent
+SmsSuccessfulySent=Sms correctly sent (from %s to %s)
+ErrorSmsRecipientIsEmpty=Number of target is empty
+WarningNoSmsAdded=No new phone number to add to target list
+ConfirmValidSms=Do you confirm validation of this campain ?
+ConfirmResetMailing=Warning, if you make a reinit of Sms campain <b>%s</b>, you will allow to make a mass sending of it a second time. Is it really what you wan to do ?
+ConfirmDeleteMailing=Do you confirm removing of campain ?
+NbOfRecipients=Number of targets
+NbOfUniqueSms=Nb dof unique phone numbers
+NbOfSms=Nbre of phon numbers
+ThisIsATestMessage=This is a test message
+SendSms=Send SMS
+SmsInfoCharRemain=Nb of remaining characters
+SmsInfoNumero= (format international ie : +33899701761)
+DelayBeforeSending=Delay before sending (minutes)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
+SmsNoPossibleRecipientFound=No target available. Check setup of your SMS provider.
 
diff --git a/htdocs/langs/hr_HR/supplier_proposal.lang b/htdocs/langs/hr_HR/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/hr_HR/supplier_proposal.lang
+++ b/htdocs/langs/hr_HR/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/hr_HR/trips.lang b/htdocs/langs/hr_HR/trips.lang
index ce9f0970e7c331996ee194c7613983060795a647..5ccdf8d0e37dcf680cc33691fdce1fd5644f2d53 100644
--- a/htdocs/langs/hr_HR/trips.lang
+++ b/htdocs/langs/hr_HR/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Other
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Lunch
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/hr_HR/users.lang b/htdocs/langs/hr_HR/users.lang
index 9aa0d30d921558a2fed806d29f83a9db6d541f7f..858613a9e38c3b227ba9bd43d423ce3b233ca4f6 100644
--- a/htdocs/langs/hr_HR/users.lang
+++ b/htdocs/langs/hr_HR/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Use OpenID to login
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/hu_HU/accountancy.lang b/htdocs/langs/hu_HU/accountancy.lang
index c0f24d478a1956fb59d028bedeb4a8d880fbee2b..9ac38e8745f2104c3ffb28916a081a04b7224de9 100644
--- a/htdocs/langs/hu_HU/accountancy.lang
+++ b/htdocs/langs/hu_HU/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Megtérülés
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sells journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/hu_HU/admin.lang b/htdocs/langs/hu_HU/admin.lang
index c73ba114edff5fc22b9df610b2ba735a2f666dfd..765a76a81acc5bfd2fa402a6c279ad27275f518b 100644
--- a/htdocs/langs/hu_HU/admin.lang
+++ b/htdocs/langs/hu_HU/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Hide kapcsolatos minden információt áfa generált
 HideDescOnPDF=Termékleírás elrejtése a generált PDF fájlban
 HideRefOnPDF=Termékreferencia elrejtése a generált PDF fájlban
 HideDetailsOnPDF=A terméksorok részleteinek elrejtése a PDF-ben
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Könyvtár
 UrlGenerationParameters=URL paraméterek biztosítása
 SecurityTokenIsUnique=Használjunk olyan egyedi securekey paraméter az URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Felhasználók és csoportok
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Értesítések
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Adományok
 Module700Desc=Adomány vezetése
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Késéssel figyelmeztetés
 DelaysOfToleranceBeforeWarning=Tolerancia késéssel figyelmeztetés
 DelaysOfToleranceDesc=Ez a képernyő lehetővé teszi, hogy meghatározza a tolerálható késéssel riasztást jelentett a képernyőn Picto %s minden késedelmes elem.
 Delays_MAIN_DELAY_ACTIONS_TODO=Késleltetés tolerancia (napokban), mielőtt a tervezett események figyelmeztető jelzés még nem valósult
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Késleltetés tolerancia (napokban), mielőtt riasztást megrendelések még nincs feldolgozva
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Késleltetés tolerancia (napokban), mielőtt riasztást szállítók megrendelések még nincs feldolgozva
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Késleltetés tolerancia (napokban), mielőtt riasztást javaslatokat, hogy lezárja
@@ -1087,6 +1089,7 @@ PathDirectory=Directory
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/hu_HU/agenda.lang b/htdocs/langs/hu_HU/agenda.lang
index 8bfe20769b21483bf88a744364668706cc6a88b7..d4f1745e47ddc5828975c0260946ac914d323e55 100644
--- a/htdocs/langs/hu_HU/agenda.lang
+++ b/htdocs/langs/hu_HU/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Az összes cselekvés/feladat
 ViewCal=Naptár megtekintése
 ViewDay=Nap nézet
 ViewWeek=Hét nézet
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Előre definiált szűrőkkel való megtekintés
 AutoActions= Napirend automatikus kitöltése
 AgendaAutoActionDesc= Define here events for which you want Dolibarr to create automatically an action in agenda. If nothing is checked (by default), only manual actions will be included in agenda.
diff --git a/htdocs/langs/hu_HU/bills.lang b/htdocs/langs/hu_HU/bills.lang
index 90c4906dd75de8e873d2fd8ecc4ad192629a0945..bfb897ccf533829a23a2c44c1a5caa16cd74b47e 100644
--- a/htdocs/langs/hu_HU/bills.lang
+++ b/htdocs/langs/hu_HU/bills.lang
@@ -14,7 +14,7 @@ BillsStatisticsSuppliers=Beszállítói számlák statisztikája
 DisabledBecauseNotErasable=Tiltva, mert nem lehet törölni
 InvoiceStandard=Normál számla
 InvoiceStandardAsk=Normál számla
-InvoiceStandardDesc=Ez a fajta számla a közös számlát.
+InvoiceStandardDesc=Ez a fajta számla az általános számla.
 InvoiceDeposit=Befizetési számla
 InvoiceDepositAsk=Befizetési számla
 InvoiceDepositDesc=Ez a fajta számla készül, ha a befizetés érkezett.
@@ -22,24 +22,24 @@ InvoiceProForma=Proforma számla
 InvoiceProFormaAsk=Proforma számla
 InvoiceProFormaDesc=<b>Proforma számla</b> egy kép egy valódi számla, de nincs könyvelési értéke.
 InvoiceReplacement=Csere számla
-InvoiceReplacementAsk=Csere számla számla
+InvoiceReplacementAsk=A számla csere számlája
 InvoiceReplacementDesc=<b>Csere számla</b>A kifizetetlen számlák visszavonására és kicserélésére használható.<br><br>Megjegyzés: Csak olyan számla cserélhető ki, amelyre fizetés nem érkezett. Amennyiben a cserélni kívánt számla nincs lezárva, automatikusan lezárásra kerül és "Elhagyott" státuszt kap.
-InvoiceAvoir=Jóváírást
-InvoiceAvoirAsk=Jóváírást kijavítani számla
-InvoiceAvoirDesc=A <b>jóváírást</b> negatív számla megoldására használják arra, hogy egy számla van egy összeget, ami különbözik, mint a kifizetett összeg valóban (mert ügyfél fizetett túl sok a hiba, vagy nem fizetik vissza, mivel ő teljesen bizonyos termékek, például).
+InvoiceAvoir=Jóváírás
+InvoiceAvoirAsk=Számlát javtó jóváíró számla
+InvoiceAvoirDesc=A <b>jóváírás</b> egy negatív számla, mellyel megoldják, ha egy számlán van egy összeget, ami különbözik a ténylegesen kifizetett összegtől (mert ügyfél túl sokat fizetett, vagy nem fizetett, például, mivel bizonyos termékeket visszaadott).
 invoiceAvoirWithLines=Create Credit Note with lines from the origin invoice
 invoiceAvoirWithPaymentRestAmount=Create Credit Note with remaining unpaid of origin invoice
 invoiceAvoirLineWithPaymentRestAmount=Credit Note for remaining unpaid amount
-ReplaceInvoice=Cserélje ki számlát %s
+ReplaceInvoice=Csere erre a számlára %s
 ReplacementInvoice=Csere számla
-ReplacedByInvoice=Helyébe számla %s
-ReplacementByInvoice=Helyébe számla
+ReplacedByInvoice=Kicserélve ezzel a számlával %s
+ReplacementByInvoice=Kicserélve ezzel a számlával
 CorrectInvoice=Helyes számla %s
-CorrectionInvoice=Javítás számla
-UsedByInvoice=Fizetésre használ számla %s
+CorrectionInvoice=Javító számla
+UsedByInvoice=Fizetésre használt számla %s
 ConsumedBy=Által elfogyasztott
 NotConsumed=Nem fogyasztott
-NoReplacableInvoice=Nem cserélhető számlák
+NoReplacableInvoice=Nem kicserélhető számlák
 NoInvoiceToCorrect=Nincs javítandó számla
 InvoiceHasAvoir=Egy vagy több számlával javított
 CardBill=Számla kártya
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Fizetve
 PaymentsBackAlreadyDone=Fizetés visszavonva
 PaymentRule=Fizetési szabály
 PaymentMode=Fizetési típus
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Fizetési feltételek
@@ -93,23 +95,23 @@ AddBill=Számla vagy jóváírás készítése
 AddToDraftInvoices=Add to draft invoice
 DeleteBill=Számla törlése
 SearchACustomerInvoice=Keressen egy vásárlói számlát
-SearchASupplierInvoice=Keresés a szállító számla
-CancelBill=Mégsem számlát
-SendRemindByMail=Küldés e-mailben emlékeztető
-DoPayment=Kiegyenlítés
-DoPaymentBack=Kigyenlítés visszavonása
+SearchASupplierInvoice=Beszállítói számla keresése
+CancelBill=Visszavon egy számlát
+SendRemindByMail=Emlékeztető küldése e-mailben 
+DoPayment=Esedékes  kiegyenlítés
+DoPaymentBack=Esedékes kigyenlítés visszavonása
 ConvertToReduc=Átalakít jövőbeni kedvezménnyé
 EnterPaymentReceivedFromCustomer=Írja be a vásárlótól kapott a fizetést
 EnterPaymentDueToCustomer=Legyen esedékes a vásárló fizetése
 DisabledBecauseRemainderToPayIsZero=Letiltva, mivel a maradék egyenleg 0.
 PriceBase=Alap ár
 BillStatus=Számla állapota
-BillStatusDraft=Tervezet (kell érvényesíteni)
+BillStatusDraft=Tervezet (érvényesítés szükséges)
 BillStatusPaid=Fizetett
-BillStatusPaidBackOrConverted=Kifizetett vagy átalakított kedvezmény
-BillStatusConverted=Fizetett (készen végszámla)
-BillStatusCanceled=Elhagyott
-BillStatusValidated=Validált (kell fizetni)
+BillStatusPaidBackOrConverted=Kifizetett vagy kedvezménnyé átalakított 
+BillStatusConverted=Fizetett (készen a végszámlához)
+BillStatusCanceled=Elveszett
+BillStatusValidated=Hitelesített (ki kell fizetni)
 BillStatusStarted=Indította
 BillStatusNotPaid=Nem fizetett
 BillStatusClosedUnpaid=Zárt (nem fizetett)
@@ -118,37 +120,37 @@ BillShortStatusDraft=Tervezet
 BillShortStatusPaid=Fizetett
 BillShortStatusPaidBackOrConverted=Feldolgozott
 BillShortStatusConverted=Feldolgozott
-BillShortStatusCanceled=Elhagyott
-BillShortStatusValidated=Hitelesítette
+BillShortStatusCanceled=Elveszett
+BillShortStatusValidated=Hitelesítve
 BillShortStatusStarted=Indította
 BillShortStatusNotPaid=Nem fizetett
-BillShortStatusClosedUnpaid=Zárva
+BillShortStatusClosedUnpaid=Lezárt
 BillShortStatusClosedPaidPartially=Fizetett (részben)
-PaymentStatusToValidShort=Érvényesíteni
-ErrorVATIntraNotConfigured=Intracommunautary adószám még nem határozták meg
-ErrorNoPaiementModeConfigured=Nincs alapértelmezett fizetési módot definiált. Ugrás a számla modul beállítás segít.
-ErrorCreateBankAccount=Hozzon létre egy számlát, akkor menjen a Setup panelen a számla modul meghatározására fizetési módok
+PaymentStatusToValidShort=Hitelesítéshez
+ErrorVATIntraNotConfigured=Közösségen belüli adó száma nincs meghatározva
+ErrorNoPaiementModeConfigured=Nincs alapértelmezett fizetési módot definiálva. Ugrás a számla modul beállításra a kijavítához.
+ErrorCreateBankAccount=Hozzon létre egy bank számlát, és menjen a Beállítás panelen a Számla modulra a fizetési módok meghatározására 
 ErrorBillNotFound=Számla %s nem létezik
-ErrorInvoiceAlreadyReplaced=Hiba, ha megpróbálja ellenőrizni a számla helyett számlát %s. De ez már felváltotta a számla %s.
+ErrorInvoiceAlreadyReplaced=Hiba, megpróbálja jóváhagyni a számla helyettesítő számlát %s. De ezt már felváltotta a %s számla.
 ErrorDiscountAlreadyUsed=Hiba, a kedvezmény már használt
-ErrorInvoiceAvoirMustBeNegative=Hiba, a helyes számlát kell egy negatív összeg
+ErrorInvoiceAvoirMustBeNegative=Hiba, a helyetesítő számlátnak negatív összegűnek kell lennie
 ErrorInvoiceOfThisTypeMustBePositive=Hiba, az ilyen típusú számla legyen pozitív összeget
 ErrorCantCancelIfReplacementInvoiceNotValidated=Hiba, nem lehet törölni egy számlát, a helyébe egy másik számlát, amelyet még mindig vázlat
-BillFrom=-Tól
-BillTo=Bill a
+BillFrom=Feladó
+BillTo=Címzett
 ActionsOnBill=Műveletek a számlán
 NewBill=Új számla
 LastBills=Utolsó %s számlák
-LastCustomersBills=Utolsó %s ügyfelek számláit
+LastCustomersBills=Utolsó %s vásárlói számlák
 LastSuppliersBills=Utolsó %s beszállítói számlák
 AllBills=Minden számla
 OtherBills=Más számlák
 DraftBills=Tervezet számlák
-CustomersDraftInvoices=Az ügyfelek tervezet számlák
+CustomersDraftInvoices=A vásárlói tervezet számlák
 SuppliersDraftInvoices=Beszállítók tervezet számlák
 Unpaid=Kifizetetlen
 ConfirmDeleteBill=Biztosan törölni kívánja ezt a számlát?
-ConfirmValidateBill=Biztosan meg akarja érvényesíteni ezen a számlán való hivatkozással <b>%s?</b>
+ConfirmValidateBill=Biztosan akarja érvényesíteni ezt a számlát a következő hivatkozással <b>%s?</b>
 ConfirmUnvalidateBill=Biztosan meg szeretné változtatni a számla <b>%s</b> vázlat?
 ConfirmClassifyPaidBill=Biztosan meg szeretné változtatni a status <b>%s</b> számlát fizetni?
 ConfirmCancelBill=Biztosan meg akarja szakítani <b>%s</b> számlát?
@@ -184,6 +186,7 @@ ShowInvoice=Mutasd számla
 ShowInvoiceReplace=Megjelenítése helyett számlát
 ShowInvoiceAvoir=Mutasd jóváírást
 ShowInvoiceDeposit=Mutasd letéti számla
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Mutasd fizetés
 AlreadyPaid=Már kifizetett
 AlreadyPaidBack=Visszafizetés megtörtént
@@ -221,6 +224,7 @@ NonPercuRecuperable=Nem javítható
 SetConditions=Állítsa fizetési feltételek
 SetMode=Állítsa fizetési mód
 Billed=Kiszámlázott
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Számla minta
 RepeatableInvoices=Számlaminták
 Repeatable=Minta
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Ez az összeg már Elhagyott (kétes vevő), rendkívüli
 HelpAbandonOther=Ez az összeg már elhagyott, mivel valamilyen hiba történt (pl.: hibás vevő vagy a számla kicserélésre került)
 IdSocialContribution=Szociális/költségvetési adó fizetési azonosító
 PaymentId=Fizetés id
+PaymentRef=Payment ref.
 InvoiceId=Számla id
 InvoiceRef=Számla ref.
 InvoiceDateCreation=Számla létrehozás dátuma
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Azonnali
@@ -393,6 +402,7 @@ Reported=Késik
 DisabledBecausePayments=Nem lehetséges, mert van némi kifizetések
 CantRemovePaymentWithOneInvoicePaid=Nem lehet eltávolítani a fizetési hiszen legalább egy számlát fizetni osztályozott
 ExpectedToPay=Várható fizetés
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Megfizetni ezt a fizetési
 ClosePaidInvoicesAutomatically=Beállítás "Fizetett"-re, a kicserélt számla teljes kifizetés megtörtént.
 ClosePaidCreditNotesAutomatically=Beállítás "Fizetett"-ként. Az összes jóváírás teljes kifizetése megtörtén.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third pa
 RevenueStamp=Illetékbélyeg
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Számla PDF sablon Crabe. A teljes számla sablon (Template ajánlott)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=A törvényjavaslat kezdődő $ syymm már létezik, és nem kompatibilis ezzel a modellel a sorozatot. Töröld le vagy nevezd át, hogy aktiválja ezt a modult.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/hu_HU/boxes.lang b/htdocs/langs/hu_HU/boxes.lang
index 02d369835702da688ffe73f34180a611cfa1427c..1956c3f218fd0bc5dc78bee85f1dd830967722e6 100644
--- a/htdocs/langs/hu_HU/boxes.lang
+++ b/htdocs/langs/hu_HU/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Ügyfél számlák
 ForCustomersOrders=Customers orders
 ForProposals=Javaslatok
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/hu_HU/categories.lang b/htdocs/langs/hu_HU/categories.lang
index 1951ab36737048dae2337aadd6bcbadfec995781..cc78de055798b071c215a3bf17a3701f4ac89108 100644
--- a/htdocs/langs/hu_HU/categories.lang
+++ b/htdocs/langs/hu_HU/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Vásárló/Kilátás kategóriák
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/hu_HU/companies.lang b/htdocs/langs/hu_HU/companies.lang
index 82e85cf76f0f82fe0facdd8eb3dd66aeb41d8dfc..946d7c2c2720cf424f144e62e0967c37af31899d 100644
--- a/htdocs/langs/hu_HU/companies.lang
+++ b/htdocs/langs/hu_HU/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Szakma id 1 (RC)
 ProfId2MA=Szakma id 2 (Patente)
 ProfId3MA=Szakma id 3 (IF)
 ProfId4MA=Szakma id 4 (CNSS)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Szakma ID 1 (RFC).
 ProfId2MX=Szakma ID 2 (R.. P. IMSS)
diff --git a/htdocs/langs/hu_HU/compta.lang b/htdocs/langs/hu_HU/compta.lang
index 29c173c8d4b5901a122de48f313e2ced360e58b6..c4794ec809a58d0d6d76a3fec8026084d7886787 100644
--- a/htdocs/langs/hu_HU/compta.lang
+++ b/htdocs/langs/hu_HU/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Befizetési számla nem tartalmazza
 DepositsAreIncluded=- Fizess számlák kerülnek
 LT2ReportByCustomersInInputOutputModeES=Jelentés a harmadik fél IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/hu_HU/cron.lang b/htdocs/langs/hu_HU/cron.lang
index 79fb9737d527b6fcdf4c1b1372db844be0122297..a1a96a7283de751843732acab8d06d65a1ea0920 100644
--- a/htdocs/langs/hu_HU/cron.lang
+++ b/htdocs/langs/hu_HU/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=List of disabled jobs
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Last run
 CronLastOutput=Last run output
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Job
 CronNone=Nincs
-CronDtStart=Kezdési dátum
-CronDtEnd=Befejezési dátum
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Next execution
 CronDtLastLaunch=Last execution
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=No jobs registered
 CronPriority=Prioritás
 CronLabel=Leírás
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
@@ -76,7 +78,7 @@ CronMethodHelp=The object method to launch. <BR> For exemple to fetch method of
 CronArgsHelp=The method arguments. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of paramters can be <i>0, ProductRef</i>
 CronCommandHelp=The system command line to execute.
 CronCreateJob=Create new Scheduled Job
-CronFrom=From
+CronFrom=Küldő
 # Info
 CronInfoPage=Information
 # Common
diff --git a/htdocs/langs/hu_HU/deliveries.lang b/htdocs/langs/hu_HU/deliveries.lang
index a2134d1a24cb8501b792d398aa0e69fc5a83381f..47cb3709a33903761adb1fa5e324f0e27dead0e7 100644
--- a/htdocs/langs/hu_HU/deliveries.lang
+++ b/htdocs/langs/hu_HU/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Biztos benne, hogy törli átvételi elismervényen
 DeliveryMethod=Szállítási mód
 TrackingNumber=Nyomonkövetési szám
 DeliveryNotValidated=Szállítási nem validált
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Név és aláírás :
 ToAndDate=To___________________________________ on ____/_____/__________
diff --git a/htdocs/langs/hu_HU/holiday.lang b/htdocs/langs/hu_HU/holiday.lang
index 067a0ee0835f229395d204cd603dd558e645a2c2..9aa0f3c9ca420a523df84b0724611cdc88d39767 100644
--- a/htdocs/langs/hu_HU/holiday.lang
+++ b/htdocs/langs/hu_HU/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Employee
 DateDebCP=Kezdési dátum
 DateFinCP=Befejezési dátum
 DateCreateCP=Létrehozás dátuma
@@ -23,7 +22,7 @@ ReviewedByCP=Will be reviewed by
 DescCP=Leírás
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=You must select an end date greater than the start date.
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Vezetéknév
-Employee=Employee
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Monthly update
 ManualUpdate=Manual update
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/hu_HU/hrm.lang b/htdocs/langs/hu_HU/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/hu_HU/hrm.lang
+++ b/htdocs/langs/hu_HU/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/hu_HU/interventions.lang b/htdocs/langs/hu_HU/interventions.lang
index 0e21918312e7165157486bd8fd8c7fbd867d02dd..2aac2cc6fea839c3c0543d9a2d6b2feb6e28cf68 100644
--- a/htdocs/langs/hu_HU/interventions.lang
+++ b/htdocs/langs/hu_HU/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Számot ad a következő formában: %syymm-nnnn ahol yy
 PacificNumRefModelError=Egy intervenciós kártya $syymm kezdéssel már létezik és nem kompatibilies ezzel a szekvencia modellel. Távolítsa el vagy nevezze át hogy aktiválhassa a modult.
 PrintProductsOnFichinter=Print products on intervention card
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/hu_HU/mails.lang b/htdocs/langs/hu_HU/mails.lang
index 097d59e282884447a06b2ff82df2dccec32af1ab..0405a7f8e25fa2593eedd7b7c217c5c25225d89a 100644
--- a/htdocs/langs/hu_HU/mails.lang
+++ b/htdocs/langs/hu_HU/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail sent to %s recipients.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/hu_HU/main.lang b/htdocs/langs/hu_HU/main.lang
index 249077f40d0fa58655605605241bbad41aaaf90e..0e18748287840150600ad2ef7556fa2d5f1a354c 100644
--- a/htdocs/langs/hu_HU/main.lang
+++ b/htdocs/langs/hu_HU/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=Adatbási Kapcsolat
+NoTemplateDefined=No template defined for this email type
 NoTranslation=No translation
 NoRecordFound=No record found
 NoError=Nincs hiba
@@ -105,6 +106,7 @@ NotePrivate=Megjegyzés (privát)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr was setup to limit precision of unit prices to <b>%s</b> decimals.
 DoTest=Teszt
 ToFilter=Szűrő
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Warning, you have at least one element that has exceeded the tolerance delay.
 yes=igen
 Yes=Igen
@@ -228,6 +230,8 @@ Now=Most
 HourStart=Start hour
 Date=Dátum
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Kezdés
 DateEnd=Végzés
 DateCreation=Létrehozás dátuma
@@ -608,6 +612,7 @@ TotalMan=Összes
 NeverReceived=Soha nem került átvételre
 Canceled=Megszakítva
 YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Szín
 Documents=Kapcsolt fájlok
 DocumentsNb=Kapcsolt fájlok (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=No pictures available yet
 HomeDashboard=Home summary
+Dashboard=Dashboard
 Deductible=Deductible
 from=from
 toward=toward
diff --git a/htdocs/langs/hu_HU/margins.lang b/htdocs/langs/hu_HU/margins.lang
index b4ae55ba93972655310d61b0bc15a218e560bbef..6102c41c71da47de7c7509df02aea0aa278cdc48 100644
--- a/htdocs/langs/hu_HU/margins.lang
+++ b/htdocs/langs/hu_HU/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Choose product or service
 StartDate=Kezdési dátum
 EndDate=Befejezési dátum
 Launch=START
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=As a product
 UseDiscountAsService=As a service
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/hu_HU/oauth.lang b/htdocs/langs/hu_HU/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/hu_HU/oauth.lang
+++ b/htdocs/langs/hu_HU/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/hu_HU/orders.lang b/htdocs/langs/hu_HU/orders.lang
index f3268193a148430ea2991b884d802e893c063ed1..3fe217929bbf7b1fba745831725ca24c0a6ce5ab 100644
--- a/htdocs/langs/hu_HU/orders.lang
+++ b/htdocs/langs/hu_HU/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=No draft orders
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Egyéb megrendelések
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/hu_HU/other.lang b/htdocs/langs/hu_HU/other.lang
index 37ae257eff7d1a1271dfcd3924f47a65aa2a16a7..7b16faa5dbe7969dc2801c042ad17c562de79428 100644
--- a/htdocs/langs/hu_HU/other.lang
+++ b/htdocs/langs/hu_HU/other.lang
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=Új export
 ##### External sites #####
 ExternalSites=Külső oldalak
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/hu_HU/paypal.lang b/htdocs/langs/hu_HU/paypal.lang
index 80ba26a70e0fb8a9b6fb7030f6d6a30b9beee1f7..2f8e007688db36bbcbb6089b0f985e7f02f5534a 100644
--- a/htdocs/langs/hu_HU/paypal.lang
+++ b/htdocs/langs/hu_HU/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Üzemmódban végzett vizsgálat / homokozó
 PAYPAL_API_USER=API felhasználónév
 PAYPAL_API_PASSWORD=API jelszó
 PAYPAL_API_SIGNATURE=API aláírás
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Ajánlat fizetés &quot;szerves&quot; (hitelkártya + Paypal) vagy a &quot;Paypal&quot; csak
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/hu_HU/products.lang b/htdocs/langs/hu_HU/products.lang
index f44985d1f85903b00d636779a19f5a857fc0f7da..eca5b7e0b52033ff90c1a4b76e08f29f0da81f03 100644
--- a/htdocs/langs/hu_HU/products.lang
+++ b/htdocs/langs/hu_HU/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Production completed
-ProductsMultiPrice=Product multi-price
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/hu_HU/projects.lang b/htdocs/langs/hu_HU/projects.lang
index ef3f6be69737b6fa8fb676c0cb32173ca2345d6a..a7869c0b6f56c041606a228122eeab403e8a83e9 100644
--- a/htdocs/langs/hu_HU/projects.lang
+++ b/htdocs/langs/hu_HU/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=Ez a nézet minden projektet tartalmaz.
 MyTasksDesc=Ez a nézet azokra a projektekre van korlátozva amivel valamilyen összefüggésben áll.
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Ez a nézet minden az ön által megtekinthető projektre van korlátozva.
 TasksDesc=Ez a nézet minden projektet tartalmaz.
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Officer project
 LastProjects=Utolsó %s projekt
 AllProjects=Minden projekt
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Projektek listája
 ShowProject=Projektek mutatása
 SetProject=Projekt beállítása
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/hu_HU/propal.lang b/htdocs/langs/hu_HU/propal.lang
index fd9fdfe827e20b8f6675aee5d7ab38784f335381..92db6363552658106d65855be9f5e68d8c9ed75b 100644
--- a/htdocs/langs/hu_HU/propal.lang
+++ b/htdocs/langs/hu_HU/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Utolsó %s módosított javaslatokat
 AllPropals=Minden javaslat
 LastProposals=Utolsó javaslatok
 SearchAProposal=Keressen egy javaslatot
+NoProposal=No proposal
 ProposalsStatistics=Üzleti ajánlat statisztikái
 NumberOfProposalsByMonth=Havi száma
 AmountOfProposalsByMonthHT=Összeg havonta (adózott)
@@ -62,7 +63,8 @@ DatePropal=Születési javaslat
 DateEndPropal=Érvényesség vége dátuma
 DateEndPropalShort=Dátum végén
 ValidityDuration=Érvényesség időtartama
-CloseAs=Zárja le a status
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Osztályozza számlázott
 BuildBill=Build számla
 ErrorPropalNotFound=Propal %s nem található
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Default model creation
 DefaultModelPropalToBill=Default template when closing a business proposal (to be invoiced)
 DefaultModelPropalClosed=Default template when closing a business proposal (unbilled)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/hu_HU/salaries.lang b/htdocs/langs/hu_HU/salaries.lang
index 953a9c7540cbb06d6209140b32aaa0d23261e324..da177410860fb80d4d2d0872ec3b258ed787ba0e 100644
--- a/htdocs/langs/hu_HU/salaries.lang
+++ b/htdocs/langs/hu_HU/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Salary
 Salaries=Salaries
-Employee=Employee
 NewSalaryPayment=New salary payment
 SalaryPayment=Salary payment
 SalariesPayments=Salaries payments
diff --git a/htdocs/langs/hu_HU/sendings.lang b/htdocs/langs/hu_HU/sendings.lang
index fdf47aa1cd917ee69fd50acc516e111884a7a5c6..fbc45805c866b5b8227f35fe62b25f335b7f41a6 100644
--- a/htdocs/langs/hu_HU/sendings.lang
+++ b/htdocs/langs/hu_HU/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Szállítás
 Shipments=Szállítások
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Szállítási terület
 ListOfSendings=Szállítások listája
 SendingMethod=Szállítás módja
diff --git a/htdocs/langs/hu_HU/sms.lang b/htdocs/langs/hu_HU/sms.lang
index 698a9d7332385b778c443129f299c8373fb1d4e7..38354d1200a768d2c26f932bf2685930f25de2ce 100644
--- a/htdocs/langs/hu_HU/sms.lang
+++ b/htdocs/langs/hu_HU/sms.lang
@@ -49,5 +49,6 @@ SendSms=SMS küldése
 SmsInfoCharRemain=Nb a fennmaradó karakterek
 SmsInfoNumero= (Nemzetközi formátum, azaz: 33899701761)
 DelayBeforeSending=Késleltetett küldés előtt (perc)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Nincs cél elérhető. Ellenőrizze beállítása az SMS szolgáltató.
 
diff --git a/htdocs/langs/hu_HU/supplier_proposal.lang b/htdocs/langs/hu_HU/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b49e08a53471403ccfa5dd67998c767d0677f61c 100644
--- a/htdocs/langs/hu_HU/supplier_proposal.lang
+++ b/htdocs/langs/hu_HU/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
@@ -28,17 +27,17 @@ ValidateAsk=Validate request
 AddAsk=Create a request
 SupplierProposalDraft=Drafts
 SupplierProposalOpened=Open
-SupplierProposalStatusDraft=Draft (needs to be validated)
+SupplierProposalStatusDraft=Tervezet (érvényesítés szükséges)
 SupplierProposalStatusValidated=Validated (request is open)
 SupplierProposalStatusOpened=Validated (request is open)
-SupplierProposalStatusClosed=Closed
+SupplierProposalStatusClosed=Lezárt
 SupplierProposalStatusSigned=Accepted
 SupplierProposalStatusNotSigned=Refused
 SupplierProposalStatusBilled=Billed
 SupplierProposalStatusDraftShort=Draft
-SupplierProposalStatusValidatedShort=Validated
+SupplierProposalStatusValidatedShort=Hitelesítve
 SupplierProposalStatusOpenedShort=Open
-SupplierProposalStatusClosedShort=Closed
+SupplierProposalStatusClosedShort=Lezárt
 SupplierProposalStatusSignedShort=Accepted
 SupplierProposalStatusNotSignedShort=Refused
 SupplierProposalStatusBilledShort=Billed
diff --git a/htdocs/langs/hu_HU/trips.lang b/htdocs/langs/hu_HU/trips.lang
index c0d7fafd103f6da0e1e68f98b576ed2ccd813eea..1f4aea1e2612e47b42a54863d3c7c598fb5cf7b3 100644
--- a/htdocs/langs/hu_HU/trips.lang
+++ b/htdocs/langs/hu_HU/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Other
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Lunch
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/hu_HU/users.lang b/htdocs/langs/hu_HU/users.lang
index 1b700e671e7e4e4a8384fdd1b7c704f15b50d6a8..8fcb1ddafc852e6811cdaa53607ec15dd9bbf0ee 100644
--- a/htdocs/langs/hu_HU/users.lang
+++ b/htdocs/langs/hu_HU/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Használd az OpenID-t a belépéshez
 WeeklyHours=Heti munkaóra
 ColorUser=A felhasználó színe
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/id_ID/accountancy.lang b/htdocs/langs/id_ID/accountancy.lang
index a14873d71df2371b6ac21d38a3c3150c92586e4b..01d2d0b98f2c174475c5eb3df94f98e0db31489b 100644
--- a/htdocs/langs/id_ID/accountancy.lang
+++ b/htdocs/langs/id_ID/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Pilih satu model Ekspor
 Modelcsv_normal=Ekspor Klasik
 Modelcsv_CEGID=Ekspor terhadap CEGID Ahli
 BackToChartofaccounts=Akun pembalik
-Back=Kembali
 
 Definechartofaccounts=Menetapkan bagan akun
 Selectchartofaccounts=Pilih bagan akun
@@ -109,10 +108,6 @@ DelBookKeeping=Hapus catatan buku besar
 
 DescSellsJournal=Jurnal Penjualan
 DescPurchasesJournal=Jurnal Pembelian
-BankJournal=Jurnal Bank
-DescBankJournal=Jurnal Bank termasuk semua tipe pembayaran kecuali tunai
-CashJournal=Jurnal Tunai
-DescCashJournal=Jurnal Tunai termasuk tipe pembayaran tunai
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validasi Otomatis
 
 ErrorAccountancyCodeIsAlreadyUse=Kesalahan, Anda tidak dapat menghapus akun akuntansi ini karena digunakan
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/id_ID/admin.lang b/htdocs/langs/id_ID/admin.lang
index b8db9aab95d2201333d7d8950375fa5bdd86470f..9b290d8f33d36e585b706e6aacebde846d07c735 100644
--- a/htdocs/langs/id_ID/admin.lang
+++ b/htdocs/langs/id_ID/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Hide all information related to VAT on generated PDF
 HideDescOnPDF=Hide products description on generated PDF
 HideRefOnPDF=Hide products ref. on generated PDF
 HideDetailsOnPDF=Hide products lines details on generated PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Perpustakaan
 UrlGenerationParameters=Parameters to secure URLs
 SecurityTokenIsUnique=Use a unique securekey parameter for each URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Pengguna & Grup
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Notifikasi
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Sumbangan
 Module700Desc=Donation management
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Delays before warning
 DelaysOfToleranceBeforeWarning=Tolerance delays before warning
 DelaysOfToleranceDesc=This screen allows you to define the tolerated delays before an alert is reported on screen with picto %s for each late element.
 Delays_MAIN_DELAY_ACTIONS_TODO=Delay tolerance (in days) before alert on planned events not yet realised
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on orders not yet processed
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on suppliers orders not yet processed
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Delay tolerance (in days) before alert on proposals to close
@@ -1087,6 +1089,7 @@ PathDirectory=Directory
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/id_ID/agenda.lang b/htdocs/langs/id_ID/agenda.lang
index 37498e91adfb9192ed0f02aa1fd50f34ecf2a172..075ea026b40355844af8a7b79f9524b047f995d1 100644
--- a/htdocs/langs/id_ID/agenda.lang
+++ b/htdocs/langs/id_ID/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Semua acara / tugas
 ViewCal=Tampilan bulan
 ViewDay=Tampilan hari
 ViewWeek=Tampilan minggu
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Lihat dengan filter yang telah ditetapkan
 AutoActions= Otomatis mengisi
 AgendaAutoActionDesc= Tentukan sini peristiwa yang Anda ingin Dolibarr untuk membuat secara otomatis sebuah acara di agenda. Jika tidak dicentang (secara default), hanya tindakan manual akan dimasukkan dalam agenda.
diff --git a/htdocs/langs/id_ID/bills.lang b/htdocs/langs/id_ID/bills.lang
index 42a0d6e3a0160c525ccc7138ba555c8b6c6376f6..41c2cef23750cc0950030ae681cfe3cfc57b4cfd 100644
--- a/htdocs/langs/id_ID/bills.lang
+++ b/htdocs/langs/id_ID/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Pembayaran - pembayaran yang sudah selesai
 PaymentsBackAlreadyDone=Pembayaran - pembayaran kembali yang sudah selesai
 PaymentRule=Aturan pembayaran
 PaymentMode=Jenis pembayaran
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=Show invoice
 ShowInvoiceReplace=Show replacing invoice
 ShowInvoiceAvoir=Show credit note
 ShowInvoiceDeposit=Show deposit invoice
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Show payment
 AlreadyPaid=Already paid
 AlreadyPaidBack=Already paid back
@@ -221,6 +224,7 @@ NonPercuRecuperable=Non-recoverable
 SetConditions=Set payment terms
 SetMode=Set payment mode
 Billed=Billed
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=This amount has been abandoned (customer said to be a bad
 HelpAbandonOther=This amount has been abandoned since it was an error (wrong customer or invoice replaced by an other for example)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Payment id
+PaymentRef=Payment ref.
 InvoiceId=Invoice id
 InvoiceRef=Invoice ref.
 InvoiceDateCreation=Invoice creation date
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Immediate
@@ -393,6 +402,7 @@ Reported=Delayed
 DisabledBecausePayments=Not possible since there are some payments
 CantRemovePaymentWithOneInvoicePaid=Can't remove payment since there is at least one invoice classified paid
 ExpectedToPay=Expected payment
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Paid by this payment
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third pa
 RevenueStamp=Revenue stamp
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Invoice PDF template Crabe. A complete invoice template (recommended Template)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=A bill starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/id_ID/boxes.lang b/htdocs/langs/id_ID/boxes.lang
index 634b058f6d40f39c5434322b8c1ee431c6efccfa..8595403dc30264fc25e0890343920207a3b2fcc2 100644
--- a/htdocs/langs/id_ID/boxes.lang
+++ b/htdocs/langs/id_ID/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Customers invoices
 ForCustomersOrders=Customers orders
 ForProposals=Proposals
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/id_ID/categories.lang b/htdocs/langs/id_ID/categories.lang
index 81c73356c9313f8f6b58ca91fb632a9d894f335b..ccf22bb5003ca9dd4d684ff764aeb69eef7f739b 100644
--- a/htdocs/langs/id_ID/categories.lang
+++ b/htdocs/langs/id_ID/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo./Prosp. categories
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/id_ID/companies.lang b/htdocs/langs/id_ID/companies.lang
index 3f27234f70d6db1689ce0320dfae53422e767fd3..1c9f2730e54bb6e5f687b1759b6cf80945f3e810 100644
--- a/htdocs/langs/id_ID/companies.lang
+++ b/htdocs/langs/id_ID/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (R.C.)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (R.F.C).
 ProfId2MX=Prof Id 2 (R..P. IMSS)
diff --git a/htdocs/langs/id_ID/compta.lang b/htdocs/langs/id_ID/compta.lang
index 05909a63ce3a9e3a9ea86906d9666afadf537602..2e8fecbab1eddb7169cbf479f6f2555afbf0b691 100644
--- a/htdocs/langs/id_ID/compta.lang
+++ b/htdocs/langs/id_ID/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Deposit invoices are nor included
 DepositsAreIncluded=- Deposit invoices are included
 LT2ReportByCustomersInInputOutputModeES=Report by third party IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/id_ID/cron.lang b/htdocs/langs/id_ID/cron.lang
index bd85715642ec700a51b7365535762b2760ae54e5..21786df66cfcf912dd12c81c03fbb604e2255c26 100644
--- a/htdocs/langs/id_ID/cron.lang
+++ b/htdocs/langs/id_ID/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=List of disabled jobs
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Last run
 CronLastOutput=Last run output
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Job
 CronNone=None
-CronDtStart=Start date
-CronDtEnd=End date
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Next execution
 CronDtLastLaunch=Last execution
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=No jobs registered
 CronPriority=Priority
 CronLabel=Description
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
diff --git a/htdocs/langs/id_ID/deliveries.lang b/htdocs/langs/id_ID/deliveries.lang
index c513f3e347c28f0df14813efd7136bc833d51445..47e210744704ae9f083d6f1cf6630f7037ad794b 100644
--- a/htdocs/langs/id_ID/deliveries.lang
+++ b/htdocs/langs/id_ID/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Are you sure you want to delete delivery receipt <b
 DeliveryMethod=Delivery method
 TrackingNumber=Tracking number
 DeliveryNotValidated=Delivery not validated
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Name and Signature :
 ToAndDate=To___________________________________ on ____/_____/__________
diff --git a/htdocs/langs/id_ID/holiday.lang b/htdocs/langs/id_ID/holiday.lang
index 3981ece3b09ead51bb8c2cff4b3594b012690b29..b0a852067f472bc978a7fdac1334d441fa3d3734 100644
--- a/htdocs/langs/id_ID/holiday.lang
+++ b/htdocs/langs/id_ID/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=karyawan
 DateDebCP=Start date
 DateFinCP=End date
 DateCreateCP=Creation date
@@ -23,7 +22,7 @@ ReviewedByCP=Will be reviewed by
 DescCP=Description
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=You must select an end date greater than the start date.
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Name
-Employee=karyawan
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Monthly update
 ManualUpdate=Manual update
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/id_ID/hrm.lang b/htdocs/langs/id_ID/hrm.lang
index 7a63626fc07921b26d55243a2df4b2501b49277d..6ba400ba5bb50daa6347279e2c23db2fc36f1558 100644
--- a/htdocs/langs/id_ID/hrm.lang
+++ b/htdocs/langs/id_ID/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=Daftar Karyawan
 Employees=karyawan
 Employee=karyawan
+Employe=Employe
 NewEmployee=Karyawan Baru
 EmployeeCard=Kartu Karyawan
diff --git a/htdocs/langs/id_ID/interventions.lang b/htdocs/langs/id_ID/interventions.lang
index 5c08c3063534c07d4eea4a2096402a33cccadd41..cbcba219f1139b397fa8fe54ef5292c2ddf22248 100644
--- a/htdocs/langs/id_ID/interventions.lang
+++ b/htdocs/langs/id_ID/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Return numero with format %syymm-nnnn where yy is year,
 PacificNumRefModelError=An intervention card starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
 PrintProductsOnFichinter=Print products on intervention card
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/id_ID/mails.lang b/htdocs/langs/id_ID/mails.lang
index 87a1bd3c4d77c148a4c9554f25e94c5ca4becd9e..fbd7a14cd0471869ac1a1a0f1ec364a41ab9a244 100644
--- a/htdocs/langs/id_ID/mails.lang
+++ b/htdocs/langs/id_ID/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail sent to %s recipients.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/id_ID/main.lang b/htdocs/langs/id_ID/main.lang
index 2c6aa1362a60be880bf5fbb9ce3c6ae603ce7bcd..5d1399a204844f74c6541ed7ee9e6bb2788d74ab 100644
--- a/htdocs/langs/id_ID/main.lang
+++ b/htdocs/langs/id_ID/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=Database connection
+NoTemplateDefined=No template defined for this email type
 NoTranslation=No translation
 NoRecordFound=No record found
 NoError=No error
@@ -105,6 +106,7 @@ NotePrivate=Note (private)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr was setup to limit precision of unit prices to <b>%s</b> decimals.
 DoTest=Test
 ToFilter=Filter
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Warning, you have at least one element that has exceeded the tolerance delay.
 yes=yes
 Yes=Yes
@@ -228,6 +230,8 @@ Now=Now
 HourStart=Start hour
 Date=Tanggal
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Date start
 DateEnd=Date end
 DateCreation=Creation date
@@ -608,6 +612,7 @@ TotalMan=Total
 NeverReceived=Never received
 Canceled=Canceled
 YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Color
 Documents=Linked files
 DocumentsNb=Linked files (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=No pictures available yet
 HomeDashboard=Home summary
+Dashboard=Dashboard
 Deductible=Deductible
 from=from
 toward=toward
diff --git a/htdocs/langs/id_ID/margins.lang b/htdocs/langs/id_ID/margins.lang
index 7db5ea4892e47d38f81f47f47b7beb00e1177280..27bb4de9fa34bef827f4501268d659670a983767 100644
--- a/htdocs/langs/id_ID/margins.lang
+++ b/htdocs/langs/id_ID/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Choose product or service
 StartDate=Start date
 EndDate=End date
 Launch=Start
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=As a product
 UseDiscountAsService=As a service
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/id_ID/oauth.lang b/htdocs/langs/id_ID/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/id_ID/oauth.lang
+++ b/htdocs/langs/id_ID/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/id_ID/orders.lang b/htdocs/langs/id_ID/orders.lang
index 29c2a0b5e21d6c38fe10363675a1bc04bdd5b309..c0bfc3ccce39be48af6c839b61305244d9261c47 100644
--- a/htdocs/langs/id_ID/orders.lang
+++ b/htdocs/langs/id_ID/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=No draft orders
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Other orders
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/id_ID/other.lang b/htdocs/langs/id_ID/other.lang
index 9102efc6b086f122f19cbcdd873fa4b3fa94b20d..5a49d8748e6a29fd3272184b3ca556005a472c42 100644
--- a/htdocs/langs/id_ID/other.lang
+++ b/htdocs/langs/id_ID/other.lang
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=New export
 ##### External sites #####
 ExternalSites=External sites
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/id_ID/paypal.lang b/htdocs/langs/id_ID/paypal.lang
index a4204f919825385332e460f03280067caa62dbb4..c6905f2ecc4299f59205dda7302732f0f7e67666 100644
--- a/htdocs/langs/id_ID/paypal.lang
+++ b/htdocs/langs/id_ID/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Mode test/sandbox
 PAYPAL_API_USER=API username
 PAYPAL_API_PASSWORD=API password
 PAYPAL_API_SIGNATURE=API signature
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Offer payment "integral" (Credit card+Paypal) or "Paypal" only
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/id_ID/products.lang b/htdocs/langs/id_ID/products.lang
index cec92ca840b8f9f25960c8bf7ac80c3987b340c1..9c10f7bd71c6211a9bc2c7aeeee4f1dbcf5317b1 100644
--- a/htdocs/langs/id_ID/products.lang
+++ b/htdocs/langs/id_ID/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Production completed
-ProductsMultiPrice=Product multi-price
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/id_ID/projects.lang b/htdocs/langs/id_ID/projects.lang
index 5dbb3a6cb6a93ea0f613528b59c156caf07874d5..a53607be2c29409b671b54f152e1558e56d0297c 100644
--- a/htdocs/langs/id_ID/projects.lang
+++ b/htdocs/langs/id_ID/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=This view presents all projects (your user permissions grant you permission to view everything).
 MyTasksDesc=This view is limited to projects or tasks you are a contact for (whatever is the type).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=This view presents all projects and tasks you are allowed to read.
 TasksDesc=This view presents all projects and tasks (your user permissions grant you permission to view everything).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Officer project
 LastProjects=Last %s projects
 AllProjects=All projects
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=List of projects
 ShowProject=Show project
 SetProject=Set project
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/id_ID/propal.lang b/htdocs/langs/id_ID/propal.lang
index d12d7595f94d6a48a961cc635329e86ed543a7ea..79ae1f1cd50add8ebf9f9f1275481055ed84ce06 100644
--- a/htdocs/langs/id_ID/propal.lang
+++ b/htdocs/langs/id_ID/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Last %s modified proposals
 AllPropals=All proposals
 LastProposals=Last proposals
 SearchAProposal=Search a proposal
+NoProposal=No proposal
 ProposalsStatistics=Commercial proposal's statistics
 NumberOfProposalsByMonth=Number by month
 AmountOfProposalsByMonthHT=Amount by month (net of tax)
@@ -62,7 +63,8 @@ DatePropal=Date of proposal
 DateEndPropal=Validity ending date
 DateEndPropalShort=Date end
 ValidityDuration=Validity duration
-CloseAs=Close with status
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Classify billed
 BuildBill=Build invoice
 ErrorPropalNotFound=Propal %s not found
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Default model creation
 DefaultModelPropalToBill=Default template when closing a business proposal (to be invoiced)
 DefaultModelPropalClosed=Default template when closing a business proposal (unbilled)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/id_ID/salaries.lang b/htdocs/langs/id_ID/salaries.lang
index 693c520d286051c01882d1234b426a20e0cfff2d..55a4ccc094d182fecdba69f532d475d7d446fdc5 100644
--- a/htdocs/langs/id_ID/salaries.lang
+++ b/htdocs/langs/id_ID/salaries.lang
@@ -3,7 +3,6 @@ SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Kode Akuntansi untuk pembayaran gaji
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=kode akuntansi untuk pembiayaan keuangan
 Salary=Gaji
 Salaries=Gaji
-Employee=karyawan
 NewSalaryPayment=Pembayaran Gaji Baru
 SalaryPayment=Pembayaran Gaji
 SalariesPayments=Pembayaran Gaji
diff --git a/htdocs/langs/id_ID/sendings.lang b/htdocs/langs/id_ID/sendings.lang
index fa7da0b00794647c45f8777bbc68fb23a31e1c0e..fb7b9c08868e29621711a9651a94ed955c6b223f 100644
--- a/htdocs/langs/id_ID/sendings.lang
+++ b/htdocs/langs/id_ID/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Shipment
 Shipments=Shipments
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Shipments area
 ListOfSendings=List of shipments
 SendingMethod=Shipping method
diff --git a/htdocs/langs/id_ID/sms.lang b/htdocs/langs/id_ID/sms.lang
index 0ec0e61a588bedc541daf217d80885bddf755973..70066caac96971420d7c55b09879e200888763c2 100644
--- a/htdocs/langs/id_ID/sms.lang
+++ b/htdocs/langs/id_ID/sms.lang
@@ -1,53 +1,54 @@
 # Dolibarr language file - Source file is en_US - sms
-# Sms=Sms
-# SmsSetup=Sms setup
-# SmsDesc=This page allows you to define globals options on SMS features
-# SmsCard=SMS Card
-# AllSms=All SMS campains
-# SmsTargets=Targets
-# SmsRecipients=Targets
-# SmsRecipient=Target
-# SmsTitle=Description
-# SmsFrom=Sender
-# SmsTo=Target
-# SmsTopic=Topic of SMS
-# SmsText=Message
-# SmsMessage=SMS Message
-# ShowSms=Show Sms
-# ListOfSms=List SMS campains
-# NewSms=New SMS campain
-# EditSms=Edit Sms
-# ResetSms=New sending
-# DeleteSms=Delete Sms campain
-# DeleteASms=Remove a Sms campain
-# PreviewSms=Previuw Sms
-# PrepareSms=Prepare Sms
-# CreateSms=Create Sms
-# SmsResult=Result of Sms sending
-# TestSms=Test Sms
-# ValidSms=Validate Sms
-# ApproveSms=Approve Sms
-# SmsStatusDraft=Draft
-# SmsStatusValidated=Validated
-# SmsStatusApproved=Approved
-# SmsStatusSent=Sent
-# SmsStatusSentPartialy=Sent partially
-# SmsStatusSentCompletely=Sent completely
-# SmsStatusError=Error
-# SmsStatusNotSent=Not sent
-# SmsSuccessfulySent=Sms correctly sent (from %s to %s)
-# ErrorSmsRecipientIsEmpty=Number of target is empty
-# WarningNoSmsAdded=No new phone number to add to target list
-# ConfirmValidSms=Do you confirm validation of this campain ?
-# ConfirmResetMailing=Warning, if you make a reinit of Sms campain <b>%s</b>, you will allow to make a mass sending of it a second time. Is it really what you wan to do ?
-# ConfirmDeleteMailing=Do you confirm removing of campain ?
-# NbOfRecipients=Number of targets
-# NbOfUniqueSms=Nb dof unique phone numbers
-# NbOfSms=Nbre of phon numbers
-# ThisIsATestMessage=This is a test message
-# SendSms=Send SMS
-# SmsInfoCharRemain=Nb of remaining characters
-# SmsInfoNumero= (format international ie : +33899701761)
-# DelayBeforeSending=Delay before sending (minutes)
-# SmsNoPossibleRecipientFound=No target available. Check setup of your SMS provider.
+Sms=Sms
+SmsSetup=Sms setup
+SmsDesc=This page allows you to define globals options on SMS features
+SmsCard=SMS Card
+AllSms=All SMS campains
+SmsTargets=Targets
+SmsRecipients=Targets
+SmsRecipient=Target
+SmsTitle=Description
+SmsFrom=Sender
+SmsTo=Target
+SmsTopic=Topic of SMS
+SmsText=Message
+SmsMessage=SMS Message
+ShowSms=Show Sms
+ListOfSms=List SMS campains
+NewSms=New SMS campain
+EditSms=Edit Sms
+ResetSms=New sending
+DeleteSms=Delete Sms campain
+DeleteASms=Remove a Sms campain
+PreviewSms=Previuw Sms
+PrepareSms=Prepare Sms
+CreateSms=Create Sms
+SmsResult=Result of Sms sending
+TestSms=Test Sms
+ValidSms=Validate Sms
+ApproveSms=Approve Sms
+SmsStatusDraft=Draft
+SmsStatusValidated=Validated
+SmsStatusApproved=Approved
+SmsStatusSent=Sent
+SmsStatusSentPartialy=Sent partially
+SmsStatusSentCompletely=Sent completely
+SmsStatusError=Error
+SmsStatusNotSent=Not sent
+SmsSuccessfulySent=Sms correctly sent (from %s to %s)
+ErrorSmsRecipientIsEmpty=Number of target is empty
+WarningNoSmsAdded=No new phone number to add to target list
+ConfirmValidSms=Do you confirm validation of this campain ?
+ConfirmResetMailing=Warning, if you make a reinit of Sms campain <b>%s</b>, you will allow to make a mass sending of it a second time. Is it really what you wan to do ?
+ConfirmDeleteMailing=Do you confirm removing of campain ?
+NbOfRecipients=Number of targets
+NbOfUniqueSms=Nb dof unique phone numbers
+NbOfSms=Nbre of phon numbers
+ThisIsATestMessage=This is a test message
+SendSms=Send SMS
+SmsInfoCharRemain=Nb of remaining characters
+SmsInfoNumero= (format international ie : +33899701761)
+DelayBeforeSending=Delay before sending (minutes)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
+SmsNoPossibleRecipientFound=No target available. Check setup of your SMS provider.
 
diff --git a/htdocs/langs/id_ID/supplier_proposal.lang b/htdocs/langs/id_ID/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/id_ID/supplier_proposal.lang
+++ b/htdocs/langs/id_ID/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/id_ID/trips.lang b/htdocs/langs/id_ID/trips.lang
index ce9f0970e7c331996ee194c7613983060795a647..5ccdf8d0e37dcf680cc33691fdce1fd5644f2d53 100644
--- a/htdocs/langs/id_ID/trips.lang
+++ b/htdocs/langs/id_ID/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Other
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Lunch
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/id_ID/users.lang b/htdocs/langs/id_ID/users.lang
index 5b85ec80cf7e8a65d24d83c7359f831f9d150669..8a7dfcfe78753c5bda61b8d82208350a9e362652 100644
--- a/htdocs/langs/id_ID/users.lang
+++ b/htdocs/langs/id_ID/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Use OpenID to login
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/is_IS/accountancy.lang b/htdocs/langs/is_IS/accountancy.lang
index 5ee7e8de9f54f863782f095d33e3d4f43b2e78d2..87e3200f57c3544cb69c4a4d2a00867fbc5af632 100644
--- a/htdocs/langs/is_IS/accountancy.lang
+++ b/htdocs/langs/is_IS/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Return
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sells journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/is_IS/admin.lang b/htdocs/langs/is_IS/admin.lang
index 6a609b41c0519f080abda64aa80142f1a402ac44..27afc5f79608077d93d11d87f7d6893ca1439858 100644
--- a/htdocs/langs/is_IS/admin.lang
+++ b/htdocs/langs/is_IS/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Fela allar upplýsingar sem tengjast virðisaukaskatt
 HideDescOnPDF=Hide products description on generated PDF
 HideRefOnPDF=Hide products ref. on generated PDF
 HideDetailsOnPDF=Hide products lines details on generated PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Bókasafn
 UrlGenerationParameters=Breytur til að tryggja vefslóðir
 SecurityTokenIsUnique=Nota einstakt securekey breytu fyrir hvert slóð
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Notendur & hópar
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Tilkynningar
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Fjárframlög
 Module700Desc=Framlög í stjórnun
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Tafir fyrir viðvörun
 DelaysOfToleranceBeforeWarning=Umburðarlyndi tafir fyrir viðvörun
 DelaysOfToleranceDesc=Þessi skjár gerir þér kleift að tilgreina þola tafir áður en viðvörun er greint á skjá með picto %s  fyrir hvern seint í lotukerfinu.
 Delays_MAIN_DELAY_ACTIONS_TODO=Töf umburðarlyndi (í dögum) áður en viðvörun um fyrirhugaðar aðgerðir ekki enn grein
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Töf umburðarlyndi (í dögum) áður en hann hringi á skipunum enn ekki gert
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Töf umburðarlyndi (í dögum) fyrir viðvörun um birgja pantanir ekki enn unnum
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Töf umburðarlyndi (í dögum) áður en viðvörun um tillögur til að loka
@@ -1087,6 +1089,7 @@ PathDirectory=Listinn
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/is_IS/agenda.lang b/htdocs/langs/is_IS/agenda.lang
index b5b01664c7db6f08ba365e0a2f551b8709580a20..e853d6e1d2af979cfbab767e5a0bddc67af6b684 100644
--- a/htdocs/langs/is_IS/agenda.lang
+++ b/htdocs/langs/is_IS/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Allar aðgerðir / verkefni
 ViewCal=Skoða dagatal
 ViewDay=Dagsskjár
 ViewWeek=Vikuskjár
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= View með fyrirfram skilgreindum filters
 AutoActions= Sjálfvirk fyllingu dagskrá
 AgendaAutoActionDesc= Veldu hér viðburðir sem þú vilt Dolibarr að búa sjálfvirkt til aðgerða á dagskrá. Ef ekkert er valið (sjálfgefið), verður eingöngu handvirk aðgerð að koma fram í dagskrá.
diff --git a/htdocs/langs/is_IS/bills.lang b/htdocs/langs/is_IS/bills.lang
index 3d6cee43dd911bc107a40933a4cc014248170a60..c30d98300355861af8db79f6ae7e680493a1e235 100644
--- a/htdocs/langs/is_IS/bills.lang
+++ b/htdocs/langs/is_IS/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Greiðslur gert þegar
 PaymentsBackAlreadyDone=Payments back already done
 PaymentRule=Greiðsla regla
 PaymentMode=Greiðslumáti
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=Sýna reikning
 ShowInvoiceReplace=Sýna skipta Reikningar
 ShowInvoiceAvoir=Sýna kredit athugið
 ShowInvoiceDeposit=Sýna inná reikning
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Sýna greiðslu
 AlreadyPaid=Þegar greitt
 AlreadyPaidBack=Already paid back
@@ -221,6 +224,7 @@ NonPercuRecuperable=Non-endurheimtanlegur
 SetConditions=Setja greiðslu skilyrði
 SetMode=Setja greiðslu ham
 Billed=Billed
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Þessi upphæð hefur verið yfirgefin (viðskiptavinur t
 HelpAbandonOther=Þessi upphæð hefur verið yfirgefin síðan það var villa (vitlaust viðskiptavinar eða reikning í stað með öðrum til dæmis)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Greiðsla persónuskilríki
+PaymentRef=Payment ref.
 InvoiceId=Invoice persónuskilríki
 InvoiceRef=Invoice dómari.
 InvoiceDateCreation=Invoice sköpun dagsetningu
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Skjótur
@@ -393,6 +402,7 @@ Reported=Seinkun
 DisabledBecausePayments=Ekki hægt þar sem það er einhvers greiðslur
 CantRemovePaymentWithOneInvoicePaid=Get ekki fjarlægt greiðslu þar er að minnsta kosti á reikning flokkast borgað
 ExpectedToPay=Væntanlegur greiðslu
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Borgað af þessari greiðslu
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third pa
 RevenueStamp=Revenue stamp
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Invoice líkan Crabe. A heill Reikningar líkan (styður VSK valkostur, afslætti, greiðslur skilyrði, merki, osfrv ..)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=A frumvarpið hófst með $ syymm er til nú þegar og er ekki með þessari tegund af röð. Fjarlægja hana eða gefa henni nýtt heiti þess að virkja þessa einingu.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/is_IS/boxes.lang b/htdocs/langs/is_IS/boxes.lang
index a3a96ba798772395c2c9825461cf8abf204a0c94..6a1cc3b40878ba4ecd68a6bfb501f89f23245c2b 100644
--- a/htdocs/langs/is_IS/boxes.lang
+++ b/htdocs/langs/is_IS/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=reikninga viðskiptavinar
 ForCustomersOrders=Customers orders
 ForProposals=Tillögur
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/is_IS/categories.lang b/htdocs/langs/is_IS/categories.lang
index c8f5583dd24fbb6690f172fe4694b96afb9b4977..6d94d332d9fe30805fdaf79a805605f3a6e3dfc4 100644
--- a/htdocs/langs/is_IS/categories.lang
+++ b/htdocs/langs/is_IS/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo. / Prosp. Flokkur
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/is_IS/companies.lang b/htdocs/langs/is_IS/companies.lang
index fe176ebb3f5dafc4f2c65911a0e466f06fcc5e7c..22dca5e2e1a3c24833e9bfbf1b19e5ddd40ecfd1 100644
--- a/htdocs/langs/is_IS/companies.lang
+++ b/htdocs/langs/is_IS/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id Prof. 1 (RC)
 ProfId2MA=Id Prof. 2 (Patente)
 ProfId3MA=Id Prof. 3 (IF)
 ProfId4MA=Id Prof. 4 (CNSS)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (RFC).
 ProfId2MX=Prof Id 2 (R.. P. IMSS)
diff --git a/htdocs/langs/is_IS/compta.lang b/htdocs/langs/is_IS/compta.lang
index 679789c25fc02ddfcac59d4fb5bee59656823baf..eaaa110585c7b16a3186c11bf9ee79a8c600b5a4 100644
--- a/htdocs/langs/is_IS/compta.lang
+++ b/htdocs/langs/is_IS/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Innlánsstofnanir reikningar eru né með
 DepositsAreIncluded=- Innlánsstofnanir reikningar eru
 LT2ReportByCustomersInInputOutputModeES=Skýrsla um þriðja aðila IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/is_IS/cron.lang b/htdocs/langs/is_IS/cron.lang
index 05174a31df7cb6ab8a1b63a32dbf10b19d5e4a18..d61321e2b8d891d9bc9f8691d921d5dd7f7792d3 100644
--- a/htdocs/langs/is_IS/cron.lang
+++ b/htdocs/langs/is_IS/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=List of disabled jobs
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Last run
 CronLastOutput=Last run output
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Job
 CronNone=None
-CronDtStart=Upphafsdagur
-CronDtEnd=Lokadagur
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Next execution
 CronDtLastLaunch=Last execution
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=No jobs registered
 CronPriority=Forgangur
 CronLabel=Lýsing
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
diff --git a/htdocs/langs/is_IS/deliveries.lang b/htdocs/langs/is_IS/deliveries.lang
index 479ead49cf7b87983da2673168418f430f5b7ce2..9b90e042c2ae41ad1fe0903ace726f1f03325cc1 100644
--- a/htdocs/langs/is_IS/deliveries.lang
+++ b/htdocs/langs/is_IS/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Ertu viss um að þú viljir eyða pósti móttöku
 DeliveryMethod=Birtingarmáti
 TrackingNumber=Rekja spor númer
 DeliveryNotValidated=Afhending er ekki fullgilt
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Nafn og Undirskrift:
 ToAndDate=To___________________________________ á ____ / _____ / __________
diff --git a/htdocs/langs/is_IS/holiday.lang b/htdocs/langs/is_IS/holiday.lang
index a170197d3ecd97319d18329ec2f1287af7e4769a..9d98115dd371232bbfe285a4571f69d2ba60b1fc 100644
--- a/htdocs/langs/is_IS/holiday.lang
+++ b/htdocs/langs/is_IS/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Employee
 DateDebCP=Upphafsdagur
 DateFinCP=Lokadagur
 DateCreateCP=Creation dagsetning
@@ -23,7 +22,7 @@ ReviewedByCP=Will be reviewed by
 DescCP=Lýsing
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=You must select an end date greater than the start date.
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Nafn
-Employee=Employee
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Monthly update
 ManualUpdate=Manual update
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/is_IS/hrm.lang b/htdocs/langs/is_IS/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/is_IS/hrm.lang
+++ b/htdocs/langs/is_IS/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/is_IS/interventions.lang b/htdocs/langs/is_IS/interventions.lang
index 0a7f5b571d8c61bb5265eb13a2409cf63b1b02e3..b493d986d958de7c828a18f781481ea51e307ff7 100644
--- a/htdocs/langs/is_IS/interventions.lang
+++ b/htdocs/langs/is_IS/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Fara aftur numero með snið %s yymm-NNNN þar YY er ár
 PacificNumRefModelError=Íhlutun kort sem byrjar á $ syymm er til nú þegar og er ekki með þessari tegund af röð. Fjarlægja hana eða gefa henni nýtt heiti þess að virkja þessa einingu.
 PrintProductsOnFichinter=Print products on intervention card
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/is_IS/mails.lang b/htdocs/langs/is_IS/mails.lang
index 2ca15ee082ebc1b35eee462388002655c1fab590..f3233d026615a597bd37a7bcad0ba95a5e332d95 100644
--- a/htdocs/langs/is_IS/mails.lang
+++ b/htdocs/langs/is_IS/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail sent to %s recipients.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/is_IS/main.lang b/htdocs/langs/is_IS/main.lang
index 79dc1228762e945933647c1d8cef1c5698bcef2e..2f8bdc583edadfa1b8c673391ad68b2dfdafb652 100644
--- a/htdocs/langs/is_IS/main.lang
+++ b/htdocs/langs/is_IS/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%d %b %Y %H:%M
 FormatDateHourText=%d %B %Y %H:%M
 DatabaseConnection=Tengingin við gagnagrunninn
+NoTemplateDefined=No template defined for this email type
 NoTranslation=No translation
 NoRecordFound=No record found
 NoError=Engin villa
@@ -105,6 +106,7 @@ NotePrivate=Ath (einka)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr var skipulag að takmarka nákvæmni verði eining <b>í %s </b> brotum.
 DoTest=Próf
 ToFilter=Sía
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Aðvörun, hefur þú að minnsta kosti einn þáttur sem hefur farið fram úr umburðarlyndi tafar.
 yes=já
 Yes=Já
@@ -228,6 +230,8 @@ Now=Nú
 HourStart=Start hour
 Date=Dagsetning
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Upphafsdagsetning
 DateEnd=Lokadagsetning
 DateCreation=Creation dagsetning
@@ -608,6 +612,7 @@ TotalMan=Samtals
 NeverReceived=Aldrei fengið
 Canceled=Hætt við
 YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Litur
 Documents=Hlekkur skrá
 DocumentsNb=Hlekkur skrá ( %s )
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=No pictures available yet
 HomeDashboard=Home summary
+Dashboard=Dashboard
 Deductible=Deductible
 from=from
 toward=toward
diff --git a/htdocs/langs/is_IS/margins.lang b/htdocs/langs/is_IS/margins.lang
index 2f48814aaa7fa0c2883a890cfa667811b744bec0..60df2cb45f2d5c6a41da4a85e1c93d7dbac828f7 100644
--- a/htdocs/langs/is_IS/margins.lang
+++ b/htdocs/langs/is_IS/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Choose product or service
 StartDate=Upphafsdagur
 EndDate=Lokadagur
 Launch=Byrja
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=As a product
 UseDiscountAsService=As a service
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/is_IS/oauth.lang b/htdocs/langs/is_IS/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/is_IS/oauth.lang
+++ b/htdocs/langs/is_IS/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/is_IS/orders.lang b/htdocs/langs/is_IS/orders.lang
index 00cd2b98ca6108aa65d68cee4c00b2c7af094645..d285c0fe104e1ab2e938f94b14b5ff64f3efd470 100644
--- a/htdocs/langs/is_IS/orders.lang
+++ b/htdocs/langs/is_IS/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=No draft orders
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Aðrar skipanir
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/is_IS/other.lang b/htdocs/langs/is_IS/other.lang
index dc27a3fc35b2c3838396b05a380152ec83520ba8..25e3d5635323500ce4f434b829899371edcdd0aa 100644
--- a/htdocs/langs/is_IS/other.lang
+++ b/htdocs/langs/is_IS/other.lang
@@ -238,3 +238,8 @@ ToExport=Útflutningur
 NewExport=New útflutningur
 ##### External sites #####
 ExternalSites=Ytri síður
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/is_IS/paypal.lang b/htdocs/langs/is_IS/paypal.lang
index 4a8725a5f5e6fe90c25cc70b4e7a137ad11debf6..5dd39a74b1a6fbbb8b7f1c7e91f6fd290af20d90 100644
--- a/htdocs/langs/is_IS/paypal.lang
+++ b/htdocs/langs/is_IS/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Ham próf / sandkassi
 PAYPAL_API_USER=API notandanafn
 PAYPAL_API_PASSWORD=API lykilorð
 PAYPAL_API_SIGNATURE=API undirskrift
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Tilboð greiðslu &quot;órjúfanlegur&quot; (Kreditkort + Paypal) eða &quot;Paypal&quot; aðeins
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/is_IS/products.lang b/htdocs/langs/is_IS/products.lang
index f254a3f2b4eae7c9ab66bd8a4e7bcb4e95f3c68d..08e97f0f78afe4e25d696a8d9610dbe25bdaad6c 100644
--- a/htdocs/langs/is_IS/products.lang
+++ b/htdocs/langs/is_IS/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Production completed
-ProductsMultiPrice=Product multi-price
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/is_IS/projects.lang b/htdocs/langs/is_IS/projects.lang
index 1fa145979490d9da40b503f37df07d2b66ee282d..c4dc6d91e194f8ce693d50becb6d61118e876136 100644
--- a/htdocs/langs/is_IS/projects.lang
+++ b/htdocs/langs/is_IS/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=Þetta sýnir öll verkefni (notandi heimildir veita þér leyfi til að skoða allt).
 MyTasksDesc=Þessi skoðun er takmörkuð við verkefni eða verkefni sem þú ert að hafa samband við (hvað sem er gerð).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Þetta sýnir öll verkefni og verkefni sem þú ert að fá að lesa.
 TasksDesc=Þetta sýnir öll verkefni og verkefni (notandi heimildir veita þér leyfi til að skoða allt).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Officer verkefni
 LastProjects=Last %s  verkefni
 AllProjects=Öll verkefni
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Listi yfir verkefni
 ShowProject=Sýna verkefni
 SetProject=Setja verkefni
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/is_IS/propal.lang b/htdocs/langs/is_IS/propal.lang
index 67e920d8a94e2b24e263b9b2e75e67d96b149cb9..e969fb29fad4984dc0c0cfb97d7c59769f7932ad 100644
--- a/htdocs/langs/is_IS/propal.lang
+++ b/htdocs/langs/is_IS/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Last %s  breytt tillögum
 AllPropals=Allar tillögur
 LastProposals=Síðasta tillögur
 SearchAProposal=Leita að tillögu
+NoProposal=No proposal
 ProposalsStatistics=tölfræði Auglýsing tillögunnar
 NumberOfProposalsByMonth=Fjöldi eftir mánuði
 AmountOfProposalsByMonthHT=Upphæð eftir mánuði (að frádregnum skatti)
@@ -62,7 +63,8 @@ DatePropal=Dagsetning tillögu
 DateEndPropal=Date lok gildistíma
 DateEndPropalShort=Lokadagsetning
 ValidityDuration=Gildistími Lengd
-CloseAs=Loka með stöðu
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Flokka billed
 BuildBill=Byggja Reikningar
 ErrorPropalNotFound=Propal %s  fannst ekki
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Default model creation
 DefaultModelPropalToBill=Default template when closing a business proposal (to be invoiced)
 DefaultModelPropalClosed=Default template when closing a business proposal (unbilled)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/is_IS/salaries.lang b/htdocs/langs/is_IS/salaries.lang
index 953a9c7540cbb06d6209140b32aaa0d23261e324..da177410860fb80d4d2d0872ec3b258ed787ba0e 100644
--- a/htdocs/langs/is_IS/salaries.lang
+++ b/htdocs/langs/is_IS/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Salary
 Salaries=Salaries
-Employee=Employee
 NewSalaryPayment=New salary payment
 SalaryPayment=Salary payment
 SalariesPayments=Salaries payments
diff --git a/htdocs/langs/is_IS/sendings.lang b/htdocs/langs/is_IS/sendings.lang
index 8ea6e032c0858b2937c4789f39d5abba1f46c525..69fbea92dea6a1479eeb78c2627d642314fe8a3e 100644
--- a/htdocs/langs/is_IS/sendings.lang
+++ b/htdocs/langs/is_IS/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Sendingunni
 Shipments=Sendingar
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Sendingar area
 ListOfSendings=Listi yfir sendings
 SendingMethod=Shipping aðferð
diff --git a/htdocs/langs/is_IS/sms.lang b/htdocs/langs/is_IS/sms.lang
index 3da8b5a920d01a77159563b8a4e6cd60ee496822..eed19e7985173a2ff7f637f579a10f6843962209 100644
--- a/htdocs/langs/is_IS/sms.lang
+++ b/htdocs/langs/is_IS/sms.lang
@@ -49,5 +49,6 @@ SendSms=Senda SMS
 SmsInfoCharRemain=Nb af Stafir
 SmsInfoNumero= (Snið International þ.e.: 33899701761)
 DelayBeforeSending=Töf áður en þú sendir (mínútur)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Engin markmið í boði. Athugaðu uppsetningu SMS gefur.
 
diff --git a/htdocs/langs/is_IS/supplier_proposal.lang b/htdocs/langs/is_IS/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/is_IS/supplier_proposal.lang
+++ b/htdocs/langs/is_IS/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/is_IS/trips.lang b/htdocs/langs/is_IS/trips.lang
index 8800c47250b52a6d3952b275f4078b12278ea265..deec9f919cd0ea92f7d9d9f2bdbfa0538122cbdf 100644
--- a/htdocs/langs/is_IS/trips.lang
+++ b/htdocs/langs/is_IS/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Önnur
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Hádegisverður
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/is_IS/users.lang b/htdocs/langs/is_IS/users.lang
index f6d6c389ed907cd154aebf7845a55d519c46c79a..0a18703a5155e1e53e7a76cde5de59b3ea191489 100644
--- a/htdocs/langs/is_IS/users.lang
+++ b/htdocs/langs/is_IS/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Use OpenID to login
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/it_IT/accountancy.lang b/htdocs/langs/it_IT/accountancy.lang
index 45e251c51c603ae89e5571402601599dd3a3558d..7d8af19cdf3229930c742d8496757c2924891571 100644
--- a/htdocs/langs/it_IT/accountancy.lang
+++ b/htdocs/langs/it_IT/accountancy.lang
@@ -1,10 +1,10 @@
 # Dolibarr language file - en_US - Accounting Expert
-ACCOUNTING_EXPORT_SEPARATORCSV=Column separator for export file
+ACCOUNTING_EXPORT_SEPARATORCSV=Separatore delle colonne nel file di esportazione
 ACCOUNTING_EXPORT_DATE=Date format for export file
 ACCOUNTING_EXPORT_PIECE=Export the number of piece
 ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Export with global account
-ACCOUNTING_EXPORT_LABEL=Export the label
-ACCOUNTING_EXPORT_AMOUNT=Export the amount
+ACCOUNTING_EXPORT_LABEL=Esporta l'etichetta
+ACCOUNTING_EXPORT_AMOUNT=Esporta l'ammontare
 ACCOUNTING_EXPORT_DEVISE=Export the devise
 Selectformat=Select the format for the file
 ACCOUNTING_EXPORT_PREFIX_SPEC=Specify the prefix for the file name
@@ -26,7 +26,6 @@ Selectmodelcsv=Seleziona un modello di esportazione
 Modelcsv_normal=Esportazione classica
 Modelcsv_CEGID=Esporta tramite CEGID Esperto
 BackToChartofaccounts=Ritorna alla lista dell'account
-Back=Indietro
 
 Definechartofaccounts=Definisci una lista degli account
 Selectchartofaccounts=Seleziona una lista degli account
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Giornale di vendita
 DescPurchasesJournal=Giornale acquisti
-BankJournal=Giornale bancario
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,22 +147,28 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Convalida automaticamente
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
 ##Export Journal Feature
-ExportFormat=Format of Export
+ExportFormat=Formato di esportazione
 Prefixname=Prefix of export File
 Separate=Export separator
 Textframe=Frame of text value
 Headercol=Colname in header of file
-Fieldname=Name of Field
+Fieldname=Nome di campo
 Headername=Name in header
-Type=Type of fields
+Type=Tipi di campi
 Param=Additionnal parameters
-EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledProduct=Nel prodotto
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/it_IT/admin.lang b/htdocs/langs/it_IT/admin.lang
index 8cdd194c88fb066e38f9e66cf324867762cd5d3e..e303ce02ea49975ff4f6507ce9fe4fc8fe431d84 100644
--- a/htdocs/langs/it_IT/admin.lang
+++ b/htdocs/langs/it_IT/admin.lang
@@ -276,13 +276,13 @@ MAIN_SMS_SENDMODE=Metodo da utilizzare per inviare SMS
 MAIN_MAIL_SMS_FROM=Numero del chiamante predefinito per l'invio di SMS
 FeatureNotAvailableOnLinux=Funzione non disponibile sui sistemi Linux. Viene usato il server di posta installato sul server (es. sendmail).
 SubmitTranslationENUS=If translation for this language is not complete or you find errors, you can correct this by editing files into directory <b>langs/%s</b> and submit modified files on dolibarr.org/forum or for developers on github.com/Dolibarr/dolibarr.
-SubmitTranslation=If translation for this language is not complete or you find errors, you can correct this by editing files into directory <b>langs/%s</b> and submit your change to www.transifex.com/dolibarr-association/dolibarr/
+SubmitTranslation=Se la traduzione per questa lingua non è completa o trovi degli errori, puoi correggere i file presenti nella directory <b>langs/%s</b> e pubblicare i file modificati su www.transifex.com/dolibarr-association/dolibarr/
 ModuleSetup=Impostazioni modulo
 ModulesSetup=Impostazioni moduli
 ModuleFamilyBase=Sistema
 ModuleFamilyCrm=Client Resource Management (CRM)
-ModuleFamilyProducts=Products Management (PM)
-ModuleFamilyHr=Human Resource Management (HR)
+ModuleFamilyProducts=Gestione dei prodotti (PM)
+ModuleFamilyHr=Gestione delle risorse umane (HR)
 ModuleFamilyProjects=Progetti/collaborazioni
 ModuleFamilyOther=Altro
 ModuleFamilyTechnic=Strumenti Multi-modulo
@@ -329,7 +329,7 @@ UMaskExplanation=Questo parametro consente di definire i permessi impostati di d
 SeeWikiForAllTeam=Date un'occhiata alla pagina wiki per la lista completa di tutti gli autori e la loro organizzazione
 UseACacheDelay= Ritardo per il caching di esportazione (0 o vuoto per disabilitare la cache)
 DisableLinkToHelpCenter=Nascondi link <b>Hai bisogno di aiuto?</b> sulla pagina di accesso
-DisableLinkToHelp=Hide link to online help "<b>%s</b>"
+DisableLinkToHelp=Nascondi link  della guida online "<b>%s</b>"
 AddCRIfTooLong=La lunghezza delle righe non viene controllata automaticamente. Inserire gli a capo, se necessari.
 ModuleDisabled=Modulo disabilitato
 ModuleDisabledSoNoEvent=Modulo disabilitato - evento impossibile
@@ -352,7 +352,7 @@ ThemeDir=Directory delle skin
 ConnectionTimeout=Timeout della connessione
 ResponseTimeout=Timeout della risposta
 SmsTestMessage=Prova messaggio da __PHONEFROM__ a __PHONETO__
-ModuleMustBeEnabledFirst=Module <b>%s</b> must be enabled first if you need this feature.
+ModuleMustBeEnabledFirst=Il modulo <b>%s</b> deve prima essere attivato per poter accedere a questa funzione.
 SecurityToken=Token di sicurezza
 NoSmsEngine=Nessun manager mittente SMS disponibili. SMS gestore del mittente non sono installati con la distribuzione di default (perché dipende da un fornitore esterno), ma si possono trovare alcuni su http://www.dolistore.com
 PDF=PDF
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Nascondi tutte le informazioni relative all'IVA sui p
 HideDescOnPDF=Nascondi le descrizioni dei prodotti nel pdf generato
 HideRefOnPDF=Nascondi il ref. prodotto nei PDF generati
 HideDetailsOnPDF=Nascondi dettagli linee prodotti sui PDF generati
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Libreria
 UrlGenerationParameters=Parametri di generazione degli indirizzi
 SecurityTokenIsUnique=Utilizzare un unico parametro securekey per ogni URL
@@ -394,7 +394,7 @@ ExtrafieldParamHelpselect=I parametri della lista deveono avere una sintassi tip
 ExtrafieldParamHelpcheckbox=La lista dei parametri deve contenere chiave univoca e valore.<br><br>Per esempio:<br>1, valore1<br>2, valore2<br>3, valore3<br>...
 ExtrafieldParamHelpradio=La lista dei parametri deve rispettare il formato chiave,valore<br /><br /> per esempio: <br />1,valore1<br />2,valore2<br />3,valore3<br />...
 ExtrafieldParamHelpsellist=Parameters list comes from a table<br>Syntax : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntaxt  extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
-ExtrafieldParamHelpchkbxlst=Parameters list comes from a table<br>Syntax : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntaxt  extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
+ExtrafieldParamHelpchkbxlst=La lista dei parametri viene da una tabella<br>Sintassi: table_name:label_field:id_field::filter<br>Per esempio: c_typent:libelle:id::filter<br><br>filter può essere un semplice test (tipo active=1 per mostrare solo valori attivi) <br> se vuoi filtrare per extrafield usa la sintassi extra.fieldcode=... (dove fieldcode è il codice del extrafield)<br><br>Per far dipendere la lista da un'altra usa:<br>c_typent:libelle:id:parent_list_code|parent_column:filter
 ExtrafieldParamHelplink=Parameters must be ObjectName:Classpath<br>Syntax : ObjectName:Classpath<br>Example : Societe:societe/class/societe.class.php
 LibraryToBuildPDF=Libreria utilizzata per generare PDF
 WarningUsingFPDF=Avviso: Il tuo <b>conf.php</b> contiene la direttiva <b>dolibarr_pdf_force_fpdf = 1.</b> Questo significa che si utilizza la libreria FPDF per generare file PDF. Questa libreria è obsoleta e non supporta un molte funzioni (Unicode, trasparenza dell'immagine, lingue cirillico, arabo e asiatico, ...), quindi potrebbero verificarsi errori durante la generazione di file PDF. <br> Per risolvere questo problema ed avere un supporto completo di generazione di file PDF, scarica <a href="http://www.tcpdf.org/" target="_blank">biblioteca TCPDF</a> , quindi commentare o rimuovere la riga <b>$ dolibarr_pdf_force_fpdf = 1,</b> e aggiungere invece <b>$ dolibarr_lib_TCPDF_PATH = 'path_to_TCPDF_dir'</b>
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Utenti e gruppi
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Prestito
 Module520Desc=Gestione dei prestiti
 Module600Name=Notifiche
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Donazioni
 Module700Desc=Gestione donazioni
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Ritardi prima di avvertire
 DelaysOfToleranceBeforeWarning=Tolleranza sui ritardi prima di un avvertimento
 DelaysOfToleranceDesc=Questa schermata consente di definire per ciascun elemento la tolleranza sul ritardo prima che appaia una segnalazione nella casella con l'immagine %s.
 Delays_MAIN_DELAY_ACTIONS_TODO=Tolleranza sul ritardo (in giorni) prima di un avvertimento per azioni pianificate non ancora realizzate
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Tolleranza sul ritardo (in giorni) prima di un avvertimento per ordini non ancora lavorati
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Tolleranza sul ritardo (in giorni) prima di un avvertimento per ordini fornitore non ancora elaborati
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Tolleranza sul ritardo (in giorni) prima di un avvertimento per  proposte da chiudere
@@ -1087,6 +1089,7 @@ PathDirectory=Percorso directory
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configurazione della traduzione
 TranslationDesc=LA scelta della lingua visualizzata su schermo può essere modidificata:<br>* Globalmente dal menu <strong>Home - Setup - Display</strong><br>* O per utente dalla linguetta <strong>User display</strong> della scheda utente (cliccare l'icona di login in alto sullo schermo).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Numero totale di moduli attivati: <b>%s</b>
 YouMustEnableOneModule=Devi abilitare almeno un modulo
 ClassNotFoundIntoPathWarning=La classe %s non è stata trovata al percorso PHP indicato
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/it_IT/agenda.lang b/htdocs/langs/it_IT/agenda.lang
index 4158609457ad2a359b5cfebbc04e3e878a292eaf..3aaa0a6c8fe2bd00174819a5eb7c5de122a42edd 100644
--- a/htdocs/langs/it_IT/agenda.lang
+++ b/htdocs/langs/it_IT/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Tutte i compiti/azioni
 ViewCal=Vista mensile
 ViewDay=Vista giornaliera
 ViewWeek=Vista settimanale
+ViewYear=Year view
 ViewPerUser=Visualizzazione per utente
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Vista con filtri predefiniti
 AutoActions= Riempimento automatico
 AgendaAutoActionDesc= Definire qui gli eventi che devono essere creati automaticamente da Dolibarr. Se non è selezionato nulla (impostazione predefinita), nel calendario saranno visualizzate solo azioni inserite manualmente.
@@ -96,11 +98,11 @@ AddEvent=Crea evento
 MyAvailability=Mie disponibilità
 ActionType=Tipo di evento
 DateActionBegin=Data di inizio evento
-CloneAction=Clone event
+CloneAction=Clona evento
 ConfirmCloneEvent=Are you sure you want to clone the event <b>%s</b> ?
 RepeatEvent=Repeat event
 EveryWeek=Every week
-EveryMonth=Every month
+EveryMonth=Ogni mese
 DayOfMonth=Day of month
 DayOfWeek=Day of week
 DateStartPlusOne=Date start + 1 hour
diff --git a/htdocs/langs/it_IT/banks.lang b/htdocs/langs/it_IT/banks.lang
index effaf2b6e914bf0c363b56e3082762f29253d66b..8846cbd9a28b965fbb4694dc9f74977483ac7ed2 100644
--- a/htdocs/langs/it_IT/banks.lang
+++ b/htdocs/langs/it_IT/banks.lang
@@ -99,7 +99,7 @@ AccountToCredit=Conto di accredito
 AccountToDebit=Conto di addebito
 DisableConciliation=Disattiva funzione di conciliazione per questo conto
 ConciliationDisabled=Funzione di conciliazione disabilitata
-StatusAccountOpened=Open
+StatusAccountOpened=Aperto
 StatusAccountClosed=Chiuso
 AccountIdShort=Numero di conto
 EditBankRecord=Modifica record
diff --git a/htdocs/langs/it_IT/bills.lang b/htdocs/langs/it_IT/bills.lang
index 7c69c6dc428a0ebd939b2a1c24dccb2df00d6512..ffb4d645387eb4b9296b2f57be25b5f86aa4a58b 100644
--- a/htdocs/langs/it_IT/bills.lang
+++ b/htdocs/langs/it_IT/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Pagamenti già fatti
 PaymentsBackAlreadyDone=Rimborso già effettuato
 PaymentRule=Regola pagamento
 PaymentMode=Tipo di pagamento
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Termine di pagamento
 PaymentConditions=Condizioni di pagamento
@@ -184,6 +186,7 @@ ShowInvoice=Visualizza fattura
 ShowInvoiceReplace=Visualizza la fattura sostitutiva
 ShowInvoiceAvoir=Visualizza nota di credito
 ShowInvoiceDeposit=Visualizza fattura d'acconto
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Visualizza pagamento
 AlreadyPaid=Già pagato
 AlreadyPaidBack=Già rimborsato
@@ -221,6 +224,7 @@ NonPercuRecuperable=Non recuperabile
 SetConditions=Imposta le condizioni di pagamento
 SetMode=Imposta la modalità di pagamento
 Billed=Fatturati
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Modello fattura
 RepeatableInvoices=Modello fatture
 Repeatable=Modello
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Tale importo è stato abbandonato (cattivo cliente) ed è
 HelpAbandonOther=Tale importo è stato abbandonato dal momento che è stato un errore (cliente errato o fattura sostituita da altra, per esempio)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Id Pagamento
+PaymentRef=Payment ref.
 InvoiceId=Id fattura
 InvoiceRef=Rif. Fattura
 InvoiceDateCreation=Data di creazione fattura
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Fatture fornitori correlate
 LatestRelatedBill=Ultima fattura correlata
 WarningBillExist=Attenzione, una o più fatture già esistenti
 MergingPDFTool=Strumento di fusione dei PDF
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Immediato
@@ -393,6 +402,7 @@ Reported=Segnalato
 DisabledBecausePayments=Impossibile perché ci sono dei pagamenti
 CantRemovePaymentWithOneInvoicePaid=Impossibile rimuovere il pagamento. C'è almeno una fattura classificata come pagata
 ExpectedToPay=Pagamento previsto
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Pagato con questo pagamento
 ClosePaidInvoicesAutomatically=Classifica come "pagate" tutte le fatture standard, ad avanzamento lavori e le note di credito e di debito interamente saldate.
 ClosePaidCreditNotesAutomatically=Classifica come "Pagata" tutte le note di credito interamente rimborsate
@@ -404,8 +414,9 @@ NoteListOfYourUnpaidInvoices=Nota: questo elenco contiene solo fatture che hai c
 RevenueStamp=Marca da bollo
 YouMustCreateInvoiceFromThird=Questa opzione è disponibile quando crei fattura dalla scheda "cliente" di terze parti.
 PDFCrabeDescription=Modello di fattura Crabe. (Modello raccomandatoi)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Restituisce un numero nel formato %syymm-nnnn per le fatture, %syymm-nnnn per le note di credito e %syymm-nnnn per i versamenti, dove yy è l'anno, mm è il mese e nnnn è una sequenza progressiva, senza salti e che non si azzera.
-MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
+MarsNumRefModelDesc1=Numero di rientro con il formato syymm-nnnn per fatture tipo%,% syymm-nnnn per le fatture di sostituzione,% syymm-nnnn per le fatture di deposito e% syymm-nnnn per le note di credito dove aa è l'anno, mm è il mese e nnnn è una sequenza senza spezzare e non ritorno a 0
 TerreNumRefModelError=Un altro modello di numerazione con sequenza $ syymm è già esistente e non è compatibile con questo modello. Rimuovere o rinominare per attivare questo modulo.
 ##### Types de contacts #####
 TypeContact_facture_internal_SALESREPFOLL=Responsabile pagamenti clienti
@@ -433,3 +444,11 @@ DisabledBecauseFinal=Questo è l'avanzamento lavori finale
 CantBeLessThanMinPercent=Il valore dell'avanzamento non può essere inferiore al valore precedente.
 NoSituations=No open situations
 InvoiceSituationLast=Fattura a conclusione lavori
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/it_IT/boxes.lang b/htdocs/langs/it_IT/boxes.lang
index 04f19ea1d03a7984aae0c1540d506257e0ed6109..1f6db80c3d55e23166f5bceac445096502cc22e1 100644
--- a/htdocs/langs/it_IT/boxes.lang
+++ b/htdocs/langs/it_IT/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Fatture attive
 ForCustomersOrders=Ordini dei clienti
 ForProposals=Proposte
 LastXMonthRolling=Ultimi %s mesi
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/it_IT/categories.lang b/htdocs/langs/it_IT/categories.lang
index 6b321cb0abe8eb4e3ededb1accb8d951c2168419..4f6855526f5f8cf610d942c11e5a8ebd2675d9ba 100644
--- a/htdocs/langs/it_IT/categories.lang
+++ b/htdocs/langs/it_IT/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Tag/categoria prodotti
 MembersCategoryShort=Tag/categoria membri
 SuppliersCategoriesShort=Tag/categorie fornitori
 CustomersCategoriesShort=Tag/categorie clienti
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Categorie clienti potenziali
 ProductsCategoriesShort=Tag/categorie prodotti
 MembersCategoriesShort=Tag/categorie membri
@@ -108,4 +109,4 @@ CategorieRecursiv=Collega automaticamente alla tag/categoria padre
 CategorieRecursivHelp=Se attivata, il prodotto sarà inserito anche nella categoria padre quando  lo aggiungi ad una sottocategoria
 AddProductServiceIntoCategory=Aggiungi il seguente prodotto/servizio
 ShowCategory=Mostra tag/categoria
-ByDefaultInList=By default in list
+ByDefaultInList=Default nella lista
diff --git a/htdocs/langs/it_IT/companies.lang b/htdocs/langs/it_IT/companies.lang
index 93fc95a095b61fabc92750a2133f23b161898f0b..ec1ca51a48ccbf4a3a3b07d5f948a748cdd7e6f8 100644
--- a/htdocs/langs/it_IT/companies.lang
+++ b/htdocs/langs/it_IT/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=RC
 ProfId2MA=Patente
 ProfId3MA=SE
 ProfId4MA=CNSS
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=RFC
 ProfId2MX=R. P. IMSS
diff --git a/htdocs/langs/it_IT/compta.lang b/htdocs/langs/it_IT/compta.lang
index 281bdc71c4762889afd4ada713ac496bfda91c9c..a6cc7ea6d93cc8fc05be6f745460b67b7ca9e341 100644
--- a/htdocs/langs/it_IT/compta.lang
+++ b/htdocs/langs/it_IT/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Le fatture d'acconto non sono incluse
 DepositsAreIncluded=- Le fatture d'acconto sono incluse
 LT2ReportByCustomersInInputOutputModeES=IRPF soggetti terzi(Spagna)
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report per IVA cliente riscossa e pagata
 VATReportByCustomersInDueDebtMode=Report per IVA cliente riscossa e pagata
 VATReportByQuartersInInputOutputMode=Report per tasso di IVA riscossa e pagata
diff --git a/htdocs/langs/it_IT/cron.lang b/htdocs/langs/it_IT/cron.lang
index 4be3199634fb459c6cb52198d44586d6749f3016..73677edd7756ea2c41e268036766fc36c8b47ca5 100644
--- a/htdocs/langs/it_IT/cron.lang
+++ b/htdocs/langs/it_IT/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=In ambienti Unix per lanciare il comando ogni 5 minuti d
 CronExplainHowToRunWin=In ambienti Microsoft(tm) Windows per lanciare il comando ogni 5 minuti dovresti usare le operazioni pianificate
 # Menu
 CronJobs=Azioni pianificate
-CronListActive=Lista dei job attivi/programmati
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=Lista dei job disabilitati
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Ultimo avvio
 CronLastOutput=Output dell'ultimo avvio
@@ -35,8 +36,8 @@ CronInfo=Il modulo per i job programmati permette di eseguire operazioni definit
 CronWaitingJobs=Job in attesa
 CronTask=Azione
 CronNone=Nessuno
-CronDtStart=Data di inizio
-CronDtEnd=Data di fine
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Prossima esecuzione
 CronDtLastLaunch=Ultima esecuzione
 CronFrequency=Frequenza
@@ -51,6 +52,7 @@ CronNoJobs=Nessun job registrato
 CronPriority=Priorità
 CronLabel=Descrizione
 CronNbRun=Num. lancio
+CronMaxRun=Max nb. launch
 CronEach=Ogni
 JobFinished=Azione eseguita e completata
 #Page card
diff --git a/htdocs/langs/it_IT/deliveries.lang b/htdocs/langs/it_IT/deliveries.lang
index 123969f56d3ddabdf2dac84b3dcd39513f79a0a1..ef87205babac8282ee0b9ee19bce23b36e0d7a55 100644
--- a/htdocs/langs/it_IT/deliveries.lang
+++ b/htdocs/langs/it_IT/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Vuoi davvero cancellare la ricevuta di consegna <b>
 DeliveryMethod=Metodo di consegna
 TrackingNumber=Numero di tracking
 DeliveryNotValidated=Consegna non convalidata
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Nome e firma:
 ToAndDate=A___________________________________ il ____/_____/__________
diff --git a/htdocs/langs/it_IT/holiday.lang b/htdocs/langs/it_IT/holiday.lang
index 34ab35fabf671bc84b30fff1fad142603e87e26a..b03bd96495abaec3c86141ea94a32afbedf26e70 100644
--- a/htdocs/langs/it_IT/holiday.lang
+++ b/htdocs/langs/it_IT/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Dipendente
 DateDebCP=Data di inizio
 DateFinCP=Data di fine
 DateCreateCP=Data di creazione
@@ -23,7 +22,7 @@ ReviewedByCP=Sarà valutato da
 DescCP=Descrizione
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=La data di fine deve essere posteriore alla data di inizio.
@@ -79,9 +78,9 @@ PrevSoldeCP=Saldo precedente
 NewSoldeCP=Nuovo saldo
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Nome
-Employee=Dipendente
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Aggiornamento mensile
 ManualUpdate=Aggiornamento manuale
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/it_IT/hrm.lang b/htdocs/langs/it_IT/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/it_IT/hrm.lang
+++ b/htdocs/langs/it_IT/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/it_IT/interventions.lang b/htdocs/langs/it_IT/interventions.lang
index a40c9a56efe4803bf8c1b02328cdf4346f2e3414..00a05a7fdc389ef043382a3864095b0f6a3fe01c 100644
--- a/htdocs/langs/it_IT/interventions.lang
+++ b/htdocs/langs/it_IT/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Restituisce un numero nel formato %syymm-nnnn dove yy è
 PacificNumRefModelError=Un modello di numerazione degli interventi che inizia con $syymm è già esistente e non è compatibile con questo modello di sequenza. Rimuovere o rinominare per attivare questo modulo.
 PrintProductsOnFichinter=Stampa prodotti sulla scheda di intervento
 PrintProductsOnFichinterDetails=interventi generati da ordini
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/it_IT/languages.lang b/htdocs/langs/it_IT/languages.lang
index d1dbba181dfa984d41e18d2364fe89e2bdad2a13..47816c7fcb55cd476e92e8c225b7b7408b08a53b 100644
--- a/htdocs/langs/it_IT/languages.lang
+++ b/htdocs/langs/it_IT/languages.lang
@@ -35,7 +35,7 @@ Language_es_PR=Spagnolo (Portorico)
 Language_et_EE=Estone
 Language_eu_ES=Basco
 Language_fa_IR=Persiano
-Language_fi_FI=Finnish
+Language_fi_FI=finlandese
 Language_fr_BE=Francese (Belgio)
 Language_fr_CA=Francese (Canada)
 Language_fr_CH=Francese (Svizzera)
diff --git a/htdocs/langs/it_IT/mails.lang b/htdocs/langs/it_IT/mails.lang
index ee161d781eced119288d47b4bda9a8e7536125a4..8330dc4f55093b72c578fe8170464b7f32c61bb3 100644
--- a/htdocs/langs/it_IT/mails.lang
+++ b/htdocs/langs/it_IT/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=Email inviata a %s destinatari
 XTargetsAdded=<b>%s</b> destinatari aggiunti alla lista di invio
 EachInvoiceWillBeAttachedToEmail=Un documento che usa il template di fattura di default sarà creato ed allegato ad ogni email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Promemoria di fattura %s (%s)
 SendRemind=Invia promemoria per Email
 RemindSent=%s promemoria inviati.
diff --git a/htdocs/langs/it_IT/main.lang b/htdocs/langs/it_IT/main.lang
index 9b5ae20ea8b3838df47eaeabccfb8282d776d1be..5f26268ccdf014545906db7184fd54cc97cf55af 100644
--- a/htdocs/langs/it_IT/main.lang
+++ b/htdocs/langs/it_IT/main.lang
@@ -24,11 +24,12 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%d %b %Y %H.%M
 FormatDateHourText=%d %B %Y %H:%M
 DatabaseConnection=Connessione al database
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Nessuna traduzione
 NoRecordFound=Nessun risultato trovato
 NoError=Nessun errore
 Error=Errore
-Errors=Errors
+Errors=Errori
 ErrorFieldRequired=Il campo <b>%s</b> è obbligatorio
 ErrorFieldFormat=Il campo <b>%s</b> ha un valore errato
 ErrorFileDoesNotExists=Il file <b>%s</b> non esiste
@@ -58,9 +59,9 @@ ErrorSomeErrorWereFoundRollbackIsDone=Si sono verificati degli errori. Effettuat
 ErrorConfigParameterNotDefined=Il parametro <b>%s</b> non è stato definito nel file <b>conf.php</b>.
 ErrorCantLoadUserFromDolibarrDatabase=Impossibile trovare l'utente <b>%s</b> nel database dell'applicazione.
 ErrorNoVATRateDefinedForSellerCountry=Errore, non sono state definite le aliquote IVA per: <b>%s</b>.
-ErrorNoSocialContributionForSellerCountry=Error, no social/fiscal taxes type defined for country '%s'.
+ErrorNoSocialContributionForSellerCountry=Errore, non sono stati definiti i tipi di contributi per: '%s'.
 ErrorFailedToSaveFile=Errore, file non salvato.
-NotAuthorized=You are not authorized to do that.
+NotAuthorized=Non sei autorizzato.
 SetDate=Imposta data
 SelectDate=Seleziona una data
 SeeAlso=Vedi anche %s
@@ -105,13 +106,14 @@ NotePrivate=Nota (privata)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr è stato configurato per limitare la precisione dei prezzi unitari a <b>%s</b> decimali.
 DoTest=Verifica
 ToFilter=Filtrare
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Attenzione, avete almeno un elemento che ha superato la tolleranza di ritardo.
 yes=sì
 Yes=Sì
 no=no
 No=No
 All=Tutto
-Alls=All
+Alls=Tutti
 Home=Home
 Help=Aiuto
 OnlineHelp=Guida in linea
@@ -131,7 +133,7 @@ Disable=Disattivare
 Disabled=Disabilitato
 Add=Aggiungi
 AddLink=Aggiungi link
-RemoveLink=Remove link
+RemoveLink=Rimuovere collegamento
 Update=Aggiornamento
 AddActionToDo=Aggiungi azione da fare
 AddActionDone=Aggiungi azione fatta
@@ -228,10 +230,12 @@ Now=Adesso
 HourStart=Ora di inizio
 Date=Data
 DateAndHour=Data e ora
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Data inizio
 DateEnd=Data fine
 DateCreation=Data di creazione
-DateCreationShort=Creat. date
+DateCreationShort=Data di creazione
 DateModification=Data di modifica
 DateModificationShort=Data modif.
 DateLastModification=Data ultima modifica
@@ -345,7 +349,7 @@ IncludedVAT=IVA inclusa
 HT=Al netto delle imposte
 TTC=IVA inclusa
 VAT=IVA
-VATs=Sales taxes
+VATs=IVA
 LT1ES=RE
 LT2ES=IRPF
 VATRate=Aliquota IVA
@@ -388,7 +392,7 @@ NActions=%s azioni
 NActionsLate=%s azioni in ritardo
 RequestAlreadyDone=Richiesta già registrata
 Filter=Filtro
-FilterOnInto=Search criteria '<strong>%s</strong>' into fields %s
+FilterOnInto=Criteri di ricerca '<strong>%s</strong>' nei campi %s
 RemoveFilter=Rimuovi filtro
 ChartGenerated=Grafico generato
 ChartNotGenerated=Grafico non generato
@@ -421,8 +425,8 @@ Qty=Qtà
 ChangedBy=Cambiato da
 ApprovedBy=Approvato da
 ApprovedBy2=Approvato da (seconda approvazione)
-Approved=Approved
-Refused=Refused
+Approved=Approvato
+Refused=Rifiutato
 ReCalculate=Ricalcola
 ResultOk=Successo
 ResultKo=Fallimento
@@ -431,7 +435,7 @@ Reportings=Reportistiche
 Draft=Bozza
 Drafts=Bozze
 Validated=Convalidato
-Opened=Open
+Opened=Aperto
 New=Nuovo
 Discount=Sconto
 Unknown=Sconosciuto
@@ -439,7 +443,7 @@ General=Generale
 Size=Dimensione
 Received=Ricevuto
 Paid=Pagato
-Topic=Subject
+Topic=Oggetto
 ByCompanies=Per impresa
 ByUsers=Per utente
 Links=Link
@@ -608,6 +612,7 @@ TotalMan=Totale
 NeverReceived=Mai ricevuto
 Canceled=Annullato
 YouCanChangeValuesForThisListFromDictionarySetup=Puoi modificare i valori per questa lista dal menu setup - dizionario
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Colore
 Documents=Documenti
 DocumentsNb=file collegati (%s)
@@ -672,7 +677,7 @@ NewAttribute=Nuovo attributo
 AttributeCode=Codice attributo
 OptionalFieldsSetup=Impostazione attributi extra
 URLPhoto=URL foto/logo
-SetLinkToAnotherThirdParty=Link to another third party
+SetLinkToAnotherThirdParty=Collega ad altro soggetto terzo
 CreateDraft=Crea bozza
 SetToDraft=Ritorna a bozza
 ClickToEdit=Clicca per modificare
@@ -689,17 +694,18 @@ LinkedToSpecificUsers=Con collegamento ad un utente specifico
 DeleteAFile=Cancella un file
 ConfirmDeleteAFile=Sei sicuro di voler cancellare questo file
 NoResults=Nessun risultato
-SystemTools=System tools
+SystemTools=Strumenti di sistema
 ModulesSystemTools=Strumenti moduli
 Test=Test
 Element=Elemento
 NoPhotoYet=Nessuna immagine disponibile
 HomeDashboard=Sommario principale
+Dashboard=Dashboard
 Deductible=Deducibile
 from=da
 toward=verso
 Access=Accesso
-SelectAction=Select action
+SelectAction=Seleziona azione
 HelpCopyToClipboard=Usa Ctrl+C per copiare negli appunti
 SaveUploadedFileWithMask=Salva il file sul server con il nome "<strong>%s</strong>" (oppure "%s")
 OriginFileName=Nome originale del file
@@ -712,20 +718,20 @@ PublicUrl=URL pubblico
 AddBox=Aggiungi box
 SelectElementAndClickRefresh=Seleziona un elemento e clicca Aggiorna
 PrintFile=Stampa il file %s
-ShowTransaction=Show transaction on bank account
+ShowTransaction=Mostra la transazione
 GoIntoSetupToChangeLogo=Vai in Home -> Impostazioni -> Società per cambiare il logo o  in Home - Setup -> display per nasconderlo.
 Deny=Rifiuta
 Denied=Rifiutata
-ListOfTemplates=List of templates
-Gender=Gender
-Genderman=Man
-Genderwoman=Woman
-ViewList=List view
-Mandatory=Mandatory
-Hello=Hello
-Sincerely=Sincerely
-DeleteLine=Delete line
-ConfirmDeleteLine=Are you sure you want to delete this line ?
+ListOfTemplates=Elenco dei modelli
+Gender=Genere
+Genderman=Uomo
+Genderwoman=Donna
+ViewList=Vista elenco
+Mandatory=Obbligatorio
+Hello=Ciao
+Sincerely=Cordialmente
+DeleteLine=Elimina riga
+ConfirmDeleteLine=Vuoi davvero eliminare questa riga?
 
 # Week day
 Monday=Lunedì
@@ -756,26 +762,26 @@ ShortThursday=Gio
 ShortFriday=Ven
 ShortSaturday=Sab
 ShortSunday=Dom
-SelectMailModel=Select email template
+SelectMailModel=Seleziona modello e-mail
 SetRef=Set ref
 Select2ResultFoundUseArrows=
-Select2NotFound=No result found
-Select2Enter=Enter
-Select2MoreCharacters=or more characters
-Select2LoadingMoreResults=Loading more results...
-Select2SearchInProgress=Search in progress...
-SearchIntoThirdparties=Thirdparties
-SearchIntoContacts=Contacts
-SearchIntoMembers=Members
-SearchIntoUsers=Users
-SearchIntoProductsOrServices=Products or services
-SearchIntoProjects=Projects
-SearchIntoCustomerInvoices=Customer invoices
-SearchIntoSupplierInvoices=Supplier invoices
-SearchIntoCustomerOrders=Customer orders
-SearchIntoSupplierOrders=Supplier orders
-SearchIntoCustomerProposals=Customer proposals
-SearchIntoSupplierProposals=Supplier proposals
-SearchIntoInterventions=Interventions
-SearchIntoContracts=Contracts
-SearchIntoExpenseReports=Expense reports
+Select2NotFound=Nessun risultato trovato
+Select2Enter=Entra
+Select2MoreCharacters=o più caratteri
+Select2LoadingMoreResults=Caricamento di altri risultati ...
+Select2SearchInProgress=Ricerca in corso ...
+SearchIntoThirdparties=Terze parti
+SearchIntoContacts=Contatti
+SearchIntoMembers=Membri
+SearchIntoUsers=Utenti
+SearchIntoProductsOrServices=Prodotti o servizi
+SearchIntoProjects=Progetti
+SearchIntoCustomerInvoices=Fatture attive
+SearchIntoSupplierInvoices=Fatture fornitori
+SearchIntoCustomerOrders=Ordini dei clienti
+SearchIntoSupplierOrders=Ordini fornitori
+SearchIntoCustomerProposals=Proposte del cliente
+SearchIntoSupplierProposals=Proposte Fornitore
+SearchIntoInterventions=Interventi
+SearchIntoContracts=Contratti
+SearchIntoExpenseReports=Nota spese
diff --git a/htdocs/langs/it_IT/margins.lang b/htdocs/langs/it_IT/margins.lang
index 1ce6d6b936fecabb214fa8ec1e3b405b66f23814..2c5556e0e460913a54ca9eb50e6eaae2975529e4 100644
--- a/htdocs/langs/it_IT/margins.lang
+++ b/htdocs/langs/it_IT/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Scegli prodotto o servizio
 StartDate=Data di avvio
 EndDate=Data di fine
 Launch=Avvio
-ForceBuyingPriceIfNull=Forza il prezzo di acquisto se vuoto
-ForceBuyingPriceIfNullDetails=se "ON", il margine sarà zero (prezzo di acquisto=prezzo di vendita), nel caso contrario ("OFF"), il margine sarà uguale al prezzo di vendita (prezzo di acquisto=0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Metodo di margine per sconti globali
 UseDiscountAsProduct=Come prodotto
 UseDiscountAsService=Come servizio
@@ -35,8 +35,9 @@ MargeBrute=Margine lordo
 MargeNette=Margine netto
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Margine lordo = Prezzo di vendita - Prezzo di acquisto<br/>Margine netto = Prezzo di vendita - Prezzo di costo
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Prezzo di costo
 BuyingCost=Prezzo di costo
 UnitCharges=Carico unitario
diff --git a/htdocs/langs/it_IT/oauth.lang b/htdocs/langs/it_IT/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/it_IT/oauth.lang
+++ b/htdocs/langs/it_IT/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/it_IT/orders.lang b/htdocs/langs/it_IT/orders.lang
index 16e4cbd8c2157920b4318b4798429642de5596c5..1764f98701f8ea45552ce767ee5d226a31b2530b 100644
--- a/htdocs/langs/it_IT/orders.lang
+++ b/htdocs/langs/it_IT/orders.lang
@@ -17,13 +17,13 @@ SuppliersOrders=Ordini fornitori
 SuppliersOrdersRunning=Ordini fornitori avviati
 CustomerOrder=Ordine cliente
 CustomersOrders=Ordini dei clienti
-CustomersOrdersRunning=Current customer orders
-CustomersOrdersAndOrdersLines=Customer orders and order lines
+CustomersOrdersRunning=Ordini cliente attuali
+CustomersOrdersAndOrdersLines=Gli ordini dei clienti e le linee d'ordine
 OrdersToValid=Ordini dei clienti da convalidare
 OrdersToBill=Ordini dei clienti consegnati
-OrdersInProcess=Customer orders in process
-OrdersToProcess=Customer orders to process
-SuppliersOrdersToProcess=Supplier orders to process
+OrdersInProcess=Gli ordini dei clienti in corso
+OrdersToProcess=Ordini clienti da processare
+SuppliersOrdersToProcess=Ordini fornitore da processare
 StatusOrderCanceledShort=Annullato
 StatusOrderDraftShort=Bozza
 StatusOrderValidatedShort=Convalidato
@@ -31,12 +31,12 @@ StatusOrderSentShort=In corso
 StatusOrderSent=Spedizione in corso
 StatusOrderOnProcessShort=Ordinato
 StatusOrderProcessedShort=Lavorato
-StatusOrderDelivered=Delivered
+StatusOrderDelivered=Spedito
 StatusOrderToBillShort=Spedito
 StatusOrderToBill2Short=Da fatturare
 StatusOrderApprovedShort=Approvato
 StatusOrderRefusedShort=Rifiutato
-StatusOrderBilledShort=Billed
+StatusOrderBilledShort=Pagato
 StatusOrderToProcessShort=Da lavorare
 StatusOrderReceivedPartiallyShort=Ricevuto parz.
 StatusOrderReceivedAllShort=Ricevuto compl.
@@ -44,18 +44,18 @@ StatusOrderCanceled=Annullato
 StatusOrderDraft=Bozza (deve essere convalidata)
 StatusOrderValidated=Convalidato
 StatusOrderOnProcess=Ordinato - In attesa di ricezione
-StatusOrderOnProcessWithValidation=Ordered - Standby reception or validation
+StatusOrderOnProcessWithValidation=Ordinato - in attesa di ricezione o validazione
 StatusOrderProcessed=Lavorato
 StatusOrderToBill=Spedito
 StatusOrderToBill2=Da fatturare
 StatusOrderApproved=Approvato
 StatusOrderRefused=Rifiutato
-StatusOrderBilled=Billed
+StatusOrderBilled=Pagato
 StatusOrderReceivedPartially=Ricevuto parzialmente
 StatusOrderReceivedAll=Ricevuto completamente
 ShippingExist=Esiste una spedizione
-ProductQtyInDraft=Product quantity into draft orders
-ProductQtyInDraftOrWaitingApproved=Product quantity into draft or approved orders, not yet ordered
+ProductQtyInDraft=Quantità di prodotto in bozza di ordini
+ProductQtyInDraftOrWaitingApproved=Quantità di prodotto in bozze o ordini approvati, non ancora ordinato
 DraftOrWaitingApproved=In bozza o approvato, ma non ancora ordinato
 DraftOrWaitingShipped=In bozza o convalidato, ma non ancora spedito
 MenuOrdersToBill=Ordini spediti
@@ -67,12 +67,12 @@ ShipProduct=Spedisci prodotto
 CreateOrder=Crea ordine
 RefuseOrder=Rifiuta ordine
 ApproveOrder=Approva l'ordine
-Approve2Order=Approve order (second level)
+Approve2Order=Approva ordine (secondo livello)
 ValidateOrder=Convalida ordine
 UnvalidateOrder=Invalida ordine
 DeleteOrder=Elimina ordine
 CancelOrder=Annulla ordine
-OrderReopened= Order %s Reopened
+OrderReopened= Ordine %s riaperto
 AddOrder=Crea ordine
 AddToMyOrders=Aggiungi ai miei ordini
 AddToOtherOrders=Aggiungi ad altri ordini
@@ -82,8 +82,8 @@ OrdersOpened=Ordini da processare
 NoOpenedOrders=Nessun ordine aperto
 NoOtherOpenedOrders=Nessun altro ordine aperto
 NoDraftOrders=Nessuna bozza d'ordine
-NoOrder=No Order
-NoSupplierOrder=No supplier order
+NoOrder=No order
+NoSupplierOrder=Nessun ordine fornitore
 OtherOrders=Altri ordini
 LastOrders=Ultimi %s ordini del cliente
 LastCustomerOrders=Ultimi %s ordini del cliente
@@ -110,10 +110,10 @@ ClassifyShipped=Classifica come spedito
 ClassifyBilled=Classifica "fatturato"
 ComptaCard=Scheda contabilità
 DraftOrders=Bozze di ordini
-DraftSuppliersOrders=Draft suppliers orders
+DraftSuppliersOrders=Bozza ordine fornitore
 RelatedOrders=Ordini collegati
 RelatedCustomerOrders=Ordini correlati
-RelatedSupplierOrders=Related supplier orders
+RelatedSupplierOrders=Ordini fornitore relazionati
 OnProcessOrders=Ordini in lavorazione
 RefOrder=Rif. ordine
 RefCustomerOrder=Rif. ordine cliente
diff --git a/htdocs/langs/it_IT/other.lang b/htdocs/langs/it_IT/other.lang
index b17101e7469d03a48576f393f1358308520faa9e..9bf71c78ab5285d82b9778eecd7c3cc3b4f1ffcd 100644
--- a/htdocs/langs/it_IT/other.lang
+++ b/htdocs/langs/it_IT/other.lang
@@ -57,13 +57,13 @@ Miscellaneous=Varie
 NbOfActiveNotifications=Numero di notifiche (num. di email da ricevere)
 PredefinedMailTest=Questa è una mail di prova. \\NLe due linee sono separate da un a capo.
 PredefinedMailTestHtml=Questa è una mail <b>di test</b> (la parola test deve risultare in grassetto).<br/> Le due linee sono separate da un a capo.
-PredefinedMailContentSendInvoice=__CONTACTCIVNAME__\n\nYou will find here the invoice __REF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
-PredefinedMailContentSendInvoiceReminder=__CONTACTCIVNAME__\n\nWe would like to warn you that the invoice  __REF__ seems to not being payed. So this is the invoice in attachment again, as a reminder.\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
+PredefinedMailContentSendInvoice=__CONTACTCIVNAME__ Qui troverete la fattura __REF__ __PERSONALIZED__Sincerely __SIGNATURE__
+PredefinedMailContentSendInvoiceReminder=__CONTACTCIVNAME__ Vorremmo avvertirvi che il __REF__ fattura sembra di non essere pagato. Quindi questa è la fattura in allegato di nuovo, come un promemoria. __PERSONALIZED__Sincerely __SIGNATURE__
 PredefinedMailContentSendProposal=__CONTACTCIVNAME__\n\nAlleghiamo la proposta commerciale __PROPREF__ \n\n__PERSONALIZED__ Cordiali Saluti\n\n__SIGNATURE__
-PredefinedMailContentSendSupplierProposal=__CONTACTCIVNAME__\n\nYou will find here the price request __ASKREF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
+PredefinedMailContentSendSupplierProposal=__CONTACTCIVNAME__ Troverete qui la richiesta di prezzo __ASKREF__ __PERSONALIZED__Cordialmente __SIGNATURE__
 PredefinedMailContentSendOrder=__CONTACTCIVNAME__\n\nAlleghiamo l'ordine __ORDERREF__\n\n__PERSONALIZED__ Cordiali Saluti\n\n__SIGNATURE__
 PredefinedMailContentSendSupplierOrder=__CONTACTCIVNAME__\n\nAlleghiamo il nostro ordine __ORDERREF__\n\n__PERSONALIZED__Cordiali Saluti\n\n__SIGNATURE__
-PredefinedMailContentSendSupplierInvoice=__CONTACTCIVNAME__\n\nYou will find here the invoice __REF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
+PredefinedMailContentSendSupplierInvoice=__CONTACTCIVNAME__ Qui troverete la fattura __REF__ __PERSONALIZED__Cordialmente,  __SIGNATURE__
 PredefinedMailContentSendShipping=__CONTACTCIVNAME__\n\nAlleghiamo il documento di trasporto __SHIPPINGREF__\n\n__PERSONALIZED__Cordiali Saluti\n\n__SIGNATURE__
 PredefinedMailContentSendFichInter=__CONTACTCIVNAME__\n\nAlleghiamo l'intervento __FICHINTERREF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
 PredefinedMailContentThirdparty=__CONTACTCIVNAME__\n\n__PERSONALIZED__\n\n__SIGNATURE__
@@ -238,3 +238,8 @@ ToExport=Esportare
 NewExport=Nuova esportazione
 ##### External sites #####
 ExternalSites=Siti esterni
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/it_IT/paypal.lang b/htdocs/langs/it_IT/paypal.lang
index 772624c7126c12cb2b943106ed4ace7425f18201..9dc708fc8dc4cff472fa0f2a516d31dca662e95b 100644
--- a/htdocs/langs/it_IT/paypal.lang
+++ b/htdocs/langs/it_IT/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Modalità di test/sandbox
 PAYPAL_API_USER=Nome utente API
 PAYPAL_API_PASSWORD=Password API
 PAYPAL_API_SIGNATURE=Firma API
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Offerta di pagamento completo (Carta di credito + Paypal) o solo Paypal
 PaypalModeIntegral=Completo
 PaypalModeOnlyPaypal=Solo PayPal
diff --git a/htdocs/langs/it_IT/products.lang b/htdocs/langs/it_IT/products.lang
index 7f7fb16ad300abd87cd6af083599e6912f6b1e06..ac6526fc1c23588f2b3e1e9bb2e03707f7c97e21 100644
--- a/htdocs/langs/it_IT/products.lang
+++ b/htdocs/langs/it_IT/products.lang
@@ -1,9 +1,9 @@
 # Dolibarr language file - Source file is en_US - products
 ProductRef=Rif. prodotto
 ProductLabel=Etichetta prodotto
-ProductLabelTranslated=Translated product label
-ProductDescriptionTranslated=Translated product description
-ProductNoteTranslated=Translated product note
+ProductLabelTranslated=Etichetta del prodotto tradotto
+ProductDescriptionTranslated=Descrizione del prodotto tradotto
+ProductNoteTranslated=Tradotto nota prodotto
 ProductServiceCard=Scheda Prodotti/servizi
 Products=Prodotti
 Services=Servizi
@@ -26,14 +26,14 @@ ProductOrService=Prodotto o servizio
 ProductsAndServices=Prodotti e Servizi
 ProductsOrServices=Prodotti o servizi
 ProductsAndServicesOnSell=Prodotti e servizi in vendita
-ProductsAndServicesNotOnSell=Products and Services not for sale
+ProductsAndServicesNotOnSell=Prodotti e servizi non in vendita
 ProductsAndServicesStatistics=Statistiche Prodotti e Servizi
 ProductsStatistics=Statistiche Prodotti
-ProductsOnSell=Product for sale or for purchase
-ProductsNotOnSell=Product not for sale and not for purchase
+ProductsOnSell=Prodotto per la vendita o per l'acquisto
+ProductsNotOnSell=Prodotto non in vendita e non per l'acquisto
 ProductsOnSellAndOnBuy=Prodotti in vendit
 ServicesOnSell=Servizi in vendit
-ServicesNotOnSell=Services not for sale
+ServicesNotOnSell=Servizi non in vendita
 ServicesOnSellAndOnBuy=Servizi in vendita
 InternalRef=Riferimento interno
 LastRecorded=Ultimi prodotti/servizi in vendita registrati
@@ -47,7 +47,7 @@ CardProduct1=Scheda servizio
 CardContract=Scheda contratto
 Warehouse=Magazzino
 Warehouses=Magazzini
-WarehouseOpened=Warehouse open
+WarehouseOpened=Magazzino aperto
 WarehouseClosed=Magazzino chiuso
 Stock=Scorte
 Stocks=Scorte
@@ -67,9 +67,9 @@ ProductStatusNotOnBuy=Da non acquistare
 ProductStatusOnBuyShort=Acquistabile
 ProductStatusNotOnBuyShort=Obsoleto
 UpdatePrice=Aggiorna prezzo
-UpdateVAT=Update vat
-UpdateDefaultPrice=Update default price
-UpdateLevelPrices=Update prices for each level
+UpdateVAT=Aggiorna iva
+UpdateDefaultPrice=Aggiornamento prezzo predefinito
+UpdateLevelPrices=Aggiorna prezzi per ogni livello
 AppliedPricesFrom=Prezzi applicati a partire da
 SellingPrice=Prezzo di vendita
 SellingPriceHT=Prezzo di vendita (al netto delle imposte)
@@ -77,23 +77,23 @@ SellingPriceTTC=Prezzo di vendita (inclusa IVA)
 PublicPrice=Prezzo al pubblico
 CurrentPrice=Prezzo attuale
 CostPriceDescription=This price (net of tax) can be used to store the average amount this product cost to your company. It may be any price you calculate yourself, for example from the average buying price plus average production and distribution cost.
-CostPriceUsage=In a future version, this value could be used for margin calculation.
+CostPriceUsage=In una versione futura, questo valore può essere utilizzato per il calcolo del margine.
 NewPrice=Nuovo prezzo
-MinPrice=Min. selling price
-MinPriceHT=Min. selling price (net of tax)
-MinPriceTTC=Min. selling price (inc. tax)
+MinPrice=Min. prezzo di vendita
+MinPriceHT=Min. prezzo di vendita (al netto delle imposte)
+MinPriceTTC=Min. prezzo di vendita (inc tasse).
 CantBeLessThanMinPrice=Il prezzo di vendita non può essere inferiore al minimo consentito per questo prodotto ( %s IVA esclusa)
 ContractStatus=Stato del Contratto
 ContractStatusClosed=Chiuso
-ContractStatusRunning=Ongoing
+ContractStatusRunning=In corso
 ContractStatusExpired=Scaduto
-ContractStatusOnHold=On hold
-ContractStatusToRun=Make ongoing
-ContractNotRunning=This contract is not ongoing
+ContractStatusOnHold=In attesa
+ContractStatusToRun=Fai in corso
+ContractNotRunning=Questo contratto non è in corso
 ErrorProductAlreadyExists=Un prodotto con riferimento %s esiste già.
 ErrorProductBadRefOrLabel=Il valore di riferimento o l'etichetta è sbagliato.
 ErrorProductClone=Si è verificato un problema cercando di cuplicare il prodotto o servizio
-ErrorPriceCantBeLowerThanMinPrice=Error, price can't be lower than minimum price.
+ErrorPriceCantBeLowerThanMinPrice=Errore, il prezzo non può essere inferiore al prezzo minimo.
 Suppliers=Fornitori
 SupplierRef=Rif. fornitore
 ShowProduct=Visualizza prodotto
@@ -108,7 +108,7 @@ AddToOtherBills=Aggiungi ad altre fatture
 CorrectStock=Variazione manuale scorte
 ListOfStockMovements=Elenco movimenti di magazzino
 BuyingPrice=Prezzo di acquisto
-PriceForEachProduct=Products with specific prices
+PriceForEachProduct=Prodotti con prezzi specifici
 NoPriceSpecificToCustomer=This customer has no specific prices. All standard prices for products/services will be used.
 SupplierCard=Scheda fornitore
 CommercialCard=Scheda commerciale
@@ -126,12 +126,12 @@ ServiceLimitedDuration=Se il prodotto è un servizio di durata limitata:
 MultiPricesAbility=Livello diverso di prezzi per prodotto/servizio
 MultiPricesNumPrices=Numero di prezzi per il multi-prezzi
 MultiPriceLevelsName=Categorie di prezzo
-AssociatedProductsAbility=Activate the package feature
+AssociatedProductsAbility=Attiva le caratteristiche della confezione
 AssociatedProducts=Prodotto associato
-AssociatedProductsNumber=Number of products composing this package product
+AssociatedProductsNumber=Numero di prodotti che compongono questo prodotto pacchetto
 ParentProductsNumber=Numero di prodotti associati che includono questo sottoprodotto
-IfZeroItIsNotAVirtualProduct=If 0, this product is not a package product
-IfZeroItIsNotUsedByVirtualProduct=If 0, this product is not used by any package product
+IfZeroItIsNotAVirtualProduct=Se 0, questo prodotto non è un prodotto del pacchetto
+IfZeroItIsNotUsedByVirtualProduct=Se è 0, questo prodotto non è utilizzato da nessuno prodotto pacchetto
 EditAssociate=Modifica associazione
 Translation=Traduzione
 KeywordFilter=Filtro per parola chiave
@@ -139,7 +139,7 @@ CategoryFilter=Filtro categoria
 ProductToAddSearch=Cerca prodotto da aggiungere
 AddDel=Aggiungi/Elimina
 NoMatchFound=Nessun risultato trovato
-ProductAssociationList=List of products/services that are component of this virtual product/package
+ProductAssociationList=Elenco dei prodotti / servizi che sono componente di questo prodotto / pacchetto virtuale
 ProductParentList=Elenco dei prodotti/servizi associati che includono questo sottoprodotto
 ErrorAssociationIsFatherOfThis=Uno dei prodotti selezionati è padre dell'attuale prodotto
 DeleteProduct=Elimina un prodotto/servizio
@@ -187,42 +187,42 @@ CloneProduct=Clona prodotto/servizio
 ConfirmCloneProduct=Vuoi davvero clonare il prodotto/servizio <b>%s</b>?
 CloneContentProduct=Clona tutte le principali informazioni del prodotto/servizio
 ClonePricesProduct=Clona principali informazioni e prezzi
-CloneCompositionProduct=Clone packaged product/service
+CloneCompositionProduct=Clona prodotto / servizio pacchetto
 ProductIsUsed=Questo prodotto è in uso
 NewRefForClone=Rif. del nuovo prodotto/servizio
-SellingPrices=Selling prices
-BuyingPrices=Buying prices
-CustomerPrices=Customer prices
-SuppliersPrices=Supplier prices
-SuppliersPricesOfProductsOrServices=Supplier prices (of products or services)
+SellingPrices=Prezzi di vendita
+BuyingPrices=Prezzi di acquisto
+CustomerPrices=Prezzi di vendita
+SuppliersPrices=Prezzi di acquisto
+SuppliersPricesOfProductsOrServices=Prezzi dei fornitori (di prodotti o servizi)
 CustomCode=Codice dogana
 CountryOrigin=Paese di origine
 HiddenIntoCombo=Nascosti nelle tendine di selezione
 Nature=Natura
-ShortLabel=Short label
-Unit=Unit
+ShortLabel=Etichetta breve
+Unit=Unità
 p=u.
-set=set
-se=set
-second=second
+set=impostato
+se=impostato
+second=secondo
 s=s
-hour=hour
+hour=ora
 h=h
-day=day
+day=giorno
 d=d
-kilogram=kilogram
+kilogram=chilogrammo
 kg=Kg
-gram=gram
+gram=grammo
 g=g
-meter=meter
+meter=metro
 m=m
-linearmeter=linear meter
+linearmeter=metro lineare
 lm=lm
-squaremeter=square meter
+squaremeter=metro quadro
 m2=m²
-cubicmeter=cubic meter
+cubicmeter=metro cubo
 m3=m³
-liter=liter
+liter=litro
 l=L
 ProductCodeModel=Template di rif. prodotto
 ServiceCodeModel=Template di rif. servizio
@@ -238,7 +238,7 @@ PriceByQuantityRange=Intervallo della quantità
 ProductsDashboard=Riepilogo prodotti/servizi
 UpdateOriginalProductLabel=Modifica l'etichetta originale
 HelpUpdateOriginalProductLabel=Permette di modificare il nome del prodotto
-MultipriceRules=Price level rules
+MultipriceRules=Le regole del livello dei prezzi
 UseMultipriceRules=Use price level rules (defined into product module setup) to autocalculate prices of all other level according to first level
 PercentVariationOver=%% variation over %s
 PercentDiscountOver=%% discount over %s
@@ -252,10 +252,10 @@ UnitPmp=Unità netta VWAP
 CostPmpHT=Totale netto VWAP
 ProductUsedForBuild=Autoconsumato dalla produzione
 ProductBuilded=Produzione completata
-ProductsMultiPrice=Prodotto con più prezzi
-ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
-ProductSellByQuarterHT=Products turnover quarterly before tax
-ServiceSellByQuarterHT=Services turnover quarterly before tax
+ProductsMultiPrice=Products and prices for each price level
+ProductsOrServiceMultiPrice=I prezzi dei clienti (di prodotti o servizi, multi-prezzi)
+ProductSellByQuarterHT=Prodotti fatturato trimestrale ante imposte
+ServiceSellByQuarterHT=Servizi fatturato trimestrale ante imposte
 Quarter1=Primo trimestre
 Quarter2=Secondo trimestre
 Quarter3=Terzo trimestre
@@ -276,10 +276,10 @@ ResetBarcodeForAllRecords=Definisci il valore del codice a barre per tutti quell
 PriceByCustomer=Prezzi diversi in base al cliente
 PriceCatalogue=Prezzo unico per prodotto/servizio
 PricingRule=Regole dei prezzi al cliente
-AddCustomerPrice=Add price by customer
+AddCustomerPrice=Aggiungere prezzo dal cliente
 ForceUpdateChildPriceSoc=Imposta lo stesso prezzo per i clienti sussidiari
-PriceByCustomerLog=Log of previous customer prices
-MinimumPriceLimit=Minimum price can't be lower then %s
+PriceByCustomerLog=Log di precedenti prezzi clienti
+MinimumPriceLimit=Prezzo minimo non può essere inferiore a % s
 MinimumRecommendedPrice=Il prezzo minimo raccomandato è: %s
 PriceExpressionEditor=Editor della formula del prezzo
 PriceExpressionSelected=Formula del prezzo selezionata
@@ -306,9 +306,10 @@ GlobalVariableUpdaterHelpFormat1=il formato è: {"URL": "http://example.com/urlo
 UpdateInterval=Frequenza di aggiornamento (in minuti)
 LastUpdated=Ultimo aggiornamento
 CorrectlyUpdated=Aggiornato correttamente
-PropalMergePdfProductActualFile=Files use to add into PDF Azur are/is
-PropalMergePdfProductChooseFile=Select PDF files
-IncludingProductWithTag=Including product/service with tag
-DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
-WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+PropalMergePdfProductActualFile=I file utilizzano per aggiungere in PDF Azzurra sono / è
+PropalMergePdfProductChooseFile=Selezionare i file PDF
+IncludingProductWithTag=Compreso prodotto/servizio con tag
+DefaultPriceRealPriceMayDependOnCustomer=Prezzo predefinito, prezzo reale può dipendere cliente
+WarningSelectOneDocument=Seleziona almeno un documento
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/it_IT/projects.lang b/htdocs/langs/it_IT/projects.lang
index b768fc21fe9f2a38f2ad366400957c424393f81e..ce3ecb7809d8a65094d6c78aa808c2cb5ce78d1e 100644
--- a/htdocs/langs/it_IT/projects.lang
+++ b/htdocs/langs/it_IT/projects.lang
@@ -1,8 +1,8 @@
 # Dolibarr language file - Source file is en_US - projects
 RefProject=Rif. progetto
-ProjectRef=Project ref.
+ProjectRef=Progetto rif.
 ProjectId=Id progetto
-ProjectLabel=Project label
+ProjectLabel=Etichetta progetto
 Project=Progetto
 Projects=Progetti
 ProjectStatus=Stato del progetto
@@ -13,11 +13,12 @@ ProjectsPublicDesc=Questa visualizzazione mostra tutti i progetti che sei autori
 ProjectsPublicTaskDesc=Questa prospettiva presenta tutti i progetti e le attività a cui è permesso accedere.
 ProjectsDesc=Questa visualizzazione mostra tutti i progetti (hai i privilegi per vedere tutto).
 MyTasksDesc=Questa visualizzazione mostra solo i progetti o i compiti in cui sei indicati come contatto (di qualsiasi tipo).
-OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+OnlyOpenedProject=Sono visibili solamente i progetti aperti (i progetti con stato di bozza o chiusi non sono visibili).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Questa visualizzazione mostra tutti i progetti e i compiti che hai il permesso di vedere.
 TasksDesc=Questa visualizzazione mostra tutti i progetti e i compiti (hai i privilegi per vedere tutto).
-AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
-OnlyYourTaskAreVisible=Only tasks you are assigned on are visible. Assign task to you if you want to enter time on it.
+AllTaskVisibleButEditIfYouAreAssigned=Tutti i compiti per questo progetto sono visibili ma è possibile inserire del tempo impiegato solo per compiti a cui sei assegnato. Assegnati un compito per inserire il tempo impiegato in esso.
+OnlyYourTaskAreVisible=Solo le attività a cui sei assegnato sono visibili. Assegnati un compito se si desidera inserire tempo su di esso.
 ProjectsArea=Area progetti
 NewProject=Nuovo progetto
 AddProject=Crea progetto
@@ -28,13 +29,15 @@ ConfirmDeleteATask=Vuoi davvero eliminare questo compito?
 OfficerProject=Responsabile del progetto
 LastProjects=Ultimi %s progetti
 AllProjects=Tutti i progetti
-OpenedProjects=Opened projects
-OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpenedProjects=Progetti aperti
+OpenedTasks=Opened tasks
+OpportunitiesStatusForOpenedProjects=Opportunità numero di progetti aperti per stato
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Elenco dei progetti
 ShowProject=Visualizza progetto
 SetProject=Imposta progetto
 NoProject=Nessun progetto definito o assegnato
-NbOpenTasks=Nb of open tasks
+NbOpenTasks=Num. di compiti aperti
 NbOfProjects=Num. di progetti
 TimeSpent=Tempo lavorato
 TimeSpentByYou=Tempo impiegato da te
@@ -46,7 +49,7 @@ TaskTimeSpent=Tempo speso sulle attività
 TaskTimeUser=Utente
 TaskTimeNote=Nota
 TaskTimeDate=Data
-TasksOnOpenedProject=Tasks on open projects
+TasksOnOpenedProject=Compiti relativi a progetti aperti
 WorkloadNotDefined=Carico di lavoro non definito
 NewTimeSpent=Aggiungi tempo lavorato
 MyTimeSpent=Il mio tempo lavorato
@@ -80,10 +83,10 @@ ListFichinterAssociatedProject=Elenco degli interventi associati al progetto
 ListExpenseReportsAssociatedProject=Lista delle note spese associate con il progetto
 ListDonationsAssociatedProject=Lista delle donazioni associate al progetto
 ListActionsAssociatedProject=Elenco delle azioni associate al progetto
-ListTaskTimeUserProject=List of time consumed on tasks of project
-TaskTimeUserProject=Time consumed on tasks of project
-ActivityOnProjectToday=Activity on project today
-ActivityOnProjectYesterday=Activity on project yesterday
+ListTaskTimeUserProject=Lista dei tempo impiegato in compiti di un progetto
+TaskTimeUserProject=Tempo impiegato sui compiti del progetto
+ActivityOnProjectToday=Operatività sul progetto oggi
+ActivityOnProjectYesterday=Attività sul progetto ieri
 ActivityOnProjectThisWeek=Operatività sul progetto questa settimana
 ActivityOnProjectThisMonth=Operatività sul progetto questo mese
 ActivityOnProjectThisYear=Operatività sul progetto nell'anno in corso
@@ -104,7 +107,7 @@ DeleteATimeSpent=Cancella il tempo lavorato
 ConfirmDeleteATimeSpent=Vuoi davvero cancellare il tempo lavorato?
 DoNotShowMyTasksOnly=Mostra anche le attività non assegnate a me
 ShowMyTasksOnly=Mostra soltanto le attività assegnate a me
-TaskRessourceLinks=Resources
+TaskRessourceLinks=Risorse
 ProjectsDedicatedToThisThirdParty=Progetti dedicati a questo soggetto terzo
 NoTasks=Nessun compito per questo progetto
 LinkedToAnotherCompany=Collegato ad un altro soggetto terzo
@@ -127,10 +130,12 @@ ProjectCreatedInDolibarr=Progetto %s creato
 TaskCreatedInDolibarr=Attività %s creata
 TaskModifiedInDolibarr=Attività %s modificata
 TaskDeletedInDolibarr=Attività %s cancellata
-OpportunityStatus=Opportunity status
-OpportunityStatusShort=Opp. status
-OpportunityAmount=Opportunity amount
-OpportunityAmountShort=Opp. amount
+OpportunityStatus=Stato Opportunità
+OpportunityStatusShort=Opp. stato
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
+OpportunityAmount=Ammontare opportunità
+OpportunityAmountShort=Opp. quantità
 ##### Types de contacts #####
 TypeContact_project_internal_PROJECTLEADER=Capo progetto
 TypeContact_project_external_PROJECTLEADER=Capo progetto
@@ -145,45 +150,46 @@ AddElement=Link all'elemento
 UnlinkElement=Rimuovi collegamento
 # Documents models
 DocumentModelBeluga=Project template for linked objects overview
-DocumentModelBaleine=Project report template for tasks
+DocumentModelBaleine=Modello per il report di un progetto completo
 PlannedWorkload=Carico di lavoro previsto
 PlannedWorkloadShort=Carico di lavoro
 WorkloadOccupation=Assegnazione carico di lavoro
 ProjectReferers=Elementi correlati
 SearchAProject=Cerca un progetto
-SearchATask=Search a task
+SearchATask=Cerca un compito
 ProjectMustBeValidatedFirst=I progetti devono prima essere validati
 ProjectDraft=Progetti bozza
-FirstAddRessourceToAllocateTime=Associate a resource to allocate time
+FirstAddRessourceToAllocateTime=Associa una risorsa per allocare il tempo
 InputPerDay=Input per giorno
 InputPerWeek=Input per settimana
 InputPerAction=Input per azione
 TimeAlreadyRecorded=Tempo impiegato e già registrato per questo compito/giorno e questo utente %s
-ProjectsWithThisUserAsContact=Projects with this user as contact
-TasksWithThisUserAsContact=Tasks assigned to this user
-ResourceNotAssignedToProject=Not assigned to project
-ResourceNotAssignedToTask=Not assigned to task
-AssignTaskToMe=Assign task to me
-AssignTask=Assign
-ProjectOverview=Overview
-ManageTasks=Use projects to follow tasks and time
-ManageOpportunitiesStatus=Use projects to follow leads/opportinuties
-ProjectNbProjectByMonth=Nb of created projects by month
-ProjectOppAmountOfProjectsByMonth=Amount of opportunities by month
-ProjectWeightedOppAmountOfProjectsByMonth=Weighted amount of opportunities by month
+ProjectsWithThisUserAsContact=Progetti con questo utente come contatto
+TasksWithThisUserAsContact=Compiti assegnati a questo utente
+ResourceNotAssignedToProject=Non assegnato al progetto
+ResourceNotAssignedToTask=Non assegnato al compito
+ResourceNotAssignedToTheTask=Not assigned to the task
+AssignTaskToMe=Assegnare un compito a me
+AssignTask=Assegnare
+ProjectOverview=Panoramica
+ManageTasks=Utilizzare i progetti per seguire compiti e tempo
+ManageOpportunitiesStatus=Utilizzare i progetti per seguire clienti interessati/opportunità
+ProjectNbProjectByMonth=Num. di progetti creati per mese
+ProjectOppAmountOfProjectsByMonth=Quantità di opportunità per mese
+ProjectWeightedOppAmountOfProjectsByMonth=Quantità ponderata di opportunità per mese
 ProjectOpenedProjectByOppStatus=Opened project/lead by opportunity status
-ProjectsStatistics=Statistics on projects/leads
-TaskAssignedToEnterTime=Task assigned. Entering time on this task should be possible.
-IdTaskTime=Id task time
+ProjectsStatistics=Le statistiche relative a progetti/clienti interessati
+TaskAssignedToEnterTime=Compito assegnato. Inserire i tempi per questo compito dovrebbe esserre possibile.
+IdTaskTime=Tempo compito id
 YouCanCompleteRef=If you want to complete the ref with some information (to use it as search filters), it is recommanded to add a - character to separate it, so the automatic numbering will still work correctly for next projects. For example %s-ABC. You may also prefer to add search keys into label.
-OpenedProjectsByThirdparties=Opened projects by thirdparties
-OpportunityTotalAmount=Opportunities total amount
-OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
-OppStatusPROSP=Prospection
-OppStatusQUAL=Qualification
-OppStatusPROPO=Proposal
-OppStatusNEGO=Negociation
-OppStatusPENDING=Pending
-OppStatusWIN=Won
-OppStatusLOST=Lost
+OpenedProjectsByThirdparties=Progetti aperti da terze parti
+OpportunityTotalAmount=Opportunità importo totale
+OpportunityPonderatedAmount=Opportunità importo ponderato
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
+OppStatusPROSP=Potenziale
+OppStatusQUAL=Qualificazione
+OppStatusPROPO=Proposta
+OppStatusNEGO=Negoziazione
+OppStatusPENDING=In attesa
+OppStatusWIN=Vinto
+OppStatusLOST=Perso
diff --git a/htdocs/langs/it_IT/propal.lang b/htdocs/langs/it_IT/propal.lang
index 4413278fa329158ab3fcbc125626367647b428ea..371668e0e7403b155e5bebb007cfe95c0ad780ff 100644
--- a/htdocs/langs/it_IT/propal.lang
+++ b/htdocs/langs/it_IT/propal.lang
@@ -25,13 +25,14 @@ LastModifiedProposals=Ultimo %s proposte modificate
 AllPropals=Tutte le proposte
 LastProposals=Ultimo proposte
 SearchAProposal=Cerca una proposta
+NoProposal=No proposal
 ProposalsStatistics=Statistiche Proposte commerciali
 NumberOfProposalsByMonth=Numero per mese
 AmountOfProposalsByMonthHT=Importo per mese (al netto delle imposte)
 NbOfProposals=Numero di proposte commerciali
 ShowPropal=Visualizza proposta
 PropalsDraft=Bozze
-PropalsOpened=Open
+PropalsOpened=Aperto
 PropalsNotBilled=Chiuse non fatturate
 PropalStatusDraft=Bozza (deve essere convalidata)
 PropalStatusValidated=Convalidato (proposta è aperta)
@@ -42,7 +43,7 @@ PropalStatusNotSigned=Non firmata (chiuso)
 PropalStatusBilled=Fatturata
 PropalStatusDraftShort=Bozza
 PropalStatusValidatedShort=Convalidato
-PropalStatusOpenedShort=Open
+PropalStatusOpenedShort=Aperto
 PropalStatusClosedShort=Chiusa
 PropalStatusSignedShort=Firmata
 PropalStatusNotSignedShort=Non firmata
@@ -62,7 +63,8 @@ DatePropal=Data della proposta
 DateEndPropal=Data di fine validità
 DateEndPropalShort=Data fine
 ValidityDuration=Durata validità
-CloseAs=Chiudere con lo status
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Classificare  fatturata
 BuildBill=Crea fattura
 ErrorPropalNotFound=Proposta %s non trovata
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Creazione del modello predefinito
 DefaultModelPropalToBill=Template predefinito quando si chiude una proposta commerciale (*preventivo) (che deve essere fatturata)
 DefaultModelPropalClosed=Template predefinito quando si chiude una proposta commerciale (*preventivo) (che non deve essere fatturata)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/it_IT/salaries.lang b/htdocs/langs/it_IT/salaries.lang
index 1812b1c19f8e86808b320910c2b0ed6b0d5207eb..0bf6fdc16fe911ad146ece6832a8783bf7a50143 100644
--- a/htdocs/langs/it_IT/salaries.lang
+++ b/htdocs/langs/it_IT/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Codice di contabilità per i pagamenti dei salari
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Codice di contabilità per oneri finanziari
 Salary=Stipendio
 Salaries=Stipendi
-Employee=Dipendente
 NewSalaryPayment=Nuovo pagamento stipendio
 SalaryPayment=Pagamento stipendio
 SalariesPayments=Pagamento stipendi
diff --git a/htdocs/langs/it_IT/sendings.lang b/htdocs/langs/it_IT/sendings.lang
index 4b71e573079d2da29fceed4b6484963922d549d2..77283f135bbce2f6752851318d883c0be31213e8 100644
--- a/htdocs/langs/it_IT/sendings.lang
+++ b/htdocs/langs/it_IT/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=Tutte le spedizioni
 Shipment=Spedizione
 Shipments=Spedizioni
 ShowSending=Mostra le spedizioni
-Receivings=Ricevuta di consegna
+Receivings=Delivery Receipts
 SendingsArea=Sezione spedizioni
 ListOfSendings=Elenco delle spedizioni
 SendingMethod=Metodo di invio
diff --git a/htdocs/langs/it_IT/sms.lang b/htdocs/langs/it_IT/sms.lang
index 538a450777a1c517f805ddec7404005443b36fc6..339c49cc362b1c50a3b068ba4a2bfa6c972b7306 100644
--- a/htdocs/langs/it_IT/sms.lang
+++ b/htdocs/langs/it_IT/sms.lang
@@ -49,5 +49,6 @@ SendSms=Invia SMS
 SmsInfoCharRemain=Numero di caratteri rimanenti
 SmsInfoNumero= (formato internazionale, per esempio: +393499701761)
 DelayBeforeSending=Ritardo prima dell'invio (minuti)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Nessun destinatario disponibile. Controllare le impostazioni del provider SMS.
 
diff --git a/htdocs/langs/it_IT/stocks.lang b/htdocs/langs/it_IT/stocks.lang
index d4e14cb6885feeb5ec3c1e9ba2a151d4c05e8b44..ae6cd4d97f82cdb3f97fd4344ac53f27df7f93ed 100644
--- a/htdocs/langs/it_IT/stocks.lang
+++ b/htdocs/langs/it_IT/stocks.lang
@@ -5,7 +5,7 @@ Warehouses=Magazzini
 NewWarehouse=Nuovo magazzino/deposito
 WarehouseEdit=Modifica magazzino
 MenuNewWarehouse=Nuovo Magazzino
-WarehouseOpened=Warehouse open
+WarehouseOpened=Magazzino aperto
 WarehouseClosed=Magazzino chiuso
 WarehouseSource=Magazzino di origine
 WarehouseSourceNotDefined=Non è stato definito alcun magazzino.
@@ -16,7 +16,7 @@ CancelSending=Annulla spedizione
 DeleteSending=Elimina spedizione
 Stock=Scorte
 Stocks=Scorte
-StocksByLotSerial=Scorte per lotto/numero di serie
+StocksByLotSerial=Scorte per lotto/seriale
 Movement=Movimento
 Movements=Movimenti
 ErrorWarehouseRefRequired=Riferimento magazzino mancante
@@ -53,11 +53,11 @@ QtyDispatched=Quantità spedita
 QtyDispatchedShort=Quantità spedita
 QtyToDispatchShort=Quantità da spedire
 OrderDispatch=Spedizione dell'ordine
-RuleForStockManagementDecrease=Regola per la gestione della diminuzione delle scorte
-RuleForStockManagementIncrease=Regola per la gestione dell'aumento delle scorte
+RuleForStockManagementDecrease=Regola per la gestione delle scorte automatica diminuzione (la diminuzione manuale è sempre possibile, anche se si attiva una regola automatica diminuzione)
+RuleForStockManagementIncrease=Regola per aumento automatico la gestione delle scorte (l'aumento manuale è sempre possibile, anche se si attiva una regola automatica incremento)
 DeStockOnBill=Riduci scorte effettive all'emissione della fattura/nota di credito
 DeStockOnValidateOrder=Riduci scorte effettive alla convalida dell'ordine
-DeStockOnShipment=Decrease real stocks on shipping validation
+DeStockOnShipment=Diminuire stock reali sulla validazione di spedizione
 ReStockOnBill=Incrementa scorte effettive alla fattura/nota di credito
 ReStockOnValidateOrder=Aumenta scorte effettive alla convalida dell'ordine
 ReStockOnDispatchOrder=Incrementa scorte effettive alla consegna manuale in magazzino, dopo il ricevimento dell'ordine fornitore
@@ -83,8 +83,8 @@ WarehousesAndProductsBatchDetail=Magazzini e prodotti (con indicazione dei lotti
 AverageUnitPricePMPShort=Media prezzi scorte
 AverageUnitPricePMP=Media dei prezzi delle scorte
 SellPriceMin=Prezzo di vendita unitario
-EstimatedStockValueSellShort=Valore vendita
-EstimatedStockValueSell=Valore di vendita
+EstimatedStockValueSellShort=Valori di vendita
+EstimatedStockValueSell=Valori di vendita
 EstimatedStockValueShort=Valore stimato scorte
 EstimatedStockValue=Valore stimato delle scorte
 DeleteAWarehouse=Elimina un magazzino
@@ -95,8 +95,8 @@ SelectWarehouseForStockDecrease=Scegli magazzino da utilizzare per la riduzione
 SelectWarehouseForStockIncrease=Scegli magazzino da utilizzare per l'aumento delle scorte
 NoStockAction=Nessuna azione su queste scorte
 LastWaitingSupplierOrders=Ordini in attesa di ricezione
-DesiredStock=Desired minimum stock
-DesiredMaxStock=Desired maximum stock
+DesiredStock=Scorta minima desiderata
+DesiredMaxStock=Scorte massime desiderate
 StockToBuy=Da ordinare
 Replenishment=Rifornimento
 ReplenishmentOrders=Ordini di rifornimento
@@ -113,8 +113,8 @@ AlertOnly= Solo avvisi
 WarehouseForStockDecrease=Il magazzino <b>%s</b> sarà usato per la diminuzione delle scorte
 WarehouseForStockIncrease=Il magazzino <b>%s</b> sarà usato per l'aumento delle scorte
 ForThisWarehouse=Per questo magazzino
-ReplenishmentStatusDesc=This is a list of all products with a stock lower than desired stock (or lower than alert value if checkbox "alert only" is checked), and suggest you to create supplier orders to fill the difference.
-ReplenishmentOrdersDesc=This is a list of all opened supplier orders including predefined products. Only opened orders with predefined products, so orders that may affect stocks, are visible here.
+ReplenishmentStatusDesc=Questa è una lista di tutti i prodotti con una giacenza inferiore a quella desiderata (o inferiore al valore di allarme se la casella "solo allarme" è selezionata). Utilizzando la casella di controllo, è possibile creare ordini fornitori per colmare la differenza.
+ReplenishmentOrdersDesc=Questa è una lista di tutti gli ordini fornitori aperti, compresi i prodotti predefiniti. Solo gli ordini aperti con prodotti predefiniti, così gli ordini che possono influenzare le scorte, sono visibili qui.
 Replenishments=Rifornimento
 NbOfProductBeforePeriod=Quantità del prodotto %s in magazzino prima del periodo selezionato (< %s)
 NbOfProductAfterPeriod=Quantità del prodotto %s in magazzino dopo il periodo selezionato (< %s)
@@ -125,14 +125,14 @@ RecordMovement=Registra trasferimento
 ReceivingForSameOrder=Ricevuta per questo ordine
 StockMovementRecorded=Movimentazione di scorte registrata
 RuleForStockAvailability=Regole sulla fornitura delle scorte
-StockMustBeEnoughForInvoice=Stock level must be enough to add product/service to invoice
-StockMustBeEnoughForOrder=Stock level must be enough to add product/service to order
-StockMustBeEnoughForShipment= Stock level must be enough to add product/service to shipment
+StockMustBeEnoughForInvoice=Il livello delle scorte deve essere sufficiente per aggiungere un prodotto/servizio alla fattura
+StockMustBeEnoughForOrder=Il livello delle scorte deve essere sufficiente per aggiungere un prodotto/servizio a un ordine
+StockMustBeEnoughForShipment= Il livello delle scorte deve essere sufficiente per aggiungere un prodotto/servizio alla spedizione
 MovementLabel=Etichetta per lo spostamento di magazzino
 InventoryCode=Codice di inventario o di spostamento
 IsInPackage=Contenuto nel pacchetto
 ShowWarehouse=Mostra magazzino
-MovementCorrectStock=Stock correction for product %s
+MovementCorrectStock=Correzione scorte per il prodotto %s
 MovementTransferStock=Trasferisci scorte del prodotto %s in un altro magazzino
 WarehouseMustBeSelectedAtFirstStepWhenProductBatchModuleOn=Source warehouse must be defined here when "Product lot" module is on. It will be used to list which lot/serial are available for products requiring lot/serial data for movement. If you want to send products from different warehouses, just make the shipment into several steps.
 InventoryCodeShort=Codice di inventario o di spostamento
diff --git a/htdocs/langs/it_IT/supplier_proposal.lang b/htdocs/langs/it_IT/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..6b0ead3056af5855c67adbe824ed578b9f213763 100644
--- a/htdocs/langs/it_IT/supplier_proposal.lang
+++ b/htdocs/langs/it_IT/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,8 +10,8 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
-SupplierProposals=Supplier proposals
+SupplierProposalShort=Supplier proposals
+SupplierProposals=Proposte Fornitore
 NewAskPrice=New price request
 NewAsk=New request
 ShowSupplierProposal=Show price request
@@ -27,21 +26,21 @@ DeleteAsk=Delete request
 ValidateAsk=Validate request
 AddAsk=Create a request
 SupplierProposalDraft=Drafts
-SupplierProposalOpened=Open
+SupplierProposalOpened=Aperto
 SupplierProposalStatusDraft=Draft (needs to be validated)
 SupplierProposalStatusValidated=Validated (request is open)
 SupplierProposalStatusOpened=Validated (request is open)
 SupplierProposalStatusClosed=Closed
 SupplierProposalStatusSigned=Accepted
-SupplierProposalStatusNotSigned=Refused
-SupplierProposalStatusBilled=Billed
+SupplierProposalStatusNotSigned=Rifiutato
+SupplierProposalStatusBilled=Pagato
 SupplierProposalStatusDraftShort=Draft
 SupplierProposalStatusValidatedShort=Validated
-SupplierProposalStatusOpenedShort=Open
+SupplierProposalStatusOpenedShort=Aperto
 SupplierProposalStatusClosedShort=Closed
 SupplierProposalStatusSignedShort=Accepted
-SupplierProposalStatusNotSignedShort=Refused
-SupplierProposalStatusBilledShort=Billed
+SupplierProposalStatusNotSignedShort=Rifiutato
+SupplierProposalStatusBilledShort=Pagato
 CopyAskFrom=Create price request by copying existing a request
 CreateEmptyAsk=Create blank request
 CloneAsk=Clone price request
diff --git a/htdocs/langs/it_IT/trips.lang b/htdocs/langs/it_IT/trips.lang
index 89b55af43fa3245a72f1b987afc6e6ea581cb4cb..6006c9937c844ba0dea5be8f3646670cf24a6873 100644
--- a/htdocs/langs/it_IT/trips.lang
+++ b/htdocs/langs/it_IT/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informazioni nota spese
 PDFStandardExpenseReports=Template standard per la generazione dei PDF delle not spese
 ExpenseReportLine=Riga di nota spese
 TF_OTHER=Altro
-TF_TRANSPORTATION=Trasporto
+TF_TRIP=Transportation
 TF_LUNCH=Pranzo
 TF_METRO=Metro
 TF_TRAIN=Treno
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Vuoi davvero convalidare questa nota spese?
 NoTripsToExportCSV=Nessuna nota spese da esportare per il periodo
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/it_IT/users.lang b/htdocs/langs/it_IT/users.lang
index 7738fbc005d0d63fb5230f5ed1cb2feb4288bc36..fe3c7d00581a11a115415dbb1ef643ff151174bb 100644
--- a/htdocs/langs/it_IT/users.lang
+++ b/htdocs/langs/it_IT/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=URL OpenID
 LoginUsingOpenID=URL OpenID per il login
 WeeklyHours=Ore settimanali
 ColorUser=Colore dell'utente
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/ja_JP/accountancy.lang b/htdocs/langs/ja_JP/accountancy.lang
index 5ee7e8de9f54f863782f095d33e3d4f43b2e78d2..87e3200f57c3544cb69c4a4d2a00867fbc5af632 100644
--- a/htdocs/langs/ja_JP/accountancy.lang
+++ b/htdocs/langs/ja_JP/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Return
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sells journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/ja_JP/admin.lang b/htdocs/langs/ja_JP/admin.lang
index 6617122221ab324c1f5e5372dd546d07d78863c9..16a3e645dd367c9660ec7c625886d9b1cb4e8e04 100644
--- a/htdocs/langs/ja_JP/admin.lang
+++ b/htdocs/langs/ja_JP/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=生成されたPDF上の付加価値税に関連す
 HideDescOnPDF=Hide products description on generated PDF
 HideRefOnPDF=Hide products ref. on generated PDF
 HideDetailsOnPDF=Hide products lines details on generated PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=図書館
 UrlGenerationParameters=URLを確保するためのパラメータ
 SecurityTokenIsUnique=各URLごとに一意securekeyパラメータを使用して、
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=ユーザーとグループ
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=通知
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=寄付
 Module700Desc=寄付金の管理
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=警告の前に遅延
 DelaysOfToleranceBeforeWarning=許容遅延の前に警告
 DelaysOfToleranceDesc=アラートは、各年代後半要素のピクトの%sと画面上に報告される前に、この画面では、許容遅延を定義することができます。
 Delays_MAIN_DELAY_ACTIONS_TODO=まだ実現していない計画的なイベントに関する警告の前に遅延の許容範囲(日)
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=まだ処理されていない受注のアラートの前に遅延の許容範囲(日)
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=まだ処理されていない業者の受注に警告するまでの遅延時間の許容範囲(日)
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=閉じるには、提案について警告する前に許容差(日数)を遅らせる
@@ -1087,6 +1089,7 @@ PathDirectory=ディレクトリ
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/ja_JP/agenda.lang b/htdocs/langs/ja_JP/agenda.lang
index 7d59891716f0257deec360abaf5a56cae63e0b22..669963bbaf28643f1bba4af94a6ee713a098272d 100644
--- a/htdocs/langs/ja_JP/agenda.lang
+++ b/htdocs/langs/ja_JP/agenda.lang
@@ -35,7 +35,9 @@ AllActions= すべてのイベント/タスク
 ViewCal=月間表示
 ViewDay=日表示
 ViewWeek=週ビュー
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= 定義済みのフィルタを使用して表示
 AutoActions= 議題の自動充填
 AgendaAutoActionDesc= ここではDolibarrが自動的に議題でイベントを作成するイベントを定義します。何も(デフォルトで)チェックされていない場合のみ、手動アクションが議題に含まれています。
diff --git a/htdocs/langs/ja_JP/bills.lang b/htdocs/langs/ja_JP/bills.lang
index 1fb7da071e1227b0e7d120005fa7801a35c13f83..da241af7b4535066dd8a8eb3bad7a49879e6117f 100644
--- a/htdocs/langs/ja_JP/bills.lang
+++ b/htdocs/langs/ja_JP/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=支払いがすでに行わ
 PaymentsBackAlreadyDone=Payments back already done
 PaymentRule=支払いルール
 PaymentMode=お支払い方法の種類
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=請求書を表示する
 ShowInvoiceReplace=請求書を交換見せる
 ShowInvoiceAvoir=クレジットメモを表示する
 ShowInvoiceDeposit=預金請求書を表示する
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=支払を表示する
 AlreadyPaid=既に支払わ
 AlreadyPaidBack=Already paid back
@@ -221,6 +224,7 @@ NonPercuRecuperable=回復不可能
 SetConditions=支払条件を設定します。
 SetMode=支払いモードを設定する
 Billed=請求
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=この金額は、放棄されている(顧客が悪い
 HelpAbandonOther=それはエラーが発生しましたので、この量は、(例えば、他に置き換え間違った顧客または請求書)放棄されている
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=お支払い番号
+PaymentRef=Payment ref.
 InvoiceId=請求書のID
 InvoiceRef=請求書参照。
 InvoiceDateCreation=請求書作成日
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=即時の
@@ -393,6 +402,7 @@ Reported=遅延
 DisabledBecausePayments=いくつかの支払いがあるのでできませ​​ん
 CantRemovePaymentWithOneInvoicePaid=支払った分類少なくとも一つの請求書があるので支払いを削除することはできません
 ExpectedToPay=予想される支払い
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=この支払によって支払った
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third pa
 RevenueStamp=Revenue stamp
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=請求書PDFテンプレートのカニ。完全な請求書テンプレート(テンプレートをおすすめ)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=$ syymm始まる法案はすでに存在し、シーケンスのこのモデルと互換性がありません。それを削除するか、このモジュールを有効にするために名前を変更します。
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/ja_JP/boxes.lang b/htdocs/langs/ja_JP/boxes.lang
index 289d209636d8430b29feb9607c9c18230d0fe4c9..bd506fbea5fe3bf8aee0a54cc6f1eec892ff6584 100644
--- a/htdocs/langs/ja_JP/boxes.lang
+++ b/htdocs/langs/ja_JP/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=顧客の請求書
 ForCustomersOrders=Customers orders
 ForProposals=提案
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/ja_JP/categories.lang b/htdocs/langs/ja_JP/categories.lang
index ff78e46eeac000f87164a9a48a2a048176fb1811..095b6226e481d3efbe3967120b7a0d4fd0b7cdf3 100644
--- a/htdocs/langs/ja_JP/categories.lang
+++ b/htdocs/langs/ja_JP/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=クスト/ Prosp。カテゴリ
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/ja_JP/companies.lang b/htdocs/langs/ja_JP/companies.lang
index c2d450786124297531a118c06a86475f3cf03d6e..f0a7e244d7f4ae57b282c9a82f7155d717fa494d 100644
--- a/htdocs/langs/ja_JP/companies.lang
+++ b/htdocs/langs/ja_JP/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=ID教授。 1(RC)
 ProfId2MA=ID教授。 2(Patente)
 ProfId3MA=ID教授。 3(IF)
 ProfId4MA=ID教授。 4(CNSS)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=教授はID 1(RFC)。
 ProfId2MX=教授はID 2(R.。P. IMSS)
diff --git a/htdocs/langs/ja_JP/compta.lang b/htdocs/langs/ja_JP/compta.lang
index a043983dff7c89d923df494aee987388effb6aec..57e25d7113fef970618c5893d8c57a0dc2c3462f 100644
--- a/htdocs/langs/ja_JP/compta.lang
+++ b/htdocs/langs/ja_JP/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- 入金請求書も含まれています
 DepositsAreIncluded=- デポジットの請求書が含まれています
 LT2ReportByCustomersInInputOutputModeES=第三者IRPFによる報告
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/ja_JP/cron.lang b/htdocs/langs/ja_JP/cron.lang
index a1629861fac705839f7fb110c27832d319360697..1974948372a9352a9f79a5f426039867fcfdc961 100644
--- a/htdocs/langs/ja_JP/cron.lang
+++ b/htdocs/langs/ja_JP/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=List of disabled jobs
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Last run
 CronLastOutput=Last run output
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Job
 CronNone=なし
-CronDtStart=開始日
-CronDtEnd=終了日
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Next execution
 CronDtLastLaunch=Last execution
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=No jobs registered
 CronPriority=優先順位
 CronLabel=説明
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
diff --git a/htdocs/langs/ja_JP/deliveries.lang b/htdocs/langs/ja_JP/deliveries.lang
index 57f2043eebb46c8eb84cb5dee8cf7461edf2b6ab..b673f37acc37d37f74dbc712d6b64ab9a7748013 100644
--- a/htdocs/langs/ja_JP/deliveries.lang
+++ b/htdocs/langs/ja_JP/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=あなたは、配信確認<b>%sを</b>削除し<b>
 DeliveryMethod=配送方法
 TrackingNumber=追跡番号
 DeliveryNotValidated=配信検証されません
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=名前と署名:
 ToAndDate=To___________________________________ ____ / _____ / __________で
diff --git a/htdocs/langs/ja_JP/holiday.lang b/htdocs/langs/ja_JP/holiday.lang
index fe16243a30de08c5d74c6548c018d5b64f408d20..90e731082b8402f126d0b6e177728cbbac845f96 100644
--- a/htdocs/langs/ja_JP/holiday.lang
+++ b/htdocs/langs/ja_JP/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Employee
 DateDebCP=開始日
 DateFinCP=終了日
 DateCreateCP=作成日
@@ -23,7 +22,7 @@ ReviewedByCP=Will be reviewed by
 DescCP=説明
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=You must select an end date greater than the start date.
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=の名前
-Employee=Employee
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Monthly update
 ManualUpdate=Manual update
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/ja_JP/hrm.lang b/htdocs/langs/ja_JP/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/ja_JP/hrm.lang
+++ b/htdocs/langs/ja_JP/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/ja_JP/interventions.lang b/htdocs/langs/ja_JP/interventions.lang
index 1eb925088e61de877d4c87cf6a4d26a5c659725e..751604d39c8734af3f692cfdd9af1e7f95d79907 100644
--- a/htdocs/langs/ja_JP/interventions.lang
+++ b/htdocs/langs/ja_JP/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=yyは年である%syymm - nnnnの形式でニュメロ
 PacificNumRefModelError=$ syymmで始まる介入のカードは、すでに存在し、シーケンスのこのモデルと互換性がありません。それを削除するか、このモジュールをアクティブにするには、その名前を変更。
 PrintProductsOnFichinter=Print products on intervention card
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/ja_JP/mails.lang b/htdocs/langs/ja_JP/mails.lang
index db0bab4948d2721d1da90df85e0b5f52179ca1cc..62b5d7c7237d097ef7dd9e997b64845aa25abafe 100644
--- a/htdocs/langs/ja_JP/mails.lang
+++ b/htdocs/langs/ja_JP/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail sent to %s recipients.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/ja_JP/main.lang b/htdocs/langs/ja_JP/main.lang
index 21ca7156565c302cbb5749a1aa4a9b83edfe426e..72e8997ad9c303a7d8b525270083585b9bda1873 100644
--- a/htdocs/langs/ja_JP/main.lang
+++ b/htdocs/langs/ja_JP/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=データベース接続
+NoTemplateDefined=No template defined for this email type
 NoTranslation=No translation
 NoRecordFound=No record found
 NoError=エラーなし
@@ -105,6 +106,7 @@ NotePrivate=(注)(プライベート)
 PrecisionUnitIsLimitedToXDecimals=Dolibarrは<b>%s</b>進数に単価の精度を制限するためにセットアップした。
 DoTest=テスト
 ToFilter=フィルタ
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=警告するには、許容遅延を超えている少なくとも一つの要素を持っています。
 yes=はい
 Yes=はい
@@ -228,6 +230,8 @@ Now=現在
 HourStart=Start hour
 Date=日付
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=開始日
 DateEnd=日付の末尾
 DateCreation=作成日
@@ -608,6 +612,7 @@ TotalMan=合計
 NeverReceived=受信しませんでした
 Canceled=キャンセル
 YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=カラー
 Documents=リンクされたファイル
 DocumentsNb=リンクされたファイル(%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=No pictures available yet
 HomeDashboard=Home summary
+Dashboard=Dashboard
 Deductible=Deductible
 from=from
 toward=toward
diff --git a/htdocs/langs/ja_JP/margins.lang b/htdocs/langs/ja_JP/margins.lang
index b175642b31f645ef01361ef52f583788e8a38124..c7913ca7fe277837da13833e63b24c2127dccf50 100644
--- a/htdocs/langs/ja_JP/margins.lang
+++ b/htdocs/langs/ja_JP/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Choose product or service
 StartDate=開始日
 EndDate=終了日
 Launch=開始
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=As a product
 UseDiscountAsService=As a service
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/ja_JP/oauth.lang b/htdocs/langs/ja_JP/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/ja_JP/oauth.lang
+++ b/htdocs/langs/ja_JP/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/ja_JP/orders.lang b/htdocs/langs/ja_JP/orders.lang
index b40290da9c410e252f5b709c6a55501cd2c17d78..0ffe4a488bcc91a5c3bc86b164d26003ff36fd51 100644
--- a/htdocs/langs/ja_JP/orders.lang
+++ b/htdocs/langs/ja_JP/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=No draft orders
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=他の注文
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/ja_JP/other.lang b/htdocs/langs/ja_JP/other.lang
index 8a780c209507fa7c5d416a62e354737bae8f6180..00b1e30b0f1f11a24d53deca81fa0c0c8211ad0b 100644
--- a/htdocs/langs/ja_JP/other.lang
+++ b/htdocs/langs/ja_JP/other.lang
@@ -238,3 +238,8 @@ ToExport=エクスポート
 NewExport=新しいエクスポート
 ##### External sites #####
 ExternalSites=外部のサイト
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/ja_JP/paypal.lang b/htdocs/langs/ja_JP/paypal.lang
index 6b98210da4e272df7017b60548ef60135e981eab..99f1723ddf59b5fc26d8bae6041bb74cd4ba9481 100644
--- a/htdocs/langs/ja_JP/paypal.lang
+++ b/htdocs/langs/ja_JP/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=モード試験/サンドボックス
 PAYPAL_API_USER=API名
 PAYPAL_API_PASSWORD=APIパスワード
 PAYPAL_API_SIGNATURE=APIの署名
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=オファー支払い&quot;インテグラル&quot;(クレジットカード+ペイパル)または&quot;ペイパル&quot;のみ
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/ja_JP/products.lang b/htdocs/langs/ja_JP/products.lang
index 61494af4fe86eac42af59aac73c39be089eb5dc2..aa017f962b0df1d67e53bb121675febdb2bc9722 100644
--- a/htdocs/langs/ja_JP/products.lang
+++ b/htdocs/langs/ja_JP/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Production completed
-ProductsMultiPrice=Product multi-price
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/ja_JP/projects.lang b/htdocs/langs/ja_JP/projects.lang
index 6963542f62036e2f7f2dbb7a2a82eae9d42d348a..e719ceebdbce44869a2bf415047c06050abf886f 100644
--- a/htdocs/langs/ja_JP/projects.lang
+++ b/htdocs/langs/ja_JP/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=このビューはすべてのプロジェクトを(あなたのユーザー権限はあなたに全てを表示する権限を付与)を提示します。
 MyTasksDesc=このビューは、連絡先の(種類は何でも)がプロジェクトやタスクに制限されています。
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=このビューには、読み取りを許可されているすべてのプロジェクトやタスクを示します。
 TasksDesc=このビューは、すべてのプロジェクトとタスク(あなたのユーザー権限はあなたに全てを表示する権限を付与)を提示します。
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=役員プロジェクト
 LastProjects=最後%sプロジェクト
 AllProjects=すべてのプロジェクト
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=プロジェクトのリスト
 ShowProject=プロジェクトを表示する
 SetProject=プロジェクトを設定します。
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/ja_JP/propal.lang b/htdocs/langs/ja_JP/propal.lang
index 0d221742eab05b0800b93ef004e087856e496988..76b96ab7e811209f0687a5b06f8aa2ff6a62467f 100644
--- a/htdocs/langs/ja_JP/propal.lang
+++ b/htdocs/langs/ja_JP/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=最後%sは、提案を変更し
 AllPropals=すべての提案
 LastProposals=最後の提案
 SearchAProposal=提案を検索
+NoProposal=No proposal
 ProposalsStatistics=商業的な提案の統計
 NumberOfProposalsByMonth=月ごとに数
 AmountOfProposalsByMonthHT=月別額(税引後)
@@ -62,7 +63,8 @@ DatePropal=提案書の日付
 DateEndPropal=日付の最後の有効性
 DateEndPropalShort=日付の末尾
 ValidityDuration=有効期間
-CloseAs=状態で閉じる
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=請求分類
 BuildBill=請求書を構築する
 ErrorPropalNotFound=Propalの%sが見つかりません
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Default model creation
 DefaultModelPropalToBill=Default template when closing a business proposal (to be invoiced)
 DefaultModelPropalClosed=Default template when closing a business proposal (unbilled)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/ja_JP/salaries.lang b/htdocs/langs/ja_JP/salaries.lang
index 953a9c7540cbb06d6209140b32aaa0d23261e324..da177410860fb80d4d2d0872ec3b258ed787ba0e 100644
--- a/htdocs/langs/ja_JP/salaries.lang
+++ b/htdocs/langs/ja_JP/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Salary
 Salaries=Salaries
-Employee=Employee
 NewSalaryPayment=New salary payment
 SalaryPayment=Salary payment
 SalariesPayments=Salaries payments
diff --git a/htdocs/langs/ja_JP/sendings.lang b/htdocs/langs/ja_JP/sendings.lang
index 4a68601af6664c9f9f5b7f04ec25b53fe574c470..efdc4ffc764c2c25453e45e0a59a0f7200e01280 100644
--- a/htdocs/langs/ja_JP/sendings.lang
+++ b/htdocs/langs/ja_JP/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=出荷
 Shipments=出荷
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=出荷エリア
 ListOfSendings=出荷のリスト
 SendingMethod=配送方法
diff --git a/htdocs/langs/ja_JP/sms.lang b/htdocs/langs/ja_JP/sms.lang
index 5607af81a3360f88fdf57bb10f47a2ee4358ea34..8ba214c13adbc90cce08d0d024af6902e329d4fa 100644
--- a/htdocs/langs/ja_JP/sms.lang
+++ b/htdocs/langs/ja_JP/sms.lang
@@ -49,5 +49,6 @@ SendSms=SMSを送信
 SmsInfoCharRemain=残りの文字のNb
 SmsInfoNumero= (フォーマット国際例:33899701761)
 DelayBeforeSending=送信する前に、遅延時間(分)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=利用可能なターゲットはありません。 SMSプロバイダの設定を確認してください。
 
diff --git a/htdocs/langs/ja_JP/supplier_proposal.lang b/htdocs/langs/ja_JP/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/ja_JP/supplier_proposal.lang
+++ b/htdocs/langs/ja_JP/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/ja_JP/trips.lang b/htdocs/langs/ja_JP/trips.lang
index 2f1e067851303a92130d5ef44b78a9d59e51f363..54e3a5fd6a418052070b462ca3e212003e3cf4a9 100644
--- a/htdocs/langs/ja_JP/trips.lang
+++ b/htdocs/langs/ja_JP/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=その他
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=ランチ
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/ja_JP/users.lang b/htdocs/langs/ja_JP/users.lang
index 7027618efe69154bebb33ba8db0b47239f9df0b2..d9f1c02eb3a095e222c8532263aac83c82d45866 100644
--- a/htdocs/langs/ja_JP/users.lang
+++ b/htdocs/langs/ja_JP/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Use OpenID to login
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/ka_GE/accountancy.lang b/htdocs/langs/ka_GE/accountancy.lang
index 5ee7e8de9f54f863782f095d33e3d4f43b2e78d2..87e3200f57c3544cb69c4a4d2a00867fbc5af632 100644
--- a/htdocs/langs/ka_GE/accountancy.lang
+++ b/htdocs/langs/ka_GE/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Return
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sells journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/ka_GE/admin.lang b/htdocs/langs/ka_GE/admin.lang
index c81fe4c28afda6683163ea69aba69202b77179ec..9cff117f74abd2a9b1a059a41efe0b7e74134f95 100644
--- a/htdocs/langs/ka_GE/admin.lang
+++ b/htdocs/langs/ka_GE/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Hide all information related to VAT on generated PDF
 HideDescOnPDF=Hide products description on generated PDF
 HideRefOnPDF=Hide products ref. on generated PDF
 HideDetailsOnPDF=Hide products lines details on generated PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Library
 UrlGenerationParameters=Parameters to secure URLs
 SecurityTokenIsUnique=Use a unique securekey parameter for each URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Users & groups
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Notifications
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Donations
 Module700Desc=Donation management
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Delays before warning
 DelaysOfToleranceBeforeWarning=Tolerance delays before warning
 DelaysOfToleranceDesc=This screen allows you to define the tolerated delays before an alert is reported on screen with picto %s for each late element.
 Delays_MAIN_DELAY_ACTIONS_TODO=Delay tolerance (in days) before alert on planned events not yet realised
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on orders not yet processed
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on suppliers orders not yet processed
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Delay tolerance (in days) before alert on proposals to close
@@ -1087,6 +1089,7 @@ PathDirectory=Directory
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/ka_GE/agenda.lang b/htdocs/langs/ka_GE/agenda.lang
index d8776508edcf523910ab3b06f56e1c9feb947af3..a0ccdfd26ea417d55219526b58c9ec073df47938 100644
--- a/htdocs/langs/ka_GE/agenda.lang
+++ b/htdocs/langs/ka_GE/agenda.lang
@@ -35,7 +35,9 @@ AllActions= All events/tasks
 ViewCal=Month view
 ViewDay=Day view
 ViewWeek=Week view
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= View with predefined filters
 AutoActions= Automatic filling
 AgendaAutoActionDesc= Define here events for which you want Dolibarr to create automatically an event in agenda. If nothing is checked (by default), only manual actions will be included in agenda.
diff --git a/htdocs/langs/ka_GE/bills.lang b/htdocs/langs/ka_GE/bills.lang
index 6a474886ee903714c336a4cec9f301bc999b989d..a4f919a6f49bb096b27addc8ef61adb5ebf42c9a 100644
--- a/htdocs/langs/ka_GE/bills.lang
+++ b/htdocs/langs/ka_GE/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Payments already done
 PaymentsBackAlreadyDone=Payments back already done
 PaymentRule=Payment rule
 PaymentMode=Payment type
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=Show invoice
 ShowInvoiceReplace=Show replacing invoice
 ShowInvoiceAvoir=Show credit note
 ShowInvoiceDeposit=Show deposit invoice
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Show payment
 AlreadyPaid=Already paid
 AlreadyPaidBack=Already paid back
@@ -221,6 +224,7 @@ NonPercuRecuperable=Non-recoverable
 SetConditions=Set payment terms
 SetMode=Set payment mode
 Billed=Billed
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=This amount has been abandoned (customer said to be a bad
 HelpAbandonOther=This amount has been abandoned since it was an error (wrong customer or invoice replaced by an other for example)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Payment id
+PaymentRef=Payment ref.
 InvoiceId=Invoice id
 InvoiceRef=Invoice ref.
 InvoiceDateCreation=Invoice creation date
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Immediate
@@ -393,6 +402,7 @@ Reported=Delayed
 DisabledBecausePayments=Not possible since there are some payments
 CantRemovePaymentWithOneInvoicePaid=Can't remove payment since there is at least one invoice classified paid
 ExpectedToPay=Expected payment
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Paid by this payment
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third pa
 RevenueStamp=Revenue stamp
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Invoice PDF template Crabe. A complete invoice template (recommended Template)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=A bill starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/ka_GE/boxes.lang b/htdocs/langs/ka_GE/boxes.lang
index 634b058f6d40f39c5434322b8c1ee431c6efccfa..8595403dc30264fc25e0890343920207a3b2fcc2 100644
--- a/htdocs/langs/ka_GE/boxes.lang
+++ b/htdocs/langs/ka_GE/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Customers invoices
 ForCustomersOrders=Customers orders
 ForProposals=Proposals
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/ka_GE/categories.lang b/htdocs/langs/ka_GE/categories.lang
index 81c73356c9313f8f6b58ca91fb632a9d894f335b..ccf22bb5003ca9dd4d684ff764aeb69eef7f739b 100644
--- a/htdocs/langs/ka_GE/categories.lang
+++ b/htdocs/langs/ka_GE/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo./Prosp. categories
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/ka_GE/companies.lang b/htdocs/langs/ka_GE/companies.lang
index e31c347605e091b48daeb2403b0c36b513540c0e..292fcafe238315d5e9cb6c07e0574a9f3979f7ba 100644
--- a/htdocs/langs/ka_GE/companies.lang
+++ b/htdocs/langs/ka_GE/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (R.C.)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (R.F.C).
 ProfId2MX=Prof Id 2 (R..P. IMSS)
diff --git a/htdocs/langs/ka_GE/compta.lang b/htdocs/langs/ka_GE/compta.lang
index d73f580cc8b8a84426e53b5a0c38c03dc8511bb6..07b609a17e428435a16e70932ee1763b18a0a7fa 100644
--- a/htdocs/langs/ka_GE/compta.lang
+++ b/htdocs/langs/ka_GE/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Deposit invoices are nor included
 DepositsAreIncluded=- Deposit invoices are included
 LT2ReportByCustomersInInputOutputModeES=Report by third party IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/ka_GE/cron.lang b/htdocs/langs/ka_GE/cron.lang
index bd85715642ec700a51b7365535762b2760ae54e5..21786df66cfcf912dd12c81c03fbb604e2255c26 100644
--- a/htdocs/langs/ka_GE/cron.lang
+++ b/htdocs/langs/ka_GE/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=List of disabled jobs
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Last run
 CronLastOutput=Last run output
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Job
 CronNone=None
-CronDtStart=Start date
-CronDtEnd=End date
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Next execution
 CronDtLastLaunch=Last execution
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=No jobs registered
 CronPriority=Priority
 CronLabel=Description
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
diff --git a/htdocs/langs/ka_GE/deliveries.lang b/htdocs/langs/ka_GE/deliveries.lang
index c513f3e347c28f0df14813efd7136bc833d51445..47e210744704ae9f083d6f1cf6630f7037ad794b 100644
--- a/htdocs/langs/ka_GE/deliveries.lang
+++ b/htdocs/langs/ka_GE/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Are you sure you want to delete delivery receipt <b
 DeliveryMethod=Delivery method
 TrackingNumber=Tracking number
 DeliveryNotValidated=Delivery not validated
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Name and Signature :
 ToAndDate=To___________________________________ on ____/_____/__________
diff --git a/htdocs/langs/ka_GE/holiday.lang b/htdocs/langs/ka_GE/holiday.lang
index 4beedf7021fa5d57420d3598b776c0af633abbed..a15b2d97224d732e1eceb7b84ff0947dd62e1cff 100644
--- a/htdocs/langs/ka_GE/holiday.lang
+++ b/htdocs/langs/ka_GE/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Employee
 DateDebCP=Start date
 DateFinCP=End date
 DateCreateCP=Creation date
@@ -23,7 +22,7 @@ ReviewedByCP=Will be reviewed by
 DescCP=Description
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=You must select an end date greater than the start date.
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Name
-Employee=Employee
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Monthly update
 ManualUpdate=Manual update
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/ka_GE/hrm.lang b/htdocs/langs/ka_GE/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/ka_GE/hrm.lang
+++ b/htdocs/langs/ka_GE/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/ka_GE/interventions.lang b/htdocs/langs/ka_GE/interventions.lang
index 5c08c3063534c07d4eea4a2096402a33cccadd41..cbcba219f1139b397fa8fe54ef5292c2ddf22248 100644
--- a/htdocs/langs/ka_GE/interventions.lang
+++ b/htdocs/langs/ka_GE/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Return numero with format %syymm-nnnn where yy is year,
 PacificNumRefModelError=An intervention card starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
 PrintProductsOnFichinter=Print products on intervention card
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/ka_GE/mails.lang b/htdocs/langs/ka_GE/mails.lang
index 87a1bd3c4d77c148a4c9554f25e94c5ca4becd9e..fbd7a14cd0471869ac1a1a0f1ec364a41ab9a244 100644
--- a/htdocs/langs/ka_GE/mails.lang
+++ b/htdocs/langs/ka_GE/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail sent to %s recipients.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/ka_GE/main.lang b/htdocs/langs/ka_GE/main.lang
index 3e24856e8f8b115a2fba5301a607933c36a3ecda..4afa461226b1ead0e11fa342cccef48c4075b024 100644
--- a/htdocs/langs/ka_GE/main.lang
+++ b/htdocs/langs/ka_GE/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=Database connection
+NoTemplateDefined=No template defined for this email type
 NoTranslation=No translation
 NoRecordFound=No record found
 NoError=No error
@@ -105,6 +106,7 @@ NotePrivate=Note (private)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr was setup to limit precision of unit prices to <b>%s</b> decimals.
 DoTest=Test
 ToFilter=Filter
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Warning, you have at least one element that has exceeded the tolerance delay.
 yes=yes
 Yes=Yes
@@ -228,6 +230,8 @@ Now=Now
 HourStart=Start hour
 Date=Date
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Date start
 DateEnd=Date end
 DateCreation=Creation date
@@ -608,6 +612,7 @@ TotalMan=Total
 NeverReceived=Never received
 Canceled=Canceled
 YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Color
 Documents=Linked files
 DocumentsNb=Linked files (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=No pictures available yet
 HomeDashboard=Home summary
+Dashboard=Dashboard
 Deductible=Deductible
 from=from
 toward=toward
diff --git a/htdocs/langs/ka_GE/margins.lang b/htdocs/langs/ka_GE/margins.lang
index 7db5ea4892e47d38f81f47f47b7beb00e1177280..27bb4de9fa34bef827f4501268d659670a983767 100644
--- a/htdocs/langs/ka_GE/margins.lang
+++ b/htdocs/langs/ka_GE/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Choose product or service
 StartDate=Start date
 EndDate=End date
 Launch=Start
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=As a product
 UseDiscountAsService=As a service
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/ka_GE/oauth.lang b/htdocs/langs/ka_GE/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/ka_GE/oauth.lang
+++ b/htdocs/langs/ka_GE/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/ka_GE/orders.lang b/htdocs/langs/ka_GE/orders.lang
index 29c2a0b5e21d6c38fe10363675a1bc04bdd5b309..c0bfc3ccce39be48af6c839b61305244d9261c47 100644
--- a/htdocs/langs/ka_GE/orders.lang
+++ b/htdocs/langs/ka_GE/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=No draft orders
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Other orders
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/ka_GE/other.lang b/htdocs/langs/ka_GE/other.lang
index 5fff107fde9aef8b5b102b11516d063214201ce7..c53f32346fe31f4f3ab22fa18f5933e33d5e97e2 100644
--- a/htdocs/langs/ka_GE/other.lang
+++ b/htdocs/langs/ka_GE/other.lang
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=New export
 ##### External sites #####
 ExternalSites=External sites
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/ka_GE/paypal.lang b/htdocs/langs/ka_GE/paypal.lang
index a4204f919825385332e460f03280067caa62dbb4..c6905f2ecc4299f59205dda7302732f0f7e67666 100644
--- a/htdocs/langs/ka_GE/paypal.lang
+++ b/htdocs/langs/ka_GE/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Mode test/sandbox
 PAYPAL_API_USER=API username
 PAYPAL_API_PASSWORD=API password
 PAYPAL_API_SIGNATURE=API signature
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Offer payment "integral" (Credit card+Paypal) or "Paypal" only
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/ka_GE/products.lang b/htdocs/langs/ka_GE/products.lang
index 0faea3691b0bd0e55ac1001d24cb88993cab4347..3926759fccadd1d5d9a3e2b3caf0d17fda789b7f 100644
--- a/htdocs/langs/ka_GE/products.lang
+++ b/htdocs/langs/ka_GE/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Production completed
-ProductsMultiPrice=Product multi-price
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/ka_GE/projects.lang b/htdocs/langs/ka_GE/projects.lang
index 7c94e3eb257ae07dea71f32084407e741fd94b1b..f6f6dd8ecaf09ead7b9c5d088f9ce307da860db9 100644
--- a/htdocs/langs/ka_GE/projects.lang
+++ b/htdocs/langs/ka_GE/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=This view presents all projects (your user permissions grant you permission to view everything).
 MyTasksDesc=This view is limited to projects or tasks you are a contact for (whatever is the type).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=This view presents all projects and tasks you are allowed to read.
 TasksDesc=This view presents all projects and tasks (your user permissions grant you permission to view everything).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Officer project
 LastProjects=Last %s projects
 AllProjects=All projects
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=List of projects
 ShowProject=Show project
 SetProject=Set project
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/ka_GE/propal.lang b/htdocs/langs/ka_GE/propal.lang
index d12d7595f94d6a48a961cc635329e86ed543a7ea..79ae1f1cd50add8ebf9f9f1275481055ed84ce06 100644
--- a/htdocs/langs/ka_GE/propal.lang
+++ b/htdocs/langs/ka_GE/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Last %s modified proposals
 AllPropals=All proposals
 LastProposals=Last proposals
 SearchAProposal=Search a proposal
+NoProposal=No proposal
 ProposalsStatistics=Commercial proposal's statistics
 NumberOfProposalsByMonth=Number by month
 AmountOfProposalsByMonthHT=Amount by month (net of tax)
@@ -62,7 +63,8 @@ DatePropal=Date of proposal
 DateEndPropal=Validity ending date
 DateEndPropalShort=Date end
 ValidityDuration=Validity duration
-CloseAs=Close with status
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Classify billed
 BuildBill=Build invoice
 ErrorPropalNotFound=Propal %s not found
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Default model creation
 DefaultModelPropalToBill=Default template when closing a business proposal (to be invoiced)
 DefaultModelPropalClosed=Default template when closing a business proposal (unbilled)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/ka_GE/salaries.lang b/htdocs/langs/ka_GE/salaries.lang
index 953a9c7540cbb06d6209140b32aaa0d23261e324..da177410860fb80d4d2d0872ec3b258ed787ba0e 100644
--- a/htdocs/langs/ka_GE/salaries.lang
+++ b/htdocs/langs/ka_GE/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Salary
 Salaries=Salaries
-Employee=Employee
 NewSalaryPayment=New salary payment
 SalaryPayment=Salary payment
 SalariesPayments=Salaries payments
diff --git a/htdocs/langs/ka_GE/sendings.lang b/htdocs/langs/ka_GE/sendings.lang
index fa7da0b00794647c45f8777bbc68fb23a31e1c0e..fb7b9c08868e29621711a9651a94ed955c6b223f 100644
--- a/htdocs/langs/ka_GE/sendings.lang
+++ b/htdocs/langs/ka_GE/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Shipment
 Shipments=Shipments
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Shipments area
 ListOfSendings=List of shipments
 SendingMethod=Shipping method
diff --git a/htdocs/langs/ka_GE/sms.lang b/htdocs/langs/ka_GE/sms.lang
index 4e89bb247308eb692eef9e40892f306dda5dd27b..70066caac96971420d7c55b09879e200888763c2 100644
--- a/htdocs/langs/ka_GE/sms.lang
+++ b/htdocs/langs/ka_GE/sms.lang
@@ -49,5 +49,6 @@ SendSms=Send SMS
 SmsInfoCharRemain=Nb of remaining characters
 SmsInfoNumero= (format international ie : +33899701761)
 DelayBeforeSending=Delay before sending (minutes)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=No target available. Check setup of your SMS provider.
 
diff --git a/htdocs/langs/ka_GE/supplier_proposal.lang b/htdocs/langs/ka_GE/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/ka_GE/supplier_proposal.lang
+++ b/htdocs/langs/ka_GE/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/ka_GE/trips.lang b/htdocs/langs/ka_GE/trips.lang
index ce9f0970e7c331996ee194c7613983060795a647..5ccdf8d0e37dcf680cc33691fdce1fd5644f2d53 100644
--- a/htdocs/langs/ka_GE/trips.lang
+++ b/htdocs/langs/ka_GE/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Other
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Lunch
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/ka_GE/users.lang b/htdocs/langs/ka_GE/users.lang
index 5b85ec80cf7e8a65d24d83c7359f831f9d150669..8a7dfcfe78753c5bda61b8d82208350a9e362652 100644
--- a/htdocs/langs/ka_GE/users.lang
+++ b/htdocs/langs/ka_GE/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Use OpenID to login
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/kn_IN/accountancy.lang b/htdocs/langs/kn_IN/accountancy.lang
index 5ee7e8de9f54f863782f095d33e3d4f43b2e78d2..87e3200f57c3544cb69c4a4d2a00867fbc5af632 100644
--- a/htdocs/langs/kn_IN/accountancy.lang
+++ b/htdocs/langs/kn_IN/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Return
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sells journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/kn_IN/admin.lang b/htdocs/langs/kn_IN/admin.lang
index c81fe4c28afda6683163ea69aba69202b77179ec..9cff117f74abd2a9b1a059a41efe0b7e74134f95 100644
--- a/htdocs/langs/kn_IN/admin.lang
+++ b/htdocs/langs/kn_IN/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Hide all information related to VAT on generated PDF
 HideDescOnPDF=Hide products description on generated PDF
 HideRefOnPDF=Hide products ref. on generated PDF
 HideDetailsOnPDF=Hide products lines details on generated PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Library
 UrlGenerationParameters=Parameters to secure URLs
 SecurityTokenIsUnique=Use a unique securekey parameter for each URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Users & groups
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Notifications
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Donations
 Module700Desc=Donation management
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Delays before warning
 DelaysOfToleranceBeforeWarning=Tolerance delays before warning
 DelaysOfToleranceDesc=This screen allows you to define the tolerated delays before an alert is reported on screen with picto %s for each late element.
 Delays_MAIN_DELAY_ACTIONS_TODO=Delay tolerance (in days) before alert on planned events not yet realised
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on orders not yet processed
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on suppliers orders not yet processed
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Delay tolerance (in days) before alert on proposals to close
@@ -1087,6 +1089,7 @@ PathDirectory=Directory
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/kn_IN/agenda.lang b/htdocs/langs/kn_IN/agenda.lang
index d8776508edcf523910ab3b06f56e1c9feb947af3..a0ccdfd26ea417d55219526b58c9ec073df47938 100644
--- a/htdocs/langs/kn_IN/agenda.lang
+++ b/htdocs/langs/kn_IN/agenda.lang
@@ -35,7 +35,9 @@ AllActions= All events/tasks
 ViewCal=Month view
 ViewDay=Day view
 ViewWeek=Week view
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= View with predefined filters
 AutoActions= Automatic filling
 AgendaAutoActionDesc= Define here events for which you want Dolibarr to create automatically an event in agenda. If nothing is checked (by default), only manual actions will be included in agenda.
diff --git a/htdocs/langs/kn_IN/bills.lang b/htdocs/langs/kn_IN/bills.lang
index 6a474886ee903714c336a4cec9f301bc999b989d..a4f919a6f49bb096b27addc8ef61adb5ebf42c9a 100644
--- a/htdocs/langs/kn_IN/bills.lang
+++ b/htdocs/langs/kn_IN/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Payments already done
 PaymentsBackAlreadyDone=Payments back already done
 PaymentRule=Payment rule
 PaymentMode=Payment type
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=Show invoice
 ShowInvoiceReplace=Show replacing invoice
 ShowInvoiceAvoir=Show credit note
 ShowInvoiceDeposit=Show deposit invoice
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Show payment
 AlreadyPaid=Already paid
 AlreadyPaidBack=Already paid back
@@ -221,6 +224,7 @@ NonPercuRecuperable=Non-recoverable
 SetConditions=Set payment terms
 SetMode=Set payment mode
 Billed=Billed
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=This amount has been abandoned (customer said to be a bad
 HelpAbandonOther=This amount has been abandoned since it was an error (wrong customer or invoice replaced by an other for example)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Payment id
+PaymentRef=Payment ref.
 InvoiceId=Invoice id
 InvoiceRef=Invoice ref.
 InvoiceDateCreation=Invoice creation date
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Immediate
@@ -393,6 +402,7 @@ Reported=Delayed
 DisabledBecausePayments=Not possible since there are some payments
 CantRemovePaymentWithOneInvoicePaid=Can't remove payment since there is at least one invoice classified paid
 ExpectedToPay=Expected payment
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Paid by this payment
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third pa
 RevenueStamp=Revenue stamp
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Invoice PDF template Crabe. A complete invoice template (recommended Template)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=A bill starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/kn_IN/boxes.lang b/htdocs/langs/kn_IN/boxes.lang
index 634b058f6d40f39c5434322b8c1ee431c6efccfa..8595403dc30264fc25e0890343920207a3b2fcc2 100644
--- a/htdocs/langs/kn_IN/boxes.lang
+++ b/htdocs/langs/kn_IN/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Customers invoices
 ForCustomersOrders=Customers orders
 ForProposals=Proposals
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/kn_IN/categories.lang b/htdocs/langs/kn_IN/categories.lang
index 81c73356c9313f8f6b58ca91fb632a9d894f335b..ccf22bb5003ca9dd4d684ff764aeb69eef7f739b 100644
--- a/htdocs/langs/kn_IN/categories.lang
+++ b/htdocs/langs/kn_IN/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo./Prosp. categories
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/kn_IN/companies.lang b/htdocs/langs/kn_IN/companies.lang
index 380c8337763dc423cfe77b95dbf43a8e2e7d1a47..fc8a369365edb9b4ff265e0f9adfd9006238939e 100644
--- a/htdocs/langs/kn_IN/companies.lang
+++ b/htdocs/langs/kn_IN/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (R.C.)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (R.F.C).
 ProfId2MX=Prof Id 2 (R..P. IMSS)
diff --git a/htdocs/langs/kn_IN/compta.lang b/htdocs/langs/kn_IN/compta.lang
index d73f580cc8b8a84426e53b5a0c38c03dc8511bb6..07b609a17e428435a16e70932ee1763b18a0a7fa 100644
--- a/htdocs/langs/kn_IN/compta.lang
+++ b/htdocs/langs/kn_IN/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Deposit invoices are nor included
 DepositsAreIncluded=- Deposit invoices are included
 LT2ReportByCustomersInInputOutputModeES=Report by third party IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/kn_IN/cron.lang b/htdocs/langs/kn_IN/cron.lang
index bd85715642ec700a51b7365535762b2760ae54e5..21786df66cfcf912dd12c81c03fbb604e2255c26 100644
--- a/htdocs/langs/kn_IN/cron.lang
+++ b/htdocs/langs/kn_IN/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=List of disabled jobs
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Last run
 CronLastOutput=Last run output
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Job
 CronNone=None
-CronDtStart=Start date
-CronDtEnd=End date
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Next execution
 CronDtLastLaunch=Last execution
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=No jobs registered
 CronPriority=Priority
 CronLabel=Description
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
diff --git a/htdocs/langs/kn_IN/deliveries.lang b/htdocs/langs/kn_IN/deliveries.lang
index c513f3e347c28f0df14813efd7136bc833d51445..47e210744704ae9f083d6f1cf6630f7037ad794b 100644
--- a/htdocs/langs/kn_IN/deliveries.lang
+++ b/htdocs/langs/kn_IN/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Are you sure you want to delete delivery receipt <b
 DeliveryMethod=Delivery method
 TrackingNumber=Tracking number
 DeliveryNotValidated=Delivery not validated
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Name and Signature :
 ToAndDate=To___________________________________ on ____/_____/__________
diff --git a/htdocs/langs/kn_IN/holiday.lang b/htdocs/langs/kn_IN/holiday.lang
index 4beedf7021fa5d57420d3598b776c0af633abbed..a15b2d97224d732e1eceb7b84ff0947dd62e1cff 100644
--- a/htdocs/langs/kn_IN/holiday.lang
+++ b/htdocs/langs/kn_IN/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Employee
 DateDebCP=Start date
 DateFinCP=End date
 DateCreateCP=Creation date
@@ -23,7 +22,7 @@ ReviewedByCP=Will be reviewed by
 DescCP=Description
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=You must select an end date greater than the start date.
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Name
-Employee=Employee
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Monthly update
 ManualUpdate=Manual update
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/kn_IN/hrm.lang b/htdocs/langs/kn_IN/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/kn_IN/hrm.lang
+++ b/htdocs/langs/kn_IN/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/kn_IN/interventions.lang b/htdocs/langs/kn_IN/interventions.lang
index 5c08c3063534c07d4eea4a2096402a33cccadd41..cbcba219f1139b397fa8fe54ef5292c2ddf22248 100644
--- a/htdocs/langs/kn_IN/interventions.lang
+++ b/htdocs/langs/kn_IN/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Return numero with format %syymm-nnnn where yy is year,
 PacificNumRefModelError=An intervention card starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
 PrintProductsOnFichinter=Print products on intervention card
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/kn_IN/mails.lang b/htdocs/langs/kn_IN/mails.lang
index 87a1bd3c4d77c148a4c9554f25e94c5ca4becd9e..fbd7a14cd0471869ac1a1a0f1ec364a41ab9a244 100644
--- a/htdocs/langs/kn_IN/mails.lang
+++ b/htdocs/langs/kn_IN/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail sent to %s recipients.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/kn_IN/main.lang b/htdocs/langs/kn_IN/main.lang
index 3e24856e8f8b115a2fba5301a607933c36a3ecda..4afa461226b1ead0e11fa342cccef48c4075b024 100644
--- a/htdocs/langs/kn_IN/main.lang
+++ b/htdocs/langs/kn_IN/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=Database connection
+NoTemplateDefined=No template defined for this email type
 NoTranslation=No translation
 NoRecordFound=No record found
 NoError=No error
@@ -105,6 +106,7 @@ NotePrivate=Note (private)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr was setup to limit precision of unit prices to <b>%s</b> decimals.
 DoTest=Test
 ToFilter=Filter
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Warning, you have at least one element that has exceeded the tolerance delay.
 yes=yes
 Yes=Yes
@@ -228,6 +230,8 @@ Now=Now
 HourStart=Start hour
 Date=Date
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Date start
 DateEnd=Date end
 DateCreation=Creation date
@@ -608,6 +612,7 @@ TotalMan=Total
 NeverReceived=Never received
 Canceled=Canceled
 YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Color
 Documents=Linked files
 DocumentsNb=Linked files (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=No pictures available yet
 HomeDashboard=Home summary
+Dashboard=Dashboard
 Deductible=Deductible
 from=from
 toward=toward
diff --git a/htdocs/langs/kn_IN/margins.lang b/htdocs/langs/kn_IN/margins.lang
index 7db5ea4892e47d38f81f47f47b7beb00e1177280..27bb4de9fa34bef827f4501268d659670a983767 100644
--- a/htdocs/langs/kn_IN/margins.lang
+++ b/htdocs/langs/kn_IN/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Choose product or service
 StartDate=Start date
 EndDate=End date
 Launch=Start
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=As a product
 UseDiscountAsService=As a service
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/kn_IN/oauth.lang b/htdocs/langs/kn_IN/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/kn_IN/oauth.lang
+++ b/htdocs/langs/kn_IN/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/kn_IN/orders.lang b/htdocs/langs/kn_IN/orders.lang
index 29c2a0b5e21d6c38fe10363675a1bc04bdd5b309..c0bfc3ccce39be48af6c839b61305244d9261c47 100644
--- a/htdocs/langs/kn_IN/orders.lang
+++ b/htdocs/langs/kn_IN/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=No draft orders
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Other orders
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/kn_IN/other.lang b/htdocs/langs/kn_IN/other.lang
index 5fff107fde9aef8b5b102b11516d063214201ce7..c53f32346fe31f4f3ab22fa18f5933e33d5e97e2 100644
--- a/htdocs/langs/kn_IN/other.lang
+++ b/htdocs/langs/kn_IN/other.lang
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=New export
 ##### External sites #####
 ExternalSites=External sites
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/kn_IN/paypal.lang b/htdocs/langs/kn_IN/paypal.lang
index a4204f919825385332e460f03280067caa62dbb4..c6905f2ecc4299f59205dda7302732f0f7e67666 100644
--- a/htdocs/langs/kn_IN/paypal.lang
+++ b/htdocs/langs/kn_IN/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Mode test/sandbox
 PAYPAL_API_USER=API username
 PAYPAL_API_PASSWORD=API password
 PAYPAL_API_SIGNATURE=API signature
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Offer payment "integral" (Credit card+Paypal) or "Paypal" only
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/kn_IN/products.lang b/htdocs/langs/kn_IN/products.lang
index 0faea3691b0bd0e55ac1001d24cb88993cab4347..3926759fccadd1d5d9a3e2b3caf0d17fda789b7f 100644
--- a/htdocs/langs/kn_IN/products.lang
+++ b/htdocs/langs/kn_IN/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Production completed
-ProductsMultiPrice=Product multi-price
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/kn_IN/projects.lang b/htdocs/langs/kn_IN/projects.lang
index 7c94e3eb257ae07dea71f32084407e741fd94b1b..f6f6dd8ecaf09ead7b9c5d088f9ce307da860db9 100644
--- a/htdocs/langs/kn_IN/projects.lang
+++ b/htdocs/langs/kn_IN/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=This view presents all projects (your user permissions grant you permission to view everything).
 MyTasksDesc=This view is limited to projects or tasks you are a contact for (whatever is the type).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=This view presents all projects and tasks you are allowed to read.
 TasksDesc=This view presents all projects and tasks (your user permissions grant you permission to view everything).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Officer project
 LastProjects=Last %s projects
 AllProjects=All projects
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=List of projects
 ShowProject=Show project
 SetProject=Set project
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/kn_IN/propal.lang b/htdocs/langs/kn_IN/propal.lang
index d12d7595f94d6a48a961cc635329e86ed543a7ea..79ae1f1cd50add8ebf9f9f1275481055ed84ce06 100644
--- a/htdocs/langs/kn_IN/propal.lang
+++ b/htdocs/langs/kn_IN/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Last %s modified proposals
 AllPropals=All proposals
 LastProposals=Last proposals
 SearchAProposal=Search a proposal
+NoProposal=No proposal
 ProposalsStatistics=Commercial proposal's statistics
 NumberOfProposalsByMonth=Number by month
 AmountOfProposalsByMonthHT=Amount by month (net of tax)
@@ -62,7 +63,8 @@ DatePropal=Date of proposal
 DateEndPropal=Validity ending date
 DateEndPropalShort=Date end
 ValidityDuration=Validity duration
-CloseAs=Close with status
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Classify billed
 BuildBill=Build invoice
 ErrorPropalNotFound=Propal %s not found
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Default model creation
 DefaultModelPropalToBill=Default template when closing a business proposal (to be invoiced)
 DefaultModelPropalClosed=Default template when closing a business proposal (unbilled)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/kn_IN/salaries.lang b/htdocs/langs/kn_IN/salaries.lang
index 953a9c7540cbb06d6209140b32aaa0d23261e324..da177410860fb80d4d2d0872ec3b258ed787ba0e 100644
--- a/htdocs/langs/kn_IN/salaries.lang
+++ b/htdocs/langs/kn_IN/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Salary
 Salaries=Salaries
-Employee=Employee
 NewSalaryPayment=New salary payment
 SalaryPayment=Salary payment
 SalariesPayments=Salaries payments
diff --git a/htdocs/langs/kn_IN/sendings.lang b/htdocs/langs/kn_IN/sendings.lang
index fa7da0b00794647c45f8777bbc68fb23a31e1c0e..fb7b9c08868e29621711a9651a94ed955c6b223f 100644
--- a/htdocs/langs/kn_IN/sendings.lang
+++ b/htdocs/langs/kn_IN/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Shipment
 Shipments=Shipments
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Shipments area
 ListOfSendings=List of shipments
 SendingMethod=Shipping method
diff --git a/htdocs/langs/kn_IN/sms.lang b/htdocs/langs/kn_IN/sms.lang
index 4e89bb247308eb692eef9e40892f306dda5dd27b..70066caac96971420d7c55b09879e200888763c2 100644
--- a/htdocs/langs/kn_IN/sms.lang
+++ b/htdocs/langs/kn_IN/sms.lang
@@ -49,5 +49,6 @@ SendSms=Send SMS
 SmsInfoCharRemain=Nb of remaining characters
 SmsInfoNumero= (format international ie : +33899701761)
 DelayBeforeSending=Delay before sending (minutes)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=No target available. Check setup of your SMS provider.
 
diff --git a/htdocs/langs/kn_IN/supplier_proposal.lang b/htdocs/langs/kn_IN/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/kn_IN/supplier_proposal.lang
+++ b/htdocs/langs/kn_IN/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/kn_IN/trips.lang b/htdocs/langs/kn_IN/trips.lang
index ce9f0970e7c331996ee194c7613983060795a647..5ccdf8d0e37dcf680cc33691fdce1fd5644f2d53 100644
--- a/htdocs/langs/kn_IN/trips.lang
+++ b/htdocs/langs/kn_IN/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Other
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Lunch
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/kn_IN/users.lang b/htdocs/langs/kn_IN/users.lang
index 5b85ec80cf7e8a65d24d83c7359f831f9d150669..8a7dfcfe78753c5bda61b8d82208350a9e362652 100644
--- a/htdocs/langs/kn_IN/users.lang
+++ b/htdocs/langs/kn_IN/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Use OpenID to login
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/ko_KR/accountancy.lang b/htdocs/langs/ko_KR/accountancy.lang
index 5ee7e8de9f54f863782f095d33e3d4f43b2e78d2..87e3200f57c3544cb69c4a4d2a00867fbc5af632 100644
--- a/htdocs/langs/ko_KR/accountancy.lang
+++ b/htdocs/langs/ko_KR/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Return
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sells journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/ko_KR/admin.lang b/htdocs/langs/ko_KR/admin.lang
index d94da909263431e2ed924d26d464dc53cda2aa32..9298627812997751615ad36be042c0636fb4982c 100644
--- a/htdocs/langs/ko_KR/admin.lang
+++ b/htdocs/langs/ko_KR/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Hide all information related to VAT on generated PDF
 HideDescOnPDF=Hide products description on generated PDF
 HideRefOnPDF=Hide products ref. on generated PDF
 HideDetailsOnPDF=Hide products lines details on generated PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Library
 UrlGenerationParameters=Parameters to secure URLs
 SecurityTokenIsUnique=Use a unique securekey parameter for each URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Users & groups
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Notifications
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Donations
 Module700Desc=Donation management
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Delays before warning
 DelaysOfToleranceBeforeWarning=Tolerance delays before warning
 DelaysOfToleranceDesc=This screen allows you to define the tolerated delays before an alert is reported on screen with picto %s for each late element.
 Delays_MAIN_DELAY_ACTIONS_TODO=Delay tolerance (in days) before alert on planned events not yet realised
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on orders not yet processed
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on suppliers orders not yet processed
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Delay tolerance (in days) before alert on proposals to close
@@ -1087,6 +1089,7 @@ PathDirectory=Directory
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/ko_KR/agenda.lang b/htdocs/langs/ko_KR/agenda.lang
index 434e85fe8115d9bc72733f9db737130305149792..292d831bc8618088a9ec0c0e802d9efdd9cf3aef 100644
--- a/htdocs/langs/ko_KR/agenda.lang
+++ b/htdocs/langs/ko_KR/agenda.lang
@@ -35,7 +35,9 @@ AllActions= All events/tasks
 ViewCal=Month view
 ViewDay=Day view
 ViewWeek=Week view
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= View with predefined filters
 AutoActions= Automatic filling
 AgendaAutoActionDesc= Define here events for which you want Dolibarr to create automatically an event in agenda. If nothing is checked (by default), only manual actions will be included in agenda.
diff --git a/htdocs/langs/ko_KR/bills.lang b/htdocs/langs/ko_KR/bills.lang
index 6a474886ee903714c336a4cec9f301bc999b989d..a4f919a6f49bb096b27addc8ef61adb5ebf42c9a 100644
--- a/htdocs/langs/ko_KR/bills.lang
+++ b/htdocs/langs/ko_KR/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Payments already done
 PaymentsBackAlreadyDone=Payments back already done
 PaymentRule=Payment rule
 PaymentMode=Payment type
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=Show invoice
 ShowInvoiceReplace=Show replacing invoice
 ShowInvoiceAvoir=Show credit note
 ShowInvoiceDeposit=Show deposit invoice
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Show payment
 AlreadyPaid=Already paid
 AlreadyPaidBack=Already paid back
@@ -221,6 +224,7 @@ NonPercuRecuperable=Non-recoverable
 SetConditions=Set payment terms
 SetMode=Set payment mode
 Billed=Billed
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=This amount has been abandoned (customer said to be a bad
 HelpAbandonOther=This amount has been abandoned since it was an error (wrong customer or invoice replaced by an other for example)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Payment id
+PaymentRef=Payment ref.
 InvoiceId=Invoice id
 InvoiceRef=Invoice ref.
 InvoiceDateCreation=Invoice creation date
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Immediate
@@ -393,6 +402,7 @@ Reported=Delayed
 DisabledBecausePayments=Not possible since there are some payments
 CantRemovePaymentWithOneInvoicePaid=Can't remove payment since there is at least one invoice classified paid
 ExpectedToPay=Expected payment
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Paid by this payment
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third pa
 RevenueStamp=Revenue stamp
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Invoice PDF template Crabe. A complete invoice template (recommended Template)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=A bill starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/ko_KR/boxes.lang b/htdocs/langs/ko_KR/boxes.lang
index 634b058f6d40f39c5434322b8c1ee431c6efccfa..8595403dc30264fc25e0890343920207a3b2fcc2 100644
--- a/htdocs/langs/ko_KR/boxes.lang
+++ b/htdocs/langs/ko_KR/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Customers invoices
 ForCustomersOrders=Customers orders
 ForProposals=Proposals
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/ko_KR/categories.lang b/htdocs/langs/ko_KR/categories.lang
index 81c73356c9313f8f6b58ca91fb632a9d894f335b..ccf22bb5003ca9dd4d684ff764aeb69eef7f739b 100644
--- a/htdocs/langs/ko_KR/categories.lang
+++ b/htdocs/langs/ko_KR/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo./Prosp. categories
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/ko_KR/companies.lang b/htdocs/langs/ko_KR/companies.lang
index e31c347605e091b48daeb2403b0c36b513540c0e..292fcafe238315d5e9cb6c07e0574a9f3979f7ba 100644
--- a/htdocs/langs/ko_KR/companies.lang
+++ b/htdocs/langs/ko_KR/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (R.C.)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (R.F.C).
 ProfId2MX=Prof Id 2 (R..P. IMSS)
diff --git a/htdocs/langs/ko_KR/compta.lang b/htdocs/langs/ko_KR/compta.lang
index d73f580cc8b8a84426e53b5a0c38c03dc8511bb6..07b609a17e428435a16e70932ee1763b18a0a7fa 100644
--- a/htdocs/langs/ko_KR/compta.lang
+++ b/htdocs/langs/ko_KR/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Deposit invoices are nor included
 DepositsAreIncluded=- Deposit invoices are included
 LT2ReportByCustomersInInputOutputModeES=Report by third party IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/ko_KR/cron.lang b/htdocs/langs/ko_KR/cron.lang
index bd85715642ec700a51b7365535762b2760ae54e5..21786df66cfcf912dd12c81c03fbb604e2255c26 100644
--- a/htdocs/langs/ko_KR/cron.lang
+++ b/htdocs/langs/ko_KR/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=List of disabled jobs
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Last run
 CronLastOutput=Last run output
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Job
 CronNone=None
-CronDtStart=Start date
-CronDtEnd=End date
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Next execution
 CronDtLastLaunch=Last execution
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=No jobs registered
 CronPriority=Priority
 CronLabel=Description
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
diff --git a/htdocs/langs/ko_KR/deliveries.lang b/htdocs/langs/ko_KR/deliveries.lang
index c513f3e347c28f0df14813efd7136bc833d51445..47e210744704ae9f083d6f1cf6630f7037ad794b 100644
--- a/htdocs/langs/ko_KR/deliveries.lang
+++ b/htdocs/langs/ko_KR/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Are you sure you want to delete delivery receipt <b
 DeliveryMethod=Delivery method
 TrackingNumber=Tracking number
 DeliveryNotValidated=Delivery not validated
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Name and Signature :
 ToAndDate=To___________________________________ on ____/_____/__________
diff --git a/htdocs/langs/ko_KR/holiday.lang b/htdocs/langs/ko_KR/holiday.lang
index 4beedf7021fa5d57420d3598b776c0af633abbed..a15b2d97224d732e1eceb7b84ff0947dd62e1cff 100644
--- a/htdocs/langs/ko_KR/holiday.lang
+++ b/htdocs/langs/ko_KR/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Employee
 DateDebCP=Start date
 DateFinCP=End date
 DateCreateCP=Creation date
@@ -23,7 +22,7 @@ ReviewedByCP=Will be reviewed by
 DescCP=Description
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=You must select an end date greater than the start date.
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Name
-Employee=Employee
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Monthly update
 ManualUpdate=Manual update
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/ko_KR/hrm.lang b/htdocs/langs/ko_KR/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/ko_KR/hrm.lang
+++ b/htdocs/langs/ko_KR/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/ko_KR/interventions.lang b/htdocs/langs/ko_KR/interventions.lang
index 5c08c3063534c07d4eea4a2096402a33cccadd41..cbcba219f1139b397fa8fe54ef5292c2ddf22248 100644
--- a/htdocs/langs/ko_KR/interventions.lang
+++ b/htdocs/langs/ko_KR/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Return numero with format %syymm-nnnn where yy is year,
 PacificNumRefModelError=An intervention card starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
 PrintProductsOnFichinter=Print products on intervention card
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/ko_KR/mails.lang b/htdocs/langs/ko_KR/mails.lang
index cdc39d834936ca2db9fb23e6885c5a794b288669..31336da6c48fa096166b80da776e0874b98f4935 100644
--- a/htdocs/langs/ko_KR/mails.lang
+++ b/htdocs/langs/ko_KR/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail sent to %s recipients.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/ko_KR/main.lang b/htdocs/langs/ko_KR/main.lang
index b6157c714f70dc7a7fe76fe24cabdbb8cc13f538..4a370c93e4ed7114b13d034546ae461683a90cf4 100644
--- a/htdocs/langs/ko_KR/main.lang
+++ b/htdocs/langs/ko_KR/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=데이타베이스 연결
+NoTemplateDefined=No template defined for this email type
 NoTranslation=번역 없음
 NoRecordFound=No record found
 NoError=오류 없음
@@ -105,6 +106,7 @@ NotePrivate=Note (private)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr was setup to limit precision of unit prices to <b>%s</b> decimals.
 DoTest=Test
 ToFilter=Filter
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Warning, you have at least one element that has exceeded the tolerance delay.
 yes=yes
 Yes=Yes
@@ -228,6 +230,8 @@ Now=Now
 HourStart=Start hour
 Date=Date
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Date start
 DateEnd=Date end
 DateCreation=Creation date
@@ -608,6 +612,7 @@ TotalMan=Total
 NeverReceived=Never received
 Canceled=Canceled
 YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Color
 Documents=Linked files
 DocumentsNb=Linked files (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=No pictures available yet
 HomeDashboard=Home summary
+Dashboard=Dashboard
 Deductible=Deductible
 from=from
 toward=toward
diff --git a/htdocs/langs/ko_KR/margins.lang b/htdocs/langs/ko_KR/margins.lang
index 7db5ea4892e47d38f81f47f47b7beb00e1177280..27bb4de9fa34bef827f4501268d659670a983767 100644
--- a/htdocs/langs/ko_KR/margins.lang
+++ b/htdocs/langs/ko_KR/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Choose product or service
 StartDate=Start date
 EndDate=End date
 Launch=Start
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=As a product
 UseDiscountAsService=As a service
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/ko_KR/oauth.lang b/htdocs/langs/ko_KR/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/ko_KR/oauth.lang
+++ b/htdocs/langs/ko_KR/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/ko_KR/orders.lang b/htdocs/langs/ko_KR/orders.lang
index 29c2a0b5e21d6c38fe10363675a1bc04bdd5b309..c0bfc3ccce39be48af6c839b61305244d9261c47 100644
--- a/htdocs/langs/ko_KR/orders.lang
+++ b/htdocs/langs/ko_KR/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=No draft orders
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Other orders
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/ko_KR/other.lang b/htdocs/langs/ko_KR/other.lang
index c05fd1ae1a742adf26c91d51ad85a7be59cf814b..d5af281d965d1f099f4796bf09a87f62b609283d 100644
--- a/htdocs/langs/ko_KR/other.lang
+++ b/htdocs/langs/ko_KR/other.lang
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=New export
 ##### External sites #####
 ExternalSites=External sites
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/ko_KR/paypal.lang b/htdocs/langs/ko_KR/paypal.lang
index a4204f919825385332e460f03280067caa62dbb4..c6905f2ecc4299f59205dda7302732f0f7e67666 100644
--- a/htdocs/langs/ko_KR/paypal.lang
+++ b/htdocs/langs/ko_KR/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Mode test/sandbox
 PAYPAL_API_USER=API username
 PAYPAL_API_PASSWORD=API password
 PAYPAL_API_SIGNATURE=API signature
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Offer payment "integral" (Credit card+Paypal) or "Paypal" only
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/ko_KR/products.lang b/htdocs/langs/ko_KR/products.lang
index 0faea3691b0bd0e55ac1001d24cb88993cab4347..3926759fccadd1d5d9a3e2b3caf0d17fda789b7f 100644
--- a/htdocs/langs/ko_KR/products.lang
+++ b/htdocs/langs/ko_KR/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Production completed
-ProductsMultiPrice=Product multi-price
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/ko_KR/projects.lang b/htdocs/langs/ko_KR/projects.lang
index 7c94e3eb257ae07dea71f32084407e741fd94b1b..f6f6dd8ecaf09ead7b9c5d088f9ce307da860db9 100644
--- a/htdocs/langs/ko_KR/projects.lang
+++ b/htdocs/langs/ko_KR/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=This view presents all projects (your user permissions grant you permission to view everything).
 MyTasksDesc=This view is limited to projects or tasks you are a contact for (whatever is the type).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=This view presents all projects and tasks you are allowed to read.
 TasksDesc=This view presents all projects and tasks (your user permissions grant you permission to view everything).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Officer project
 LastProjects=Last %s projects
 AllProjects=All projects
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=List of projects
 ShowProject=Show project
 SetProject=Set project
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/ko_KR/propal.lang b/htdocs/langs/ko_KR/propal.lang
index d12d7595f94d6a48a961cc635329e86ed543a7ea..79ae1f1cd50add8ebf9f9f1275481055ed84ce06 100644
--- a/htdocs/langs/ko_KR/propal.lang
+++ b/htdocs/langs/ko_KR/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Last %s modified proposals
 AllPropals=All proposals
 LastProposals=Last proposals
 SearchAProposal=Search a proposal
+NoProposal=No proposal
 ProposalsStatistics=Commercial proposal's statistics
 NumberOfProposalsByMonth=Number by month
 AmountOfProposalsByMonthHT=Amount by month (net of tax)
@@ -62,7 +63,8 @@ DatePropal=Date of proposal
 DateEndPropal=Validity ending date
 DateEndPropalShort=Date end
 ValidityDuration=Validity duration
-CloseAs=Close with status
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Classify billed
 BuildBill=Build invoice
 ErrorPropalNotFound=Propal %s not found
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Default model creation
 DefaultModelPropalToBill=Default template when closing a business proposal (to be invoiced)
 DefaultModelPropalClosed=Default template when closing a business proposal (unbilled)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/ko_KR/salaries.lang b/htdocs/langs/ko_KR/salaries.lang
index 953a9c7540cbb06d6209140b32aaa0d23261e324..da177410860fb80d4d2d0872ec3b258ed787ba0e 100644
--- a/htdocs/langs/ko_KR/salaries.lang
+++ b/htdocs/langs/ko_KR/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Salary
 Salaries=Salaries
-Employee=Employee
 NewSalaryPayment=New salary payment
 SalaryPayment=Salary payment
 SalariesPayments=Salaries payments
diff --git a/htdocs/langs/ko_KR/sendings.lang b/htdocs/langs/ko_KR/sendings.lang
index fa7da0b00794647c45f8777bbc68fb23a31e1c0e..fb7b9c08868e29621711a9651a94ed955c6b223f 100644
--- a/htdocs/langs/ko_KR/sendings.lang
+++ b/htdocs/langs/ko_KR/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Shipment
 Shipments=Shipments
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Shipments area
 ListOfSendings=List of shipments
 SendingMethod=Shipping method
diff --git a/htdocs/langs/ko_KR/sms.lang b/htdocs/langs/ko_KR/sms.lang
index 5f4146d9f038cacc2e131e2fe92868b0fe9eb7ba..e43a7ef8ff8a2cf016d4b12f9bbceb91a86cfa53 100644
--- a/htdocs/langs/ko_KR/sms.lang
+++ b/htdocs/langs/ko_KR/sms.lang
@@ -1,53 +1,54 @@
 # Dolibarr language file - Source file is en_US - sms
-# Sms=Sms
-# SmsSetup=Sms setup
-# SmsDesc=This page allows you to define globals options on SMS features
-# SmsCard=SMS Card
-# AllSms=All SMS campains
-# SmsTargets=Targets
-# SmsRecipients=Targets
-# SmsRecipient=Target
-# SmsTitle=Description
-# SmsFrom=Sender
-# SmsTo=Target
-# SmsTopic=Topic of SMS
-# SmsText=Message
-# SmsMessage=SMS Message
-# ShowSms=Show Sms
-# ListOfSms=List SMS campains
-# NewSms=New SMS campain
-# EditSms=Edit Sms
-# ResetSms=New sending
-# DeleteSms=Delete Sms campain
-# DeleteASms=Remove a Sms campain
-# PreviewSms=Previuw Sms
-# PrepareSms=Prepare Sms
-# CreateSms=Create Sms
-# SmsResult=Result of Sms sending
-# TestSms=Test Sms
-# ValidSms=Validate Sms
-# ApproveSms=Approve Sms
-# SmsStatusDraft=Draft
-# SmsStatusValidated=Validated
-# SmsStatusApproved=Approved
-# SmsStatusSent=Sent
-# SmsStatusSentPartialy=Sent partially
-# SmsStatusSentCompletely=Sent completely
+Sms=Sms
+SmsSetup=Sms setup
+SmsDesc=This page allows you to define globals options on SMS features
+SmsCard=SMS Card
+AllSms=All SMS campains
+SmsTargets=Targets
+SmsRecipients=Targets
+SmsRecipient=Target
+SmsTitle=Description
+SmsFrom=Sender
+SmsTo=Target
+SmsTopic=Topic of SMS
+SmsText=Message
+SmsMessage=SMS Message
+ShowSms=Show Sms
+ListOfSms=List SMS campains
+NewSms=New SMS campain
+EditSms=Edit Sms
+ResetSms=New sending
+DeleteSms=Delete Sms campain
+DeleteASms=Remove a Sms campain
+PreviewSms=Previuw Sms
+PrepareSms=Prepare Sms
+CreateSms=Create Sms
+SmsResult=Result of Sms sending
+TestSms=Test Sms
+ValidSms=Validate Sms
+ApproveSms=Approve Sms
+SmsStatusDraft=Draft
+SmsStatusValidated=Validated
+SmsStatusApproved=Approved
+SmsStatusSent=Sent
+SmsStatusSentPartialy=Sent partially
+SmsStatusSentCompletely=Sent completely
 SmsStatusError=오류
-# SmsStatusNotSent=Not sent
-# SmsSuccessfulySent=Sms correctly sent (from %s to %s)
-# ErrorSmsRecipientIsEmpty=Number of target is empty
-# WarningNoSmsAdded=No new phone number to add to target list
-# ConfirmValidSms=Do you confirm validation of this campain ?
-# ConfirmResetMailing=Warning, if you make a reinit of Sms campain <b>%s</b>, you will allow to make a mass sending of it a second time. Is it really what you wan to do ?
-# ConfirmDeleteMailing=Do you confirm removing of campain ?
-# NbOfRecipients=Number of targets
-# NbOfUniqueSms=Nb dof unique phone numbers
-# NbOfSms=Nbre of phon numbers
-# ThisIsATestMessage=This is a test message
-# SendSms=Send SMS
-# SmsInfoCharRemain=Nb of remaining characters
-# SmsInfoNumero= (format international ie : +33899701761)
-# DelayBeforeSending=Delay before sending (minutes)
-# SmsNoPossibleRecipientFound=No target available. Check setup of your SMS provider.
+SmsStatusNotSent=Not sent
+SmsSuccessfulySent=Sms correctly sent (from %s to %s)
+ErrorSmsRecipientIsEmpty=Number of target is empty
+WarningNoSmsAdded=No new phone number to add to target list
+ConfirmValidSms=Do you confirm validation of this campain ?
+ConfirmResetMailing=Warning, if you make a reinit of Sms campain <b>%s</b>, you will allow to make a mass sending of it a second time. Is it really what you wan to do ?
+ConfirmDeleteMailing=Do you confirm removing of campain ?
+NbOfRecipients=Number of targets
+NbOfUniqueSms=Nb dof unique phone numbers
+NbOfSms=Nbre of phon numbers
+ThisIsATestMessage=This is a test message
+SendSms=Send SMS
+SmsInfoCharRemain=Nb of remaining characters
+SmsInfoNumero= (format international ie : +33899701761)
+DelayBeforeSending=Delay before sending (minutes)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
+SmsNoPossibleRecipientFound=No target available. Check setup of your SMS provider.
 
diff --git a/htdocs/langs/ko_KR/supplier_proposal.lang b/htdocs/langs/ko_KR/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/ko_KR/supplier_proposal.lang
+++ b/htdocs/langs/ko_KR/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/ko_KR/trips.lang b/htdocs/langs/ko_KR/trips.lang
index ce9f0970e7c331996ee194c7613983060795a647..5ccdf8d0e37dcf680cc33691fdce1fd5644f2d53 100644
--- a/htdocs/langs/ko_KR/trips.lang
+++ b/htdocs/langs/ko_KR/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Other
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Lunch
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/ko_KR/users.lang b/htdocs/langs/ko_KR/users.lang
index 5b85ec80cf7e8a65d24d83c7359f831f9d150669..8a7dfcfe78753c5bda61b8d82208350a9e362652 100644
--- a/htdocs/langs/ko_KR/users.lang
+++ b/htdocs/langs/ko_KR/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Use OpenID to login
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/lo_LA/accountancy.lang b/htdocs/langs/lo_LA/accountancy.lang
index bf90a873c9f81919960c819ba35c513ad8d999a2..7e8e614f0c16b0bf0070f2b2144f959f9f93b7bd 100644
--- a/htdocs/langs/lo_LA/accountancy.lang
+++ b/htdocs/langs/lo_LA/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=ກັບຄືນ
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sells journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/lo_LA/admin.lang b/htdocs/langs/lo_LA/admin.lang
index 7955d2b64f6dca368692d75ae5b11070b53d1f40..76afaa082e38c231a953ab6ec174150dbea3a49b 100644
--- a/htdocs/langs/lo_LA/admin.lang
+++ b/htdocs/langs/lo_LA/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Hide all information related to VAT on generated PDF
 HideDescOnPDF=Hide products description on generated PDF
 HideRefOnPDF=Hide products ref. on generated PDF
 HideDetailsOnPDF=Hide products lines details on generated PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Library
 UrlGenerationParameters=Parameters to secure URLs
 SecurityTokenIsUnique=Use a unique securekey parameter for each URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Users & groups
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Notifications
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Donations
 Module700Desc=Donation management
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Delays before warning
 DelaysOfToleranceBeforeWarning=Tolerance delays before warning
 DelaysOfToleranceDesc=This screen allows you to define the tolerated delays before an alert is reported on screen with picto %s for each late element.
 Delays_MAIN_DELAY_ACTIONS_TODO=Delay tolerance (in days) before alert on planned events not yet realised
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on orders not yet processed
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on suppliers orders not yet processed
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Delay tolerance (in days) before alert on proposals to close
@@ -1087,6 +1089,7 @@ PathDirectory=Directory
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/lo_LA/agenda.lang b/htdocs/langs/lo_LA/agenda.lang
index d8776508edcf523910ab3b06f56e1c9feb947af3..a0ccdfd26ea417d55219526b58c9ec073df47938 100644
--- a/htdocs/langs/lo_LA/agenda.lang
+++ b/htdocs/langs/lo_LA/agenda.lang
@@ -35,7 +35,9 @@ AllActions= All events/tasks
 ViewCal=Month view
 ViewDay=Day view
 ViewWeek=Week view
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= View with predefined filters
 AutoActions= Automatic filling
 AgendaAutoActionDesc= Define here events for which you want Dolibarr to create automatically an event in agenda. If nothing is checked (by default), only manual actions will be included in agenda.
diff --git a/htdocs/langs/lo_LA/bills.lang b/htdocs/langs/lo_LA/bills.lang
index 6a474886ee903714c336a4cec9f301bc999b989d..a4f919a6f49bb096b27addc8ef61adb5ebf42c9a 100644
--- a/htdocs/langs/lo_LA/bills.lang
+++ b/htdocs/langs/lo_LA/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Payments already done
 PaymentsBackAlreadyDone=Payments back already done
 PaymentRule=Payment rule
 PaymentMode=Payment type
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=Show invoice
 ShowInvoiceReplace=Show replacing invoice
 ShowInvoiceAvoir=Show credit note
 ShowInvoiceDeposit=Show deposit invoice
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Show payment
 AlreadyPaid=Already paid
 AlreadyPaidBack=Already paid back
@@ -221,6 +224,7 @@ NonPercuRecuperable=Non-recoverable
 SetConditions=Set payment terms
 SetMode=Set payment mode
 Billed=Billed
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=This amount has been abandoned (customer said to be a bad
 HelpAbandonOther=This amount has been abandoned since it was an error (wrong customer or invoice replaced by an other for example)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Payment id
+PaymentRef=Payment ref.
 InvoiceId=Invoice id
 InvoiceRef=Invoice ref.
 InvoiceDateCreation=Invoice creation date
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Immediate
@@ -393,6 +402,7 @@ Reported=Delayed
 DisabledBecausePayments=Not possible since there are some payments
 CantRemovePaymentWithOneInvoicePaid=Can't remove payment since there is at least one invoice classified paid
 ExpectedToPay=Expected payment
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Paid by this payment
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third pa
 RevenueStamp=Revenue stamp
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Invoice PDF template Crabe. A complete invoice template (recommended Template)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=A bill starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/lo_LA/boxes.lang b/htdocs/langs/lo_LA/boxes.lang
index 634b058f6d40f39c5434322b8c1ee431c6efccfa..8595403dc30264fc25e0890343920207a3b2fcc2 100644
--- a/htdocs/langs/lo_LA/boxes.lang
+++ b/htdocs/langs/lo_LA/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Customers invoices
 ForCustomersOrders=Customers orders
 ForProposals=Proposals
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/lo_LA/categories.lang b/htdocs/langs/lo_LA/categories.lang
index 81c73356c9313f8f6b58ca91fb632a9d894f335b..ccf22bb5003ca9dd4d684ff764aeb69eef7f739b 100644
--- a/htdocs/langs/lo_LA/categories.lang
+++ b/htdocs/langs/lo_LA/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo./Prosp. categories
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/lo_LA/companies.lang b/htdocs/langs/lo_LA/companies.lang
index e31c347605e091b48daeb2403b0c36b513540c0e..292fcafe238315d5e9cb6c07e0574a9f3979f7ba 100644
--- a/htdocs/langs/lo_LA/companies.lang
+++ b/htdocs/langs/lo_LA/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (R.C.)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (R.F.C).
 ProfId2MX=Prof Id 2 (R..P. IMSS)
diff --git a/htdocs/langs/lo_LA/compta.lang b/htdocs/langs/lo_LA/compta.lang
index fb41eaf8234fe6d3a13222a9fb0a3e00fb9f34ae..f519d822260987574215159bb19a106a0c23bf04 100644
--- a/htdocs/langs/lo_LA/compta.lang
+++ b/htdocs/langs/lo_LA/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Deposit invoices are nor included
 DepositsAreIncluded=- Deposit invoices are included
 LT2ReportByCustomersInInputOutputModeES=Report by third party IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/lo_LA/cron.lang b/htdocs/langs/lo_LA/cron.lang
index bd85715642ec700a51b7365535762b2760ae54e5..21786df66cfcf912dd12c81c03fbb604e2255c26 100644
--- a/htdocs/langs/lo_LA/cron.lang
+++ b/htdocs/langs/lo_LA/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=List of disabled jobs
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Last run
 CronLastOutput=Last run output
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Job
 CronNone=None
-CronDtStart=Start date
-CronDtEnd=End date
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Next execution
 CronDtLastLaunch=Last execution
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=No jobs registered
 CronPriority=Priority
 CronLabel=Description
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
diff --git a/htdocs/langs/lo_LA/deliveries.lang b/htdocs/langs/lo_LA/deliveries.lang
index c513f3e347c28f0df14813efd7136bc833d51445..47e210744704ae9f083d6f1cf6630f7037ad794b 100644
--- a/htdocs/langs/lo_LA/deliveries.lang
+++ b/htdocs/langs/lo_LA/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Are you sure you want to delete delivery receipt <b
 DeliveryMethod=Delivery method
 TrackingNumber=Tracking number
 DeliveryNotValidated=Delivery not validated
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Name and Signature :
 ToAndDate=To___________________________________ on ____/_____/__________
diff --git a/htdocs/langs/lo_LA/holiday.lang b/htdocs/langs/lo_LA/holiday.lang
index b693bc7800598f05959070f1299186f6f82f7736..439bd31138b7e1a671bb6a872d18b20c371d0fe5 100644
--- a/htdocs/langs/lo_LA/holiday.lang
+++ b/htdocs/langs/lo_LA/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Employee
 DateDebCP=Start date
 DateFinCP=End date
 DateCreateCP=Creation date
@@ -23,7 +22,7 @@ ReviewedByCP=Will be reviewed by
 DescCP=Description
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=You must select an end date greater than the start date.
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Name
-Employee=Employee
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Monthly update
 ManualUpdate=Manual update
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/lo_LA/hrm.lang b/htdocs/langs/lo_LA/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/lo_LA/hrm.lang
+++ b/htdocs/langs/lo_LA/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/lo_LA/interventions.lang b/htdocs/langs/lo_LA/interventions.lang
index 5c08c3063534c07d4eea4a2096402a33cccadd41..cbcba219f1139b397fa8fe54ef5292c2ddf22248 100644
--- a/htdocs/langs/lo_LA/interventions.lang
+++ b/htdocs/langs/lo_LA/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Return numero with format %syymm-nnnn where yy is year,
 PacificNumRefModelError=An intervention card starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
 PrintProductsOnFichinter=Print products on intervention card
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/lo_LA/mails.lang b/htdocs/langs/lo_LA/mails.lang
index 87a1bd3c4d77c148a4c9554f25e94c5ca4becd9e..fbd7a14cd0471869ac1a1a0f1ec364a41ab9a244 100644
--- a/htdocs/langs/lo_LA/mails.lang
+++ b/htdocs/langs/lo_LA/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail sent to %s recipients.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/lo_LA/main.lang b/htdocs/langs/lo_LA/main.lang
index 12259e50f893f70e9dae573b660774101abbdf18..b42e327e711c79a6502b08de3588870cedddae8f 100644
--- a/htdocs/langs/lo_LA/main.lang
+++ b/htdocs/langs/lo_LA/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=Database connection
+NoTemplateDefined=No template defined for this email type
 NoTranslation=No translation
 NoRecordFound=No record found
 NoError=No error
@@ -105,6 +106,7 @@ NotePrivate=Note (private)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr was setup to limit precision of unit prices to <b>%s</b> decimals.
 DoTest=Test
 ToFilter=Filter
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Warning, you have at least one element that has exceeded the tolerance delay.
 yes=yes
 Yes=Yes
@@ -228,6 +230,8 @@ Now=Now
 HourStart=Start hour
 Date=ວັນທີ
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Date start
 DateEnd=Date end
 DateCreation=Creation date
@@ -608,6 +612,7 @@ TotalMan=Total
 NeverReceived=Never received
 Canceled=Canceled
 YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Color
 Documents=Linked files
 DocumentsNb=Linked files (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=No pictures available yet
 HomeDashboard=Home summary
+Dashboard=Dashboard
 Deductible=Deductible
 from=from
 toward=toward
diff --git a/htdocs/langs/lo_LA/margins.lang b/htdocs/langs/lo_LA/margins.lang
index 7db5ea4892e47d38f81f47f47b7beb00e1177280..27bb4de9fa34bef827f4501268d659670a983767 100644
--- a/htdocs/langs/lo_LA/margins.lang
+++ b/htdocs/langs/lo_LA/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Choose product or service
 StartDate=Start date
 EndDate=End date
 Launch=Start
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=As a product
 UseDiscountAsService=As a service
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/lo_LA/oauth.lang b/htdocs/langs/lo_LA/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/lo_LA/oauth.lang
+++ b/htdocs/langs/lo_LA/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/lo_LA/orders.lang b/htdocs/langs/lo_LA/orders.lang
index 29c2a0b5e21d6c38fe10363675a1bc04bdd5b309..c0bfc3ccce39be48af6c839b61305244d9261c47 100644
--- a/htdocs/langs/lo_LA/orders.lang
+++ b/htdocs/langs/lo_LA/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=No draft orders
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Other orders
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/lo_LA/other.lang b/htdocs/langs/lo_LA/other.lang
index d2fe3cfff4e917965390f918e4eb7957938a0891..5a1a451d5562b434cdad303bcf6173e927e3bf05 100644
--- a/htdocs/langs/lo_LA/other.lang
+++ b/htdocs/langs/lo_LA/other.lang
@@ -238,3 +238,8 @@ ToExport=ສົ່ງອອກ
 NewExport=New export
 ##### External sites #####
 ExternalSites=External sites
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/lo_LA/paypal.lang b/htdocs/langs/lo_LA/paypal.lang
index a4204f919825385332e460f03280067caa62dbb4..c6905f2ecc4299f59205dda7302732f0f7e67666 100644
--- a/htdocs/langs/lo_LA/paypal.lang
+++ b/htdocs/langs/lo_LA/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Mode test/sandbox
 PAYPAL_API_USER=API username
 PAYPAL_API_PASSWORD=API password
 PAYPAL_API_SIGNATURE=API signature
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Offer payment "integral" (Credit card+Paypal) or "Paypal" only
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/lo_LA/products.lang b/htdocs/langs/lo_LA/products.lang
index 71c092300c19709800d3bbfb3b1ca9ff7f39982c..3e036b2e10da2fb0b5fe68bc93d7e21f71a645ba 100644
--- a/htdocs/langs/lo_LA/products.lang
+++ b/htdocs/langs/lo_LA/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Production completed
-ProductsMultiPrice=Product multi-price
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/lo_LA/projects.lang b/htdocs/langs/lo_LA/projects.lang
index b8b2ee85aacc9597e4b4df3f73ed6e0acb1bcab0..ff1499ae04cc57cf9a66f66cc95304782f76dc02 100644
--- a/htdocs/langs/lo_LA/projects.lang
+++ b/htdocs/langs/lo_LA/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=This view presents all projects (your user permissions grant you permission to view everything).
 MyTasksDesc=This view is limited to projects or tasks you are a contact for (whatever is the type).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=This view presents all projects and tasks you are allowed to read.
 TasksDesc=This view presents all projects and tasks (your user permissions grant you permission to view everything).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Officer project
 LastProjects=Last %s projects
 AllProjects=All projects
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=List of projects
 ShowProject=Show project
 SetProject=Set project
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/lo_LA/propal.lang b/htdocs/langs/lo_LA/propal.lang
index d12d7595f94d6a48a961cc635329e86ed543a7ea..79ae1f1cd50add8ebf9f9f1275481055ed84ce06 100644
--- a/htdocs/langs/lo_LA/propal.lang
+++ b/htdocs/langs/lo_LA/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Last %s modified proposals
 AllPropals=All proposals
 LastProposals=Last proposals
 SearchAProposal=Search a proposal
+NoProposal=No proposal
 ProposalsStatistics=Commercial proposal's statistics
 NumberOfProposalsByMonth=Number by month
 AmountOfProposalsByMonthHT=Amount by month (net of tax)
@@ -62,7 +63,8 @@ DatePropal=Date of proposal
 DateEndPropal=Validity ending date
 DateEndPropalShort=Date end
 ValidityDuration=Validity duration
-CloseAs=Close with status
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Classify billed
 BuildBill=Build invoice
 ErrorPropalNotFound=Propal %s not found
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Default model creation
 DefaultModelPropalToBill=Default template when closing a business proposal (to be invoiced)
 DefaultModelPropalClosed=Default template when closing a business proposal (unbilled)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/lo_LA/salaries.lang b/htdocs/langs/lo_LA/salaries.lang
index 953a9c7540cbb06d6209140b32aaa0d23261e324..da177410860fb80d4d2d0872ec3b258ed787ba0e 100644
--- a/htdocs/langs/lo_LA/salaries.lang
+++ b/htdocs/langs/lo_LA/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Salary
 Salaries=Salaries
-Employee=Employee
 NewSalaryPayment=New salary payment
 SalaryPayment=Salary payment
 SalariesPayments=Salaries payments
diff --git a/htdocs/langs/lo_LA/sendings.lang b/htdocs/langs/lo_LA/sendings.lang
index fa7da0b00794647c45f8777bbc68fb23a31e1c0e..fb7b9c08868e29621711a9651a94ed955c6b223f 100644
--- a/htdocs/langs/lo_LA/sendings.lang
+++ b/htdocs/langs/lo_LA/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Shipment
 Shipments=Shipments
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Shipments area
 ListOfSendings=List of shipments
 SendingMethod=Shipping method
diff --git a/htdocs/langs/lo_LA/sms.lang b/htdocs/langs/lo_LA/sms.lang
index 4e89bb247308eb692eef9e40892f306dda5dd27b..70066caac96971420d7c55b09879e200888763c2 100644
--- a/htdocs/langs/lo_LA/sms.lang
+++ b/htdocs/langs/lo_LA/sms.lang
@@ -49,5 +49,6 @@ SendSms=Send SMS
 SmsInfoCharRemain=Nb of remaining characters
 SmsInfoNumero= (format international ie : +33899701761)
 DelayBeforeSending=Delay before sending (minutes)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=No target available. Check setup of your SMS provider.
 
diff --git a/htdocs/langs/lo_LA/supplier_proposal.lang b/htdocs/langs/lo_LA/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/lo_LA/supplier_proposal.lang
+++ b/htdocs/langs/lo_LA/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/lo_LA/trips.lang b/htdocs/langs/lo_LA/trips.lang
index ce9f0970e7c331996ee194c7613983060795a647..5ccdf8d0e37dcf680cc33691fdce1fd5644f2d53 100644
--- a/htdocs/langs/lo_LA/trips.lang
+++ b/htdocs/langs/lo_LA/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Other
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Lunch
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/lo_LA/users.lang b/htdocs/langs/lo_LA/users.lang
index 3a80cfdb2002ed251f336d5509b2fdc61f5f1fe1..77df15016ac5c2959c0f2fe14d2c1de6f71a8ebb 100644
--- a/htdocs/langs/lo_LA/users.lang
+++ b/htdocs/langs/lo_LA/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Use OpenID to login
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/lt_LT/accountancy.lang b/htdocs/langs/lt_LT/accountancy.lang
index 969ba51cc7705147c17e7e230a1cf9ac3685d0cb..4d6869eecadb1c6825816fb61303d754ae0eaa5e 100644
--- a/htdocs/langs/lt_LT/accountancy.lang
+++ b/htdocs/langs/lt_LT/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Pasirinkite eksporto modelį
 Modelcsv_normal=Klasikinis eksportas
 Modelcsv_CEGID=Eksportas į CEGID ekspertą
 BackToChartofaccounts=Grįžti į sąskaitų planą
-Back=Grįžti
 
 Definechartofaccounts=Nustatyti sąskaitų planą
 Selectchartofaccounts=Pasirinkite sąskaitų planą
@@ -109,10 +108,6 @@ DelBookKeeping=Panaikinti Didžiosios knygos įrašus
 
 DescSellsJournal=Pardavimų žurnalas
 DescPurchasesJournal=Pirkimų žurnalas
-BankJournal=Banko žurnalas
-DescBankJournal=Banko žurnale įtraukiami visų tipų mokėjimai, išskyrus grynais pinigais
-CashJournal=Pinigų žurnalas
-DescCashJournal=Pinigų žurnale įtraukiami mokėjimai grynaisiais pinigais
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Patvirtinti automatiškai
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Suskirstymo kortelė
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/lt_LT/admin.lang b/htdocs/langs/lt_LT/admin.lang
index f7ce1aaa6c66fcfbd1da2e91a9dadb8d7a5489fa..8cf497a73ca16cf5b3b6e0c4470bf13a6bf04de6 100644
--- a/htdocs/langs/lt_LT/admin.lang
+++ b/htdocs/langs/lt_LT/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Generuojamuose PDF paslėpti visą informaciją, susi
 HideDescOnPDF=Generuojamuose PDF paslėpti produktų aprašymus
 HideRefOnPDF=Generuojamuose PDF paslėpti produktų referencijas
 HideDetailsOnPDF=Generuojamuose PDF paslėpti produktų linijų detales
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Biblioteka
 UrlGenerationParameters=URL apsaugos parametrai
 SecurityTokenIsUnique=Kiekvienam URL naudokite unikalų apsaugos rakto parametrą
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Ar jūs tikrai norite ištrinti visas esamas brūk
 AllBarcodeReset=Visos brūkšninių kodų vertės buvo ištrintos
 NoBarcodeNumberingTemplateDefined=Brūkšninių kodų numeracijos šablonas nėra įjungtas  brūkšninio kodo modulio konfigūracijoje.
 NoRecordWithoutBarcodeDefined=Nėra įrašo su neapibrėžta brūkšninio kodo verte.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Vartotojai ir grupės
@@ -499,7 +500,7 @@ Module510Desc=Darbuotojų darbo užmokesčio ir išmokų valdymas
 Module520Name=Paskola
 Module520Desc=Paskolų valdymas
 Module600Name=Pranešimai
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Parama
 Module700Desc=Paramos valdymas
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Vėlavimai prieš įspėjimą
 DelaysOfToleranceBeforeWarning=Vėlavimų prieš įspėjimą tolerancija
 DelaysOfToleranceDesc=Šis ekranas leidžia jums nustatyti toleruojamas vėlavimų prieš perspėjimus, pranešamus ekrane su piktograma %s, ribas kiekvienam vėluojamam elementui.
 Delays_MAIN_DELAY_ACTIONS_TODO=Vėlavimo tolerancija (dienų) prieš perspėjimo apie planuojamus įvykius nėra realizuota
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Vėlavimo tolerancija (dienų) prieš perspėjimo apie užsakymus dar nėra apdorota
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Vėlavimo tolerancija (dienų) prieš perspėjimą dėl tiekėjų užsakymų dar neapdorota
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Vėlavimo tolerancija (dienų) prieš perspėjimą dėl pasiūlymų uždaryti
@@ -1087,6 +1089,7 @@ PathDirectory=Katalogas
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Vertimo konfigūracija
 TranslationDesc=Kalbos pasirinkimas, matomas ekrane gali būti pakeistas:<br> * Visuotinai iš meniu <strong>Pagrindinis - Nuostatos - Ekranas</strong><br>* Vartotojui tik iš kortelės <strong>Vartotojo ekranas</strong> iš vartotojo kortelės (spustelėkite "Prisijungti" viršuje ekrano).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Iš viso aktyvių funkcijų modulių <b>%s</b>
 YouMustEnableOneModule=Jūs turite įjungti bent 1 modulį
 ClassNotFoundIntoPathWarning=Klasė %s nerasta į PHP kelią
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/lt_LT/agenda.lang b/htdocs/langs/lt_LT/agenda.lang
index ab3242020e237aa369989d8e549a724c812dfa07..50df961348c8eabafea98bfea33d70689b5b9514 100644
--- a/htdocs/langs/lt_LT/agenda.lang
+++ b/htdocs/langs/lt_LT/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Visi įvykiai/užduotys
 ViewCal=Mėnesio vaizdas
 ViewDay=Dienos vaizdas
 ViewWeek=Savaitės vaizdas
+ViewYear=Year view
 ViewPerUser=Vartotojo nuomone
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Peržiūrėti su nustatytais filtrais
 AutoActions= Automatinis užpildymas
 AgendaAutoActionDesc= Nustatykite įvykius, kuriems norite, kad Dolibarr sukurtų automatiškai įvykį operacijoje. Jei niekas nepažymėta (pagal nutylėjimą), tik rankomis įvesti veiksmai bus įtraukti į operaciją.
diff --git a/htdocs/langs/lt_LT/bills.lang b/htdocs/langs/lt_LT/bills.lang
index 262e61f26a10f1e9ea50c5bbf851a43fc20489b5..29a97b586afa7edc8f984164ffe0f758c597488c 100644
--- a/htdocs/langs/lt_LT/bills.lang
+++ b/htdocs/langs/lt_LT/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Jau atlikti mokėjimai
 PaymentsBackAlreadyDone=Jau atlikti mokėjimai atgal (grąžinimai)
 PaymentRule=Mokėjimo taisyklė
 PaymentMode=Mokėjimo būdas
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=Rodyti sąskaitą-faktūrą
 ShowInvoiceReplace=Rodyti pakeičiančią sąskaitą-faktūrą
 ShowInvoiceAvoir=Rodyti kreditinę sąskaitą
 ShowInvoiceDeposit=Rodyti depozito sąskaitą-faktūrą
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Rodyti mokėjimą
 AlreadyPaid=Jau apmokėta
 AlreadyPaidBack=Mokėjimas jau grąžintas
@@ -221,6 +224,7 @@ NonPercuRecuperable=Neatitaisomas
 SetConditions=Nustatykite mokėjimo terminus
 SetMode=Nustatykite mokėjimo būdą
 Billed=Pateikta sąskaita
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Šios sumos buvo atsisakyta (blogas klientas) ir ji yra l
 HelpAbandonOther=Šios sumos buvo atsisakyta, nes tai buvo klaida (pvz.: neteisingas klientas arba sąskaita-faktūra buvo pakeista kita)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Mokėjimo ID
+PaymentRef=Payment ref.
 InvoiceId=Sąskaitos-faktūros ID
 InvoiceRef=Sąskaitos-faktūros nuoroda
 InvoiceDateCreation=Sąskaitos-faktūros sukūrimo datą
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Nedelsiamas
@@ -393,6 +402,7 @@ Reported=Uždelstas
 DisabledBecausePayments=Neįmanoma nuo tada, kai atsirado kai kurie mokėjimai
 CantRemovePaymentWithOneInvoicePaid=Negalima pašalinti mokėjimo, nuo tada kai čia yra bent viena sąskaita-faktūra priskirta apmokėtoms
 ExpectedToPay=Laukiamas mokėjimas
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Sumokėta šiuo mokėjimu
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Priskirtii "Apmokėta" visas pilnai grąžintas kreditines sąskaitas.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Pastaba: Šis sąrašas rodo tik sąskaitas trečio
 RevenueStamp=Įplaukų rūšis
 YouMustCreateInvoiceFromThird=Ši opcija galima tik tada, kai kuriama sąskaita-faktūra iš trečiosios šalies kortelės "Klientas"
 PDFCrabeDescription=Sąskaitos-faktūros PDF šablonas Crabe. Pilnas sąskaitos-faktūros šablonas (rekomenduojamas Šablonas)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Grąžinimo numeris formatu %syymm-nnnn standartinėms sąskaitoms-faktūroms ir %syymm-nnnn kreditinėms sąskaitoms, kur yy yra metai, mm mėnuo ir nnnn yra seka be pertrūkių ir be grįžimo į 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=Sąskaita, prasidedanti $syymm, jau egzistuoja ir yra nesuderinama su šiuo sekos modeliu. Pašalinkite ją arba pakeiskite jį, kad aktyvuoti šį modulį.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/lt_LT/boxes.lang b/htdocs/langs/lt_LT/boxes.lang
index e2be665ce637ada11cc6a365f2cfa2a19f9f83bf..5848431ce7fa0c3065c68751c7de01e00ac1c17d 100644
--- a/htdocs/langs/lt_LT/boxes.lang
+++ b/htdocs/langs/lt_LT/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Klientų sąskaitos-faktūros
 ForCustomersOrders=Klientų užsakymai
 ForProposals=Pasiūlymai
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/lt_LT/categories.lang b/htdocs/langs/lt_LT/categories.lang
index 1f8e6b3f380ee8dd78853f33bc7b9f1ccaf2ce41..4ad628fc6d51dda73ec0e525e0893d84fefd2159 100644
--- a/htdocs/langs/lt_LT/categories.lang
+++ b/htdocs/langs/lt_LT/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Klientų/Planų kategorijos
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/lt_LT/companies.lang b/htdocs/langs/lt_LT/companies.lang
index dbf929a89b06c7e47baa76ceda380120dd76a8a5..5c813b66e9a559d3e3518365f13a7a3b816e58bc 100644
--- a/htdocs/langs/lt_LT/companies.lang
+++ b/htdocs/langs/lt_LT/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Prof ID 1 (RC)
 ProfId2MA=Prof ID 2 (patente)
 ProfId3MA=Prof ID 3 (IF)
 ProfId4MA=Prof ID 4 (CNSS)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof ID 1 (RFC).
 ProfId2MX=Prof ID 2 (R.. P. IMSS)
diff --git a/htdocs/langs/lt_LT/compta.lang b/htdocs/langs/lt_LT/compta.lang
index 929cdfd20eea8128c15469ce85fda87e8d78b58b..9e12aef11f8e7b8b8fae3f89607193e052538ed5 100644
--- a/htdocs/langs/lt_LT/compta.lang
+++ b/htdocs/langs/lt_LT/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Depozitų sąskaitos-faktūros neįtrauktos
 DepositsAreIncluded=- Depozitų sąskaitos-faktūros yra įtrauktos
 LT2ReportByCustomersInInputOutputModeES=Ataskaita pagal trečiosios šalies IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Ataskaita pagal Kliento gautą ir sumokėtą PVM
 VATReportByCustomersInDueDebtMode=Ataskaita pagal Kliento gautą ir sumokėtą PVM
 VATReportByQuartersInInputOutputMode=Ataskaita pagal gauto ir sumokėto PVM tarifą
diff --git a/htdocs/langs/lt_LT/cron.lang b/htdocs/langs/lt_LT/cron.lang
index b5c06f3b1e5b059a60776c5059544f023af0157b..55a9802fe0d97aa14e3f224a04974da4917dd6fd 100644
--- a/htdocs/langs/lt_LT/cron.lang
+++ b/htdocs/langs/lt_LT/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Suplanuoti darbai
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=Išjungtų darbų sąrašas
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Paskutinis paleistas
 CronLastOutput=Paskutinė paleista išvestis
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Darbas
 CronNone=Nė vienas
-CronDtStart=Pradžios data
-CronDtEnd=Pabaigos data
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Kitas vykdymas
 CronDtLastLaunch=Paskutinis vykdymas
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=Nėra registruotų darbų
 CronPriority=Prioritetas
 CronLabel=Aprašymas
 CronNbRun=Pradėti skaičių
+CronMaxRun=Max nb. launch
 CronEach=Kiekvienas
 JobFinished=Darbas pradėtas ir baigtas
 #Page card
diff --git a/htdocs/langs/lt_LT/deliveries.lang b/htdocs/langs/lt_LT/deliveries.lang
index 4170e33a9bb81b8220ee2a6a88a09df8a5b15cec..0bededc1c8a21923e224eb6fc65e9b11f03c422f 100644
--- a/htdocs/langs/lt_LT/deliveries.lang
+++ b/htdocs/langs/lt_LT/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Ar tikrai norite ištrinti pristatymo kvitą <b>%s<
 DeliveryMethod=Pristatymo būdas
 TrackingNumber=Sekimo numeris
 DeliveryNotValidated=Pristatymas nepatvirtintas
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Vardas, Pavardė ir parašas:
 ToAndDate=Kam___________________________________ nuo ____ / _____ / __________
diff --git a/htdocs/langs/lt_LT/holiday.lang b/htdocs/langs/lt_LT/holiday.lang
index 2c5a0bc692e19cefbb7903b5dafbd35c82562b9a..ed88fc73ad039a0a30fc0d683e0f08aba6fdb629 100644
--- a/htdocs/langs/lt_LT/holiday.lang
+++ b/htdocs/langs/lt_LT/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Darbuotojas
 DateDebCP=Pradžios data
 DateFinCP=Pabaigos data
 DateCreateCP=Sukūrimo data
@@ -23,7 +22,7 @@ ReviewedByCP=Bus peržiūrėtas
 DescCP=Aprašymas
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=Turite pasirinkti pabaigos datą didesnę nei pradžios data.
@@ -79,9 +78,9 @@ PrevSoldeCP=Ankstesnis balansas
 NewSoldeCP=Naujas balansas
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Pavadinimas/vardas
-Employee=Darbuotojas
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Mėnesio atnaujinimas
 ManualUpdate=Rankinis atnaujinimas
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/lt_LT/hrm.lang b/htdocs/langs/lt_LT/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/lt_LT/hrm.lang
+++ b/htdocs/langs/lt_LT/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/lt_LT/interventions.lang b/htdocs/langs/lt_LT/interventions.lang
index ef35a1a054b9c7a5480e5cd76656e9013d5c06cb..d9d63843d2f9755de6be5eb37e8df59973f23138 100644
--- a/htdocs/langs/lt_LT/interventions.lang
+++ b/htdocs/langs/lt_LT/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Grąžinti numerį su formatu %syymm-nnnn, kur yy yra me
 PacificNumRefModelError=Intervencijos kortelė pradedant $syymm jau egzistuoja ir yra nesuderinama su šios sekos modeliu. Pašalinti ją arba pakeisti vardą šio modulio aktyvavimui.
 PrintProductsOnFichinter=Spausdinti produktus intervencinėje kortelėje
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/lt_LT/mails.lang b/htdocs/langs/lt_LT/mails.lang
index 2506edee9230414cfcf8f966e8ac05afb2fce324..5721c2b7cfcd97378ea6e4da97cddc9f7c45d5ac 100644
--- a/htdocs/langs/lt_LT/mails.lang
+++ b/htdocs/langs/lt_LT/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=E-laiškas išsiųstas %s gavėjams.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=Dokumentas, naudojantis sąskaitos-faktūros šabloną pagal nutylėjimą, bus sukurtas ir pridedamas prie kiekvieno e-laiško.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Sąskaitos-faktūros %s (%s) priminimas
 SendRemind=Siųsti priminimą e-paštu
 RemindSent=%s priminimas (-ai) išsiųstas (-i)
diff --git a/htdocs/langs/lt_LT/main.lang b/htdocs/langs/lt_LT/main.lang
index cd39ba3706bca331c5535e3139764506eb04ec6b..ed08dd68885ddfa1afbd75f8285c593f247e788c 100644
--- a/htdocs/langs/lt_LT/main.lang
+++ b/htdocs/langs/lt_LT/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=Prisijungimas prie duomenų bazės
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Nėra vertimo
 NoRecordFound=Įrašų nerasta
 NoError=Klaidos nėra
@@ -105,6 +106,7 @@ NotePrivate=Pastaba (privati)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr buvo nustatytas vieneto kainos tikslumas iki <b>%s</b> skaičių po kablelio.
 DoTest=Bandymas
 ToFilter=Filtras
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Įspėjimas, Jūs turite bent vieną elementą, kuris viršijo leistiną vėlavimo nuokrypį.
 yes=taip
 Yes=Taip
@@ -228,6 +230,8 @@ Now=Dabar
 HourStart=Pradėti valandą
 Date=Data
 DateAndHour=Data ir valanda
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Pradžios data
 DateEnd=Pabaigos data
 DateCreation=Sukūrimo data
@@ -608,6 +612,7 @@ TotalMan=Visas
 NeverReceived=Niekada negautas
 Canceled=Atšauktas
 YouCanChangeValuesForThisListFromDictionarySetup=Jūs galite pakeisti reikšmes šiame sąraše iš meniu Nustatymai-Žodynas
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Spalva
 Documents=Susieti failai
 DocumentsNb=Susieti failai (%s)
@@ -695,6 +700,7 @@ Test=Bandymas
 Element=Elementas
 NoPhotoYet=Galimų nuotraukų dar nėra
 HomeDashboard=Pagrindinio suvestinė
+Dashboard=Dashboard
 Deductible=Atimamas
 from=nuo
 toward=būsimas
diff --git a/htdocs/langs/lt_LT/margins.lang b/htdocs/langs/lt_LT/margins.lang
index ab49a05217651515b4e491df79fe597e2720ef36..086747cd416afa6e8db4747e6f3261f2b83eb19b 100644
--- a/htdocs/langs/lt_LT/margins.lang
+++ b/htdocs/langs/lt_LT/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Pasirinkite produktą ar paslaugą
 StartDate=Pradžios data
 EndDate=Pabaigos data
 Launch=Pradžia
-ForceBuyingPriceIfNull=Priverstinė pirkimo kaina, jei nulis
-ForceBuyingPriceIfNullDetails=Jei "ON", marža bus 0 (pirkimo kaina = pardavimo kaina), kitaip ("OFF"), marža bus lygi pardavimo kainai (pirkimo kaina = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Maržos metodas visuotinėms nuolaidoms
 UseDiscountAsProduct=Kaip produktas
 UseDiscountAsService=Kaip paslauga
@@ -35,8 +35,9 @@ MargeBrute=Maržos eilutė
 MargeNette=Grynojo pelno marža
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Maržos eilutė: Pardavimo kaina - Pirkimo kaina<br/> Grynoji marža: Pardavimo kaina - Savikaina
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Savikaina
 BuyingCost=Savikaina
 UnitCharges=Vieneto sąnaudos
diff --git a/htdocs/langs/lt_LT/oauth.lang b/htdocs/langs/lt_LT/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/lt_LT/oauth.lang
+++ b/htdocs/langs/lt_LT/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/lt_LT/orders.lang b/htdocs/langs/lt_LT/orders.lang
index d39cc8dcbdad47f6cc83499aab3f02d4a5b03166..97b770f025e763e339fe991c7be2bf13e1857dba 100644
--- a/htdocs/langs/lt_LT/orders.lang
+++ b/htdocs/langs/lt_LT/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=Nėra užsakymų projektų
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Kiti užsakymai
 LastOrders=Paskutinio %s kliento užsakymai
diff --git a/htdocs/langs/lt_LT/other.lang b/htdocs/langs/lt_LT/other.lang
index 52530c6b5b855d2704cea7fa0cc2d07b82d5d742..96d214fc6207c7524618b427c174c75993992cee 100644
--- a/htdocs/langs/lt_LT/other.lang
+++ b/htdocs/langs/lt_LT/other.lang
@@ -238,3 +238,8 @@ ToExport=Eksportas
 NewExport=Naujas eksportas
 ##### External sites #####
 ExternalSites=Išorinės svetainės
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/lt_LT/paypal.lang b/htdocs/langs/lt_LT/paypal.lang
index 91cdefe58b785aac724a77717fa31c82f70d2b64..d621c72b088bc6addee5b7ec7a508d208d335f5e 100644
--- a/htdocs/langs/lt_LT/paypal.lang
+++ b/htdocs/langs/lt_LT/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Režimas testas/smėlio dėžė (Sandbox)
 PAYPAL_API_USER=API vartotojo vardas
 PAYPAL_API_PASSWORD=API slaptažodis
 PAYPAL_API_SIGNATURE=API parašas
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Siūlyti mokėjimą "integruotas" (kredito kortelė+PayPal) arba tik PayPal
 PaypalModeIntegral=Integruotas
 PaypalModeOnlyPaypal=Tik PayPal
diff --git a/htdocs/langs/lt_LT/products.lang b/htdocs/langs/lt_LT/products.lang
index db586f086d01c6829a6a8585011f899e1d274c5a..099020933e25aaee627f0f6972b17474c12b7dfb 100644
--- a/htdocs/langs/lt_LT/products.lang
+++ b/htdocs/langs/lt_LT/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Grynoji vieneto VWAP
 CostPmpHT=Grynasis visų VWAP
 ProductUsedForBuild=Auto suvartotojimas pagal gamybą
 ProductBuilded=Gamyba baigta
-ProductsMultiPrice=Produkto multi-kaina
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/lt_LT/projects.lang b/htdocs/langs/lt_LT/projects.lang
index 282309a1a42c01b7b078f5cb42df0e2879035976..f68612c8836e1deee5494d6ac804035f36f537fd 100644
--- a/htdocs/langs/lt_LT/projects.lang
+++ b/htdocs/langs/lt_LT/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=Čia rodomi visi projektai ir užduotys, kuriuos Jums lei
 ProjectsDesc=Šis vaizdas rodo visus projektus (Jūsų vartotojo teisės leidžia matyti viską).
 MyTasksDesc=Šis vaizdas yra ribotas projektams ar užduotims, kuriems Jūs esate kontaktinis asmuo (koks bebūtų tipas).
 OnlyOpenedProject=Matomi tik atidaryti projektai (projektai juodraščiai ar uždaryti projektai nematomi).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Šis vaizdas rodo visus projektus ir užduotis, kuriuos Jums leidžiama skaityti.
 TasksDesc=Šis vaizdas rodo visus projektus ir užduotis (Jūsų vartotojo teisės leidžia matyti viską).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Projekto darbuotojas
 LastProjects=Paskutiniai %s projektai
 AllProjects=Visi projektai
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Projektų sąrašas
 ShowProject=Rodyti projektą
 SetProject=Nustatykite projektą
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Užduotis %s modifikuota
 TaskDeletedInDolibarr=Užduotis %s ištrinta
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projektai su šiuo vartotoju kaip kontaktu.
 TasksWithThisUserAsContact=Užduotys, priskirtos šiam vartotojui
 ResourceNotAssignedToProject=Nepriskirtas projektui
 ResourceNotAssignedToTask=Nepriskirtas užduočiai
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/lt_LT/propal.lang b/htdocs/langs/lt_LT/propal.lang
index 77599bf8407c2ce23593164fad2e896e37e9764f..1c2e8b83c6eef947ea540455281ceee9a8cc26d1 100644
--- a/htdocs/langs/lt_LT/propal.lang
+++ b/htdocs/langs/lt_LT/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Paskutiniai %s modifikuoti pasiūlymai
 AllPropals=Visi pasiūlymai
 LastProposals=Naujausi pasiūlymai
 SearchAProposal=Ieškoti pasiūlymo
+NoProposal=No proposal
 ProposalsStatistics=Komercinių pasiūlymų statistika
 NumberOfProposalsByMonth=Skaičius pagal mėnesį
 AmountOfProposalsByMonthHT=Suma pagal mėnesį (atskaičius mokesčius)
@@ -62,7 +63,8 @@ DatePropal=Pasiūlymo data
 DateEndPropal=Galiojimo pabaigos data
 DateEndPropalShort=Datos pabaiga
 ValidityDuration=Galiojimo trukmė
-CloseAs=Uždaryti su statusu
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Klasifikuoti su pateiktomis sąskaitomis-faktūromis
 BuildBill=Sukurti sąskaitą-faktūrą
 ErrorPropalNotFound=Pasiūlymas %s nerastas
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Modelio sukūrimas pagal nutylėjimą
 DefaultModelPropalToBill=Šablonas pagal nutylėjimą, kai uždaromas verslo pasiūlymas (turi būti išrašyta sąskaita-faktūra)
 DefaultModelPropalClosed=Šablonas pagal nutylėjimą, kai uždaromas verslo pasiūlymas (sąskaita-faktūra neišrašoma)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/lt_LT/salaries.lang b/htdocs/langs/lt_LT/salaries.lang
index e0345836347ab8ec522811968ed4cef44d3beb7e..900126cb239048ac0903497d05fc51fddeb2c239 100644
--- a/htdocs/langs/lt_LT/salaries.lang
+++ b/htdocs/langs/lt_LT/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Atlyginimas
 Salaries=Atlyginimai
-Employee=Darbuotojas
 NewSalaryPayment=Naujas atlyginimo mokėjimas
 SalaryPayment=Atlyginimo mokėjimas
 SalariesPayments=Atlyginimų mokėjimai
diff --git a/htdocs/langs/lt_LT/sendings.lang b/htdocs/langs/lt_LT/sendings.lang
index 423157296b2792b680140554c9564740c9d13651..f11f9e128a590cb9cf49ba70cc3dcd9cadec7c20 100644
--- a/htdocs/langs/lt_LT/sendings.lang
+++ b/htdocs/langs/lt_LT/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Siunta
 Shipments=Pakrovimai
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Gabenimų sritis
 ListOfSendings=Gabenimų sąrašas
 SendingMethod=Gabenimo metodas
diff --git a/htdocs/langs/lt_LT/sms.lang b/htdocs/langs/lt_LT/sms.lang
index fdd4438039b4f4ef34b00717a3e2686aeda3432c..d401d3c62ee47f79ad76b171d40a8fe645af33e9 100644
--- a/htdocs/langs/lt_LT/sms.lang
+++ b/htdocs/langs/lt_LT/sms.lang
@@ -49,5 +49,6 @@ SendSms=Siųsti SMS
 SmsInfoCharRemain=Likusių simbolių skaičius
 SmsInfoNumero= (Tarptautinis formatas, pvz.: +33899701761)
 DelayBeforeSending=Siuntimo uždelsimas (minutėmis)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Negalima užduotis. Patikrinkite Jūsų SMS paslaugų tiekėjo nustatymus.
 
diff --git a/htdocs/langs/lt_LT/supplier_proposal.lang b/htdocs/langs/lt_LT/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/lt_LT/supplier_proposal.lang
+++ b/htdocs/langs/lt_LT/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/lt_LT/trips.lang b/htdocs/langs/lt_LT/trips.lang
index 45ab1e3c21a2f0c281a3ccf2dd23be1655c23eb3..7230ba19e5957f1ac81693b440fa2c25ee73a389 100644
--- a/htdocs/langs/lt_LT/trips.lang
+++ b/htdocs/langs/lt_LT/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informacijos išlaidų ataskaiata
 PDFStandardExpenseReports=Standartinis šablonas PDF dokumento išlaidų ataskaitoje generavimui
 ExpenseReportLine=Išlaidų ataskaitos eilutė
 TF_OTHER=Kitas
-TF_TRANSPORTATION=Transportas
+TF_TRIP=Transportation
 TF_LUNCH=Pietūs
 TF_METRO=Metro
 TF_TRAIN=Traukinys
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Ar tikrai norite patvirtinti šią išlaidų ataskaitą ?
 NoTripsToExportCSV=Už šį laikotarpį nėra išlaidų ataskaitų eksportui
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/lt_LT/users.lang b/htdocs/langs/lt_LT/users.lang
index daf1f2d6bcef55081aa87072af19c74684d1a559..7787f1d7da4610316a985890056e6a22d5e96924 100644
--- a/htdocs/langs/lt_LT/users.lang
+++ b/htdocs/langs/lt_LT/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Prisijungimui naudoti OpenID
 WeeklyHours=Savaitės valandos
 ColorUser=Vartotojo spalva
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/lv_LV/accountancy.lang b/htdocs/langs/lv_LV/accountancy.lang
index 44b4f00c0f329b6f772b7dd0b8927884dfdbf19e..8bd914d3aa8957e6b8a5509377a5e241b34b8c2d 100644
--- a/htdocs/langs/lv_LV/accountancy.lang
+++ b/htdocs/langs/lv_LV/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Klasiskais eksports
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Atgriezšana
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Pārdošanas žurnāls
 DescPurchasesJournal=Pirkumu žurnāls
-BankJournal=Bankas žurnāls
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Skaidras naudas žurnāls
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -162,12 +157,18 @@ Prefixname=Prefix of export File
 Separate=Export separator
 Textframe=Frame of text value
 Headercol=Colname in header of file
-Fieldname=Name of Field
-Headername=Name in header
-Type=Type of fields
-Param=Additionnal parameters
+Fieldname=Lauka nosaukums
+Headername=Galvenes nosaukums
+Type=Lauka veids
+Param=Papildus parametri
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/lv_LV/admin.lang b/htdocs/langs/lv_LV/admin.lang
index b6a537e78828c10faf8735d2621c26b300ea0df8..d816876361d11bf042409660ea5ae91d993a9327 100644
--- a/htdocs/langs/lv_LV/admin.lang
+++ b/htdocs/langs/lv_LV/admin.lang
@@ -149,7 +149,7 @@ LangFile=. lang fails
 System=Sistēma
 SystemInfo=Sistēmas informācija
 SystemToolsArea=Sistēmas rīku iestatīšana
-SystemToolsAreaDesc=Šī joma piedāvā administrēšanas funkcijas. Lietojiet izvēlni, lai izvēlētos funkciju, jūs meklējat.
+SystemToolsAreaDesc=Šī sadaļa piedāvā administrēšanas funkcijas. Lietojiet izvēlni, lai izvēlētos funkciju kuru Jūs meklējat.
 Purge=Tīrīt
 PurgeAreaDesc=Šī lapa ļauj izdzēst visus failus būvēts vai glabā Dolibarr (pagaidu failus vai visus failus <b>%s</b> direktorijā). Izmantojot šo funkciju, nav nepieciešama. Tas ir paredzēts lietotājiem, kuru Dolibarr tiek rīkots sniedzējs, kas nepiedāvā atļaujas, lai dzēstu failus būvēts ar web serveri.
 PurgeDeleteLogFile=Dzēst log failu <b>%s</b> definēti Syslog modulim (nav risks zaudēt datus)
@@ -246,7 +246,7 @@ ReferencedPreferredPartners=Preferred Partners
 OtherResources=Autres ressources
 ForDocumentationSeeWiki=Par lietotāju vai attīstītājs dokumentācijas (Doc, FAQ ...), <br> ieskatieties uz Dolibarr Wiki: <br> <a href="%s" target="_blank"><b>%s</b></a>
 ForAnswersSeeForum=Attiecībā uz jebkuru citu jautājumu / palīdzēt, jūs varat izmantot Dolibarr forumu: <br> <a href="%s" target="_blank"><b>%s</b></a>
-HelpCenterDesc1=Šī joma var palīdzēt jums, lai saņemtu palīdzības atbalsta dienests par Dolibarr.
+HelpCenterDesc1=Šī sadaļa var palīdzēt jums, lai saņemtu palīdzības dienesta atbalstu Dolibarr programmai.
 HelpCenterDesc2=Daži no šo pakalpojumu daļa ir pieejama <b>tikai angļu valodā.</b>
 CurrentTopMenuHandler=Pašreizējā top menu apdarinātājs
 CurrentLeftMenuHandler=Pašreizējā kreisā izvēlne kopējs
@@ -257,7 +257,7 @@ Emails=E-pasti
 EMailsSetup=E-pastu iestatīšana
 EMailsDesc=Šī lapa ļauj pārrakstīt jūsu PHP parametrus par e-pastu sūtīšanu. Vairumā gadījumu  Unix / Linux OS, jūsu PHP uzstādījumi ir pareizi, un šie parametri ir bezjēdzīgi.
 MAIN_MAIL_SMTP_PORT=SMTP / SMTPS Ports (Pēc noklusējuma php.ini: <b>%s)</b>
-MAIN_MAIL_SMTP_SERVER=SMTP / SMTPS Host (Pēc noklusējuma php.ini: <b>%s)</b>
+MAIN_MAIL_SMTP_SERVER=SMTP / SMTPS serveris (Pēc noklusējuma php.ini: <b>%s)</b>
 MAIN_MAIL_SMTP_PORT_NotAvailableOnLinuxLike=SMTP / SMTPS Port (Nav noteikts uz PHP uz Unix, piemēram, sistēmas)
 MAIN_MAIL_SMTP_SERVER_NotAvailableOnLinuxLike=SMTP / SMTPS Host (Nav noteikts uz PHP uz Unix, piemēram, sistēmas)
 MAIN_MAIL_EMAIL_FROM=Sūtītāja e-pasts automātiskajiem e-pastiem (Pēc noklusējuma php.ini: <b>%s)</b>
@@ -281,8 +281,8 @@ ModuleSetup=Moduļa iestatīšana
 ModulesSetup=Moduļu iestatīšana
 ModuleFamilyBase=Sistēma
 ModuleFamilyCrm=Klientu pārvaldība (CRM)
-ModuleFamilyProducts=Products Management (PM)
-ModuleFamilyHr=Human Resource Management (HR)
+ModuleFamilyProducts=Produktu Pārvaldība (PP)
+ModuleFamilyHr=Darbinieku resursu pārvaldība (DRP)
 ModuleFamilyProjects=Projekti / Sadarbības darbi
 ModuleFamilyOther=Cits
 ModuleFamilyTechnic=Multi-moduļu rīki
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Paslēpt visu informāciju, kas saistīta ar PVN, izv
 HideDescOnPDF=Slēpt produktu aprakstu radītos PDF
 HideRefOnPDF=Slēpt produktu ref. izveidotajos PDF
 HideDetailsOnPDF=Paslēpt produktu līnijas informāciju izveidotajā PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Bibliotēka
 UrlGenerationParameters=Parametri, lai nodrošinātu drošas saites
 SecurityTokenIsUnique=Izmantojiet unikālu securekey parametrs katram URL
@@ -393,8 +393,8 @@ ExtrafieldLink=Link to an object
 ExtrafieldParamHelpselect=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...<br><br>In order to have the list depending on another :<br>1,value1|parent_list_code:parent_key<br>2,value2|parent_list_code:parent_key
 ExtrafieldParamHelpcheckbox=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
 ExtrafieldParamHelpradio=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
-ExtrafieldParamHelpsellist=Parameters list comes from a table<br>Syntax : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntaxt  extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
-ExtrafieldParamHelpchkbxlst=Parameters list comes from a table<br>Syntax : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntaxt  extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
+ExtrafieldParamHelpsellist=Parameters list comes from a table<br>Syntax : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntaxt extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
+ExtrafieldParamHelpchkbxlst=Parameters list comes from a table<br>Syntax : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntaxt extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
 ExtrafieldParamHelplink=Parameters must be ObjectName:Classpath<br>Syntax : ObjectName:Classpath<br>Example : Societe:societe/class/societe.class.php
 LibraryToBuildPDF=Bibliotēka, lai izveidotu PDF
 WarningUsingFPDF=Uzmanību: Jūsu <b>conf.php</b> satur direktīvu <b>dolibarr_pdf_force_fpdf = 1.</b> Tas nozīmē, ka jūs izmantojat FPDF bibliotēku, lai radītu PDF failus. Šī bibliotēka ir vecs un neatbalsta daudz funkcijām (Unicode, attēlu pārredzamība, kirilicas, arābu un Āzijas valodās, ...), tāpēc var rasties kļūdas laikā PDF paaudzes. <br> Lai atrisinātu šo problēmu, un ir pilnībā atbalsta PDF paaudzes, lūdzu, lejupielādējiet <a href="http://www.tcpdf.org/" target="_blank">TCPDF bibliotēka</a> , tad komentēt vai noņemt līnijas <b>$ dolibarr_pdf_force_fpdf = 1,</b> un pievienojiet vietā <b>$ dolibarr_lib_TCPDF_PATH = 'path_to_TCPDF_dir'</b>
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Vai tiešām vēlaties dzēst visas svītrkodu vē
 AllBarcodeReset=Visas svītrkodu vērtības dzēstas
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Lietotāji un grupas
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Paziņojumi
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Ziedojumi
 Module700Desc=Ziedojumu pārvaldība
 Module770Name=Expense reports
@@ -661,7 +662,7 @@ Permission204=Pasūtīt savienojumi
 Permission205=Pārvaldīt savienojumus
 Permission206=Lasīt savienojumi
 Permission211=Lasīt telefoniju
-Permission212=Pasūtīt līnijas
+Permission212=Pasūtījuma līnijas
 Permission213=Aktivizēt līniju
 Permission214=Iestatīt telefoniju
 Permission215=Iestatījumi piegādātājiem
@@ -687,7 +688,7 @@ Permission256=Izdzēst vai bloķēt citus lietotājus
 Permission262=Paplašināt piekļuvi visām trešajām personām (ne tikai tiem, kas saistīti ar lietotāju). Nav efektīvi ārējiem lietotājiem (vienmēr ir tikai uz sevi).
 Permission271=Lasīt CA
 Permission272=Lasīt rēķinus
-Permission273=Izrakstot rēķinus
+Permission273=Izrakstīt rēķinus
 Permission281=Lasīt kontaktus
 Permission282=Izveidot/mainīt kontaktus
 Permission283=Dzēst kontaktus
@@ -906,7 +907,7 @@ DatabasePassword=Datubāzes parole
 DatabaseConfiguration=Datubāzes iestatīšana
 Tables=Tabulas
 TableName=Tabulas nosaukums
-TableLineFormat=Līnija formāts
+TableLineFormat=Līnijas formāts
 NbOfRecord=Ierakstu skaits
 Constraints=Ierobežojumi
 ConstraintsType=Ierobežojumi veids
@@ -920,17 +921,17 @@ SystemUpdate=Sistēmas atjaunināšana
 SystemSuccessfulyUpdate=Jūsu sistēma ir atjaunināta veiksmīgi
 MenuCompanySetup=Kompānija/Organizācija
 MenuNewUser=Jauns lietotājs
-MenuTopManager=Top menu vadītājs
-MenuLeftManager=Kreisā izvēlne vadītājs
+MenuTopManager=Augšējās izvēlnes menedžeris
+MenuLeftManager=Kreisās izvēlnes menedžeris
 MenuSmartphoneManager=Viedtālruņa izvēlnes konfigurēšana
-DefaultMenuTopManager=Top menu vadītājs
-DefaultMenuLeftManager=Kreisā izvēlne vadītājs
-DefaultMenuManager= Standarta izvēlne vadītājs
+DefaultMenuTopManager=Augšējās izvēlnes menedžeris
+DefaultMenuLeftManager=Kreisās izvēlnes menedžeris
+DefaultMenuManager= Standarta izvēlnes menedžeris
 DefaultMenuSmartphoneManager=Viedtālruņa izvēlnes vadība
 Skin=Izskats
 DefaultSkin=Noklusētais izskats
 MaxSizeList=Maksimālais saraksta garums
-DefaultMaxSizeList=Default max length for lists
+DefaultMaxSizeList=Noklusētais maksimālais sarakstu garums
 DefaultMaxSizeShortList=Default max length for short lists (ie in customer card)
 MessageOfDay=Dienas ziņa
 MessageLogin=Iežurnalēšanās lapas paziņojums
@@ -939,8 +940,8 @@ DefaultLanguage=Noklusējuma izmantošanas valoda (valodas kods)
 EnableMultilangInterface=Iespējot daudzvalodu interfeisu
 EnableShowLogo=Rādīt logotipu kreisajā izvēlnē
 SystemSuccessfulyUpdated=Jūsu sistēma ir veiksmīgi atjaunināta
-CompanyInfo=Uzņēmuma / nodibinājums informācija
-CompanyIds=Uzņēmuma / nodibinājums identitātes
+CompanyInfo=Uzņēmuma / nodibinājuma informācija
+CompanyIds=Uzņēmuma / nodibinājuma identitātes
 CompanyName=Nosaukums
 CompanyAddress=Adrese
 CompanyZip=Pasta indekss
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Kavēšanās pirms brīdinājuma
 DelaysOfToleranceBeforeWarning=Pielaide kavēšanās pirms brīdinājums
 DelaysOfToleranceDesc=Šis ekrāns ļauj definēt nepanesamas kavēšanos, pirms brīdinājums tiek ziņots uz ekrāna ar Piktogramma %s par katru nokavēto elementam.
 Delays_MAIN_DELAY_ACTIONS_TODO=Kavēšanās pielaide (dienās) pirms brīdinājumu par plānotajiem notikumiem, kas vēl nav realizēti
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Kavēšanās pielaide (dienās) pirms brīdinājumu par pasūtījumiem vēl nav apstrādāti
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Kavēšanās pielaide (dienās) pirms brīdinājumu par piegādātāju pasūtījumiem vēl nav apstrādāti
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Kavēšanās pielaide (dienās) pirms brīdinājums par priekšlikumiem, lai aizvērtu
@@ -1087,6 +1089,7 @@ PathDirectory=Katalogs
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Tulkojumu konfigurēšana
 TranslationDesc=Valodu izvēli redzamu uz ekrāna var mainīt: <br> * Globāli no izvēlnes <strong>Mājās - Iestatījumi - Attēlojums</strong> <br> * Lietotājam tikai no sadaļas <strong>lietotāja attēlošanas iestatīšana</strong> lietotāja kartiņā (uzklikšķiniet uz pieteikšanās vārda lapas augšpusē).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Aktivēto moduļu kopskaits: <b>%s</b>
 YouMustEnableOneModule=Jums ir jābūt ieslēgtam vismaz 1 modulim
 ClassNotFoundIntoPathWarning=Klase %s nav atrasta PHP norādītajā ceļā
@@ -1219,7 +1222,7 @@ WatermarkOnDraftOrders=Ūdenszīme projektu pasūtījumiem (none ja tukšs)
 ShippableOrderIconInList=Add an icon in Orders list which indicate if order is shippable
 BANK_ASK_PAYMENT_BANK_DURING_ORDER=Ask for bank account destination of order
 ##### Clicktodial #####
-ClickToDialSetup=Klikšķiniet Dial moduļa uzstādīšanas
+ClickToDialSetup=Klikšķiniet lai  Dial moduļa uzstādīšanas
 ClickToDialUrlDesc=Url sauc, kad uz tālruņa Piktogramma klikšķis tiek darīts. In URL, jūs varat izmantot tagus <br> <b>__PHONETO__</b> Kas tiks aizstāts ar tālruņa numuru personai, lai izsauktu <br> <b>__PHONEFROM__</b> Kas tiks aizstāts ar tālruņa numuru, aicinot personas (jūsu) <br> <b>__LOGIN__</b> Kas tiks aizstāts ar jūsu clicktodial pieteikšanās (definēts jūsu lietotāja kartes) <br> <b>__PASS__</b> Kas tiks aizstāts ar jūsu clicktodial paroli (definēts jūsu lietotāja kartes).
 ##### Bookmark4u #####
 Bookmark4uSetup=Bookmark4u moduļa iestatīšana
@@ -1316,8 +1319,8 @@ LDAPUnbindSuccessfull=Atvienošanās veiksmīga
 LDAPUnbindFailed=Atvienoties neizdevās
 LDAPConnectToDNSuccessfull=Savienojums ar DN (%s) veiksmīgs
 LDAPConnectToDNFailed=Savienojums ar DN (%s) neizdevās
-LDAPSetupForVersion3=LDAP serveris konfigurēts 3 versijas
-LDAPSetupForVersion2=LDAP serveris konfigurēta 2 versiju
+LDAPSetupForVersion3=LDAP serveris konfigurēts 3 versijai
+LDAPSetupForVersion2=LDAP serveris konfigurēta 2 versijai
 LDAPDolibarrMapping=Dolibarr kartēšana
 LDAPLdapMapping=LDAP kartēšana
 LDAPFieldLoginUnix=Lietotājs (Unix)
@@ -1332,7 +1335,7 @@ LDAPFieldPassword=Parole
 LDAPFieldPasswordNotCrypted=Parole nav šifrēta
 LDAPFieldPasswordCrypted=Parole šifrēta
 LDAPFieldPasswordExample=Piemērs: lietotajaParole
-LDAPFieldCommonName=Parastais nosaukums
+LDAPFieldCommonName=Vispārējais nosaukums
 LDAPFieldCommonNameExample=Piemērs: cn
 LDAPFieldName=Nosaukums
 LDAPFieldNameExample=Piemērs: sn
@@ -1507,14 +1510,14 @@ Menus=Izvēlnes
 TreeMenuPersonalized=Personalizētas izvēlnes
 NewMenu=Jauna izvēlne
 MenuConf=Izvēlnes iestatīšana
-Menu=Atlase izvēlnes
+Menu=Izvēlnes izvēlēšanās
 MenuHandler=Izvēlne kopējs
 MenuModule=Avota modulis
 HideUnauthorizedMenu= Slēpt neatļautās izvēlnes (pelēkas)
 DetailId=Id izvēlne
 DetailMenuHandler=Izvēlne kopējs, kur rādīt jaunu ēdienkarti
 DetailMenuModule=Moduļa nosaukums, ja izvēlnes ierakstam nāk no moduļa
-DetailType=Tips izvēlnes (augšā vai pa kreisi)
+DetailType=Izvēlnes veids (augšā vai pa kreisi)
 DetailTitre=Izvēlne etiķete vai etiķete kods tulkošanai
 DetailMainmenu=Grupa, kurai tas pieder (novecojis)
 DetailUrl=URL, kur izvēlne nosūtīsim jums (Absolūtais URL saite vai ārējās saites ar http://)
@@ -1549,11 +1552,11 @@ InvoiceDateUsed=Rēķina izmantotais datums
 YourCompanyDoesNotUseVAT=Jūsu uzņēmums ir definēts neizmantot PVN (Home - Setup - Uzņēmuma / Foundation), tāpēc nav PVN iespējas, lai setup.
 AccountancyCode=Grāmatvedība kods
 AccountancyCodeSell=Tirdzniecība kontu. kods
-AccountancyCodeBuy=Iegādāties kontu. kods
+AccountancyCodeBuy=Iegādes konta. kods
 ##### Agenda #####
 AgendaSetup=Notikumi un kārtības modulis uzstādīšana
 PasswordTogetVCalExport=Galvenais atļaut eksporta saiti
-PastDelayVCalExport=Neeksportē notikums vecāki par
+PastDelayVCalExport=Neeksportē notikums, kuri vecāki par
 AGENDA_USE_EVENT_TYPE=Use events types (managed into menu Setup -> Dictionary -> Type of agenda events)
 AGENDA_USE_EVENT_TYPE_DEFAULT=Set automatically this default value for type of event into event create form
 AGENDA_DEFAULT_FILTER_TYPE=Set automatically this type of event into search filter of agenda view
@@ -1576,7 +1579,7 @@ StockDecreaseForPointOfSaleDisabled=Stock decrease from Point Of Sale disabled
 StockDecreaseForPointOfSaleDisabledbyBatch=Stock decrease in POS is not compatible with lot management
 CashDeskYouDidNotDisableStockDecease=You did not disable stock decrease when making a sell from Point Of Sale. So a warehouse is required.
 ##### Bookmark #####
-BookmarkSetup=Grāmatzīme modulis iestatīšanu
+BookmarkSetup=Grāmatzīmju moduļa iestatīšana
 BookmarkDesc=Šis modulis ļauj pārvaldīt grāmatzīmes. Jūs varat arī pievienot īsceļus uz jebkuru Dolibarr lapām vai externale tīmekļa vietnes uz jūsu kreisajā izvēlnē.
 NbOfBoomarkToShow=Maksimālais skaits, grāmatzīmes, lai parādītu kreisajā izvēlnē
 ##### WebServices #####
@@ -1664,7 +1667,8 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
-LinkColor=Color of links
+TextTitleColor=Color of page title
+LinkColor=Linku krāsa
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
 BackgroundColor=Fona krāsa
diff --git a/htdocs/langs/lv_LV/agenda.lang b/htdocs/langs/lv_LV/agenda.lang
index 2a5e9cd94ea53bd8f8e962e210b82d34e00ef467..686488f9d8e9c3179dc46be82157b508f54512b3 100644
--- a/htdocs/langs/lv_LV/agenda.lang
+++ b/htdocs/langs/lv_LV/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Visi notikumi/uzdevumi
 ViewCal=Mēneša skats
 ViewDay=Dienas skats
 ViewWeek=Nedēļas skats
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Skatīt ar iepriekš definētiem filtriem
 AutoActions= Automātiskā aizpildīšana
 AgendaAutoActionDesc= Noteikt šeit notikumus, par kuriem vēlaties Dolibarr izveidot automātiski Notikuma kārtībā. Ja nekas netiks pārbaudīts (pēc noklusējuma), tikai manuālā pasākumi tiks iekļauti darba kārtībā.
@@ -96,8 +98,8 @@ AddEvent=Izveidot notikumu
 MyAvailability=My availability
 ActionType=Event type
 DateActionBegin=Start event date
-CloneAction=Clone event
-ConfirmCloneEvent=Are you sure you want to clone the event <b>%s</b> ?
+CloneAction=Klonēt notikumu
+ConfirmCloneEvent=Vai Jūs tiešām vēlaties klonēt notikumus <b>%s</b> ?
 RepeatEvent=Atkārtot notikumu
 EveryWeek=Katru nedēļu
 EveryMonth=Katru mēnesi
diff --git a/htdocs/langs/lv_LV/banks.lang b/htdocs/langs/lv_LV/banks.lang
index 5ae851abf4f2f6b745ad489c4fc73d52fcb1dd2f..a97957bcebbf9ce36e502b91fc830107e0f7ceb8 100644
--- a/htdocs/langs/lv_LV/banks.lang
+++ b/htdocs/langs/lv_LV/banks.lang
@@ -23,7 +23,7 @@ BankBalance=Bilance
 BankBalanceBefore=Bilance pirms
 BankBalanceAfter=Bilance pēc
 BalanceMinimalAllowed=Minimālai atļautais atlikums
-BalanceMinimalDesired=Minimālā vēlamo līdzsvaru
+BalanceMinimalDesired=Minimālā vēlamā bilance
 InitialBankBalance=Sākotnējā bilance
 EndBankBalance=Beigu bilance
 CurrentBalance=Pašreizējā bilance
@@ -38,8 +38,8 @@ IbanNotValid=IBAN nav pareizs
 BIC=BIC / SWIFT numurs
 SwiftValid=BIC/SWIFT is Valid
 SwiftNotValid=BIC/SWIFT is Not Valid
-StandingOrders=Regulārie maksājumi
-StandingOrder=Regulārais maksājums
+StandingOrders=Regulārie pasūtījumi
+StandingOrder=Regulārais pasūtījums
 Withdrawals=Izņemts
 Withdrawal=Atsaukšana
 AccountStatement=Konta izraksts
@@ -129,7 +129,7 @@ ConfirmDeleteCheckReceipt=Vai tiešām vēlaties dzēst šo izvēles saņemšanu
 BankChecks=Bankas čeki
 BankChecksToReceipt=Pārbaudes gaida depozītu
 ShowCheckReceipt=Rādīt pārbaude depozīta saņemšanu
-NumberOfCheques=Nb Pārbaudes
+NumberOfCheques=Pārbaužu skaits
 DeleteTransaction=Dzēst darījumu
 ConfirmDeleteTransaction=Vai tiešām vēlaties dzēst šo darījumu?
 ThisWillAlsoDeleteBankRecord=Tas arī izdzēš izveidotos bankas darījumus
diff --git a/htdocs/langs/lv_LV/bills.lang b/htdocs/langs/lv_LV/bills.lang
index 3dc6d3875cfcdb25ed19bbbb304544ea42715d1c..c1f1386e8e9e29fc6df3f1e901155f3160191430 100644
--- a/htdocs/langs/lv_LV/bills.lang
+++ b/htdocs/langs/lv_LV/bills.lang
@@ -37,7 +37,7 @@ ReplacementByInvoice=Aizstāts ar rēķinu
 CorrectInvoice=Labot rēķinu %s
 CorrectionInvoice=Rēķina labošana
 UsedByInvoice=Izmanto, lai samaksātu rēķinu %s
-ConsumedBy=Patērētā
+ConsumedBy=Patērējis
 NotConsumed=Nepatērē
 NoReplacableInvoice=Nav aizvietojamu rēķinu
 NoInvoiceToCorrect=Nav rēķinu kurus jālabo
@@ -73,7 +73,9 @@ PaymentsAlreadyDone=Jau samaksāts
 PaymentsBackAlreadyDone=Maksājumi atpakaļ izdarījušas
 PaymentRule=Maksājuma noteikums
 PaymentMode=Maksājuma veids
-PaymentModeShort=Payment type
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
+PaymentModeShort=Maksājuma veids
 PaymentTerm=Apmaksas noteikumi
 PaymentConditions=Apmaksas noteikumi
 PaymentConditionsShort=Apmaksas noteikumi
@@ -89,7 +91,7 @@ ClassifyClosed=Klasificēt 'Slēgts'
 ClassifyUnBilled=Classify 'Unbilled'
 CreateBill=Izveidot rēķinu
 CreateCreditNote=Izveidot kredīta piezīmi
-AddBill=Create invoice or credit note
+AddBill=Izveidot rēķinu vai kredīta piezīmi
 AddToDraftInvoices=Pievienot izstrādāt rēķinu
 DeleteBill=Dzēst rēķinu
 SearchACustomerInvoice=Meklēt klienta rēķinu
@@ -104,7 +106,7 @@ EnterPaymentDueToCustomer=Veikt maksājumu dēļ klientam
 DisabledBecauseRemainderToPayIsZero=Disabled because remaining unpaid is zero
 PriceBase=Bāzes cena
 BillStatus=Rēķina statuss
-BillStatusDraft=Projekts (ir jāapstiprina)
+BillStatusDraft=Melnraksts (jāapstiprina)
 BillStatusPaid=Apmaksāts
 BillStatusPaidBackOrConverted=Samaksāta vai pārvērsti atlaidi
 BillStatusConverted=Apmaksātais (gatavas pēdējo rēķinu)
@@ -169,7 +171,7 @@ ConfirmClassifyPaidPartiallyReasonProductReturnedDesc=Šo izvēli izmanto, ja sa
 ConfirmClassifyPaidPartiallyReasonOtherDesc=Izmantot šo izvēli, ja visi citi nav piemēroti, piemēram, šādos apstākļos: <br> - Maksājums nav pabeigta, jo daži produkti tika nosūtīti atpakaļ <br> - Pieprasītā summa ir pārāk svarīgs, jo atlaide bija aizmirsts <br> Visos gadījumos, summa pār-apgalvots, ir jākoriģē uzskaites sistēmā, izveidojot kredītu piezīmi.
 ConfirmClassifyAbandonReasonOther=Cits
 ConfirmClassifyAbandonReasonOtherDesc=Šī izvēle tiek izmantota visos citos gadījumos. Piemēram, tāpēc, ka jūs plānojat, lai izveidotu aizstāt rēķinu.
-ConfirmCustomerPayment=Vai jūs apstiprināt šo maksājuma ieguldījumu, <b>%s</b> %s?
+ConfirmCustomerPayment=Vai jūs apstiprināt šo maksājuma ievadi, <b>%s</b> %s?
 ConfirmSupplierPayment=Do you confirm this payment input for <b>%s</b> %s ?
 ConfirmValidatePayment=Vai jūs tiešām vēlaties, lai apstiprinātu šo maksājumu? Nekādas izmaiņas var veikt, kad maksājums ir apstiprināts.
 ValidateBill=Apstiprināt rēķinu
@@ -184,6 +186,7 @@ ShowInvoice=Rādīt rēķinu
 ShowInvoiceReplace=Rādīt aizstājošo rēķinu
 ShowInvoiceAvoir=Rādīt kredīta piezīmi
 ShowInvoiceDeposit=Rādīt depozīta rēķinu
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Rādīt maksājumu
 AlreadyPaid=Jau samaksāts
 AlreadyPaidBack=Jau atgriezta nauda
@@ -221,6 +224,7 @@ NonPercuRecuperable=Neatgūstams
 SetConditions=Uzstādīt apmaksas nosacījumus
 SetMode=Uzstādīt maksājumu režīmu
 Billed=Samaksāts
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Rēķina paraugs
 RepeatableInvoices=Rēķinu paraugs
 Repeatable=Sagateve
@@ -264,11 +268,12 @@ DiscountOfferedBy=Piešķīris
 DiscountStillRemaining=Atlaides vēl atlikušas
 DiscountAlreadyCounted=Atlaides jau ir pieskaitītas
 BillAddress=Rēķina adrese
-HelpEscompte=Šī atlaide ir atlaide piešķirta, lai klientam, jo ​​tās maksājums tika veikts pirms termiņa.
+HelpEscompte=Šī atlaide ir piešķirta klientam, jo ​​tas maksājumu veica pirms termiņa.
 HelpAbandonBadCustomer=Šī summa ir pamests (klients teica, ka slikts klients), un tiek uzskatīts par ārkārtēju zaudēt.
 HelpAbandonOther=Šī summa ir atteikusies, jo tā bija kļūda (nepareizs klients vai rēķins aizstāt ar citiem, piemēram)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Maksājuma id
+PaymentRef=Payment ref.
 InvoiceId=Rēķina id
 InvoiceRef=Rēķina ref.
 InvoiceDateCreation=Rēķina izveides datums
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Jaunākais sasitītais rēķins
 WarningBillExist=Uzmanību, viens vai vairāki rēķini jau eksistē
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Tūlītēja
@@ -393,6 +402,7 @@ Reported=Kavējas
 DisabledBecausePayments=Nav iespējams, kopš šeit ir daži no maksājumiem
 CantRemovePaymentWithOneInvoicePaid=Nevar dzēst maksājumu, jo eksistē kaut viens rēķins, kas klasificēts kā samaksāts
 ExpectedToPay=Gaidāmais maksājums
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Samaksāts ar šo maksājumu
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Piezīme: Šis saraksts satur tikai rēķinus par t
 RevenueStamp=Ieņēmumi zīmogs
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Rēķina PDF  paraugs. Pilnākais rēķina paraugs (vēlamais paraugs)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=Rēķinu sākot ar syymm $ jau pastāv un nav saderīgs ar šo modeli secību. Noņemt to vai pārdēvēt to aktivizētu šo moduli.
@@ -414,8 +425,8 @@ TypeContact_facture_external_SHIPPING=Klientu kuģniecības kontakts
 TypeContact_facture_external_SERVICE=Klienta pakalpojuma kontakts
 TypeContact_invoice_supplier_internal_SALESREPFOLL=Pārstāvis turpinot darboties piegādātāju rēķinu
 TypeContact_invoice_supplier_external_BILLING=Piegādātāja rēķinu kontaktpersona
-TypeContact_invoice_supplier_external_SHIPPING=Piegādātājs kuģniecības kontakts
-TypeContact_invoice_supplier_external_SERVICE=Piegādātājs dienests kontakts
+TypeContact_invoice_supplier_external_SHIPPING=Piegādātāja piegādes līgums
+TypeContact_invoice_supplier_external_SERVICE=Piegādātāja pakalpojuma līgums
 # Situation invoices
 InvoiceFirstSituationAsk=First situation invoice
 InvoiceFirstSituationDesc=The <b>situation invoices</b> are tied to situations related to a progression, for example the progression of a construction. Each situation is tied to an invoice.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/lv_LV/boxes.lang b/htdocs/langs/lv_LV/boxes.lang
index 4a02cd5c3057245936f7c493f812d0f9599648c0..b2f0907bfe1a36688927830dade626065671c5b5 100644
--- a/htdocs/langs/lv_LV/boxes.lang
+++ b/htdocs/langs/lv_LV/boxes.lang
@@ -58,7 +58,7 @@ BoxLastExpiredServices=Pēdējās %s vecākā kontaktus ar aktīvu beidzies paka
 BoxTitleLastActionsToDo=Pēdējās %s darbības kas jādara
 BoxTitleLastContracts=Pēdējie %s līgumi
 BoxTitleLastModifiedDonations=Pēdējie %s labotie ziedojumi
-BoxTitleLastModifiedExpenses=Pēdējie %s labotie izdevumi
+BoxTitleLastModifiedExpenses=Last %s modified expense reports
 BoxGlobalActivity=Global darbība (pavadzīmes, priekšlikumi, rīkojumi)
 FailedToRefreshDataInfoNotUpToDate=Neizdevās atsvaidzināt RSS plūsmas. Pēdējās veiksmīgs atsvaidzināt datums: %s
 LastRefreshDate=Pēdējais atjaunošanas datums
@@ -95,3 +95,4 @@ ForCustomersInvoices=Klientu rēķini
 ForCustomersOrders=Klientu pasūtījumi
 ForProposals=Priekšlikumi
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/lv_LV/categories.lang b/htdocs/langs/lv_LV/categories.lang
index 461f554fb1afc96e7cff24634d35d5f09deba156..07f2f03d9fb7cd618e2671bff74fb28d2116adc3 100644
--- a/htdocs/langs/lv_LV/categories.lang
+++ b/htdocs/langs/lv_LV/categories.lang
@@ -1,15 +1,15 @@
 # Dolibarr language file - Source file is en_US - categories
-Rubrique=Tag/Category
-Rubriques=Tags/Categories
-categories=tags/categories
-TheCategorie=The tag/category
-NoCategoryYet=No tag/category of this type created
+Rubrique=Etiķete/Sadaļa
+Rubriques=Etiķetes/Sadaļas
+categories=etiķetes/sadaļas
+TheCategorie=Etiķete/sadaļa
+NoCategoryYet=Nav šī veida etiķetes/sadaļas izveidotas
 In=Uz
 AddIn=Pievienot
 modify=modificēt
 Classify=Klasificēt
-CategoriesArea=Tags/Categories area
-ProductsCategoriesArea=Products/Services tags/categories area
+CategoriesArea=Etiķešu/Sadaļu sadaļa
+ProductsCategoriesArea=Preču/Pakalpojumu etiķešu /sadaļa
 SuppliersCategoriesArea=Suppliers tags/categories area
 CustomersCategoriesArea=Customers tags/categories area
 ThirdPartyCategoriesArea=Third parties tags/categories area
@@ -19,22 +19,22 @@ MainCats=Main tags/categories
 SubCats=Apakšsadaļas
 CatStatistics=Statistika
 CatList=List of tags/categories
-AllCats=All tags/categories
-ViewCat=View tag/category
-NewCat=Add tag/category
-NewCategory=New tag/category
-ModifCat=Modify tag/category
-CatCreated=Tag/category created
-CreateCat=Create tag/category
-CreateThisCat=Create this tag/category
+AllCats=Visas etiķetes/sadaļas
+ViewCat=Apskatīt etiķeti/sadaļu
+NewCat=Pievienot etiķeti/sadaļu
+NewCategory=Jauna etiķete/sadaļa
+ModifCat=Labot etiķeti/sadaļu
+CatCreated=Etiķete/sadaļa izveidota
+CreateCat=Izveidot etiķeti/sadaļu
+CreateThisCat=Izveidot šo etiķeti/sadaļu
 ValidateFields=Apstiprināt laukus
 NoSubCat=Nav apakšsadaļas.
 SubCatOf=Apakšsadaļa
-FoundCats=Found tags/categories
-FoundCatsForName=Tags/categories found for the name :
-FoundSubCatsIn=Subcategories found in the tag/category
+FoundCats=Atrastas etiķetes/sadaļas
+FoundCatsForName=Etiķetes/sadaļas atrastas :
+FoundSubCatsIn=Apakšsadaļas atrastas etiķetēs/sadaļās
 ErrSameCatSelected=You selected the same tag/category several times
-ErrForgotCat=You forgot to choose the tag/category
+ErrForgotCat=Jūs aizmirsāt izvēlēties etiķeti/sadaļu
 ErrForgotField=Jūs aizmirsāt, lai informētu laukus
 ErrCatAlreadyExists=Šis nosaukums jau tiek izmantots
 AddProductToCat=Add this product to a tag/category?
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo / prosp. sadaļas
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/lv_LV/companies.lang b/htdocs/langs/lv_LV/companies.lang
index 0bdd228c5cef9165455ebc745632ac5568f125ad..4a3209f5cae3874a02a1751285bf70bb7aa4c3ff 100644
--- a/htdocs/langs/lv_LV/companies.lang
+++ b/htdocs/langs/lv_LV/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (RC)
 ProfId2MA=Id prof. 2 (PATENTE)
 ProfId3MA=Id prof. 3 (IF)
 ProfId4MA=Id prof. 4 (CNSS)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof ID 1 (RFC).
 ProfId2MX=Prof Id 2 (R.. P. IMSS)
diff --git a/htdocs/langs/lv_LV/compta.lang b/htdocs/langs/lv_LV/compta.lang
index 84e62bce8c5ddee9d610db9d46ce8ecc57f56627..885e14ea30828d5fecc1f426a2cd6014db85b6a3 100644
--- a/htdocs/langs/lv_LV/compta.lang
+++ b/htdocs/langs/lv_LV/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Noguldījumu rēķinus, nedz iekļauti
 DepositsAreIncluded=- Noguldījumu rēķini ir iekļauti
 LT2ReportByCustomersInInputOutputModeES=Ziņojumā, ko trešās puses IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Ziņojums klientu PVN iekasē un izmaksā
 VATReportByCustomersInDueDebtMode=Ziņojums klientu PVN iekasē un izmaksā
 VATReportByQuartersInInputOutputMode=Ziņojums, ko likmi iekasētā PVN un samaksāts
diff --git a/htdocs/langs/lv_LV/cron.lang b/htdocs/langs/lv_LV/cron.lang
index 3fa1541178181961bfcaf74e4f2f9ead4db73716..ffa6fb9a68b28ae9a45343049608b2e6ab9de0ca 100644
--- a/htdocs/langs/lv_LV/cron.lang
+++ b/htdocs/langs/lv_LV/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Plānotie darbi
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=Saraksts ar invaliditāti darba vietas
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Pēdējo reizi palaists
 CronLastOutput=Pēdējo reizi palaist izejas
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Darbs
 CronNone=Nav
-CronDtStart=Sākuma datums
-CronDtEnd=Beigu datums
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Nākošā izpilde
 CronDtLastLaunch=Pēdējā izpilde
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=Nav reģistrētu darbu
 CronPriority=Prioritāte
 CronLabel=Apraksts
 CronNbRun=Nb. sākt
+CronMaxRun=Max nb. launch
 CronEach=Katru
 JobFinished=Darbs uzsākts un pabeigts
 #Page card
diff --git a/htdocs/langs/lv_LV/deliveries.lang b/htdocs/langs/lv_LV/deliveries.lang
index 73c1997efb6dd07cb8d5a975088561b991b381c8..f407b15263f4be91f5a0a8e017a8f71256880696 100644
--- a/htdocs/langs/lv_LV/deliveries.lang
+++ b/htdocs/langs/lv_LV/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Vai tiešām vēlaties dzēst piegādes kvīts <b>%
 DeliveryMethod=Piegādes metode
 TrackingNumber=Sekošanas numurs
 DeliveryNotValidated=Piegāde nav apstiprināta
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Vārds, uzvārds un paraksts:
 ToAndDate=To___________________________________ uz ____ / _____ / __________
diff --git a/htdocs/langs/lv_LV/holiday.lang b/htdocs/langs/lv_LV/holiday.lang
index 3ed8a2c2638bb6bc49123729b0e505c0d05696fb..ec903d05a378de13d657a203ce90d16d0c08b7f6 100644
--- a/htdocs/langs/lv_LV/holiday.lang
+++ b/htdocs/langs/lv_LV/holiday.lang
@@ -8,12 +8,11 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=Jums nav nevienas brīvas dienas
 AddCP=Make a leave request
-Employe=Darbinieks
 DateDebCP=Sākuma datums
 DateFinCP=Beigu datums
 DateCreateCP=Izveidošanas datums
 DraftCP=Melnraksts
-ToReviewCP=Gaida apstiprinājumu
+ToReviewCP=Gaida apstiprināšanu
 ApprovedCP=Apstiprināts
 CancelCP=Atcelts
 RefuseCP=Atteikts
@@ -23,7 +22,7 @@ ReviewedByCP=Būs jāpārskata
 DescCP=Apraksts
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=Jums ir jāizvēlas beigu datumu lielāks par sākuma datums.
@@ -79,9 +78,9 @@ PrevSoldeCP=Iepriekšējā bilance
 NewSoldeCP=Jana Bilance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Vārds
-Employee=Darbinieks
 FirstDayOfHoliday=Pirmā atvaļinājuma diena
 LastDayOfHoliday=Pēdēja atvaļinājuma diena
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Ikmēneša atjauninājums
 ManualUpdate=Manuāla aktualizēšana
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/lv_LV/hrm.lang b/htdocs/langs/lv_LV/hrm.lang
index 152b7da7d84656b6a6ecb22fd36b3428f5cc5829..2c77acba94bc8a166d6d835d111884db6542085b 100644
--- a/htdocs/langs/lv_LV/hrm.lang
+++ b/htdocs/langs/lv_LV/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=Darbinieku saraksts
 Employees=Darbinieki
 Employee=Darbinieks
+Employe=Employe
 NewEmployee=Jauns darbinieks
-EmployeeCard=Employee card
+EmployeeCard=Darbinieka kartiņa
diff --git a/htdocs/langs/lv_LV/interventions.lang b/htdocs/langs/lv_LV/interventions.lang
index 3e318d09e66275c3ebd64722693ac9e94e9e7021..a065f6cd5b2c56877744ecbc1fb259049b292325 100644
--- a/htdocs/langs/lv_LV/interventions.lang
+++ b/htdocs/langs/lv_LV/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Atgriešanās Numero ar formātu %syymm-NNNN kur yy ir g
 PacificNumRefModelError=Iejaukšanās karte sākot ar syymm $ jau pastāv un nav saderīgs ar šo modeli secību. Noņemt to vai pārdēvēt to aktivizētu šo moduli.
 PrintProductsOnFichinter=Drukāt produktus intervences kartes
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/lv_LV/languages.lang b/htdocs/langs/lv_LV/languages.lang
index 934470da43910d7dbdc0014a4fc64ddf8d535809..216dad5edb96c4163a4b06fa243b0c4d7166bd38 100644
--- a/htdocs/langs/lv_LV/languages.lang
+++ b/htdocs/langs/lv_LV/languages.lang
@@ -14,7 +14,7 @@ Language_de_AT=Vācu (Austrija)
 Language_de_CH=Vācu (Šveice)
 Language_el_GR=Grieķu
 Language_en_AU=Angļu (Austrālija)
-Language_en_CA=English (Canada)
+Language_en_CA=Angļu (Kanāda)
 Language_en_GB=Angļu (Apvienotā Karaliste)
 Language_en_IN=Angļu (Indija)
 Language_en_NZ=Angļu (Jaunzēlande)
@@ -35,7 +35,7 @@ Language_es_PR=Spāņu (Puertoriko)
 Language_et_EE=Igauņu
 Language_eu_ES=Basku
 Language_fa_IR=Persiešu
-Language_fi_FI=Finnish
+Language_fi_FI=Pabeigt
 Language_fr_BE=Franču (Beļģija)
 Language_fr_CA=Franču (Kanāda)
 Language_fr_CH=Franču (Šveices)
diff --git a/htdocs/langs/lv_LV/mails.lang b/htdocs/langs/lv_LV/mails.lang
index b8a2ce658ed16256a42bf1e4c2bb58044f7c958a..53602e27ae17d0170f03cb518f101a5583dc3c7e 100644
--- a/htdocs/langs/lv_LV/mails.lang
+++ b/htdocs/langs/lv_LV/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=E-pastu nosūtīja %s saņēmējiem.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Rēķina atgādinātājs %s (%s)
 SendRemind=Sūtīt atgādinājumu pa e-pastiem
 RemindSent=%s atgādiājums(i) nosūtīti
diff --git a/htdocs/langs/lv_LV/main.lang b/htdocs/langs/lv_LV/main.lang
index 26da61acaee44f37f09092f9557590915ce05817..676f8e8237df446e0ed58f22e8ab54bd05d4894a 100644
--- a/htdocs/langs/lv_LV/main.lang
+++ b/htdocs/langs/lv_LV/main.lang
@@ -24,11 +24,12 @@ FormatDateHourSecShort=%d/%m/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=Savienojums ar datubāzi
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Nav iztulkots
 NoRecordFound=Nav atrasti ieraksti
 NoError=Nav kļūdu
 Error=Kļūda
-Errors=Errors
+Errors=Kļūdas
 ErrorFieldRequired=Lauks '%s' ir obligāti aizpildāms
 ErrorFieldFormat=Laukā '%s' ir nepareiza vērtība
 ErrorFileDoesNotExists=Fails %s neeksistē
@@ -105,6 +106,7 @@ NotePrivate=Piezīme (privāta)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr iestatīts, lai ierobežotu vienības cenu <b>%s</b> zīmēm aiz komata.
 DoTest=Pārbaude
 ToFilter=Filtrs
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Uzmanību, jums ir vismaz viens no elementiem, kas ir pārsniegusi pielaides kavēšanos.
 yes=jā
 Yes=Jā
@@ -228,6 +230,8 @@ Now=Tagad
 HourStart=Start hour
 Date=Datums
 DateAndHour=Datums un laiks
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Sākuma datums
 DateEnd=Beigu datums
 DateCreation=Izveidošanas datums
@@ -369,7 +373,7 @@ CommercialProposalsShort=Komerciālie priekšlikumi
 Comment=Komentēt
 Comments=Komentāri
 ActionsToDo=Pasākumi, kas jādara
-ActionsDone=Pasākumi darīts
+ActionsDone=Pabeigtie pasākumi
 ActionsToDoShort=Vēl jādara
 ActionsRunningshort=Sākts
 ActionsDoneShort=Darīts
@@ -593,7 +597,7 @@ CanBeModifiedIfKo=Var mainīt, ja nav derīgs
 RecordModifiedSuccessfully=ieraksts modificēts veiksmīgi
 RecordsModified=%s ieraksti modificēti
 AutomaticCode=Automātiskās kods
-NotManaged=Nepārvalda
+NotManaged=Nav pārvaldīts
 FeatureDisabled=Funkcija bloķēta
 MoveBox=Pārvietot kastes %s
 Offered=Piedāvāts
@@ -608,6 +612,7 @@ TotalMan=Kopsumma
 NeverReceived=Nekad nav saņemts
 Canceled=Atcelts
 YouCanChangeValuesForThisListFromDictionarySetup=Jūs varat mainīt vērtības šim sarakstam no iestatījumiem - vārdnīcas
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Krāsa
 Documents=Piesaistītie faili
 DocumentsNb=Piesaistītie faili (%s)
@@ -672,7 +677,7 @@ NewAttribute=Jauns atribūts
 AttributeCode=Atribūts kods
 OptionalFieldsSetup=Papildus atribūtu iestatīšana
 URLPhoto=Saite bildei/logo
-SetLinkToAnotherThirdParty=Link to another third party
+SetLinkToAnotherThirdParty=Saite uz citu trešo personu
 CreateDraft=Izveidot melnrakstu
 SetToDraft=Atpakaļ uz melnrakstu
 ClickToEdit=Klikšķiniet, lai rediģētu
@@ -695,11 +700,12 @@ Test=Pārbaude
 Element=Elements
 NoPhotoYet=Nav bildes
 HomeDashboard=Sākuma kopsavilkums
+Dashboard=Dashboard
 Deductible=Pašrisks
 from=no
 toward=uz
 Access=Pieeja
-SelectAction=Select action
+SelectAction=Izvēlēties darbību
 HelpCopyToClipboard=Izmantot taustiņu kombināciju Ctrl + C, lai kopētu
 SaveUploadedFileWithMask=Saglabāt failu uz servera ar nosaukumu "<strong>%s</strong>" (citādi "%s")
 OriginFileName=Oriģinālais faila nosaukums
diff --git a/htdocs/langs/lv_LV/margins.lang b/htdocs/langs/lv_LV/margins.lang
index 5df181098c4c089fce557e0e8cbc6145a9cc00dd..c19e65e8e6420d5a4e7487d17cd147191e013972 100644
--- a/htdocs/langs/lv_LV/margins.lang
+++ b/htdocs/langs/lv_LV/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Izvēlies preci vai pakalpojumu
 StartDate=Sākuma datums
 EndDate=Beigu datums
 Launch=Sākt
-ForceBuyingPriceIfNull=Forsēt iepirkuma cenu, ja nulle
-ForceBuyingPriceIfNullDetails=ja &quot;ON&quot;, starpība būs nulle tiešsaistē (pirkšanas cena = pārdošanas cenu), pretējā gadījumā (&quot;OFF&quot;), Marge būs vienāda ar pārdošanas cenu (pirkšanas cena = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Maržinālā metode pasaules atlaides
 UseDiscountAsProduct=Kā produktu
 UseDiscountAsService=Kā pakalpojums
@@ -35,8 +35,9 @@ MargeBrute=Raw rezerve
 MargeNette=Neto starpība
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw rezervi: Pārdošanas cena - Pērk cena <br/> Neto starpība: Pārdošanas cena - Iepirkuma cena
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Pašizmaksa
 BuyingCost=Pašizmaksa
 UnitCharges=Vienības izmaksas
diff --git a/htdocs/langs/lv_LV/oauth.lang b/htdocs/langs/lv_LV/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/lv_LV/oauth.lang
+++ b/htdocs/langs/lv_LV/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/lv_LV/opensurvey.lang b/htdocs/langs/lv_LV/opensurvey.lang
index b0fa653ed82d93f4b9203b10f4d2cfb54e1a5ab4..0d709a7f6337ae52e57b3369cf7f2ca2e825882c 100644
--- a/htdocs/langs/lv_LV/opensurvey.lang
+++ b/htdocs/langs/lv_LV/opensurvey.lang
@@ -14,7 +14,7 @@ TypeDate=Tipa datums
 TypeClassic=Tipa standarts
 OpenSurveyStep2=Select your dates amoung the free days (grey). The selected days are green. You can unselect a day previously selected by clicking again on it
 RemoveAllDays=Noņemt visas dienas
-CopyHoursOfFirstDay=Kopēt stundas pirmajā dienā
+CopyHoursOfFirstDay=Kopēt stundas no pirmās dienas
 RemoveAllHours=Noņemt visas stundas
 SelectedDays=Izvēlētās dienas
 TheBestChoice=Labākā izvēle šobrīd ir
diff --git a/htdocs/langs/lv_LV/orders.lang b/htdocs/langs/lv_LV/orders.lang
index 246913be066097230fb2225519a3bcda36ffb4c8..84f1d77ba806d546e9a4be2ff26730b710e4501b 100644
--- a/htdocs/langs/lv_LV/orders.lang
+++ b/htdocs/langs/lv_LV/orders.lang
@@ -31,7 +31,7 @@ StatusOrderSentShort=Procesā
 StatusOrderSent=Sūtījuma procesā
 StatusOrderOnProcessShort=Pasūtīts
 StatusOrderProcessedShort=Apstrādāti
-StatusOrderDelivered=Delivered
+StatusOrderDelivered=Piegādāts
 StatusOrderToBillShort=Pasludināts
 StatusOrderToBill2Short=Lai likumprojektu
 StatusOrderApprovedShort=Apstiprināts
@@ -66,7 +66,7 @@ SearchASupplierOrder=Meklēt piegādātāja pasūtījumu
 ShipProduct=Sūtīt produktu
 CreateOrder=Izveidot pasūtījumu
 RefuseOrder=Atteikt pasūtījumu
-ApproveOrder=Approve order
+ApproveOrder=Apstiprināt pasūtījumu
 Approve2Order=Approve order (second level)
 ValidateOrder=Apstiprināt pasūtījumu
 UnvalidateOrder=Unvalidate pasūtījumu
@@ -79,10 +79,10 @@ AddToOtherOrders=Pievienot citiem pasūtījumiem
 AddToDraftOrders=Pievienot rīkojuma projektu
 ShowOrder=Rādīt pasūtījumu
 OrdersOpened=Orders to process
-NoOpenedOrders=No open orders
+NoOpenedOrders=Nav atvērtu pasūtījumu
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=Nav projektu pasūtījumi
-NoOrder=Nav pasūtījuma
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Citi rīkojumi
 LastOrders=Last %s customer orders
@@ -95,7 +95,7 @@ NbOfOrders=Pasūtījumu skaits
 OrdersStatistics=Pasūtījuma-u statistika
 OrdersStatisticsSuppliers=Piegādātāj pasūtījuma/u statistika
 NumberOfOrdersByMonth=Pasūtījumu skaits pa mēnešiem
-AmountOfOrdersByMonthHT=Summa pasūtījumi mēnesī (bez nodokļiem)
+AmountOfOrdersByMonthHT=Pasūtījumu summa mēnesī (bez nodokļiem)
 ListOfOrders=Pasūtījumu saraksts
 CloseOrder=Aizvērt kārtība
 ConfirmCloseOrder=Vai jūs tiešām vēlaties, lai uzstādītu šo rīkojumu deliverd? Pēc tam, kad pasūtījums tiek piegādāts, to var iestatīt, lai jāmaksā.
diff --git a/htdocs/langs/lv_LV/other.lang b/htdocs/langs/lv_LV/other.lang
index 6cdb29f87a550427440b1ddbcb6fde6899118a04..c878d8975dc04d999702689575d1034cd4ae0510 100644
--- a/htdocs/langs/lv_LV/other.lang
+++ b/htdocs/langs/lv_LV/other.lang
@@ -58,7 +58,7 @@ NbOfActiveNotifications=Number of notifications (nb of recipient emails)
 PredefinedMailTest=Šis ir testa e-pasts \\ nthe divas līnijas ir atdalīti ar rakstatgriezi.. \n\n __ SIGNATURE__
 PredefinedMailTestHtml=Tas ir <b>tests</b> pasts (vārds testam jābūt treknrakstā). <br> Abas līnijas ir atdalīti ar rakstatgriezi. <br><br> __SIGNATURE__
 PredefinedMailContentSendInvoice=__CONTACTCIVNAME__\n\nYou will find here the invoice __REF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
-PredefinedMailContentSendInvoiceReminder=__CONTACTCIVNAME__\n\nWe would like to warn you that the invoice  __REF__ seems to not being payed. So this is the invoice in attachment again, as a reminder.\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
+PredefinedMailContentSendInvoiceReminder=__CONTACTCIVNAME__\n\nWe would like to warn you that the invoice __REF__ seems to not being payed. So this is the invoice in attachment again, as a reminder.\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
 PredefinedMailContentSendProposal=__CONTACTCIVNAME__\n\nJums tiek nosūtīts komerciālais piedāvājums __PROPREF__\n\n__PERSONALIZED__Ar cieņu\n\n__SIGNATURE__
 PredefinedMailContentSendSupplierProposal=__CONTACTCIVNAME__\n\n\nYou will find here the price request __ASKREF__\n\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
 PredefinedMailContentSendOrder=__CONTACTCIVNAME__\n\nYou will find here the order __ORDERREF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
@@ -238,3 +238,8 @@ ToExport=Eksportēt
 NewExport=Jauns eksports
 ##### External sites #####
 ExternalSites=Ārējās vietas
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/lv_LV/paypal.lang b/htdocs/langs/lv_LV/paypal.lang
index e5eccdee2377fde7917c1a4358f433781ab86cf3..0cb0b47e2666778ca37b866c94074b25824a8220 100644
--- a/htdocs/langs/lv_LV/paypal.lang
+++ b/htdocs/langs/lv_LV/paypal.lang
@@ -6,8 +6,9 @@ PaypalDoPayment=Maksāt ar Paypal
 PaypalCBDoPayment=Maksāt ar kredītkarti
 PAYPAL_API_SANDBOX=Mode tests / sandbox
 PAYPAL_API_USER=API lietotājvārds
-PAYPAL_API_PASSWORD=API paroli
+PAYPAL_API_PASSWORD=API parole
 PAYPAL_API_SIGNATURE=API paraksts
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Akcija maksājums &quot;neatņemama sastāvdaļa&quot; (Kredītkaršu + Paypal), vai &quot;Paypal&quot; tikai
 PaypalModeIntegral=Integrālis
 PaypalModeOnlyPaypal=PayPal tikai
diff --git a/htdocs/langs/lv_LV/products.lang b/htdocs/langs/lv_LV/products.lang
index b8bb3cf3f73362e2a92ca78446d2a869c28de2ab..f55eade0d000ece0d1f5a6901ac32bbc4794108e 100644
--- a/htdocs/langs/lv_LV/products.lang
+++ b/htdocs/langs/lv_LV/products.lang
@@ -190,10 +190,10 @@ ClonePricesProduct=Klons galvenos informations un cenas
 CloneCompositionProduct=Clone packaged product/service
 ProductIsUsed=Šis produkts tiek izmantots
 NewRefForClone=Ref. jaunu produktu / pakalpojumu
-SellingPrices=Selling prices
-BuyingPrices=Buying prices
-CustomerPrices=Customer prices
-SuppliersPrices=Supplier prices
+SellingPrices=Pārdošanas cenas
+BuyingPrices=Ierkšanas cenas
+CustomerPrices=Klienta cenas
+SuppliersPrices=Piegādātāja cenas
 SuppliersPricesOfProductsOrServices=Supplier prices (of products or services)
 CustomCode=Muitas kods
 CountryOrigin=Izcelsmes valsts
@@ -252,7 +252,7 @@ UnitPmp=Neto vienība VWAP
 CostPmpHT=Neto kopā VWAP
 ProductUsedForBuild=Auto patērē uzrādot
 ProductBuilded=Ražošanas pabeigta
-ProductsMultiPrice=Produkts multi-cena
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Izvēlieties PDF failus
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/lv_LV/projects.lang b/htdocs/langs/lv_LV/projects.lang
index 0b9a175062b196e502f5063b922f73e0b2ad6f4f..adaa2c0d502418aa87e0eab6d0a1a5e6cd37ed60 100644
--- a/htdocs/langs/lv_LV/projects.lang
+++ b/htdocs/langs/lv_LV/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=Šo viedokli iepazīstina visus projektus (jūsu lietotāja atļaujas piešķirt jums atļauju skatīt visu).
 MyTasksDesc=Šis skats ir tikai uz projektiem vai uzdevumus, jums ir kontakts (kāds ir tipa).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Šo viedokli iepazīstina visus projektus un uzdevumus, jums ir atļauts lasīt.
 TasksDesc=Šo viedokli iepazīstina visus projektus un uzdevumus (jūsu lietotāja atļaujas piešķirt jums atļauju skatīt visu).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Virsnieks projekts
 LastProjects=Pēdējie %s projekti
 AllProjects=Visi projekti
 OpenedProjects=Atvērtie projekti
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Projektu saraksts
 ShowProject=Rādīt projektu
 SetProject=Izvēlēties projektu
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Uzdevums %s labots
 TaskDeletedInDolibarr=Uzdevums %s dzēsts
 OpportunityStatus=Iespēju statuss
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Kvalifikācija
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/lv_LV/propal.lang b/htdocs/langs/lv_LV/propal.lang
index ee3def6ae7b4d021fc08a80baeb68a5f4b325cc3..994bb095ade7622d2439c9a6d0b2a61e290d09c3 100644
--- a/htdocs/langs/lv_LV/propal.lang
+++ b/htdocs/langs/lv_LV/propal.lang
@@ -25,13 +25,14 @@ LastModifiedProposals=Pēdējie %s labotie priekšlikumi
 AllPropals=Visi priekšlikumi
 LastProposals=Jaunākie priekšlikumi
 SearchAProposal=Meklēt priekšlikumu
+NoProposal=No proposal
 ProposalsStatistics=Komerciālo priekšlikuma'u statistika
 NumberOfProposalsByMonth=Numurs pēc mēneša
 AmountOfProposalsByMonthHT=Summa pa mēnešiem (neto pēc nodokļiem)
 NbOfProposals=Skaits tirdzniecības priekšlikumiem
 ShowPropal=Rādīt priekšlikumu
 PropalsDraft=Sagatave
-PropalsOpened=Open
+PropalsOpened=Atvērts
 PropalsNotBilled=Slēgts nav apmaksāts
 PropalStatusDraft=Projekts (ir jāapstiprina)
 PropalStatusValidated=Apstiprināts (priekšlikums ir atvērts)
@@ -42,7 +43,7 @@ PropalStatusNotSigned=Nav parakstīts (slēgta)
 PropalStatusBilled=Jāmaksā
 PropalStatusDraftShort=Melnraksts
 PropalStatusValidatedShort=Apstiprināts
-PropalStatusOpenedShort=Open
+PropalStatusOpenedShort=Atvērts
 PropalStatusClosedShort=Slēgts
 PropalStatusSignedShort=Parakstīts
 PropalStatusNotSignedShort=Nav parakstīts
@@ -62,7 +63,8 @@ DatePropal=Datums, kad priekšlikumu
 DateEndPropal=Derīguma beigu datumu
 DateEndPropalShort=Beigu datums
 ValidityDuration=Derīguma termiņš
-CloseAs=Aizvērt ar statusu
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Klasificēt apmaksāts
 BuildBill=Veidot rēķinu
 ErrorPropalNotFound=Propal %s nav atrasts
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Default modeļa izveide
 DefaultModelPropalToBill=Noklusējuma veidne aizverot uzņēmējdarbības priekšlikumu (tiks izrakstīts rēķins)
 DefaultModelPropalClosed=Noklusējuma veidne aizverot uzņēmējdarbības priekšlikumu (unbilled)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/lv_LV/receiptprinter.lang b/htdocs/langs/lv_LV/receiptprinter.lang
index 658f2fdc1789349d438c40ec784f31f1a8fc6fa2..8b0ca8befa2eecc75c86f44fa4c5d578dbd6a829 100644
--- a/htdocs/langs/lv_LV/receiptprinter.lang
+++ b/htdocs/langs/lv_LV/receiptprinter.lang
@@ -3,11 +3,11 @@ PrinterAdded=Printer %s added
 PrinterUpdated=Printer %s updated
 PrinterDeleted=Printeris %s dzēsts
 TestSentToPrinter=Test Sent To Printer %s
-ReceiptPrinterDesc=Setup of printers
+ReceiptPrinterDesc=Iestatīt printerus
 ReceiptPrinterTemplateDesc=Setup of Templates
 ReceiptPrinterTypeDesc=Description of Receipt Printer's type
 ReceiptPrinterProfileDesc=Description of Receipt Printer's Profile
-ListPrinters=List of Printers
+ListPrinters=Printeru saraksts
 SetupReceiptTemplate=Template Setup
 CONNECTOR_DUMMY=Dummy Printer
 CONNECTOR_NETWORK_PRINT=Tīkla printeris
@@ -17,12 +17,12 @@ CONNECTOR_DUMMY_HELP=Viltus printeris testiem, nedara neko
 CONNECTOR_NETWORK_PRINT_HELP=10.x.x.x:9100
 CONNECTOR_FILE_PRINT_HELP=/dev/usb/lp0, /dev/usb/lp1
 CONNECTOR_WINDOWS_PRINT_HELP=LPT1, COM1, smb://FooUser:secret@computername/workgroup/Receipt Printer
-PROFILE_DEFAULT=Default Profile
-PROFILE_SIMPLE=Simple Profile
+PROFILE_DEFAULT=Noklusētais profils
+PROFILE_SIMPLE=Vienāršais profils
 PROFILE_EPOSTEP=Epos Tep Profile
-PROFILE_P822D=P822D Profile
+PROFILE_P822D=P822D Profils
 PROFILE_STAR=Star Profile
-PROFILE_DEFAULT_HELP=Default Profile suitable for Epson printers
+PROFILE_DEFAULT_HELP=Noklusētais profils piemērots Epson printeriem
 PROFILE_SIMPLE_HELP=Simple Profile No Graphics
 PROFILE_EPOSTEP_HELP=Epos Tep Profile Help
 PROFILE_P822D_HELP=P822D Profile No Graphics
diff --git a/htdocs/langs/lv_LV/resource.lang b/htdocs/langs/lv_LV/resource.lang
index 655beda09c6cacafb0ee187656fc98fc6f6e6807..4510f508948bfc92bc0ec1c4e1663b538e6cb869 100644
--- a/htdocs/langs/lv_LV/resource.lang
+++ b/htdocs/langs/lv_LV/resource.lang
@@ -17,7 +17,7 @@ ResourceFormLabel_description=Resursa apraksts
 
 ResourcesLinkedToElement=Resurss saistīts ar elementu
 
-ShowResource=Show resource
+ShowResource=Rārīt resursus
 ShowResourcePlanning=Rādīt resursu plānošanu
 GotoDate=Iet uz datumu
 
diff --git a/htdocs/langs/lv_LV/salaries.lang b/htdocs/langs/lv_LV/salaries.lang
index 44a5e677288ee2bf3e450164aa8f492931804734..9f6d30d35fab0179674beb896fe725a794e58183 100644
--- a/htdocs/langs/lv_LV/salaries.lang
+++ b/htdocs/langs/lv_LV/salaries.lang
@@ -3,7 +3,6 @@ SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Alga
 Salaries=Algas
-Employee=Darbinieks
 NewSalaryPayment=Jauna algas izmaksa
 SalaryPayment=Algas maksājums
 SalariesPayments=Algu maksājumi
diff --git a/htdocs/langs/lv_LV/sendings.lang b/htdocs/langs/lv_LV/sendings.lang
index c05d6a35d8119b1946dedb1fbee07096370a47a7..b16fe119daad59ffb61c56ed948387ebb859079b 100644
--- a/htdocs/langs/lv_LV/sendings.lang
+++ b/htdocs/langs/lv_LV/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Sūtījums
 Shipments=Sūtījumi
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Sūtījumu sadaļa
 ListOfSendings=Sūtījumu saraksts
 SendingMethod=Sūtīšanas metode
@@ -26,8 +26,8 @@ QtyToShip=Daudzums, kas jānosūta
 QtyReceived=Saņemtais daudzums
 KeepToShip=Vēl jāpiegādā
 OtherSendingsForSameOrder=Citas sūtījumiem uz šo rīkojumu
-DateSending=Shipping date
-DateSendingShort=Shipping date
+DateSending=Piegādes datums
+DateSendingShort=Piegādes datums
 SendingsForSameOrder=Sūtījumiem uz šo rīkojumu
 SendingsAndReceivingForSameOrder=Sūtījumiem un Receivings par šo rīkojumu
 SendingsToValidate=Sūtījumi apstiprināšanai,
diff --git a/htdocs/langs/lv_LV/sms.lang b/htdocs/langs/lv_LV/sms.lang
index 280969541ed4a7f12754fcfa2f12fc6dd4bbd0a3..e51e3d461b1965ccf112ca2c20c7e55d79e5401c 100644
--- a/htdocs/langs/lv_LV/sms.lang
+++ b/htdocs/langs/lv_LV/sms.lang
@@ -49,5 +49,6 @@ SendSms=Sūtīt SMS
 SmsInfoCharRemain=Atlikušo rakstzīmju skaits
 SmsInfoNumero= (Formāts starptautiskais t.i.: 37128701761)
 DelayBeforeSending=Aizture pirms nosūtīšanas (minūtēs)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Nav mērķa pieejams. Pārbaudiet iestatījumus jūsu SMS pakalpojumu sniedzēja.
 
diff --git a/htdocs/langs/lv_LV/stocks.lang b/htdocs/langs/lv_LV/stocks.lang
index 2b74fbd70aec7bfb53ebc4967e53a96205b9bd96..412b7e4b9be44a5ca1da6eff7fe9de41b25b96a3 100644
--- a/htdocs/langs/lv_LV/stocks.lang
+++ b/htdocs/langs/lv_LV/stocks.lang
@@ -5,7 +5,7 @@ Warehouses=Noliktavas
 NewWarehouse=Jauns noliktavu / Noliktavas platība
 WarehouseEdit=Modificēt noliktavas
 MenuNewWarehouse=Jauna noliktava
-WarehouseOpened=Warehouse open
+WarehouseOpened=Noliktava atvērta
 WarehouseClosed=Noliktava slēgts
 WarehouseSource=Sākotnējā noliktava
 WarehouseSourceNotDefined=Nē noliktava noteikts,
@@ -16,7 +16,7 @@ CancelSending=Atcelt sūtīšanu
 DeleteSending=Dzēst nosūtot
 Stock=Krājums
 Stocks=Krājumi
-StocksByLotSerial=Stock by lot/serial
+StocksByLotSerial=Stocks by lot/serial
 Movement=Kustība
 Movements=Kustības
 ErrorWarehouseRefRequired=Noliktava nosaukums ir obligāts
@@ -35,7 +35,7 @@ Units=Vienības
 Unit=Vienība
 StockCorrection=Labot krājumus
 StockTransfer=Krājumu pārvietošana
-StockMovement=Pārvietot
+StockMovement=Krājumu pārvietošana
 StockMovements=Krājumu pārvietošanas
 LabelMovement=Kustību nosaukums
 NumberOfUnit=Vienību skaits
@@ -53,8 +53,8 @@ QtyDispatched=Nosūtītais daudzums
 QtyDispatchedShort=Qty dispatched
 QtyToDispatchShort=Qty to dispatch
 OrderDispatch=Krājumu nosūtīšana
-RuleForStockManagementDecrease=Noteikums krājumu pārvaldības samazināšanos
-RuleForStockManagementIncrease=Noteikums krājumu pārvaldības palielināšanu
+RuleForStockManagementDecrease=Rule for automatic stock management decrease (manual decrease is always possible, even if an automatic decrease rule is activated)
+RuleForStockManagementIncrease=Rule for automatic stock management increase (manual increase is always possible, even if an automatic increase rule is activated)
 DeStockOnBill=Samazināt nekustamā krājumi uz klientu rēķinu / kredīta piezīmes apstiprināšanu
 DeStockOnValidateOrder=Samazināt nekustamā krājumus klientu pasūtījumus apstiprināšanu
 DeStockOnShipment=Decrease real stocks on shipping validation
@@ -83,8 +83,8 @@ WarehousesAndProductsBatchDetail=Warehouses and products (with detail per lot/se
 AverageUnitPricePMPShort=Vidējais svērtais ieejas cena
 AverageUnitPricePMP=Vidējais svērtais ieejas cena
 SellPriceMin=Pārdošanas Vienības cena
-EstimatedStockValueSellShort=Pārdošanas vērtība
-EstimatedStockValueSell=Pārdošanas vērtība
+EstimatedStockValueSellShort=Pārdošanas cena
+EstimatedStockValueSell=Pārdošanas cena
 EstimatedStockValueShort=Sākotnējā krājumu vērtība
 EstimatedStockValue=Sākotnējā krājumu vērtība
 DeleteAWarehouse=Dzēst noliktavu
@@ -95,7 +95,7 @@ SelectWarehouseForStockDecrease=Izvēlieties noliktavu krājumu samazināšanai
 SelectWarehouseForStockIncrease=Izvēlieties noliktavu krājumu palielināšanai
 NoStockAction=Nav akciju darbība
 LastWaitingSupplierOrders=Pasūtījumi gaida pieņemšanām
-DesiredStock=Desired minimum stock
+DesiredStock=Izvēlētais minimālais krājums
 DesiredMaxStock=Desired maximum stock
 StockToBuy=Lai pasūtītu
 Replenishment=Papildinājums
@@ -113,7 +113,7 @@ AlertOnly= Brīdinājumi tikai
 WarehouseForStockDecrease=Noliktava <b>%s</b> tiks izmantota krājumu samazināšanai
 WarehouseForStockIncrease=Noliktava <b>%s</b> tiks izmantota krājumu palielināšanai
 ForThisWarehouse=Šai noliktavai
-ReplenishmentStatusDesc=This is a list of all products with a stock lower than desired stock (or lower than alert value if checkbox "alert only" is checked), and suggest you to create supplier orders to fill the difference.
+ReplenishmentStatusDesc=This is a list of all products with a stock lower than desired stock (or lower than alert value if checkbox "alert only" is checked). Using the checkbox, you can create supplier orders to fill the difference.
 ReplenishmentOrdersDesc=This is a list of all opened supplier orders including predefined products. Only opened orders with predefined products, so orders that may affect stocks, are visible here.
 Replenishments=Papildinājumus
 NbOfProductBeforePeriod=Produktu daudzums %s noliktavā pirms izvēlētā perioda (< %s)
diff --git a/htdocs/langs/lv_LV/supplier_proposal.lang b/htdocs/langs/lv_LV/supplier_proposal.lang
index a1de877d10ef39e8201f123a2a03cd3b0e0511a5..4065f3cfaea1eea7ac39869d922bc18594e2d48f 100644
--- a/htdocs/langs/lv_LV/supplier_proposal.lang
+++ b/htdocs/langs/lv_LV/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=Jauns pieprasījums
-supplier_proposalMENU_LEFT_TITLE_LIST=Saraksts
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Cenas pieprasījums
 CommRequests=Cenas pieprasījumi
 SearchRequest=Atrast pieprasījumu
@@ -11,14 +10,14 @@ DraftRequests=Pieprasījuma melnraksts
 LastModifiedRequests=Pēdējie %s labotie cenas pieprasījumi
 RequestsOpened=Atvērt cenas pieprasījumu
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=Jauns cenas pieprasījums
 NewAsk=Jauns pieprasījums
-ShowSupplierProposal=Show price request
-AddSupplierProposal=Create a price request
+ShowSupplierProposal=Rādīt cenas pieprasījumu
+AddSupplierProposal=Izveidot cenas pieprasījumu
 SupplierProposalRefFourn=Supplier ref
-SupplierProposalDate=Delivery date
+SupplierProposalDate=Piegādes datums
 SupplierProposalRefFournNotice=Before closing to "Accepted", think to grasp suppliers references.
 RelatedSupplierProposal=Related price requests suppliers
 ConfirmValidateAsk=Are you sure you want to validate this price request under name <b>%s</b> ?
@@ -26,21 +25,21 @@ DateAsk=Pieprasījuma datums
 DeleteAsk=Dzēst pieprasījumu
 ValidateAsk=Apstiprināt pieprasījumu
 AddAsk=Izveidot pieprasījumu
-SupplierProposalDraft=Drafts
-SupplierProposalOpened=Open
+SupplierProposalDraft=Melnraksts
+SupplierProposalOpened=Atvērt
 SupplierProposalStatusDraft=Draft (needs to be validated)
 SupplierProposalStatusValidated=Validated (request is open)
 SupplierProposalStatusOpened=Validated (request is open)
-SupplierProposalStatusClosed=Closed
-SupplierProposalStatusSigned=Accepted
-SupplierProposalStatusNotSigned=Refused
+SupplierProposalStatusClosed=Slēgts
+SupplierProposalStatusSigned=Apstiprināts
+SupplierProposalStatusNotSigned=Atteikts
 SupplierProposalStatusBilled=Billed
-SupplierProposalStatusDraftShort=Draft
+SupplierProposalStatusDraftShort=Melnraksts
 SupplierProposalStatusValidatedShort=Validated
-SupplierProposalStatusOpenedShort=Open
-SupplierProposalStatusClosedShort=Closed
-SupplierProposalStatusSignedShort=Accepted
-SupplierProposalStatusNotSignedShort=Refused
+SupplierProposalStatusOpenedShort=Atvērt
+SupplierProposalStatusClosedShort=Slēgts
+SupplierProposalStatusSignedShort=Apstiprināts
+SupplierProposalStatusNotSignedShort=Atteikts
 SupplierProposalStatusBilledShort=Billed
 CopyAskFrom=Izveidot cenas pieprasījumu kopējot jau esošo pieprasījumu
 CreateEmptyAsk=Izveidot jaunu tukšu pieprasījumu
diff --git a/htdocs/langs/lv_LV/trips.lang b/htdocs/langs/lv_LV/trips.lang
index e46c805f6ec7b26414265cf00789cc0f88d6a002..494f43d3fdd476df02fc949521fd8522c81f88dc 100644
--- a/htdocs/langs/lv_LV/trips.lang
+++ b/htdocs/langs/lv_LV/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Cits
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Pusdienas
 TF_METRO=Metro
 TF_TRAIN=Vilciens
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/lv_LV/users.lang b/htdocs/langs/lv_LV/users.lang
index 8a8aea6eee94f808f97f98c14a8115d5dec36c71..817c25981e51080ac78fdccace3716f6b8af4060 100644
--- a/htdocs/langs/lv_LV/users.lang
+++ b/htdocs/langs/lv_LV/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Izmantojiet OpenID, lai pieteiktos
 WeeklyHours=Nedēļas stundas
 ColorUser=Lietotāja krāsa
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/lv_LV/withdrawals.lang b/htdocs/langs/lv_LV/withdrawals.lang
index 102bb12f62774597fba36c97ead922f90ba5241c..2d8828137c03d26a3b6de195192d2d4e7d421e0c 100644
--- a/htdocs/langs/lv_LV/withdrawals.lang
+++ b/htdocs/langs/lv_LV/withdrawals.lang
@@ -60,7 +60,7 @@ StatusMotif3=Nav Izstāšanās kārtība
 StatusMotif4=Klienta pasūtijums
 StatusMotif5=RIB nelietojams
 StatusMotif6=Konta bez atlikuma
-StatusMotif7=Tiesas lēmums
+StatusMotif7=Juridiskais lēmums
 StatusMotif8=Cits iemesls
 CreateAll=Atsaukt visus
 CreateGuichet=Tikai birojs
diff --git a/htdocs/langs/mk_MK/accountancy.lang b/htdocs/langs/mk_MK/accountancy.lang
index 5ee7e8de9f54f863782f095d33e3d4f43b2e78d2..87e3200f57c3544cb69c4a4d2a00867fbc5af632 100644
--- a/htdocs/langs/mk_MK/accountancy.lang
+++ b/htdocs/langs/mk_MK/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Return
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sells journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/mk_MK/admin.lang b/htdocs/langs/mk_MK/admin.lang
index c81fe4c28afda6683163ea69aba69202b77179ec..9cff117f74abd2a9b1a059a41efe0b7e74134f95 100644
--- a/htdocs/langs/mk_MK/admin.lang
+++ b/htdocs/langs/mk_MK/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Hide all information related to VAT on generated PDF
 HideDescOnPDF=Hide products description on generated PDF
 HideRefOnPDF=Hide products ref. on generated PDF
 HideDetailsOnPDF=Hide products lines details on generated PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Library
 UrlGenerationParameters=Parameters to secure URLs
 SecurityTokenIsUnique=Use a unique securekey parameter for each URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Users & groups
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Notifications
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Donations
 Module700Desc=Donation management
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Delays before warning
 DelaysOfToleranceBeforeWarning=Tolerance delays before warning
 DelaysOfToleranceDesc=This screen allows you to define the tolerated delays before an alert is reported on screen with picto %s for each late element.
 Delays_MAIN_DELAY_ACTIONS_TODO=Delay tolerance (in days) before alert on planned events not yet realised
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on orders not yet processed
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on suppliers orders not yet processed
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Delay tolerance (in days) before alert on proposals to close
@@ -1087,6 +1089,7 @@ PathDirectory=Directory
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/mk_MK/agenda.lang b/htdocs/langs/mk_MK/agenda.lang
index d8776508edcf523910ab3b06f56e1c9feb947af3..a0ccdfd26ea417d55219526b58c9ec073df47938 100644
--- a/htdocs/langs/mk_MK/agenda.lang
+++ b/htdocs/langs/mk_MK/agenda.lang
@@ -35,7 +35,9 @@ AllActions= All events/tasks
 ViewCal=Month view
 ViewDay=Day view
 ViewWeek=Week view
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= View with predefined filters
 AutoActions= Automatic filling
 AgendaAutoActionDesc= Define here events for which you want Dolibarr to create automatically an event in agenda. If nothing is checked (by default), only manual actions will be included in agenda.
diff --git a/htdocs/langs/mk_MK/bills.lang b/htdocs/langs/mk_MK/bills.lang
index 6a474886ee903714c336a4cec9f301bc999b989d..a4f919a6f49bb096b27addc8ef61adb5ebf42c9a 100644
--- a/htdocs/langs/mk_MK/bills.lang
+++ b/htdocs/langs/mk_MK/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Payments already done
 PaymentsBackAlreadyDone=Payments back already done
 PaymentRule=Payment rule
 PaymentMode=Payment type
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=Show invoice
 ShowInvoiceReplace=Show replacing invoice
 ShowInvoiceAvoir=Show credit note
 ShowInvoiceDeposit=Show deposit invoice
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Show payment
 AlreadyPaid=Already paid
 AlreadyPaidBack=Already paid back
@@ -221,6 +224,7 @@ NonPercuRecuperable=Non-recoverable
 SetConditions=Set payment terms
 SetMode=Set payment mode
 Billed=Billed
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=This amount has been abandoned (customer said to be a bad
 HelpAbandonOther=This amount has been abandoned since it was an error (wrong customer or invoice replaced by an other for example)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Payment id
+PaymentRef=Payment ref.
 InvoiceId=Invoice id
 InvoiceRef=Invoice ref.
 InvoiceDateCreation=Invoice creation date
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Immediate
@@ -393,6 +402,7 @@ Reported=Delayed
 DisabledBecausePayments=Not possible since there are some payments
 CantRemovePaymentWithOneInvoicePaid=Can't remove payment since there is at least one invoice classified paid
 ExpectedToPay=Expected payment
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Paid by this payment
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third pa
 RevenueStamp=Revenue stamp
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Invoice PDF template Crabe. A complete invoice template (recommended Template)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=A bill starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/mk_MK/boxes.lang b/htdocs/langs/mk_MK/boxes.lang
index 634b058f6d40f39c5434322b8c1ee431c6efccfa..8595403dc30264fc25e0890343920207a3b2fcc2 100644
--- a/htdocs/langs/mk_MK/boxes.lang
+++ b/htdocs/langs/mk_MK/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Customers invoices
 ForCustomersOrders=Customers orders
 ForProposals=Proposals
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/mk_MK/categories.lang b/htdocs/langs/mk_MK/categories.lang
index 81c73356c9313f8f6b58ca91fb632a9d894f335b..ccf22bb5003ca9dd4d684ff764aeb69eef7f739b 100644
--- a/htdocs/langs/mk_MK/categories.lang
+++ b/htdocs/langs/mk_MK/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo./Prosp. categories
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/mk_MK/companies.lang b/htdocs/langs/mk_MK/companies.lang
index e31c347605e091b48daeb2403b0c36b513540c0e..292fcafe238315d5e9cb6c07e0574a9f3979f7ba 100644
--- a/htdocs/langs/mk_MK/companies.lang
+++ b/htdocs/langs/mk_MK/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (R.C.)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (R.F.C).
 ProfId2MX=Prof Id 2 (R..P. IMSS)
diff --git a/htdocs/langs/mk_MK/compta.lang b/htdocs/langs/mk_MK/compta.lang
index d73f580cc8b8a84426e53b5a0c38c03dc8511bb6..07b609a17e428435a16e70932ee1763b18a0a7fa 100644
--- a/htdocs/langs/mk_MK/compta.lang
+++ b/htdocs/langs/mk_MK/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Deposit invoices are nor included
 DepositsAreIncluded=- Deposit invoices are included
 LT2ReportByCustomersInInputOutputModeES=Report by third party IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/mk_MK/cron.lang b/htdocs/langs/mk_MK/cron.lang
index bd85715642ec700a51b7365535762b2760ae54e5..21786df66cfcf912dd12c81c03fbb604e2255c26 100644
--- a/htdocs/langs/mk_MK/cron.lang
+++ b/htdocs/langs/mk_MK/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=List of disabled jobs
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Last run
 CronLastOutput=Last run output
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Job
 CronNone=None
-CronDtStart=Start date
-CronDtEnd=End date
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Next execution
 CronDtLastLaunch=Last execution
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=No jobs registered
 CronPriority=Priority
 CronLabel=Description
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
diff --git a/htdocs/langs/mk_MK/deliveries.lang b/htdocs/langs/mk_MK/deliveries.lang
index c513f3e347c28f0df14813efd7136bc833d51445..47e210744704ae9f083d6f1cf6630f7037ad794b 100644
--- a/htdocs/langs/mk_MK/deliveries.lang
+++ b/htdocs/langs/mk_MK/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Are you sure you want to delete delivery receipt <b
 DeliveryMethod=Delivery method
 TrackingNumber=Tracking number
 DeliveryNotValidated=Delivery not validated
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Name and Signature :
 ToAndDate=To___________________________________ on ____/_____/__________
diff --git a/htdocs/langs/mk_MK/holiday.lang b/htdocs/langs/mk_MK/holiday.lang
index 4beedf7021fa5d57420d3598b776c0af633abbed..a15b2d97224d732e1eceb7b84ff0947dd62e1cff 100644
--- a/htdocs/langs/mk_MK/holiday.lang
+++ b/htdocs/langs/mk_MK/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Employee
 DateDebCP=Start date
 DateFinCP=End date
 DateCreateCP=Creation date
@@ -23,7 +22,7 @@ ReviewedByCP=Will be reviewed by
 DescCP=Description
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=You must select an end date greater than the start date.
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Name
-Employee=Employee
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Monthly update
 ManualUpdate=Manual update
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/mk_MK/hrm.lang b/htdocs/langs/mk_MK/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/mk_MK/hrm.lang
+++ b/htdocs/langs/mk_MK/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/mk_MK/interventions.lang b/htdocs/langs/mk_MK/interventions.lang
index 5c08c3063534c07d4eea4a2096402a33cccadd41..cbcba219f1139b397fa8fe54ef5292c2ddf22248 100644
--- a/htdocs/langs/mk_MK/interventions.lang
+++ b/htdocs/langs/mk_MK/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Return numero with format %syymm-nnnn where yy is year,
 PacificNumRefModelError=An intervention card starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
 PrintProductsOnFichinter=Print products on intervention card
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/mk_MK/mails.lang b/htdocs/langs/mk_MK/mails.lang
index 87a1bd3c4d77c148a4c9554f25e94c5ca4becd9e..fbd7a14cd0471869ac1a1a0f1ec364a41ab9a244 100644
--- a/htdocs/langs/mk_MK/mails.lang
+++ b/htdocs/langs/mk_MK/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail sent to %s recipients.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/mk_MK/main.lang b/htdocs/langs/mk_MK/main.lang
index 469cad0b6353f50b478ddb4f517104429dca3b2b..e4a9de75331f9b51fcd8a442daa057105e9fdb61 100644
--- a/htdocs/langs/mk_MK/main.lang
+++ b/htdocs/langs/mk_MK/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=Database connection
+NoTemplateDefined=No template defined for this email type
 NoTranslation=No translation
 NoRecordFound=No record found
 NoError=No error
@@ -105,6 +106,7 @@ NotePrivate=Note (private)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr was setup to limit precision of unit prices to <b>%s</b> decimals.
 DoTest=Test
 ToFilter=Filter
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Warning, you have at least one element that has exceeded the tolerance delay.
 yes=yes
 Yes=Yes
@@ -228,6 +230,8 @@ Now=Now
 HourStart=Start hour
 Date=Date
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Date start
 DateEnd=Date end
 DateCreation=Creation date
@@ -608,6 +612,7 @@ TotalMan=Total
 NeverReceived=Never received
 Canceled=Canceled
 YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Color
 Documents=Linked files
 DocumentsNb=Linked files (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=No pictures available yet
 HomeDashboard=Home summary
+Dashboard=Dashboard
 Deductible=Deductible
 from=from
 toward=toward
diff --git a/htdocs/langs/mk_MK/margins.lang b/htdocs/langs/mk_MK/margins.lang
index 7db5ea4892e47d38f81f47f47b7beb00e1177280..27bb4de9fa34bef827f4501268d659670a983767 100644
--- a/htdocs/langs/mk_MK/margins.lang
+++ b/htdocs/langs/mk_MK/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Choose product or service
 StartDate=Start date
 EndDate=End date
 Launch=Start
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=As a product
 UseDiscountAsService=As a service
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/mk_MK/oauth.lang b/htdocs/langs/mk_MK/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/mk_MK/oauth.lang
+++ b/htdocs/langs/mk_MK/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/mk_MK/orders.lang b/htdocs/langs/mk_MK/orders.lang
index 29c2a0b5e21d6c38fe10363675a1bc04bdd5b309..c0bfc3ccce39be48af6c839b61305244d9261c47 100644
--- a/htdocs/langs/mk_MK/orders.lang
+++ b/htdocs/langs/mk_MK/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=No draft orders
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Other orders
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/mk_MK/other.lang b/htdocs/langs/mk_MK/other.lang
index 5fff107fde9aef8b5b102b11516d063214201ce7..c53f32346fe31f4f3ab22fa18f5933e33d5e97e2 100644
--- a/htdocs/langs/mk_MK/other.lang
+++ b/htdocs/langs/mk_MK/other.lang
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=New export
 ##### External sites #####
 ExternalSites=External sites
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/mk_MK/paypal.lang b/htdocs/langs/mk_MK/paypal.lang
index a4204f919825385332e460f03280067caa62dbb4..c6905f2ecc4299f59205dda7302732f0f7e67666 100644
--- a/htdocs/langs/mk_MK/paypal.lang
+++ b/htdocs/langs/mk_MK/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Mode test/sandbox
 PAYPAL_API_USER=API username
 PAYPAL_API_PASSWORD=API password
 PAYPAL_API_SIGNATURE=API signature
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Offer payment "integral" (Credit card+Paypal) or "Paypal" only
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/mk_MK/products.lang b/htdocs/langs/mk_MK/products.lang
index 0faea3691b0bd0e55ac1001d24cb88993cab4347..3926759fccadd1d5d9a3e2b3caf0d17fda789b7f 100644
--- a/htdocs/langs/mk_MK/products.lang
+++ b/htdocs/langs/mk_MK/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Production completed
-ProductsMultiPrice=Product multi-price
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/mk_MK/projects.lang b/htdocs/langs/mk_MK/projects.lang
index 7c94e3eb257ae07dea71f32084407e741fd94b1b..f6f6dd8ecaf09ead7b9c5d088f9ce307da860db9 100644
--- a/htdocs/langs/mk_MK/projects.lang
+++ b/htdocs/langs/mk_MK/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=This view presents all projects (your user permissions grant you permission to view everything).
 MyTasksDesc=This view is limited to projects or tasks you are a contact for (whatever is the type).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=This view presents all projects and tasks you are allowed to read.
 TasksDesc=This view presents all projects and tasks (your user permissions grant you permission to view everything).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Officer project
 LastProjects=Last %s projects
 AllProjects=All projects
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=List of projects
 ShowProject=Show project
 SetProject=Set project
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/mk_MK/propal.lang b/htdocs/langs/mk_MK/propal.lang
index d12d7595f94d6a48a961cc635329e86ed543a7ea..79ae1f1cd50add8ebf9f9f1275481055ed84ce06 100644
--- a/htdocs/langs/mk_MK/propal.lang
+++ b/htdocs/langs/mk_MK/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Last %s modified proposals
 AllPropals=All proposals
 LastProposals=Last proposals
 SearchAProposal=Search a proposal
+NoProposal=No proposal
 ProposalsStatistics=Commercial proposal's statistics
 NumberOfProposalsByMonth=Number by month
 AmountOfProposalsByMonthHT=Amount by month (net of tax)
@@ -62,7 +63,8 @@ DatePropal=Date of proposal
 DateEndPropal=Validity ending date
 DateEndPropalShort=Date end
 ValidityDuration=Validity duration
-CloseAs=Close with status
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Classify billed
 BuildBill=Build invoice
 ErrorPropalNotFound=Propal %s not found
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Default model creation
 DefaultModelPropalToBill=Default template when closing a business proposal (to be invoiced)
 DefaultModelPropalClosed=Default template when closing a business proposal (unbilled)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/mk_MK/salaries.lang b/htdocs/langs/mk_MK/salaries.lang
index 953a9c7540cbb06d6209140b32aaa0d23261e324..da177410860fb80d4d2d0872ec3b258ed787ba0e 100644
--- a/htdocs/langs/mk_MK/salaries.lang
+++ b/htdocs/langs/mk_MK/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Salary
 Salaries=Salaries
-Employee=Employee
 NewSalaryPayment=New salary payment
 SalaryPayment=Salary payment
 SalariesPayments=Salaries payments
diff --git a/htdocs/langs/mk_MK/sendings.lang b/htdocs/langs/mk_MK/sendings.lang
index fa7da0b00794647c45f8777bbc68fb23a31e1c0e..fb7b9c08868e29621711a9651a94ed955c6b223f 100644
--- a/htdocs/langs/mk_MK/sendings.lang
+++ b/htdocs/langs/mk_MK/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Shipment
 Shipments=Shipments
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Shipments area
 ListOfSendings=List of shipments
 SendingMethod=Shipping method
diff --git a/htdocs/langs/mk_MK/sms.lang b/htdocs/langs/mk_MK/sms.lang
index 0ec0e61a588bedc541daf217d80885bddf755973..70066caac96971420d7c55b09879e200888763c2 100644
--- a/htdocs/langs/mk_MK/sms.lang
+++ b/htdocs/langs/mk_MK/sms.lang
@@ -1,53 +1,54 @@
 # Dolibarr language file - Source file is en_US - sms
-# Sms=Sms
-# SmsSetup=Sms setup
-# SmsDesc=This page allows you to define globals options on SMS features
-# SmsCard=SMS Card
-# AllSms=All SMS campains
-# SmsTargets=Targets
-# SmsRecipients=Targets
-# SmsRecipient=Target
-# SmsTitle=Description
-# SmsFrom=Sender
-# SmsTo=Target
-# SmsTopic=Topic of SMS
-# SmsText=Message
-# SmsMessage=SMS Message
-# ShowSms=Show Sms
-# ListOfSms=List SMS campains
-# NewSms=New SMS campain
-# EditSms=Edit Sms
-# ResetSms=New sending
-# DeleteSms=Delete Sms campain
-# DeleteASms=Remove a Sms campain
-# PreviewSms=Previuw Sms
-# PrepareSms=Prepare Sms
-# CreateSms=Create Sms
-# SmsResult=Result of Sms sending
-# TestSms=Test Sms
-# ValidSms=Validate Sms
-# ApproveSms=Approve Sms
-# SmsStatusDraft=Draft
-# SmsStatusValidated=Validated
-# SmsStatusApproved=Approved
-# SmsStatusSent=Sent
-# SmsStatusSentPartialy=Sent partially
-# SmsStatusSentCompletely=Sent completely
-# SmsStatusError=Error
-# SmsStatusNotSent=Not sent
-# SmsSuccessfulySent=Sms correctly sent (from %s to %s)
-# ErrorSmsRecipientIsEmpty=Number of target is empty
-# WarningNoSmsAdded=No new phone number to add to target list
-# ConfirmValidSms=Do you confirm validation of this campain ?
-# ConfirmResetMailing=Warning, if you make a reinit of Sms campain <b>%s</b>, you will allow to make a mass sending of it a second time. Is it really what you wan to do ?
-# ConfirmDeleteMailing=Do you confirm removing of campain ?
-# NbOfRecipients=Number of targets
-# NbOfUniqueSms=Nb dof unique phone numbers
-# NbOfSms=Nbre of phon numbers
-# ThisIsATestMessage=This is a test message
-# SendSms=Send SMS
-# SmsInfoCharRemain=Nb of remaining characters
-# SmsInfoNumero= (format international ie : +33899701761)
-# DelayBeforeSending=Delay before sending (minutes)
-# SmsNoPossibleRecipientFound=No target available. Check setup of your SMS provider.
+Sms=Sms
+SmsSetup=Sms setup
+SmsDesc=This page allows you to define globals options on SMS features
+SmsCard=SMS Card
+AllSms=All SMS campains
+SmsTargets=Targets
+SmsRecipients=Targets
+SmsRecipient=Target
+SmsTitle=Description
+SmsFrom=Sender
+SmsTo=Target
+SmsTopic=Topic of SMS
+SmsText=Message
+SmsMessage=SMS Message
+ShowSms=Show Sms
+ListOfSms=List SMS campains
+NewSms=New SMS campain
+EditSms=Edit Sms
+ResetSms=New sending
+DeleteSms=Delete Sms campain
+DeleteASms=Remove a Sms campain
+PreviewSms=Previuw Sms
+PrepareSms=Prepare Sms
+CreateSms=Create Sms
+SmsResult=Result of Sms sending
+TestSms=Test Sms
+ValidSms=Validate Sms
+ApproveSms=Approve Sms
+SmsStatusDraft=Draft
+SmsStatusValidated=Validated
+SmsStatusApproved=Approved
+SmsStatusSent=Sent
+SmsStatusSentPartialy=Sent partially
+SmsStatusSentCompletely=Sent completely
+SmsStatusError=Error
+SmsStatusNotSent=Not sent
+SmsSuccessfulySent=Sms correctly sent (from %s to %s)
+ErrorSmsRecipientIsEmpty=Number of target is empty
+WarningNoSmsAdded=No new phone number to add to target list
+ConfirmValidSms=Do you confirm validation of this campain ?
+ConfirmResetMailing=Warning, if you make a reinit of Sms campain <b>%s</b>, you will allow to make a mass sending of it a second time. Is it really what you wan to do ?
+ConfirmDeleteMailing=Do you confirm removing of campain ?
+NbOfRecipients=Number of targets
+NbOfUniqueSms=Nb dof unique phone numbers
+NbOfSms=Nbre of phon numbers
+ThisIsATestMessage=This is a test message
+SendSms=Send SMS
+SmsInfoCharRemain=Nb of remaining characters
+SmsInfoNumero= (format international ie : +33899701761)
+DelayBeforeSending=Delay before sending (minutes)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
+SmsNoPossibleRecipientFound=No target available. Check setup of your SMS provider.
 
diff --git a/htdocs/langs/mk_MK/supplier_proposal.lang b/htdocs/langs/mk_MK/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/mk_MK/supplier_proposal.lang
+++ b/htdocs/langs/mk_MK/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/mk_MK/trips.lang b/htdocs/langs/mk_MK/trips.lang
index ce9f0970e7c331996ee194c7613983060795a647..5ccdf8d0e37dcf680cc33691fdce1fd5644f2d53 100644
--- a/htdocs/langs/mk_MK/trips.lang
+++ b/htdocs/langs/mk_MK/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Other
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Lunch
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/mk_MK/users.lang b/htdocs/langs/mk_MK/users.lang
index 5b85ec80cf7e8a65d24d83c7359f831f9d150669..8a7dfcfe78753c5bda61b8d82208350a9e362652 100644
--- a/htdocs/langs/mk_MK/users.lang
+++ b/htdocs/langs/mk_MK/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Use OpenID to login
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/nb_NO/accountancy.lang b/htdocs/langs/nb_NO/accountancy.lang
index d6b7fa5ab870c8a0cebc3e125d4536a2caec9c77..dbea3041e6fad4b42f77e9d9d889526cd554aba9 100644
--- a/htdocs/langs/nb_NO/accountancy.lang
+++ b/htdocs/langs/nb_NO/accountancy.lang
@@ -1,32 +1,31 @@
 # Dolibarr language file - en_US - Accounting Expert
-ACCOUNTING_EXPORT_SEPARATORCSV=Column separator for export file
-ACCOUNTING_EXPORT_DATE=Date format for export file
+ACCOUNTING_EXPORT_SEPARATORCSV=Kolonneseparator for eksportfil
+ACCOUNTING_EXPORT_DATE=Datoformat for eksportfil
 ACCOUNTING_EXPORT_PIECE=Export the number of piece
 ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Export with global account
-ACCOUNTING_EXPORT_LABEL=Export the label
-ACCOUNTING_EXPORT_AMOUNT=Export the amount
+ACCOUNTING_EXPORT_LABEL=Eksporter etikett
+ACCOUNTING_EXPORT_AMOUNT=Eksporter beløp
 ACCOUNTING_EXPORT_DEVISE=Export the devise
-Selectformat=Select the format for the file
-ACCOUNTING_EXPORT_PREFIX_SPEC=Specify the prefix for the file name
-
-Accounting=Accounting
-Globalparameters=Global parameters
-Menuaccount=Accounting accounts
-Menuthirdpartyaccount=Thirdparty accounts
-MenuTools=Tools
-
-ConfigAccountingExpert=Configuration of the module accounting expert
-Journaux=Journals
-JournalFinancial=Financial journals
-Exports=Exports
-Export=Export
-Modelcsv=Model of export
+Selectformat=Velg filformat
+ACCOUNTING_EXPORT_PREFIX_SPEC=Velg prefiks for filnavnet
+
+Accounting=Regnskap
+Globalparameters=Globale parametre
+Menuaccount=Regnskapskonti
+Menuthirdpartyaccount=Tredjepartskonti
+MenuTools=Verktøy
+
+ConfigAccountingExpert=Konfigurasjon av modulen regnskapsekspert
+Journaux=Journaler
+JournalFinancial=Finasielle journaler
+Exports=Eksporter
+Export=Eksport
+Modelcsv=Eksportmodell
 OptionsDeactivatedForThisExportModel=For this export model, options are deactivated
-Selectmodelcsv=Select a model of export
-Modelcsv_normal=Classic export
+Selectmodelcsv=Velg eksportmodell
+Modelcsv_normal=Klassisk eksport
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Return
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -38,38 +37,38 @@ Ventilation=Breakdown
 CustomersVentilation=Breakdown customers
 SuppliersVentilation=Breakdown suppliers
 TradeMargin=Trade margin
-Reports=Reports
-ByCustomerInvoice=By invoices customers
-NewAccount=New accounting account
-Create=Create
-CreateMvts=Create movement
-UpdateAccount=Modification of an accounting account
-UpdateMvts=Modification of a movement
+Reports=Rapporter
+ByCustomerInvoice=Etter kundefakturaer
+NewAccount=Ny regnskapskonto
+Create=Opprett
+CreateMvts=Opprett bevegelse
+UpdateAccount=Endring av reknskapskonto
+UpdateMvts=Endring av bevegelse
 WriteBookKeeping=Record accounts in general ledger
-Bookkeeping=General ledger
-AccountBalanceByMonth=Account balance by month
+Bookkeeping=Hovedbok
+AccountBalanceByMonth=Kontobalanse etter måned
 
 AccountingVentilation=Breakdown accounting
 AccountingVentilationSupplier=Breakdown accounting supplier
 AccountingVentilationCustomer=Breakdown accounting customer
 
 CAHTF=Total purchase supplier before tax
-InvoiceLines=Lines of invoice to be ventilated
-InvoiceLinesDone=Ventilated lines of invoice
-IntoAccount=Ventilate in the accounting account
+InvoiceLines=Fakturalinjer som skal ventileres
+InvoiceLinesDone=Ventilerte fakturalinjer
+IntoAccount=Ventiler regnskapskontoen
 
-Ventilate=Ventilate
+Ventilate=Ventiler
 VentilationAuto=Automatic breakdown
 
-Processing=Processing
-EndProcessing=The end of processing
+Processing=Behandler
+EndProcessing=Behandling ferdig
 AnyLineVentilate=Any lines to ventilate
-SelectedLines=Selected lines
-Lineofinvoice=Line of invoice
+SelectedLines=Valgte linjer
+Lineofinvoice=Fakturalinje
 VentilatedinAccount=Ventilated successfully in the accounting account
 NotVentilatedinAccount=Not ventilated in the accounting account
 
-ACCOUNTING_SEPARATORCSV=Column separator in export file
+ACCOUNTING_SEPARATORCSV=Kolonneseparator for exportfil
 
 ACCOUNTING_LIMIT_LIST_VENTILATION=Number of elements to be breakdown shown by page (maximum recommended : 50)
 ACCOUNTING_LIST_SORT_VENTILATION_TODO=Begin the sorting of the breakdown pages "Has to breakdown" by the most recent elements
@@ -82,9 +81,9 @@ ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=Length for displaying product & services a
 ACCOUNTING_LENGTH_GACCOUNT=Length of the general accounts
 ACCOUNTING_LENGTH_AACCOUNT=Length of the third party accounts
 
-ACCOUNTING_SELL_JOURNAL=Sell journal
-ACCOUNTING_PURCHASE_JOURNAL=Purchase journal
-ACCOUNTING_MISCELLANEOUS_JOURNAL=Miscellaneous journal
+ACCOUNTING_SELL_JOURNAL=Salgsjournal
+ACCOUNTING_PURCHASE_JOURNAL=Innkjøpsjournal
+ACCOUNTING_MISCELLANEOUS_JOURNAL=Diverseprotokoll
 ACCOUNTING_EXPENSEREPORT_JOURNAL=Expense report journal
 ACCOUNTING_SOCIAL_JOURNAL=Social journal
 
@@ -96,24 +95,20 @@ ACCOUNTING_PRODUCT_SOLD_ACCOUNT=Accounting account by default for the sold produ
 ACCOUNTING_SERVICE_BUY_ACCOUNT=Accounting account by default for the bought services (if not defined in the service sheet)
 ACCOUNTING_SERVICE_SOLD_ACCOUNT=Accounting account by default for the sold services (if not defined in the service sheet)
 
-Doctype=Type of document
-Docdate=Date
-Docref=Reference
-Numerocompte=Account
-Code_tiers=Thirdparty
+Doctype=Dokumenttype
+Docdate=Dato
+Docref=Referanse
+Numerocompte=Konto
+Code_tiers=Tredjepart
 Labelcompte=Label account
 Sens=Sens
 Codejournal=Journal
 
 DelBookKeeping=Delete the records of the general ledger
 
-DescSellsJournal=Sales journal
-DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
-FinanceJournal=Finance journal
+DescSellsJournal=Salgsjournal
+DescPurchasesJournal=Innkjøpsjournal
+FinanceJournal=Finansjournal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
 CashPayment=Cash Payment
@@ -139,8 +134,8 @@ Pcgsubtype=Under class of account
 Accountparent=Root of the account
 
 DescVentilCustomer=Consult here the annual breakdown accounting of your invoices customers
-TotalVente=Total turnover before tax
-TotalMarge=Total sales margin
+TotalVente=Total omsetning før skatt
+TotalMarge=Total salgsmargin
 DescVentilDoneCustomer=Consult here the list of the lines of invoices customers and their accounting account
 DescVentilTodoCustomer=Ventilate your lines of customer invoice with an accounting account
 ChangeAccount=Change the accounting account for lines selected by the account:
@@ -152,22 +147,28 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Bevegelse er ikke korrekt balansert. Kredit=%s. Debet=%s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
 ##Export Journal Feature
-ExportFormat=Format of Export
-Prefixname=Prefix of export File
-Separate=Export separator
+ExportFormat=Eksportformat
+Prefixname=Prefiks for ekportfil
+Separate=Eksportseparator
 Textframe=Frame of text value
-Headercol=Colname in header of file
-Fieldname=Name of Field
-Headername=Name in header
-Type=Type of fields
-Param=Additionnal parameters
+Headercol=Kolonnenavn i filheading
+Fieldname=Feltnavn
+Headername=Overskrift
+Type=Felttyper
+Param=Tilleggsparametre
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/nb_NO/admin.lang b/htdocs/langs/nb_NO/admin.lang
index 16df6b53c9b386926080d527f53348d3eab177d0..0bb95b98b513b42c51959f2d398477e145cddcb7 100644
--- a/htdocs/langs/nb_NO/admin.lang
+++ b/htdocs/langs/nb_NO/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Skjul alle opplysninger knyttet til MVA på genererte
 HideDescOnPDF=Skjul varebeskrivelse på generert PDF
 HideRefOnPDF=Skjul varereferanse på generert PDF
 HideDetailsOnPDF=Skjul varelinjedetaljer i generert PDF
-PlaceCustomerAddressToIsoLocation=Bruk fransk standardposisjon (La Posteà for kundeadresse-posisjon
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Bibliotek
 UrlGenerationParameters=Parametre for å sikre nettadresser
 SecurityTokenIsUnique=Bruk en unik securekey parameter for hver webadresse
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Er di sikker på at du vil slette alle gjeldende s
 AllBarcodeReset=Alle strekkode-verdier er blitt slettet
 NoBarcodeNumberingTemplateDefined=Ingen mal for strekkodenummerering er aktivert strekkodemodulen
 NoRecordWithoutBarcodeDefined=Ingen poster uten strekkode.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Brukere & grupper
@@ -499,7 +500,7 @@ Module510Desc=Behandling av ansattes lønn og utbetalinger
 Module520Name=Lån
 Module520Desc=Administrering av lån
 Module600Name=Varselmeldinger
-Module600Desc=Send e-post notifikasjoner på Dolibarr-hendelser til tredjeparter (Settes opp hos den enkelte tredjepart)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Donasjoner
 Module700Desc=Behandling av donasjoner
 Module770Name=Utgiftsrapporter
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Forsinkelser før varsling
 DelaysOfToleranceBeforeWarning=Forsinkelsestoleranse før varsling
 DelaysOfToleranceDesc=Denne siden lar deg angi antall 'toleransedager' du ønsker før en forsinkelse skal varsles på skjermen med ikonet %s for hvert forsinkede element.
 Delays_MAIN_DELAY_ACTIONS_TODO=Forinkelsestoleranse (i dager) før varsel om planlage handlinger som ikke er utført
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Forsinkelsestoleranse (i dager) før varsel om ordrer ikke levert
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Forsinkelsestoleranse (i dager) før varsel på leverandørers ordre ennå ikke behandlet
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Forsinkelsestoleranse (i dager) før varsel om tilbud som ikke er lukket
@@ -1087,6 +1089,7 @@ PathDirectory=Mappe
 SendmailOptionMayHurtBuggedMTA=Funksjonen for å sende e-post ved hjelp av metoden "PHP mail direct" vil generere en melding som kanskje ikke oversatt riktig av enkelte e-postservere. Resultatet er at enkelte e-poster ikke kan leses av personer som mottar e-post gjennom disse serverene (f.eks Orange i Frankrike). Dette er ikke et Dolibarr-problem i, heller ikke PHP, men på mottakende e-postserver. Du kan imidlertid legge til alternativet MAIN_FIX_FOR_BUGGED_MTA til 1 i oppsettet, heller enn å endre Dolibarr for å unngå dette. Du kan oppleve problemer med andre servere som følger SMTP-standarden nøyaktig. Den andre løsningen (anbefales) er å bruke metoden "SMTP socket library" som ikke har noen ulemper.
 TranslationSetup=Konfigurasjon de la traduction
 TranslationDesc=Valg av språk som er synlig på skjermen kan endres: <br> * Globalt fra menyen <strong>Hjem - Setup - Display</strong> <br> * For brukeren bare fra kategorien <strong>Bruker visning</strong> av brukerkort (klikk på innlogging på toppen av skjermen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Totalt antall aktiverte funksjoner <b>moduler:%s</b>
 YouMustEnableOneModule=Du må minst aktivere en modul
 ClassNotFoundIntoPathWarning=Klasse %s ikke funnet i PHP banen
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Administrator har deaktivert mulighete
 ConfFileMuseContainCustom=For å installere en modul må du lagre filene i mappen <strong>%s</strong>. For at Dolibarr skal behandle dette, må du først <strong>conf/conf.php</strong>for å ha opsjonen<br>- <strong>$dolibarr_main_url_root_alt</strong> aktivert med verdien <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> aktivert med <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Fremhev tabellinjer når musen flyttes over
 HighlightLinesColor=Uthev fargen på linjen når musen føres over (holdes tom for ingen uthevning)
+TextTitleColor=Color of page title
 LinkColor=Farge på lenker
 PressF5AfterChangingThis=Trykk F5 etter å ha endret denne verdien for at endringene skal tre i kraft
 NotSupportedByAllThemes=Vil virke med Eldy-temaet men er ikke støttet av av alle temaer
diff --git a/htdocs/langs/nb_NO/agenda.lang b/htdocs/langs/nb_NO/agenda.lang
index 141273e6ff1d41cd800671b711522b42815b1e1f..bc629ee67037ee1d9b34a8f0a4ddd95461840f8b 100644
--- a/htdocs/langs/nb_NO/agenda.lang
+++ b/htdocs/langs/nb_NO/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Alle handlinger/oppgaver
 ViewCal=Månedsvisning
 ViewDay=Dagsvisning
 ViewWeek=Ukesvisning
+ViewYear=Year view
 ViewPerUser=Visning pr. bruker
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Vis med forhåndsdefinerte filtere
 AutoActions= Automatisk utfylling
 AgendaAutoActionDesc= Her angir du hvilke handlinger du ønsker at Dolibarr automatisk skal registrere i agendaen. Hvis du ikke velger noe (forhåndsinnstilt), vil bare manuelle handlinger bli registrert i agendaen.
@@ -90,8 +92,8 @@ ExtSiteUrlAgenda=URL til. ical-fil
 ExtSiteNoLabel=Ingen beskrivelse
 WorkingTimeRange=Arbeidstid
 WorkingDaysRange=Arbeidsuke
-VisibleTimeRange=Visible time range
-VisibleDaysRange=Visible days range
+VisibleTimeRange=Synlig tidsområde
+VisibleDaysRange=Utvalgte dager synlige
 AddEvent=Opprett hendelse
 MyAvailability=Min tilgjengelighet
 ActionType=Hendelsestype
diff --git a/htdocs/langs/nb_NO/bills.lang b/htdocs/langs/nb_NO/bills.lang
index aba74b7a384cdd599a82b5c19a46c4448ecc4e64..3e61930790392b9485fe8b7f0026fec54f11a2ed 100644
--- a/htdocs/langs/nb_NO/bills.lang
+++ b/htdocs/langs/nb_NO/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Betalinger allerede utført
 PaymentsBackAlreadyDone=Tilbakebetalinger allerede utført
 PaymentRule=Betalingsregel
 PaymentMode=Betalingsmåte
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Betalingstype
 PaymentTerm=Betalingsbetingelser
 PaymentConditions=Betalingsbetingelser
@@ -184,6 +186,7 @@ ShowInvoice=Vis faktura
 ShowInvoiceReplace=Vis erstatningsfaktura
 ShowInvoiceAvoir=Vis kreditnota
 ShowInvoiceDeposit=Vis innskuddsfaktura
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Vis betaling
 AlreadyPaid=Allerede betalt
 AlreadyPaidBack=Allerede tilbakebetalt
@@ -221,6 +224,7 @@ NonPercuRecuperable=Kan ikke dekkes inn
 SetConditions=Angi betalingsbetingelser
 SetMode=Angi betalingsmodus
 Billed=Fakturert
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Fakturamal
 RepeatableInvoices=Fakturamaler
 Repeatable=Mal
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Dette beløpet er tapsført (dårlig kunde) og betraktes
 HelpAbandonOther=Dette beløpet er tapsført på grunn av feil. (For eksempel feil kunde eller faktura er erstattet av en annen)
 IdSocialContribution=Skatter og avgifter ID
 PaymentId=Betalings-ID
+PaymentRef=Payment ref.
 InvoiceId=Faktura-ID
 InvoiceRef=Fakturareferanse
 InvoiceDateCreation=Fakturadato
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Relaterte leverandørfakturaer
 LatestRelatedBill=Siste tilknyttede faktura
 WarningBillExist=Advarsel: en eller flere fakturaer finnes allerede
 MergingPDFTool=Verktøy for fletting av PDF 
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Kontant
@@ -393,6 +402,7 @@ Reported=Forsinket
 DisabledBecausePayments=Ikke mulig siden det er noen betalinger
 CantRemovePaymentWithOneInvoicePaid=Kan ikke fjerne betalingen siden det er minst en faktura som er klassifisert som betalt
 ExpectedToPay=Forventet innbetaling
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Betales av denne innbetalingen
 ClosePaidInvoicesAutomatically=Klassifiser alle fakturaer (alle typer) som betalt
 ClosePaidCreditNotesAutomatically=Klassifiser alle fakturaer som betalt
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Denne listen inneholder kun fakturaer for tredjepar
 RevenueStamp=Stempelmerke
 YouMustCreateInvoiceFromThird=Kun mulig når du lager faktura fra "kunde" i tredjeparter
 PDFCrabeDescription=Fakturamal Crabe. En komplett mal (Støtter MVA, rabatter, betalingsbetingelser, logo, osv...)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Returnerer nummer med format %syymm-nnnn for standardfaktura og %syymm-nnnn for kreditnota, der yy er året, mm måned og nnnn er et løpenummer som starter på 0+1.
 MarsNumRefModelDesc1=Returnerer et nummer med formatet %sååmm-nnnn for vanlige fakturaer, %sååmm-nnnn for erstatningsfakturaer, %sååmm-nnnn for innskuddsfakturaer og %sååmm-nnnn for kreditnotaer der åå er året, mm måned og nnnn er en sekvens uten brudd og ingen retur til 0
 TerreNumRefModelError=En faktura som starter med $sååmm finnes allerede og er ikke kompatibel med denne nummereringsmodulen. Du må slette den eller gi den ett nytt navn for å aktivere denne modulen.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=Dette er siste delfaktura
 CantBeLessThanMinPercent=Progresjonen kan ikke ha lavere verdi enn forrige delfaktura
 NoSituations=Ingen  åpne situasjoner
 InvoiceSituationLast=Siste delfaktura
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/nb_NO/boxes.lang b/htdocs/langs/nb_NO/boxes.lang
index ea0b4243207bdf3c219434c7bf9a71184b69d292..2be96bf66f6352fd1add1e5e0cc4e8ad86d87f6b 100644
--- a/htdocs/langs/nb_NO/boxes.lang
+++ b/htdocs/langs/nb_NO/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Kundens fakturaer
 ForCustomersOrders=Kundeordrer
 ForProposals=Tilbud
 LastXMonthRolling=Rullering av de siste %s måneder
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/nb_NO/categories.lang b/htdocs/langs/nb_NO/categories.lang
index 6de232ab631ab51d269824888b7ef79d22140a19..acd03d3afdfdcf2e6c09f0e402204574a10644d9 100644
--- a/htdocs/langs/nb_NO/categories.lang
+++ b/htdocs/langs/nb_NO/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Vare merke/kategori
 MembersCategoryShort=Medlems merke/kategori
 SuppliersCategoriesShort=Levrandørers merker/kategorier
 CustomersCategoriesShort=Kunders merker/kategorier
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Kunde-/prospektkategorier
 ProductsCategoriesShort=Varenes merker/kategorier
 MembersCategoriesShort=Medlemmers merker/kategorier
diff --git a/htdocs/langs/nb_NO/companies.lang b/htdocs/langs/nb_NO/companies.lang
index c0f48884c050eddc7612c7a494d72ee938356c85..5bad45d6f64b23bcac68fb8ffa73657a40815f6e 100644
--- a/htdocs/langs/nb_NO/companies.lang
+++ b/htdocs/langs/nb_NO/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (RC)
 ProfId2MA=Id prof. 2 (patent)
 ProfId3MA=Id prof. 3 (IF)
 ProfId4MA=Id prof. 4 (CNSS)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (RFC).
 ProfId2MX=Prof Id 2 (R.. P. IMSS)
diff --git a/htdocs/langs/nb_NO/compta.lang b/htdocs/langs/nb_NO/compta.lang
index c2c9a80113d10b912b2da6d3ddaf318de7a9b916..3a4abd2620537f5210e092a1670d4304e31a2525 100644
--- a/htdocs/langs/nb_NO/compta.lang
+++ b/htdocs/langs/nb_NO/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Innskuddsfakturaer er ikke inkludert
 DepositsAreIncluded=- Innskuddsfakturaer er inkludert
 LT2ReportByCustomersInInputOutputModeES=Rapport over tredjepart IRPF
 LT1ReportByCustomersInInputOutputModeES=Rapport etter tredjepart RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Rapport over innhentet og betalt MVA etter kunde
 VATReportByCustomersInDueDebtMode=Rapport over innhentet og betalt MVA etter kunde
 VATReportByQuartersInInputOutputMode=Rapport over innhentet og betalt MVA etter sats
diff --git a/htdocs/langs/nb_NO/cron.lang b/htdocs/langs/nb_NO/cron.lang
index 4e6d5835efabe9e461b07660ccb12b53fb36b425..831c3a505af5d61d42bbb20671fdc9e6b98280d6 100644
--- a/htdocs/langs/nb_NO/cron.lang
+++ b/htdocs/langs/nb_NO/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=I Unix-miljøer bør du bruke følgende crontab-oppføri
 CronExplainHowToRunWin=I Microsoft(tm) Windows-miljø kan du bruke planlagte oppgaver-verktøyet for å kjøre kommandolinje hvert 5. minutt
 # Menu
 CronJobs=Planlagte jobber
-CronListActive=Liste over aktive/planlagte jobber
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=Liste over deaktiverte jobber
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Siste kjøring
 CronLastOutput=Resultat av forrige kjøring
@@ -35,8 +36,8 @@ CronInfo=Planlagte jobber-modulen gir deg mulighet til å utføre jobber til øn
 CronWaitingJobs=Ventende jobber
 CronTask=Jobb
 CronNone=Ingen
-CronDtStart=Startdato
-CronDtEnd=Sluttdato
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Neste kjøring
 CronDtLastLaunch=Siste kjøring
 CronFrequency=Frekvens
@@ -51,6 +52,7 @@ CronNoJobs=Ingen registrerte jobber
 CronPriority=Prioritet
 CronLabel=Beskrivelse
 CronNbRun=Antall starter
+CronMaxRun=Max nb. launch
 CronEach=Alle
 JobFinished=Jobb startet og fullført
 #Page card
diff --git a/htdocs/langs/nb_NO/deliveries.lang b/htdocs/langs/nb_NO/deliveries.lang
index 28994e57711da779142fcd32fecd4a10617dabfd..9e7b3d97713805c13b83b4386dc9cd272a1e8da8 100644
--- a/htdocs/langs/nb_NO/deliveries.lang
+++ b/htdocs/langs/nb_NO/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Er du sikker på at du vil slette leveringskvitteri
 DeliveryMethod=Leveringsmåte
 TrackingNumber=Trackingnummer
 DeliveryNotValidated=Levering ikke validert
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Navn og signatur :
 ToAndDate=Til___________________________________ den ____/_____/__________
diff --git a/htdocs/langs/nb_NO/holiday.lang b/htdocs/langs/nb_NO/holiday.lang
index d117dddf67b3ebcaaa5fb71066596375ed0a237d..ec49b71123fda86edc18391e1fa2f5e93e78574f 100644
--- a/htdocs/langs/nb_NO/holiday.lang
+++ b/htdocs/langs/nb_NO/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=Du må aktivere modulen Ferier for å vise denne siden
 NotConfigModCP=Du må konfigurere modulen Ferier for å vise denne siden.For å gjøre dette, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> klikk her </ a>.
 NoCPforUser=Du har ingen tilgjengelige dager
 AddCP=Opprett feriesøknad
-Employe=Ansatt
 DateDebCP=Startdato
 DateFinCP=Sluttdato
 DateCreateCP=Opprettet den
@@ -23,7 +22,7 @@ ReviewedByCP=Vil bli gjennomgått av
 DescCP=Beskrivelse
 SendRequestCP=Opprett feriesøknad
 DelayToRequestCP=Søknader må opprettes minst <b>%s dag(er)</b> før ferien skal starte
-MenuConfCP=Endre feriebalanse
+MenuConfCP=Balance of leaves
 UpdateAllCP=Oppdater ferier
 SoldeCPUser=Feriebalansen er <b>%s</b> dager.
 ErrorEndDateCP=Sluttdato må være senere en startdato
@@ -79,9 +78,9 @@ PrevSoldeCP=Forrige balanse
 NewSoldeCP=Ny balanse
 alreadyCPexist=En feriesøknad er allerede utført for denne perioden
 UserName=Navn
-Employee=Ansatt
 FirstDayOfHoliday=Første feriedag
 LastDayOfHoliday=Siste feriedag
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Månedlig oppdatering
 ManualUpdate=Manuell oppdatering
 HolidaysCancelation=Kansellering av feriesøknader
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Feriesøknaden din for perioden %s til %s er blitt avvist me
 HolidaysCanceled=Kansellert feriesøknad
 HolidaysCanceledBody=Feriesøknaden din for perioden %s til %s er blitt kansellert.
 NewByMonth=Lagt til pr. måned
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Gå til <strong>Hjem - Oppsett - Ordlister - Ferietyper</strong> for å sette oppforskjellige typer ferier.
diff --git a/htdocs/langs/nb_NO/hrm.lang b/htdocs/langs/nb_NO/hrm.lang
index 9367a4e10bfd63ee9b2ae4d222b4b675253053a3..ceceeab3c6b7f206959d1670ab667695c30b9930 100644
--- a/htdocs/langs/nb_NO/hrm.lang
+++ b/htdocs/langs/nb_NO/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Funksjonsliste
 ListOfEmployees=Liste over ansatte
 Employees=Ansatte
 Employee=Ansatt
+Employe=Employe
 NewEmployee=Ny ansatt
 EmployeeCard=Arbeidstakerkort
diff --git a/htdocs/langs/nb_NO/interventions.lang b/htdocs/langs/nb_NO/interventions.lang
index ee9fd4db19e70cf6cbf5e112509fd0b6adbb7da5..76c5426d5c1963fc39a5b02c79f274d8534cb1dd 100644
--- a/htdocs/langs/nb_NO/interventions.lang
+++ b/htdocs/langs/nb_NO/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Gir et nummer med formatet %sååmm-nnnn hvor åå er å
 PacificNumRefModelError=Det finnes allerede et intervensjonskort som starter med  $sååmm, og dette er ikke kompatibelt med denne nummereringsmodellen. Du må fjerne denne for å aktivere denne modellen.
 PrintProductsOnFichinter=Skriv ut varer på intervensjonskortet
 PrintProductsOnFichinterDetails=intervensjoner generert fra ordre
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervensjons-ID
 InterRef=Intervensjonsref.
diff --git a/htdocs/langs/nb_NO/mails.lang b/htdocs/langs/nb_NO/mails.lang
index 870829ed9d320eeb326ab1b523b89f65da864128..dc9e5b2703307b050be15393141c1995db33b502 100644
--- a/htdocs/langs/nb_NO/mails.lang
+++ b/htdocs/langs/nb_NO/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Nøkkel for å kryptere URL'en brukt til "Les kvittering" o
 EMailSentToNRecipients=E-post sendt til %s mottakere.
 XTargetsAdded=<b>%s</b> mottakere lagt til i målliste
 EachInvoiceWillBeAttachedToEmail=Et dokument med standard faktura dokumentmal vil bli opprettet og sendt med hver e-post.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Påminnelse om faktura %s (%s)
 SendRemind=Send påminnelse som e-post
 RemindSent=%s påminnelse(er) sendt
diff --git a/htdocs/langs/nb_NO/main.lang b/htdocs/langs/nb_NO/main.lang
index 4bd70c46bdee23bbf253b91ea0d7254eefdeafb7..3d600b00d330cc671d0b17c49dd3584403439efb 100644
--- a/htdocs/langs/nb_NO/main.lang
+++ b/htdocs/langs/nb_NO/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%d/%m/%Y %I:%M:%S %p
 FormatDateHourTextShort=%d. %b %Y %H:%M
 FormatDateHourText=%d. %B %Y %H:%M
 DatabaseConnection=Databasetilkobling
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Ingen oversettelse
 NoRecordFound=Ingen post funnet
 NoError=Ingen feil
@@ -105,6 +106,7 @@ NotePrivate=Notat (privat)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr er satt opp til å bruke priser med <b>%s</b> desimaler.
 DoTest=Test
 ToFilter=Filter
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=OBS! Du har minst ett forsinket element i listen ovenfor.
 yes=ja
 Yes=Ja
@@ -228,6 +230,8 @@ Now=Nå
 HourStart=Start time
 Date=Dato
 DateAndHour=Dato og tid
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Startdato
 DateEnd=Sluttdato
 DateCreation=Opprettet den
@@ -608,6 +612,7 @@ TotalMan=Totalt
 NeverReceived=Aldri mottatt
 Canceled=Kansellert
 YouCanChangeValuesForThisListFromDictionarySetup=Du kan endre verdier for denne listen fra menyen setup - ordbok
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Farge
 Documents=Tilknyttede filer
 DocumentsNb=Koblede filer (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=Ingen bilder tilgjengelig ennå
 HomeDashboard=Hjem sammendrag
+Dashboard=Dashboard
 Deductible=Egenandel
 from=fra
 toward=mot
diff --git a/htdocs/langs/nb_NO/margins.lang b/htdocs/langs/nb_NO/margins.lang
index 271cd1c02544c024420f59e3bfb50a29121f2ccb..b65db52bc557ed7a3ea82a8f9ea3b930356fea51 100644
--- a/htdocs/langs/nb_NO/margins.lang
+++ b/htdocs/langs/nb_NO/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Velg vare eller tjenester
 StartDate=Startdato
 EndDate=Sluttdato
 Launch=Start
-ForceBuyingPriceIfNull=Tving innkjøpspris hvis 0
-ForceBuyingPriceIfNullDetails=hvis "PÅ", vil marginen være null på linjen (innkjøpspris=utsalgspris), ellers ("AV"). Margin vil bli lik utsalgspris (innkjøpspris = 0)
+ForceBuyingPriceIfNull=Tving innkjøps-/kostpris til utsalgspris hvis udefinert
+ForceBuyingPriceIfNullDetails=Hvis innkjøps-/kostpris ikke er definert, og denne opsjonen er "PÅ", vil margin bli satt til null på linjen (innkjøps-/kostpris = utsalgspris). Ellers ("AV") vil margin bli satt til foreslått standard.
 MARGIN_METHODE_FOR_DISCOUNT=Margin-metode for globale rabatter
 UseDiscountAsProduct=Som vare
 UseDiscountAsService=Som tjeneste
@@ -35,8 +35,9 @@ MargeBrute=Bruttomargin
 MargeNette=Nettomargin
 MargeType1=Margin på beste leverandørpris
 MargeType2=Margin på gjennomsnittspris (Weighted Average Price - WAP)
-MARGIN_TYPE_DETAILS=Brutto margin = Utsalgspris - Innkjøpspris<br/>Nettomargin = Utsalgspris - Kostpris
-MarginTypeDesc=Nargin på beste innkjøpspris: Utsalgspris - Beste leverandørpris definert på varekortet<br/>Margin på gjennomsnittspris (WAP): Utsalgspris - Gjennomsnittspris
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Kostpris
 BuyingCost=Kostpris
 UnitCharges=Enhets-avgifter
diff --git a/htdocs/langs/nb_NO/oauth.lang b/htdocs/langs/nb_NO/oauth.lang
index 10654a20a31507be553a878196cef7a044f76e36..b4bde17616dcfa37d04c2f2bb8d0d9da58343c94 100644
--- a/htdocs/langs/nb_NO/oauth.lang
+++ b/htdocs/langs/nb_NO/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Nøkkel slettet
 RequestAccess=Klikk her for forespørsel/fornyet adgang og motta ny nøkkel
 DeleteAccess=Klikk her for å slette nøkkel
 UseTheFollowingUrlAsRedirectURI=Bruk følgende URL som redirect-URL når du lager din legitimasjon hos din OAuth tilbyder
-ListOfSupportedOauthProviders=Legg inn legitimasjonen fra din OAuth2 tilbyder her. Kun støttede OAuth tilbydere vises her. Oppsettet kan brukes av andre moduler som trenger OAuth2 autentisering
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/nb_NO/orders.lang b/htdocs/langs/nb_NO/orders.lang
index 95c017d403d06544c28bc11ecf55b110d526a7ed..9567088363ba31b8f17405bee746b68235a40a02 100644
--- a/htdocs/langs/nb_NO/orders.lang
+++ b/htdocs/langs/nb_NO/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Ordre å behandle
 NoOpenedOrders=Ingen åpne ordre
 NoOtherOpenedOrders=Ingen andre åpne ordre
 NoDraftOrders=Ingen ordreutkast
-NoOrder=Ingen ordre
+NoOrder=No order
 NoSupplierOrder=Ingen leverandørordre
 OtherOrders=Andre ordre
 LastOrders=Siste %s kundeordre
diff --git a/htdocs/langs/nb_NO/other.lang b/htdocs/langs/nb_NO/other.lang
index 8f167f32f03102b1b662b78a4bb53db8f6f41f48..cb683a2ac0fb35856dd4abf9e617a6ef17d1f8a9 100644
--- a/htdocs/langs/nb_NO/other.lang
+++ b/htdocs/langs/nb_NO/other.lang
@@ -238,3 +238,8 @@ ToExport=Eksport
 NewExport=Ny eksport
 ##### External sites #####
 ExternalSites=Eksterne nettsteder
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/nb_NO/paypal.lang b/htdocs/langs/nb_NO/paypal.lang
index 01e70e552f2cb7ac104d6f7f8bd7fa2bcf056140..458fcaa1c2ad85fc542891dbf3e78d253ff17394 100644
--- a/htdocs/langs/nb_NO/paypal.lang
+++ b/htdocs/langs/nb_NO/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Test-/sandkasse-modus
 PAYPAL_API_USER=API brukernavn
 PAYPAL_API_PASSWORD=API passord
 PAYPAL_API_SIGNATURE=API signatur
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Tilby &quot;integrert&quot betaling; (Kredittkort + Paypal) eller bare &quot;Paypal&quot; 
 PaypalModeIntegral=Integrert
 PaypalModeOnlyPaypal=Kun PayPal
diff --git a/htdocs/langs/nb_NO/products.lang b/htdocs/langs/nb_NO/products.lang
index e7b987b8fc53e110d2cd98cbaae30dcf8f530a0f..d804118670b7bc0aed64d3839f37131dee3c8e9f 100644
--- a/htdocs/langs/nb_NO/products.lang
+++ b/htdocs/langs/nb_NO/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Netto enhet VWAP
 CostPmpHT=Netto total VWAP
 ProductUsedForBuild=Automatisk brukt i produksjon
 ProductBuilded=Produksjon komplett
-ProductsMultiPrice=Vare multi-pris
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Kundepriser (varer og tjenseter, multi-priser)
 ProductSellByQuarterHT=Kvartalsvis omsetning eks. MVA
 ServiceSellByQuarterHT=Kvartalsvis omsetning av tjenester eks. MVA
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Velg PDF-filer
 IncludingProductWithTag=Inkludert vare/tjeneste med merke
 DefaultPriceRealPriceMayDependOnCustomer=Standardpris, virkelig pris avhenger av kunde
 WarningSelectOneDocument=Velg minst ett dokument
-DefaultUnitToShow=Enheter
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/nb_NO/projects.lang b/htdocs/langs/nb_NO/projects.lang
index 96e5636c8a4c2cd0143822a9246882c6c9a5ba5d..a1932a01bcc4b7fe1775d03eda3f9a63b8bca041 100644
--- a/htdocs/langs/nb_NO/projects.lang
+++ b/htdocs/langs/nb_NO/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=Denne visningen presenterer alle prosjekter og oppgaver d
 ProjectsDesc=Denne visningen presenterer alle prosjekter (dine brukertillatelser gir deg tillatelse til å vise alt).
 MyTasksDesc=Denne visningen er begrenset til prosjekter eller oppgaver du er en kontakt for (uansett type).
 OnlyOpenedProject=Kun åpne prosjekter er synlige (prosjektkladder og lukkede prosjekter er ikke synlige).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Denne visningen presenterer alle prosjekter og oppgaver du har lov til å lese.
 TasksDesc=Denne visningen presenterer alle prosjekter og oppgaver (dine brukertillatelser gir deg tillatelse til å vise alt).
 AllTaskVisibleButEditIfYouAreAssigned=Alle oppgaver for et slikt prosjekt er synlige, men du kan angi tid bare for oppgaven du er tildelt. Tildel oppgaven til deg hvis du ønsker å legge inn tid på den.
@@ -29,7 +30,9 @@ OfficerProject=Bas/formann for prosjektet
 LastProjects=Siste %s prosjekter
 AllProjects=Alle prosjekter
 OpenedProjects=Åpnede prosjekter
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Beløp på muligheter i åpnede prosjekter, etter status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Oversikt over prosjekter
 ShowProject=Vis prosjekt
 SetProject=Sett prosjekt
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Oppgave %s endret
 TaskDeletedInDolibarr=Oppgave %s slettet
 OpportunityStatus=Mulighet-status
 OpportunityStatusShort=Tilbudsstatus
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Mulighet beløp
 OpportunityAmountShort=Tilbudsbeløp
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Prosjekter med denne brukeren som kontakt
 TasksWithThisUserAsContact=Oppgaver tildelt denne brukeren
 ResourceNotAssignedToProject=Ikke tildelt til prosjekt
 ResourceNotAssignedToTask=Ikke tildelt til oppgave
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Tildel oppgaven til meg
 AssignTask=Tildel
 ProjectOverview=Oversikt
@@ -179,7 +185,7 @@ YouCanCompleteRef=Hvis du ønsker å fullføre referansen med litt informasjon (
 OpenedProjectsByThirdparties=Prosjekter åpnet av tredjeparter
 OpportunityTotalAmount=Totalbeløp på muligheter
 OpportunityPonderatedAmount=Gjennomsnittsbeløp på muligheter
-OpportunityPonderatedAmountDesc=Beløp på muligheter, vektet med sannsynlighet (avhenger av status på muligheten)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Utforskning
 OppStatusQUAL=Kvalifikasjon
 OppStatusPROPO=Tilbud
diff --git a/htdocs/langs/nb_NO/propal.lang b/htdocs/langs/nb_NO/propal.lang
index 489fa4512db8632e3886fba77bcb6aa9355f4440..da6877cff7d03402fc430661548dfff5b36f5a23 100644
--- a/htdocs/langs/nb_NO/propal.lang
+++ b/htdocs/langs/nb_NO/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Sist endrede tilbud %s
 AllPropals=Alle tilbud
 LastProposals=Siste tilbud
 SearchAProposal=Søk i tilbud
+NoProposal=No proposal
 ProposalsStatistics=Tilbudsstatistikk
 NumberOfProposalsByMonth=Antall tilbud pr måned
 AmountOfProposalsByMonthHT=Tilbudsbeløp pr måned (eksl. MVA)
@@ -62,7 +63,8 @@ DatePropal=Tilbudsdato
 DateEndPropal=Gyldig til
 DateEndPropalShort=Utløpsdato
 ValidityDuration=Gyldighetstid
-CloseAs=Lukk med status
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Sett som fakturert
 BuildBill=Lag faktura
 ErrorPropalNotFound=Tilbudet %s ble ikke funnet
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Standard modellbygging
 DefaultModelPropalToBill=Standardmal når du lukker et tilbud (som skal faktureres)
 DefaultModelPropalClosed=Standardmal når du lukker et tilbud (ufakturert)
 ProposalCustomerSignature=Skriftlig aksept, firmastempel, dato og signatur
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/nb_NO/salaries.lang b/htdocs/langs/nb_NO/salaries.lang
index e45a2c5f74fe97f1399a61cbbc142062ed169937..4b53e095d2082d57980b569017952f8a2ed65b15 100644
--- a/htdocs/langs/nb_NO/salaries.lang
+++ b/htdocs/langs/nb_NO/salaries.lang
@@ -3,7 +3,6 @@ SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Regnskapskode for lønnsutbetalinger
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Regnskapskode for finansiell belastning
 Salary=Lønn
 Salaries=Lønn
-Employee=Ansatt
 NewSalaryPayment=Ny lønnsutbetaling
 SalaryPayment=Lønnsutbetaling
 SalariesPayments=Lønnsutbetalinger
diff --git a/htdocs/langs/nb_NO/sendings.lang b/htdocs/langs/nb_NO/sendings.lang
index d61d2d52b82412883a0612c2bf3eabb5c8397c15..d9cab5693dd5f5b2249e9a403fc0fe74d2c3e175 100644
--- a/htdocs/langs/nb_NO/sendings.lang
+++ b/htdocs/langs/nb_NO/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=Alle forsendelser
 Shipment=Levering
 Shipments=Leveringer
 ShowSending=Vis forsendelser
-Receivings=Kvitteringer
+Receivings=Delivery Receipts
 SendingsArea=Leveringsområde
 ListOfSendings=Oversikt over leveringer
 SendingMethod=Leveringsmåte
diff --git a/htdocs/langs/nb_NO/sms.lang b/htdocs/langs/nb_NO/sms.lang
index dace1efea98011f693aff7fae8654549bd24d207..bf27659e479ab4420393329d8e4f7bac476a186d 100644
--- a/htdocs/langs/nb_NO/sms.lang
+++ b/htdocs/langs/nb_NO/sms.lang
@@ -49,5 +49,6 @@ SendSms=Send SMS
 SmsInfoCharRemain=Antall gjenværende tegn
 SmsInfoNumero= (Internasjonal prefix dvs.: +4711223344)
 DelayBeforeSending=Forsinkelse før sending (minutter)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Ingen mål tilgjengelig. Sjekk oppsettet fra din SMS-leverandør.
 
diff --git a/htdocs/langs/nb_NO/supplier_proposal.lang b/htdocs/langs/nb_NO/supplier_proposal.lang
index a0711a86171c0c1f572896d91c8518c495575751..23319dd4d44e903de2a728a0ed74e7d8ed480db9 100644
--- a/htdocs/langs/nb_NO/supplier_proposal.lang
+++ b/htdocs/langs/nb_NO/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Leverandørtilbud
 supplier_proposalDESC=Håndter prisforespørsler til leverandører
-supplier_proposalMENU_LEFT_TITLE=Leverandørtilbud
-supplier_proposalMENU_LEFT_TITLE_NEW=Ny forespørsel
-supplier_proposalMENU_LEFT_TITLE_LIST=Liste
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Prisforespørsel
 CommRequests=Prisforespørsel
 SearchRequest=Finn en forspørsel
@@ -11,7 +10,7 @@ DraftRequests=Forespørsel-kladder
 LastModifiedRequests=Siste %s modifiserte prisforespørsler
 RequestsOpened=Åpne prisforespørsler
 SupplierProposalArea=Område for leverandørtilbud
-SupplierProposalShort=Leverandørtilbud
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Leverandørtilbud
 NewAskPrice=Ny prisforspørsel
 NewAsk=Ny forespørsel
diff --git a/htdocs/langs/nb_NO/trips.lang b/htdocs/langs/nb_NO/trips.lang
index 206790b86531a57a1c7d618dd36aaefcfeb71d13..b8637f0b19d36ca327de6b8d2644774e6da620b5 100644
--- a/htdocs/langs/nb_NO/trips.lang
+++ b/htdocs/langs/nb_NO/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informasjon om reiseregning
 PDFStandardExpenseReports=Standardmal for å generere PDF av reiseregning
 ExpenseReportLine=Linje i reiseregningen
 TF_OTHER=Annet
-TF_TRANSPORTATION=Transport
+TF_TRIP=Transportation
 TF_LUNCH=Lunsj
 TF_METRO=Trikk/bybane
 TF_TRAIN=Tog
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Er du sikker på at du vil validere denne reiseregningen?
 NoTripsToExportCSV=Ingen reiseregning å eksportere for denne perioden
 ExpenseReportPayment=Betaling av utgiftsrapport
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Utgiftsrapport å betale
diff --git a/htdocs/langs/nb_NO/users.lang b/htdocs/langs/nb_NO/users.lang
index 8a1529b2f0a12679d7498de95745f1c0c5b7ec58..1ed018ef6f70e660bdd19bf8fa1c974cba82d8cb 100644
--- a/htdocs/langs/nb_NO/users.lang
+++ b/htdocs/langs/nb_NO/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Bruk OpenID til å logge inn
 WeeklyHours=Uketimer
 ColorUser=Farge på bruker
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/nl_BE/orders.lang b/htdocs/langs/nl_BE/orders.lang
index 8abd704c05765148380ed7207e7dc11abce6cd37..7df0a9efab4b1f21f686db909c61680dbae6d350 100644
--- a/htdocs/langs/nl_BE/orders.lang
+++ b/htdocs/langs/nl_BE/orders.lang
@@ -17,7 +17,6 @@ UnvalidateOrder=Maak validatie bestelling ongedaan
 OrderReopened=Bestelling %s heropend
 NoOpenedOrders=Geen lopende bestellingen
 NoOtherOpenedOrders=Geen andere lopende bestellingen
-NoOrder=Geen bestelling
 NoSupplierOrder=Geen aankooporder
 ClassifyBilled=Wijzig Status naar "gefactureerd"
 DraftSuppliersOrders=Voorlopige Leveranciersorder
diff --git a/htdocs/langs/nl_NL/accountancy.lang b/htdocs/langs/nl_NL/accountancy.lang
index 8250586497a3007b13e57fd044cf4ef3f7de5092..ee2a84c1e378f92244a6f1d671c540ed8832272f 100644
--- a/htdocs/langs/nl_NL/accountancy.lang
+++ b/htdocs/langs/nl_NL/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Selecteer een export model
 Modelcsv_normal=Klassieke export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Terug
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sells journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/nl_NL/admin.lang b/htdocs/langs/nl_NL/admin.lang
index 7481ce8795305a0c07e96a4ffbb8077344d7e15c..b99cddd549616fc9b31055c107eb12acd0282305 100644
--- a/htdocs/langs/nl_NL/admin.lang
+++ b/htdocs/langs/nl_NL/admin.lang
@@ -227,8 +227,8 @@ Security=Beveiliging
 Passwords=Wachtwoorden
 DoNotStoreClearPassword=Geen onversleutelde wachtwoorden opslaan in de database, maar alleen versleutelde (Activering aanbevolen)
 MainDbPasswordFileConfEncrypted=Databasewachtwoord versleuteld opslaan in conf.php (Activering aanbevolen)
-InstrucToEncodePass=To have password encoded into the <b>conf.php</b> file, replace the line <br><b>$dolibarr_main_db_pass="...";</b><br>by<br><b>$dolibarr_main_db_pass="crypted:%s";</b>
-InstrucToClearPass=To have password decoded (clear) into the <b>conf.php</b> file, replace the line <br><b>$dolibarr_main_db_pass="crypted:...";</b><br>by<br><b>$dolibarr_main_db_pass="%s";</b>
+InstrucToEncodePass=Om je paswoord versleuteld (gecodeerd) te krijgen in dit bestand <b>conf.php</b> , vervang de regel <br><b>$dolibarr_main_db_pass="...";</b><br>door<br><b>$dolibarr_main_db_pass="crypted:%s";</b>
+InstrucToClearPass=Om je paswoord gedecodeerd te verkrijgen in dit bestand <b>conf.php</b>,  vervang de regel <br><b>$dolibarr_main_db_pass="crypted:...";</b><br>door<br><b>$dolibarr_main_db_pass="%s";</b>
 ProtectAndEncryptPdfFiles=Bescherming van gecreëerde PDF files. (Activering NIET aanbevolen, omdat dit de aanmaak van meerdere bestanden onmogelijk maakt)
 ProtectAndEncryptPdfFilesDesc=Bescherming van PDF files, deze kunnen gelezen en afgedrukt worden met behulp van een PDF-lezer. Echter, het bewerken en kopiëren is niet meer mogelijk. Let op dat door het gebruik van deze functionaliteit, de bouw van een globale gecumuleerde pdf niet werkt (zoals bij onbetaalde facturen).
 Feature=Functionaliteit
@@ -276,7 +276,7 @@ MAIN_SMS_SENDMODE=Methode te gebruiken om SMS te verzenden
 MAIN_MAIL_SMS_FROM=Standaard afzender telefoonnummer voor Sms versturen
 FeatureNotAvailableOnLinux=Functionaliteit niet beschikbaar op Unix-achtige systemen. Test uw lokale 'sendmail' programma.
 SubmitTranslationENUS=If translation for this language is not complete or you find errors, you can correct this by editing files into directory <b>langs/%s</b> and submit modified files on dolibarr.org/forum or for developers on github.com/Dolibarr/dolibarr.
-SubmitTranslation=If translation for this language is not complete or you find errors, you can correct this by editing files into directory <b>langs/%s</b> and submit your change to www.transifex.com/dolibarr-association/dolibarr/
+SubmitTranslation=Indien de vertaling voor deze taal nog niet volledig is of je vindt fouten, dan kan je dit verbeteren door de bestanden te editeren in de volgende directory <b>langs/%s</b> en stuur uw wijzigingen door naar www.transifex.com/dolibarr-association/dolibarr/
 ModuleSetup=Module-instellingen
 ModulesSetup=Instellingen van modules
 ModuleFamilyBase=Systeem
@@ -298,13 +298,13 @@ ThisIsProcessToFollow=Dit is ingesteld op de verwerking van:
 ThisIsAlternativeProcessToFollow=Dit is een alternatieve instelling te verwerken:
 StepNb=Stap %s
 FindPackageFromWebSite=Vind een pakket die u de functionaliteit geeft die u wilt (bijvoorbeeld op de officiële website van %s).
-DownloadPackageFromWebSite=Download package (for example from official web site %s).
-UnpackPackageInDolibarrRoot=Unpack package file into Dolibarr server directory dedicated to external modules: <b>%s</b>
+DownloadPackageFromWebSite=Download het pakket (voorbeeld vanaf de officiële web site %s).
+UnpackPackageInDolibarrRoot=Pak bestand uit op de Dolibarr server directorie toegewezen aan de externe modules: <b>%s</b>
 SetupIsReadyForUse=Installatie is voltooid en Dolibarr is gereed voor het gebruik van de nieuwe functionaliteit.
 NotExistsDirect=De alternatieve root directory is niet bepaald.<br>
 InfDirAlt=Vanaf versie 3 is het mogelijk om een alternatieve root directory te definiëren.  Dit laat je toe om op dezelfde plaats zowel plug-ins als eigen templates te bewaren. <br>Maak gewoon een directory op het niveau van de root van Dolibarr (bv met de naam: aanpassing).<br>
 InfDirExample=<br>Kondig die dan aan in het bestand conf.php<br> $dolibarr_main_url_root_alt='http://myserver/aanpassing'<br>$dolibarr_main_document_root_alt='/path/of/dolibarr/htdocs/aanpassing'<br>*Deze lijnen zijn inactief gemaakt met een "#" teken, verwijder dat teken om ze te aktiveren.
-YouCanSubmitFile=For this step, you can send package using this tool: Select module file
+YouCanSubmitFile=Voor deze stap, kan je het pakket versturen gebruikmakend van dit hulpmiddel: Selecteer module bestand
 CurrentVersion=Huidige versie van Dolibarr
 CallUpdatePage=Ga naar de pagina die de databasestructuur en gegevens bijwerkt: %s.
 LastStableVersion=Laatste stabiele versie
@@ -329,7 +329,7 @@ UMaskExplanation=Deze parameter laat u de rechten bepalen welke standaard zijn i
 SeeWikiForAllTeam=Zie de Wiki-pagina voor details van alle personen die bijgedragen hebben en hun organisaties
 UseACacheDelay= Ingestelde vertraging voor de cacheexport in secondes (0 of leeg voor geen cache)
 DisableLinkToHelpCenter=Verberg de link "<b>ondersteuning of hulp nodig</b>" op de inlogpagina
-DisableLinkToHelp=Hide link to online help "<b>%s</b>"
+DisableLinkToHelp=Verberg de link naar online hulp "<b>%s</b>"
 AddCRIfTooLong=Er zijn geen automatische regeleinden, dus als uw tekst in de documenten te lang is, moet u zelf regeleinden in de teksteditor invoeren.
 ModuleDisabled=Module gedeactiveerd
 ModuleDisabledSoNoEvent=Module gedeactiveerd dus event nooit gecreëerd
@@ -338,7 +338,7 @@ MinLength=Minimale lengte
 LanguageFilesCachedIntoShmopSharedMemory=Bestanden .lang in het gedeelde geheugen
 ExamplesWithCurrentSetup=Voorbeelden met de huidige actieve configuratie
 ListOfDirectories=Lijst van OpenDocument sjablonenmappen
-ListOfDirectoriesForModelGenODT=List of directories containing templates files with OpenDocument format.<br><br>Put here full path of directories.<br>Add a carriage return between eah directory.<br>To add a directory of the GED module, add here <b>DOL_DATA_ROOT/ecm/yourdirectoryname</b>.<br><br>Files in those directories must end with <b>.odt</b> or <b>.ods</b>.
+ListOfDirectoriesForModelGenODT=Lijst van de directorie's die de templates bevatten in OpenDocument formaat.<br><br>Plaats hier het volledige pad van de directorie.<br>Voeg een nieuwe lijn tussen elke directorie.<br>Om een directorie van de GED module bij te voegen, voeg hier <b>DOL_DATA_ROOT/ecm/yourdirectoryname</b> toe.<br><br>Bestanden in deze directorie's moeten eindigen op <b>.odt</b> of <b>.ods</b>.
 NumberOfModelFilesFound=Aantal ODT/ODS templates gevonden in deze mappen
 ExampleOfDirectoriesForModelGen=Voorbeelden van de syntaxis: <br>c:\\mijndir<br>/home/mijndir<br>DOL_DATA_ROOT/ECM/ecmdir
 FollowingSubstitutionKeysCanBeUsed=Door het plaatsen van de volgende velden in het sjabloon krijgt u een vervanging met de aangepaste waarde bij het genereren van het document:
@@ -352,7 +352,7 @@ ThemeDir=Skins directory
 ConnectionTimeout=Connexion time-out
 ResponseTimeout=Time-out antwoord
 SmsTestMessage=Testbericht van __PHONEFROM__ naar __PHONETO__
-ModuleMustBeEnabledFirst=Module <b>%s</b> must be enabled first if you need this feature.
+ModuleMustBeEnabledFirst=Module <b>%s</b> moet eerst worden ingeschakeld als je deze functie wilt gebruiken.
 SecurityToken=Sleutel tot URL beveiligen
 NoSmsEngine=Geen SMS afzender manager beschikbaar. SMS afzender manager zijn niet geïnstalleerd met de standaard distributie (omdat ze afhankelijk is van een externe leverancier), maar u kunt vinden op een aantal http://www.dolistore.com
 PDF=PDF
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Verberg alle informatie met betrekking tot de BTW op
 HideDescOnPDF=Verberg productbeschrijving op gemaakte PDF
 HideRefOnPDF=Verberg productreferentie op gemaakte PDF
 HideDetailsOnPDF=Verberg product-detaillijnen op gemaakte PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Bibliotheek
 UrlGenerationParameters=Parameters om URL beveiligen
 SecurityTokenIsUnique=Gebruik een unieke securekey parameter voor elke URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Weet u zeker dat u alle actuele barcode waarden te
 AllBarcodeReset=Alle barcode waarden zijn verwijderd
 NoBarcodeNumberingTemplateDefined=Geen barcode nummering sjabloon ingeschakeld in barcode module setup.
 NoRecordWithoutBarcodeDefined=Geen record met geen barcode waarde gedefinieerd.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Gebruikers & groepen
@@ -492,14 +493,14 @@ Module400Name=Projecten/Kansen/Leads
 Module400Desc=Beheer van projecten, kansen of leads. U kunt elk willekeurig element (factuur, order, offerte, interventie, ...) toewijzen aan een project en een transversale weergave krijgen van de projectweergave.
 Module410Name=Webkalender
 Module410Desc=Integratie van een webkalender
-Module500Name=Special expenses
-Module500Desc=Management of special expenses (taxes, social or fiscal taxes, dividends)
+Module500Name=Speciale uitgaven
+Module500Desc=Beheer van bijzondere uitgaven (BTW, sociale of fiscale lasten, dividenden)
 Module510Name=Salarissen
 Module510Desc=Beheer van de werknemers salarissen en betalingen
 Module520Name=Lening
 Module520Desc=Het beheer van de leningen
 Module600Name=Kennisgevingen
-Module600Desc=Stuur EMail notificaties van bepaalde Dolibarr zakelijke gebeurtenissen naar derde-partijen contacten (setup gedefinieerd in iedere derde-partij)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Giften
 Module700Desc=Donatiebeheer
 Module770Name=Onkostennota's 
@@ -525,7 +526,7 @@ Module2400Desc=Acties-, taken- en agendabeheer
 Module2500Name=Electronic Content Management
 Module2500Desc=Opslaan en delen van documenten
 Module2600Name=API/Web services (SOAP server)
-Module2600Desc=Enable the Dolibarr SOAP server providing API services
+Module2600Desc=Schakel de Dolibarr SOAP server in die API services aanbiedt
 Module2610Name=API/Web services (REST server)
 Module2610Desc=Enable the Dolibarr REST server providing API services
 Module2660Name=Call WebServices (SOAP client)
@@ -582,7 +583,7 @@ Permission32=Creëer / wijzig producten / diensten
 Permission34=Verwijderen producten / diensten
 Permission36=Exporteer producten / diensten
 Permission38=Export producten
-Permission41=Read projects and tasks (shared project and projects i'm contact for). Can also enter time consumed on assigned tasks (timesheet)
+Permission41=Lees projecten en taken (gedeeld project en project waarvan ik contactpersoon ben). Kan ook de gebruikte tijd invoeren op toegewezen taken (rooster).
 Permission42=Creëer / wijzig projecten (Gedeelde projecten en projecten waarvoor ik de contactpersoon ben)
 Permission44=Verwijder projecten (Gedeelde projecten en projecten waarvoor ik de contactpersoon ben)
 Permission61=Bekijk interventies
@@ -603,10 +604,10 @@ Permission86=Verzend afnemersopdrachten
 Permission87=Sluit afnemersopdrachten
 Permission88=Annuleer afnemersopdrachten
 Permission89=Verwijder afnemersopdrachten
-Permission91=Read social or fiscal taxes and vat
-Permission92=Create/modify social or fiscal taxes and vat
-Permission93=Delete social or fiscal taxes and vat
-Permission94=Export social or fiscal taxes
+Permission91=Lees sociale of fiscale belastingen en BTW
+Permission92=Aanmaken/wijzigen van sociale of fiscale belastingen en BTW
+Permission93=Verwijderen van sociale of fiscale belastingen en BTW
+Permission94=Exporteer sociale of fiscale belastingen
 Permission95=Bekijk de verslagen
 Permission101=Bekijk verzendingen
 Permission102=Creëer / wijzig verzendingen
@@ -624,9 +625,9 @@ Permission121=Bekijk derde partijen gelinkt aan de gebruiker
 Permission122=Creëer / wijzig derden gelinkt aan gebruiker
 Permission125=Verwijderen van derden gelinkt aan gebruiker
 Permission126=Exporteer derden
-Permission141=Read all projects and tasks (also private projects i am not contact for)
-Permission142=Create/modify all projects and tasks (also private projects i am not contact for)
-Permission144=Delete all projects and tasks (also private projects i am not contact for)
+Permission141=Lees alle projecten en taken (ook private projecten waar ik niet de contactpersoon ben)
+Permission142=Aanmaak/wijzig alle projecten en taken (ook private projecten waar ik niet de contactpersoon ben)
+Permission144=Verwijder alle projecten en taken (ook de private projecten waarvoor ik geen contactpersoon ben)
 Permission146=Bekijk leveranciers
 Permission147=Bekijk statistieken
 Permission151=Bekijk doorlopende opdrachten
@@ -638,7 +639,7 @@ Permission162=Creëren/aanpassen contracten/abonnementen
 Permission163=Een dienst/abonnement van een contract activeren
 Permission164=Een dienst/abonnement van een contract uitschakelen
 Permission165=Verwijderen contracten/abonnementen
-Permission171=Read trips and expenses (yours and your subordinates)
+Permission171=Lees onkostennota's (eigen en uw ondergeschikten)
 Permission172=Creëren / bewerken reis- en onkosten
 Permission173=Verwijder reis- en onkosten
 Permission174=Lees alle reis en onkosten
@@ -930,7 +931,7 @@ DefaultMenuSmartphoneManager=standaard smartphonemenuverwerker
 Skin=Uiterlijksthema
 DefaultSkin=Standaard uiterlijksthema
 MaxSizeList=Maximale lijstlengte
-DefaultMaxSizeList=Default max length for lists
+DefaultMaxSizeList=Standaard maximum lengte voor lijsten
 DefaultMaxSizeShortList=Default max length for short lists (ie in customer card)
 MessageOfDay=Bericht van de dag
 MessageLogin=Bericht op inlogpagina
@@ -954,7 +955,7 @@ DoNotSuggestPaymentMode=Geen betalingswijze voorstellen
 NoActiveBankAccountDefined=Geen actieve bankrekening ingesteld
 OwnerOfBankAccount=Eigenaar van bankrekening %s
 BankModuleNotActive=Bankrekeningen module niet ingeschakeld
-ShowBugTrackLink=Show link "<strong>%s</strong>"
+ShowBugTrackLink=Toon de link "<strong>%s</strong>"
 ShowWorkBoard=Toon 'werkbank' op homepage
 Alerts=Kennisgevingen
 Delays=Vertragingen
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Vertragingen voorafgaande aan kennisgeving
 DelaysOfToleranceBeforeWarning=Getolereerde vertraging voor kennisgeving
 DelaysOfToleranceDesc=In dit scherm kunt u de getolereerde vertraging voordat een kennisgeving wordt gemeld op het scherm met een icoontje %s voor elk te laat element.
 Delays_MAIN_DELAY_ACTIONS_TODO=Getolereerde vertraging (in dagen) voor de kennisgeving over de nog niet gerealiseerde geplande acties
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Getolereerde vertraging (in dagen) voor een kennisgeving, op nog niet uitgevoerde orders word getoond
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Vertragingstoleratie (in dagen) voordat een kennisgeving plaatsvind van nog niet verwerkte leveranciersopdrachten.
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Getolereerde vertraging (in dagen) voor een kennisgeving, op af te sluiten offertes word getoond
@@ -1023,7 +1025,7 @@ MAIN_MAX_DECIMALS_UNIT=Maximaal aantal decimalen voor eenheidsprijzen
 MAIN_MAX_DECIMALS_TOT=Maximaal aantal decimalen voor de totale prijs
 MAIN_MAX_DECIMALS_SHOWN=Maximaal aantal decimalen voor de prijzen weergegeven op het scherm (Voeg <b>...</b> toe na dit nummer als u <b>...</b> wilt zien als het nummer wordt afgekapt op het scherm)
 MAIN_DISABLE_PDF_COMPRESSION=Gebruik PDF-compressie voor gegenereerde PDF-bestanden.
-MAIN_ROUNDING_RULE_TOT=Step of rounding range (for countries where rounding is done on something else than base 10. For example, put 0.05 if rounding is done by 0.05 steps)
+MAIN_ROUNDING_RULE_TOT=Stap van afronding (voor landen waar de afronding gebeurd op iets anders dan basis 10. Voorbeeld, zet op 0.05 indien de afronding gebeurt in 0.05 stappen)
 UnitPriceOfProduct=Prijs per eenheid van een product
 TotalPriceAfterRounding=Totale prijs inclusief na afronding
 ParameterActiveForNextInputOnly=De instelling word pas actief voor de volgende invoer
@@ -1031,7 +1033,7 @@ NoEventOrNoAuditSetup=Geen geregistreerde auditgebeurtenis. Dit is normaal als d
 NoEventFoundWithCriteria=Geen beveiligingsgebeurtenis gevonden met deze zoek criteria.
 SeeLocalSendMailSetup=Controleer de instellingen van uw lokale "sendmail"-programma
 BackupDesc=Om een complete backup van Dolibarr te maken, dient u:
-BackupDesc2=Save content of documents directory (<b>%s</b>) that contains all uploaded and generated files (So it includes all dump files generated at step 1).
+BackupDesc2=Bewaren van bestanden in de documenten directorie (<b>%s</b>) dat alle opgeladen en gegenereerde bestanden bevat. (Het bevat ook alle bestanden gegenereerd bij stap 1).
 BackupDesc3=- Bewaar de inhoud van uw database in een dump bestand. Om dit te doen, kunt u gebruik maken van de volgende assistent.
 BackupDescX=Gearchiveerde map-bestand moet op een veilige plaats worden opgeslagen.
 BackupDescY=De gemaakte dump bestand moet op een veilige plaats worden opgeslagen.
@@ -1087,11 +1089,12 @@ PathDirectory=Map
 SendmailOptionMayHurtBuggedMTA=Feature om e-mails met behulp van methode "PHP mail direct" te sturen zal een e-mailbericht dat niet goed zou kunnen worden ontleed door sommige het ontvangen van e-mailservers. Resultaat is dat sommige mails niet kunnen worden gelezen door mensen gehost door thoose afgeluisterd platforms. Het is het geval voor sommige Internet providers (Ex: Orange in Frankrijk). Dit is geen probleem in Dolibarr noch in PHP, maar op het ontvangen van e-mailserver. U kunt de optie MAIN_FIX_FOR_BUGGED_MTA echter toe te voegen aan 1 in setup - andere om Dolibarr wijzigen om dit te voorkomen. Echter, kunnen er problemen met andere servers dat opzicht strikt de SMTP-standaard. De andere oplossing (aanbevolen) is het gebruik van de methode "SMTP-socket bibliotheek" dat er geen nadelen heeft.
 TranslationSetup=Instelling van de taal
 TranslationDesc=Keuze taal zichtbaar op het scherm kan worden gewijzigd: <br> * Wereldwijd van <strong>Home-menu - Instellingen - Scherm</strong> <br> * Voor de gebruiker enkel van het tabblad <strong>Gebruiker weergave</strong> van de gebruiker kaart (klik op login op de top van het scherm).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Totaal aantal geactiveerde  <b>modules: %s</b>
 YouMustEnableOneModule=Je moet minstens 1 module aktiveren
 ClassNotFoundIntoPathWarning=Classe %s niet gevonden in PHP pad
 YesInSummer=Ja in de zomer
-OnlyFollowingModulesAreOpenedToExternalUsers=Note, only following modules are open to external users (whatever are permission of such users):
+OnlyFollowingModulesAreOpenedToExternalUsers=Nota, alleen de volgende modules zijn toegankelijk voor externe gebruikers (ongeacht de toegangsrechten van deze gebruikers)
 SuhosinSessionEncrypt=Sessie opslag geencrypteerd door Suhosin
 ConditionIsCurrently=Voorwaarde is momenteel %s
 YouUseBestDriver=U gebruikt driver %s die momenteel meest geschikt is.
@@ -1110,7 +1113,7 @@ GetBarCode=Haal barcode
 EmptyNumRefModelDesc=De code is vrij. Deze code kan te allen tijde worden gewijzigd.
 ##### Module password generation
 PasswordGenerationStandard=Geeft een wachtwoord terug dat gegenereerd is volgens het interne Dolibarr algoritme: 8 karakters met gedeelde nummers en tekens in kleine letters.
-PasswordGenerationNone=Do not suggest any generated password. Password must be typed in manually.
+PasswordGenerationNone=Stel geen automatisch gegenereerd wachtwoord voor. Wachtwoord moet manueel ingetoetst worden.
 PasswordGenerationPerso=Return a password according to your personally defined configuration.
 SetupPerso=According to your configuration
 PasswordPatternDesc=Password pattern description
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Installeren van externe module van toe
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/nl_NL/agenda.lang b/htdocs/langs/nl_NL/agenda.lang
index a90847b0cd5a471fed17a3c69e65befb51dec7d5..6d23b6ac1c88ef4b793eda6512e501bb21c22725 100644
--- a/htdocs/langs/nl_NL/agenda.lang
+++ b/htdocs/langs/nl_NL/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Alle acties / taken
 ViewCal=Bekijk kalender
 ViewDay=Dag te bekijken
 ViewWeek=Weekweergave
+ViewYear=Year view
 ViewPerUser=Per gebruiker weergave
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Bekijk met voorgedefinieerde filters
 AutoActions= Automatisch invullen van de agenda
 AgendaAutoActionDesc= Stel hier de gebeurtenissen in waarvoor u wilt dat Dolibarr automatische een afspraak in de agenda creëert. Als er niets is aangevinkt (standaard), zullen alleen handmatige acties worden opgenomen in de agenda.
diff --git a/htdocs/langs/nl_NL/bills.lang b/htdocs/langs/nl_NL/bills.lang
index e2f05c180b70474f67e19b54649221307f732a30..b71f0d99c5baec7e404d26495b43ba3041c06d9d 100644
--- a/htdocs/langs/nl_NL/bills.lang
+++ b/htdocs/langs/nl_NL/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Betalingen gedaan
 PaymentsBackAlreadyDone=Terugbetaling al gedaan
 PaymentRule=Betalingsvoorwaarde
 PaymentMode=Betalingstype
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Betalingstermijn
 PaymentConditions=Betalingsvoorwaarden
@@ -184,6 +186,7 @@ ShowInvoice=Toon factuur
 ShowInvoiceReplace=Toon vervangingsfactuur
 ShowInvoiceAvoir=Toon creditnota
 ShowInvoiceDeposit=Bekijk factuurbetalingen
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Toon betaling
 AlreadyPaid=Reeds betaald
 AlreadyPaidBack=Reeds terugbetaald
@@ -221,6 +224,7 @@ NonPercuRecuperable=Niet-terugvorderbare
 SetConditions=Stel betalingsvoorwaarden in
 SetMode=Stel betalingswijze in
 Billed=Gefactureerd
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Sjabloon factuur
 RepeatableInvoices=Sjabloon facturen
 Repeatable=Sjabloon
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Dit bedrag is verlaten (afnemer beschouwt als slechte bet
 HelpAbandonOther=Dit bedrag is verlaten, omdat het een fout was (verkeerde afnemer of factuur vervangen door een andere bijvoorbeeld)
 IdSocialContribution=Toon betalings id sociale/fiscale belasting
 PaymentId=Betalings id
+PaymentRef=Payment ref.
 InvoiceId=Factuur id
 InvoiceRef=Factuurreferentie
 InvoiceDateCreation=Aanmaakdatum factuur
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Verwante leveranciersfacturen
 LatestRelatedBill=Laatste gerelateerde factuur
 WarningBillExist=Waarschuwing één of meer facturen bestaan reeds 
 MergingPDFTool=Samenvoeging PDF-tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Direct
@@ -393,6 +402,7 @@ Reported=Uitgestelde
 DisabledBecausePayments=Niet beschikbaar omdat er betalingen bestaan
 CantRemovePaymentWithOneInvoicePaid=Verwijder onmogelijk wanneer er minstens een factuur betaald is ingedeeld.
 ExpectedToPay=Verwachte betaling
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Betaald door deze betaling
 ClosePaidInvoicesAutomatically=Classeer standaard, situatie of vervang facturen naar status "Betaald".
 ClosePaidCreditNotesAutomatically=Classeer terugbetaalde creditnotas automatisch naar status &quot;Betaald&quot;.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Nota: deze lijst bevat enkel facturen voor derde pa
 RevenueStamp=Taxzegel
 YouMustCreateInvoiceFromThird=Deze optie is alleen beschikbaar bij het maken van de factuur vanuit het tabblad "klant" van relaties.
 PDFCrabeDescription=Model van complete factuur (Beheert de mogelijkheid van de BTW-heffingsbelasting, de keuze van de regels display, logo, etc)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Geeft een getal in de vorm van %syymm-nnnn voor standaard facturen en %syymm-nnnn voor creditnota's, met yy voor jaar, mm voor maand en nnnn als opeenvolgende getallenreeks die niet terug op 0 komt
 MarsNumRefModelDesc1=Geeft een getal in de vorm van %syymm-nnnn voor standaard facturen, %syymm-nnnn voor vervangende facturen, %syymm-nnnn voor stortende facturen en %syymm-nnnn voor creditnota's, met yy voor jaar, mm voor maand en nnnn als opeenvolgende getallenreeks die niet terug op 0 komt.
 TerreNumRefModelError=Een wetsvoorstel te beginnen met $ syymm bestaat al en is niet compatibel met dit model van de reeks. Verwijderen of hernoemen naar deze module te activeren.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=Deze situatie is definitief.
 CantBeLessThanMinPercent=De voortgang kan niet kleiner zijn dan de waarde in de voorgaande situatie.
 NoSituations=Geen open situaties
 InvoiceSituationLast=Finale en algemene factuur
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/nl_NL/boxes.lang b/htdocs/langs/nl_NL/boxes.lang
index e78ad6982efdb7e61fe144ec9655f6da020d2031..5568e626cf08f5bfaf7ba1e552156fae0cd95bf7 100644
--- a/htdocs/langs/nl_NL/boxes.lang
+++ b/htdocs/langs/nl_NL/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Afnemersfacturen
 ForCustomersOrders=Klantenbestellingen
 ForProposals=Zakelijke voorstellen / Offertes
 LastXMonthRolling=De laatste %s maand overschrijdende
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/nl_NL/categories.lang b/htdocs/langs/nl_NL/categories.lang
index 4d83b391613ef30c3e71daa161dd06f60936719c..4934ad6fed81fdc97db6b5eb917e5c46cdd134c4 100644
--- a/htdocs/langs/nl_NL/categories.lang
+++ b/htdocs/langs/nl_NL/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Leveranciers tags / categorieën
 CustomersCategoriesShort=Klanten tags / categorieën
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Afnemers- / Prospectencategorie
 ProductsCategoriesShort=Producten tags / categorieën
 MembersCategoriesShort=Leden tags / categorieën
diff --git a/htdocs/langs/nl_NL/companies.lang b/htdocs/langs/nl_NL/companies.lang
index 4dbf8548dfd8c24933022e68067ed9dcb44887e6..c0886b10acb5ce44f3e223cfa51f091f80b6df59 100644
--- a/htdocs/langs/nl_NL/companies.lang
+++ b/htdocs/langs/nl_NL/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (R.C.)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (RFC).
 ProfId2MX=Prof Id 2 (R.. P. IMSS)
diff --git a/htdocs/langs/nl_NL/compta.lang b/htdocs/langs/nl_NL/compta.lang
index 141a009c979a42f198a46096b0b87d19954d0601..836f23c2685b9d0296be75e179589eefb66f2d77 100644
--- a/htdocs/langs/nl_NL/compta.lang
+++ b/htdocs/langs/nl_NL/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Storting facturen worden ook niet opgenomen
 DepositsAreIncluded=- Storting facturen zijn opgenomen
 LT2ReportByCustomersInInputOutputModeES=Verslag van derden IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Bevestigd door de klant btw geïnd en betaald
 VATReportByCustomersInDueDebtMode=Bevestigd door de klant btw geïnd en betaald
 VATReportByQuartersInInputOutputMode=Bevestigd door de klant btw geïnd en betaald
diff --git a/htdocs/langs/nl_NL/cron.lang b/htdocs/langs/nl_NL/cron.lang
index 3af81e99ba1dc0b14b39febc10eaaa630de4dca3..2df039ec7149ea192ba888b9b584778fc529d893 100644
--- a/htdocs/langs/nl_NL/cron.lang
+++ b/htdocs/langs/nl_NL/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Geplande taken
-CronListActive=Lijst van active/geplande taken
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=List of disabled jobs
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Last run
 CronLastOutput=Last run output
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Taak
 CronNone=Geen
-CronDtStart=Begindatum
-CronDtEnd=Einddatum
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Volgende uitvoering
 CronDtLastLaunch=Laatste uitvoering
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=Geen taken opgenomen
 CronPriority=Prioriteit
 CronLabel=Beschrijving
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Elke
 JobFinished=Taak gestart en be-eindigd
 #Page card
diff --git a/htdocs/langs/nl_NL/deliveries.lang b/htdocs/langs/nl_NL/deliveries.lang
index 9dbe50a31090280af08d0d3b00afb62882fa7c6f..38f40b3e86084bb0bbb96c27b2ef193c230d310a 100644
--- a/htdocs/langs/nl_NL/deliveries.lang
+++ b/htdocs/langs/nl_NL/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Weet u zeker dat u dit ontvangstbewijs wilt verwijd
 DeliveryMethod=Leveringswijze
 TrackingNumber=Volgnummer
 DeliveryNotValidated=Levering niet gevalideerd
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Naam en handtekening:
 ToAndDate=Aan________________________________ op ____ / _____ / __________
diff --git a/htdocs/langs/nl_NL/holiday.lang b/htdocs/langs/nl_NL/holiday.lang
index 4e516e1f6942e4b544b672f51a15034397d2e8bd..3ca8c56b26a4bf5f5203a432e4c90a5db827ce24 100644
--- a/htdocs/langs/nl_NL/holiday.lang
+++ b/htdocs/langs/nl_NL/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Employee
 DateDebCP=Begindatum
 DateFinCP=Einddatum
 DateCreateCP=Aanmaakdatum
@@ -23,7 +22,7 @@ ReviewedByCP=Will be reviewed by
 DescCP=Beschrijving
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=You must select an end date greater than the start date.
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Achternaam
-Employee=Employee
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Monthly update
 ManualUpdate=Manual update
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/nl_NL/hrm.lang b/htdocs/langs/nl_NL/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/nl_NL/hrm.lang
+++ b/htdocs/langs/nl_NL/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/nl_NL/install.lang b/htdocs/langs/nl_NL/install.lang
index 6d08bd39edd7fd072f8cb51d32eaf67005bc7842..13ccbcae09d4988a364ae499db1450206dc40759 100644
--- a/htdocs/langs/nl_NL/install.lang
+++ b/htdocs/langs/nl_NL/install.lang
@@ -148,7 +148,7 @@ MigrationFinished=Migratie voltooid
 LastStepDesc=<strong>Laatste stap:</strong> Definieer hier de login en het wachtwoord die u wilt gebruiken om verbinding te maken met de software. Raak deze gegevens niet kwijt omdat dit account bedoelt is om alle andere gebruikers te beheren.
 ActivateModule=Activeer module %s
 ShowEditTechnicalParameters=Klik hier om geavanceerde parameters te zien of te wijzigen. (expert instellingen)
-WarningUpgrade=Warning:\nDid your run a database backup first ?\nThis is highly recommanded: for example, due to some bugs into databases systems (for example mysql version 5.5.40/41/42/43), some data or tables may be lost during this process, so it is highly recommanded to have a complete dump of your database before starting migration.\n\nClick OK to start migration process...
+WarningUpgrade=Opgelet:\nHeb je eerst een database backup uitgevoerd?\nDit wordt ten zeerste aanbevolen: bijvoorbeeld in het geval er fouten in de database systemen zitten (voorbeeld mysql version 5.5.40/41/42/43), sommige data of tabellen kunnen verloren gaan tijdens dit proces,  daarom is het aanbevolen om een volledige dump van jou database te hebben voor je start met de migratie.\n\nDruk op OK om de migratie te starten....
 ErrorDatabaseVersionForbiddenForMigration=Uw database versie is %s en heeft een kritieke bug die gegevensverlies veroorzaakt als u structuur veranderingen uitvoert op uw database, welke gedaan worden door het migratieproces. Vanwege deze reden, zal de migratie niet worden toegestaan ​​totdat u uw database upgrade naar een hogere versie (lijst van gekende versies met bug: %s).
 
 #########
diff --git a/htdocs/langs/nl_NL/interventions.lang b/htdocs/langs/nl_NL/interventions.lang
index 1985ed2aa39130306bb81ee27ed1a85d7da283bd..3bb2188135fc0980caf2d1726d258cf205ec026d 100644
--- a/htdocs/langs/nl_NL/interventions.lang
+++ b/htdocs/langs/nl_NL/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Geef nummer met het formaat %sjjmm-nnnn terug waarbij jj
 PacificNumRefModelError=Een interventiedetailkaart beginnend met %s sjjmm bestaat al en is niet verenigbaar met deze reeksinstelling. Verwijder of hernoem het om deze module te activeren.
 PrintProductsOnFichinter=Printproducten op interventie fiche
 PrintProductsOnFichinterDetails=Interventies gegenereerd op basis van bestellingen
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/nl_NL/mails.lang b/htdocs/langs/nl_NL/mails.lang
index 93befbc20264dd123de51655a5775dc4204d39a7..4b139f8c1023d99f9b349a4787cf2787ae03b82c 100644
--- a/htdocs/langs/nl_NL/mails.lang
+++ b/htdocs/langs/nl_NL/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=E-mail verzonden naar %s ontvangers.
 XTargetsAdded=<b>%s</b> ontvangers toegevoegd in bestemming-lijst
 EachInvoiceWillBeAttachedToEmail=Een document met behulp van standaard factuur document sjabloon wordt gemaakt en aan elke e-mail toegevoegd.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Herinnering van de factuur %s (%s)
 SendRemind=Stuur herinnering door e-mails
 RemindSent=%s herinnering(en) verstuurd
diff --git a/htdocs/langs/nl_NL/main.lang b/htdocs/langs/nl_NL/main.lang
index 64b62722d2f5a03978ef9e7fcd0d68ae1e4ae982..9f5c016e2da7b95fcf9dd1e31a933a613044c561 100644
--- a/htdocs/langs/nl_NL/main.lang
+++ b/htdocs/langs/nl_NL/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%d/%m/%Y %I:%M:%S %p
 FormatDateHourTextShort=%d %b %Y %H:%M
 FormatDateHourText=%d %B %Y %H:%M
 DatabaseConnection=Databaseverbinding
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Geen vertaling
 NoRecordFound=Geen record gevonden
 NoError=Geen fout
@@ -105,6 +106,7 @@ NotePrivate=Notitie (privé)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr is geconfigureerd om de precisie van de stuksprijzen op <b>%s</b> decimalen te beperken.
 DoTest=Test
 ToFilter=Filter
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Let op, u heeft minstens een vertraagd element dat de getolereerde vertraging heeft overschreden.
 yes=ja
 Yes=Ja
@@ -228,6 +230,8 @@ Now=Nu
 HourStart=Start uur
 Date=Datum
 DateAndHour=Datum en uur
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Begindatum
 DateEnd=Einddatum
 DateCreation=Aanmaakdatum
@@ -608,6 +612,7 @@ TotalMan=Totaal
 NeverReceived=Nooit ontvangen
 Canceled=Geannuleerd
 YouCanChangeValuesForThisListFromDictionarySetup=U kunt waarden voor deze lijst wijzigen via menu-instellingen - woordenboek
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Kleur
 Documents=Gekoppelde bestanden
 DocumentsNb=Bijlagen (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=Nog geen fotos beschikbaar
 HomeDashboard=Home samenvatting
+Dashboard=Dashboard
 Deductible=Aftrekbaar
 from=van
 toward=richting
diff --git a/htdocs/langs/nl_NL/margins.lang b/htdocs/langs/nl_NL/margins.lang
index 45db59ec1af6d610320a3e22a8d0dcef867e5531..2284fd74fc2eb5601fbe016867740b0917b73c45 100644
--- a/htdocs/langs/nl_NL/margins.lang
+++ b/htdocs/langs/nl_NL/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Kies Training of Dienst
 StartDate=Start datum
 EndDate=Eind datum
 Launch=Start
-ForceBuyingPriceIfNull=Forceer een inkoopprijs indien null
-ForceBuyingPriceIfNullDetails=indien "ON", marge wodt nul   (inkoopprijs = verkoopprijs), anders("OFF"), marge is gelijk verkoopprijs (inkoopprijs = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Marge methode voor globale discounts
 UseDiscountAsProduct=Als een training
 UseDiscountAsService=Als een dienst
@@ -35,8 +35,9 @@ MargeBrute=Groffe marge
 MargeNette=Netto marge
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Groffe marge : Verkoopprijs - Inkoopprijs<br/>Netto marge : Verkoopprijs - Kostprijs
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Kostprijs
 BuyingCost=Kostprijs
 UnitCharges=Unit toeslag
diff --git a/htdocs/langs/nl_NL/oauth.lang b/htdocs/langs/nl_NL/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/nl_NL/oauth.lang
+++ b/htdocs/langs/nl_NL/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/nl_NL/orders.lang b/htdocs/langs/nl_NL/orders.lang
index 1a7cd6aca9f2a7a8b03f05c4beb82ced54b9834b..9726b8da21d730632732f1ea94c4f6253bb56de4 100644
--- a/htdocs/langs/nl_NL/orders.lang
+++ b/htdocs/langs/nl_NL/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Te verwerken opdracht
 NoOpenedOrders=Geen lopende opdrachten
 NoOtherOpenedOrders=Geen andere lopende opdrachten
 NoDraftOrders=Geen orders in aanmaak
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Andere opdrachten
 LastOrders=Laatste %s klantbestellingen
diff --git a/htdocs/langs/nl_NL/other.lang b/htdocs/langs/nl_NL/other.lang
index d5cb006a241ced66740c1d1c71ee1614d5f2aca9..9b83a91765a565ae2a8b952c02276de3fe1bc2cc 100644
--- a/htdocs/langs/nl_NL/other.lang
+++ b/htdocs/langs/nl_NL/other.lang
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=Nieuwe export
 ##### External sites #####
 ExternalSites=Externe sites
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/nl_NL/paypal.lang b/htdocs/langs/nl_NL/paypal.lang
index 1479b6af94c5f37b22b126e3be281af3909ff422..748bf5be9397eccc2f94f395b7d90c45b2b35ea4 100644
--- a/htdocs/langs/nl_NL/paypal.lang
+++ b/htdocs/langs/nl_NL/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Mode test / zandbak
 PAYPAL_API_USER=API gebruikersnaam
 PAYPAL_API_PASSWORD=API wachtwoord
 PAYPAL_API_SIGNATURE=API handtekening
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Aanbod betaling "integraal" (Credit card + Paypal) of "Paypal" alleen
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/nl_NL/products.lang b/htdocs/langs/nl_NL/products.lang
index 3617d32f80401f7bad7a83e815fb361f9168c789..4978ace696be99424183ae012d699d7db6559fba 100644
--- a/htdocs/langs/nl_NL/products.lang
+++ b/htdocs/langs/nl_NL/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Netto VWAP per stuk
 CostPmpHT=Netto VWAP totaal
 ProductUsedForBuild=Automatisch opgebruiken bij productie
 ProductBuilded=Productie klaar
-ProductsMultiPrice=Multi-prijs product
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/nl_NL/projects.lang b/htdocs/langs/nl_NL/projects.lang
index 0114e267190dd71f0b7009f3b8355bd909a27e82..2daa6db0ed1ddb2000d1aec166982f4df62a45f1 100644
--- a/htdocs/langs/nl_NL/projects.lang
+++ b/htdocs/langs/nl_NL/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=Deze weergave toont alle projecten en taken die je mag le
 ProjectsDesc=Deze weergave toont alle projecten (Uw gebruikersrechten staan het u toe alles in te zien).
 MyTasksDesc=Deze weergave is beperkt tot projecten en taken waarvoor u een contactpersoon bent (ongeacht het type).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Deze weergave toont alle projecten en taken die u mag inzien.
 TasksDesc=Deze weergave toont alle projecten en taken (Uw gebruikersrechten staan het u toe alles in te zien).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Projectleider
 LastProjects=Laatste %s projecten
 AllProjects=Alle projecten
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Projectenlijst
 ShowProject=Toon project
 SetProject=Stel project in
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Taak %s gewijzigd
 TaskDeletedInDolibarr=Taak %s verwijderd
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/nl_NL/propal.lang b/htdocs/langs/nl_NL/propal.lang
index ea501524c889e8914794e7be7cebeacd5382703c..222feb3c685a6454d2ad8fef55b0dc9d81e5dd97 100644
--- a/htdocs/langs/nl_NL/propal.lang
+++ b/htdocs/langs/nl_NL/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Laatste %s gewijzigde offertes
 AllPropals=Alle offertes
 LastProposals=Laatste offertes
 SearchAProposal=Zoek een offerte
+NoProposal=No proposal
 ProposalsStatistics=Offertestatistieken
 NumberOfProposalsByMonth=Aantal per maand
 AmountOfProposalsByMonthHT=Bedrag per maand (exclusief belastingen)
@@ -62,7 +63,8 @@ DatePropal=Offertedatum
 DateEndPropal=Vervaldatum
 DateEndPropalShort=Einddatum
 ValidityDuration=Geldigheidsduur
-CloseAs=Sluiten met status
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Classificeer als gefactureerd
 BuildBill=Maak factuur
 ErrorPropalNotFound=Offerte %s niet gevonden
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Standaard model aanmaken
 DefaultModelPropalToBill=Standaard sjabloon bij het sluiten van een zakelijk voorstel (te factureren)
 DefaultModelPropalClosed=Standaard sjabloon bij het sluiten van een zakelijk voorstel (nog te factureren)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/nl_NL/salaries.lang b/htdocs/langs/nl_NL/salaries.lang
index b727a5431b9e8fe1a8604cfbfdc2ed348cc0dded..39ce1b5a1ff5661320812bc4f0c3e9e23a427fab 100644
--- a/htdocs/langs/nl_NL/salaries.lang
+++ b/htdocs/langs/nl_NL/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Boekhoudkundige code voor salarissen betalingen
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=boekhoudkundige code voor financiële last
 Salary=Salaris
 Salaries=Salarissen
-Employee=Werknemer
 NewSalaryPayment=Nieuwe salarisbetaling
 SalaryPayment=Salarisbetaling
 SalariesPayments=Salarissen betalingen
diff --git a/htdocs/langs/nl_NL/sendings.lang b/htdocs/langs/nl_NL/sendings.lang
index c62e4e6552826c0fa38c826f5343f7e9a7282b33..2d927f30b6da3daad245426d1903a0d566d2c648 100644
--- a/htdocs/langs/nl_NL/sendings.lang
+++ b/htdocs/langs/nl_NL/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=Alle zendingen
 Shipment=Verzending
 Shipments=Verzendingen
 ShowSending=Show Shipments
-Receivings=Ontvangsten
+Receivings=Delivery Receipts
 SendingsArea=Zendingenoverzicht
 ListOfSendings=Verzendlijst
 SendingMethod=Verzendwijze
diff --git a/htdocs/langs/nl_NL/sms.lang b/htdocs/langs/nl_NL/sms.lang
index 985bae38049b49e474af0fa1c36c8115fa181348..850d381860805a40dc3cdcd4f0544f248865b818 100644
--- a/htdocs/langs/nl_NL/sms.lang
+++ b/htdocs/langs/nl_NL/sms.lang
@@ -49,5 +49,6 @@ SendSms=SMS-
 SmsInfoCharRemain=Nb van de resterende tekens
 SmsInfoNumero= (Formaat internationale ie: +33899701761)
 DelayBeforeSending=Vertraging voor het verzenden (minuten)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Geen doel beschikbaar. Controleer instellingen van uw SMS-aanbieder.
 
diff --git a/htdocs/langs/nl_NL/supplier_proposal.lang b/htdocs/langs/nl_NL/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/nl_NL/supplier_proposal.lang
+++ b/htdocs/langs/nl_NL/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/nl_NL/trips.lang b/htdocs/langs/nl_NL/trips.lang
index 6bca5d2c0df355698c0408fff0c8020a94853423..ddadb4e23671f42b47fb5ea55da52617014971e1 100644
--- a/htdocs/langs/nl_NL/trips.lang
+++ b/htdocs/langs/nl_NL/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Ander
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Lunch
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/nl_NL/users.lang b/htdocs/langs/nl_NL/users.lang
index 71b3576b6ead72e2ceac373867a87977f4d0959c..70242075b7b9199739a7343bbb9d850a3c0b45ff 100644
--- a/htdocs/langs/nl_NL/users.lang
+++ b/htdocs/langs/nl_NL/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Gebruik OpenID om in te loggen
 WeeklyHours=Uren per week
 ColorUser=Kleur van de gebruiker
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/pl_PL/accountancy.lang b/htdocs/langs/pl_PL/accountancy.lang
index 860d776eedef4a2a3e6578e4943716e9fb62586f..04c7511ed58e36a34b472b3e0158a640c62a5c16 100644
--- a/htdocs/langs/pl_PL/accountancy.lang
+++ b/htdocs/langs/pl_PL/accountancy.lang
@@ -1,32 +1,31 @@
 # Dolibarr language file - en_US - Accounting Expert
-ACCOUNTING_EXPORT_SEPARATORCSV=Column separator for export file
-ACCOUNTING_EXPORT_DATE=Date format for export file
-ACCOUNTING_EXPORT_PIECE=Export the number of piece
+ACCOUNTING_EXPORT_SEPARATORCSV=Separatir kolumn dla exportowanego pliku
+ACCOUNTING_EXPORT_DATE=Format daty dla exportowanego pliku 
+ACCOUNTING_EXPORT_PIECE=Exportuj ilość sztuk
 ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Export with global account
 ACCOUNTING_EXPORT_LABEL=Export the label
 ACCOUNTING_EXPORT_AMOUNT=Export the amount
 ACCOUNTING_EXPORT_DEVISE=Export the devise
-Selectformat=Select the format for the file
+Selectformat=Wybierz format dla pliku
 ACCOUNTING_EXPORT_PREFIX_SPEC=Specify the prefix for the file name
 
 Accounting=Księgowość
 Globalparameters=Parametry globalne
 Menuaccount=Konta księgowe
-Menuthirdpartyaccount=Rachunki Thirdparty
+Menuthirdpartyaccount=Rachunki kontrahenta
 MenuTools=Narzędzia
 
 ConfigAccountingExpert=Konfiguracja modułu eksperta księgowego
-Journaux=Czasopisma
-JournalFinancial=Czasopisma finansowe
-Exports=Eksportuje
+Journaux=Dzienniki
+JournalFinancial=Dzienniki finansowe
+Exports=Eksporty
 Export=Eksport
 Modelcsv=Model eksportu
-OptionsDeactivatedForThisExportModel=Dla tego modelu eksportowego, opcje są wyłączone
+OptionsDeactivatedForThisExportModel=Dla tego modelu eksportu opcje są wyłączone
 Selectmodelcsv=Wybierz model eksportu
-Modelcsv_normal=Klasyczne eksport
+Modelcsv_normal=Standardowy eksport
 Modelcsv_CEGID=Eksport do Cegid Expert
 BackToChartofaccounts=Powrót planu kont
-Back=Powrót
 
 Definechartofaccounts=Definiowanie planu kont
 Selectchartofaccounts=Wybierz plan kont
@@ -41,10 +40,10 @@ TradeMargin=Marża handlowa
 Reports=Raporty
 ByCustomerInvoice=Fakturami klientów
 NewAccount=Nowe konto księgowe
-Create=Utworzyć
-CreateMvts=Create movement
+Create=Utwórz
+CreateMvts=Utwórz przesunięcie
 UpdateAccount=Modyfikacja konta księgowego
-UpdateMvts=Modyfikacja ruch
+UpdateMvts=Modyfikacja przesunięcia
 WriteBookKeeping=Konta rekord w księdze głównej
 Bookkeeping=Księga główna
 AccountBalanceByMonth=Stan konta na miesiąc
@@ -62,14 +61,14 @@ Ventilate=Wietrzyć
 VentilationAuto=Automatyczny podział
 
 Processing=Przetwarzanie
-EndProcessing=Koniec obróbki
+EndProcessing=Koniec przetwarzania
 AnyLineVentilate=Wszelkie linie do wentylacji
 SelectedLines=Wybrane linie
-Lineofinvoice=Linia faktury
+Lineofinvoice=Pozycja faktury
 VentilatedinAccount=Wentylowane z powodzeniem na koncie księgowym
 NotVentilatedinAccount=Nie wentylowane na koncie księgowym
 
-ACCOUNTING_SEPARATORCSV=Separator kolumna w pliku eksportu
+ACCOUNTING_SEPARATORCSV=Separator kolumny w eksportowanym pliku
 
 ACCOUNTING_LIMIT_LIST_VENTILATION=Ilość elementów jest podział przedstawiony przez strony (maksymalna zalecana: 50)
 ACCOUNTING_LIST_SORT_VENTILATION_TODO=Rozpocząć sortowanie stron rozpadu "Has to podział" przez ostatnich elementów
@@ -79,56 +78,52 @@ AccountLength=Długość rozliczania rachunków przedstawiono w Dolibarr
 AccountLengthDesc=Funkcja pozwala udawać długość koncie księgowym zastępując obowiązuje przez cyfrę zero. Funkcja ta dotyka tylko wyświetlacz, to nie zmienia kont księgowych zarejestrowanych w Dolibarr. Na wywóz, funkcja ta jest konieczna, aby być zgodne z określonym oprogramowaniem.
 ACCOUNTING_LENGTH_DESCRIPTION=Length for displaying product & services description in listings (Best = 50)
 ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=Length for displaying product & services account description form in listings (Best = 50)
-ACCOUNTING_LENGTH_GACCOUNT=Długość ogólnych rachunków
-ACCOUNTING_LENGTH_AACCOUNT=Długość z rachunków osób trzecich
+ACCOUNTING_LENGTH_GACCOUNT=Długość numerów głónych kont bankowych
+ACCOUNTING_LENGTH_AACCOUNT=Długośc nr kont bankowych kontahentów
 
-ACCOUNTING_SELL_JOURNAL=Sprzedam czasopisma
-ACCOUNTING_PURCHASE_JOURNAL=Zakup czasopisma
-ACCOUNTING_MISCELLANEOUS_JOURNAL=Inne czasopisma
-ACCOUNTING_EXPENSEREPORT_JOURNAL=Expense report journal
+ACCOUNTING_SELL_JOURNAL=Dziennik sprzedaży
+ACCOUNTING_PURCHASE_JOURNAL=Dziennik zakupów
+ACCOUNTING_MISCELLANEOUS_JOURNAL=Dziennik różnic
+ACCOUNTING_EXPENSEREPORT_JOURNAL=Dziennik raportów kosztowych
 ACCOUNTING_SOCIAL_JOURNAL=Czasopismo Społecznego
 
 ACCOUNTING_ACCOUNT_TRANSFER_CASH=Konto transferu
 ACCOUNTING_ACCOUNT_SUSPENSE=Konto czekać
 
-ACCOUNTING_PRODUCT_BUY_ACCOUNT=Rachunkowość konto domyślnie dla zakupionych produktów (jeśli nie jest określony w ulotce)
-ACCOUNTING_PRODUCT_SOLD_ACCOUNT=Rachunkowość konto domyślnie dla sprzedawanych produktów (jeśli nie określono w ulotce)
-ACCOUNTING_SERVICE_BUY_ACCOUNT=Rachunkowość konto domyślnie dla zakupionych usług (jeśli nie określona w arkuszu usług)
-ACCOUNTING_SERVICE_SOLD_ACCOUNT=Rachunkowość konto domyślnie dla sprzedanych usług (jeśli nie określona w arkuszu usług)
+ACCOUNTING_PRODUCT_BUY_ACCOUNT=Domyślne konto księgowe dla kupionych produktów (jeżeli nie zdefiniowano w arkuszu produktu)
+ACCOUNTING_PRODUCT_SOLD_ACCOUNT=Domyślne konto księgowe dla sprzedanych produktów (jeżeli nie zdefiniowano w arkuszu produktu)
+ACCOUNTING_SERVICE_BUY_ACCOUNT=Domyślne konto księgowe dla zakupionych usług (jeżeli nie zdefioniowano w arkuszu usługi)
+ACCOUNTING_SERVICE_SOLD_ACCOUNT=Domyślne konto księgowe dla sprzedanych usług (jeżeli nie zdefiowano w arkuszu usługi)
 
 Doctype=Rodzaj dokumentu
 Docdate=Data
 Docref=Odniesienie
 Numerocompte=Konto
-Code_tiers=Thirdparty
+Code_tiers=Kontrahent
 Labelcompte=Konto Wytwórnia
 Sens=Sens
-Codejournal=Czasopismo
+Codejournal=Dziennik
 
-DelBookKeeping=Usuń zapisy w księdze głównej
+DelBookKeeping=Usuń wpisy z księgi głównej
 
-DescSellsJournal=Sprzedaje w czasopiśmie
-DescPurchasesJournal=Zakupy czasopisma
-BankJournal=Czasopismo Banku
-DescBankJournal=Czasopismo Banku w tym wszystkich rodzajów płatności innych niż gotówka
-CashJournal=Czasopismo Gotówka
-DescCashJournal=Czasopismo pieniężnych w tym rodzaju płatności gotówką
-FinanceJournal=Finance journal
-DescFinanceJournal=Finance journal including all the types of payments by bank account
+DescSellsJournal=Dziennik sprzedarzy
+DescPurchasesJournal=Dziennik zakupów
+FinanceJournal=Dziennik finansów
+DescFinanceJournal=Dziennik finansów zawiera wszystkie typy płatności wykonane przez konto bankowe
 
 CashPayment=Płatność gotówką
 
 SupplierInvoicePayment=Zapłata faktury dostawcy
 CustomerInvoicePayment=Zapłata faktury klienta
 
-ThirdPartyAccount=Thirdparty konto
+ThirdPartyAccount=Konto kontrahenta
 
-NewAccountingMvt=Nowy ruch
-NumMvts=Ilość ruchów
-ListeMvts=Lista przemieszczania
+NewAccountingMvt=Nowe przesunięcie
+NumMvts=Ilość przesunięć
+ListeMvts=Lista przesunięć
 ErrorDebitCredit=Debetowych i kredytowych nie może mieć wartość w tym samym czasie
 
-ReportThirdParty=Lista thirdparty konto
+ReportThirdParty=Lista kont kontrahenta
 DescThirdPartyReport=Skonsultuj się tutaj listę thirdparty klientów i dostawców oraz ich kont księgowych
 
 ListAccounts=Lista kont księgowych
@@ -140,7 +135,7 @@ Accountparent=Korzeń konta
 
 DescVentilCustomer=Skonsultuj się tutaj rocznego rozliczenia przebicia faktur klientów
 TotalVente=Total turnover before tax
-TotalMarge=Marża całkowita sprzedaż
+TotalMarge=Całkowita marża sprzedaży
 DescVentilDoneCustomer=Skonsultuj się tutaj listę linii faktur klientów i ich rachunek rachunkowości
 DescVentilTodoCustomer=Wyraź swoje wiersze faktury klienta z kontem rachunkowości
 ChangeAccount=Zmienianie konta księgowego dla wierszy wybranych przez konto:
@@ -151,10 +146,10 @@ DescVentilDoneSupplier=Skonsultuj się tutaj listę linii dostawcy faktur i ich
 
 ValidateHistory=Weryfikacja Automatycznie
 
-ErrorAccountancyCodeIsAlreadyUse=Błąd, nie można usunąć to konto księgowe, ponieważ jest używany
-
+ErrorAccountancyCodeIsAlreadyUse=Błąd, nie można usunąc tego konta księgowego, ponieważ jest w użyciu
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Karta Podział
-GeneralLedgerIsWritten=Operations are written in the general ledger
+GeneralLedgerIsWritten=Operacje zostały zapisane w głównej księdze
 
 ##Export Journal Feature
 ExportFormat=Format of Export
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/pl_PL/admin.lang b/htdocs/langs/pl_PL/admin.lang
index b5d630c39104f5788c0458ee5c59af39f0b47f31..9080a5b5135cf818ee533a0d814e4e9bb28742f1 100644
--- a/htdocs/langs/pl_PL/admin.lang
+++ b/htdocs/langs/pl_PL/admin.lang
@@ -48,7 +48,7 @@ SecuritySetup=Ustawienia bezpieczeństwa
 ErrorModuleRequirePHPVersion=Błąd ten moduł wymaga PHP w wersji %s lub większej
 ErrorModuleRequireDolibarrVersion=Błąd ten moduł wymaga Dolibarr wersji %s lub większej
 ErrorDecimalLargerThanAreForbidden=Błąd, dokładność większa <b>niż %s</b> nie jest obsługiwana
-DictionarySetup=Słownik setup
+DictionarySetup=Konfiguracja słownika
 Dictionary=Słowniki
 Chartofaccounts=Plan kont
 Fiscalyear=Lat podatkowych
@@ -61,8 +61,8 @@ UseSearchToSelectCompany=Użyj auto uzupełniania pól by wybrać części trzec
 ActivityStateToSelectCompany= Dodaj filtr opcję aby pokazać / ukryć częsci trzecie, które są aktualnie w działalności lub wygasłe
 UseSearchToSelectContactTooltip=Także jeśli masz dużą liczbę osób trzecich (> 100 000), można zwiększyć prędkość przez ustawienie stałej CONTACT_DONOTSEARCH_ANYWHERE do 1 w Setup-> Inne. Szukaj zostaną ograniczone do początku łańcucha.
 UseSearchToSelectContact=Użyj pól auto uzupełniania kontaktu (zamiast przy użyciu pola listy).
-DelaiedFullListToSelectCompany=Poczekaj naciśnięciu klawisza przed ładowania treści z listy thirdparties kombi (Może to zwiększyć wydajność, jeśli masz dużą liczbę thirdparties)
-DelaiedFullListToSelectContact=Poczekaj naciśnięciu klawisza przed ładowania treści z listy kontaktów kombi (może to zwiększyć wydajność, jeśli masz dużą liczbę kontaktów)
+DelaiedFullListToSelectCompany=Poczekaj na naciśnięcie klawisza zanim załadujesz zawartość listy z kontrahentami (może zwiększyć wydajność, gdy masz dużo kontrahentów)
+DelaiedFullListToSelectContact=Poczekaj na naciśnięcie klawisza zanim załadujesz zawartość listy z kontaktami (może zwiększyć wydajność, gdy masz dużo kontaktów)
 SearchFilter=Opcje z filtrami wyszukiwania
 NumberOfKeyToSearch=Liczba znaków do wyszukiwania: %s
 ViewFullDateActions=Pokaż pełne daty wydarzeń w trzecim arkuszu
@@ -86,7 +86,7 @@ NextValueForInvoices=Następna wartość (faktury)
 NextValueForCreditNotes=Następna wartość (not kredytowych)
 NextValueForDeposit=Następny wartości (depozyt)
 NextValueForReplacements=Następna wartość (zamienniki)
-MustBeLowerThanPHPLimit=Uwaga: twoj PHP ogranicza rozmiar każdego uploadowanego pliku do <b>%s</b> %s, niezależnie od wartości tego parametru 
+MustBeLowerThanPHPLimit=Uwaga: twoj PHP ogranicza rozmiar każdego uploadowanego pliku do <b>%s</b> %s, niezależnie od wartości tego parametru
 NoMaxSizeByPHPLimit=Uwaga: Brak ustawionego limitu w twojej konfiguracji PHP
 MaxSizeForUploadedFiles=Maksymalny rozmiar dla twoich przesyłanych plików (0 by zabronić jego przesyłanie/upload)
 UseCaptchaCode=Użyj graficzny kod (CAPTCHA) na stronie logowania
@@ -154,7 +154,7 @@ Purge=Czyszczenie
 PurgeAreaDesc=Ta strona pozwala na usunięcie wszystkich plików zbudowanych lub przechowywanych przez Dolibarr (pliki tymczasowe lub wszystkie pliki w <b>katalogu %s).</b> Korzystanie z tej funkcji nie jest konieczne. Zalecana jest dla użytkowników, których aplikacja Dolibarr jest hostowana przez usługodawcę nie zezwalającego na usuwanie plików utworzonych przez serwer WWW.
 PurgeDeleteLogFile=Usuwanie <b>pliku rejestru %s</b> zdefiniowanego dla modułu Syslog (nie ma ryzyka utraty danych)
 PurgeDeleteTemporaryFiles=Usuń wszystkie pliki tymczasowe (nie ma ryzyka utraty danych)
-PurgeDeleteAllFilesInDocumentsDir=Usuń wszystkie pliki w <b>katalogu %s.</b> Pliki tymczasowe, jak również kopie zapasowe baz danych oraz pliki dołączone do elementów (strony trzecie, faktury ...) i przesłane do modułu ECM zostaną usunięte.
+PurgeDeleteAllFilesInDocumentsDir=Usuń wszystkie pliki w <b>katalogu %s.</b> Pliki tymczasowe, jak również kopie zapasowe baz danych oraz pliki dołączone do elementów (kontrahencji, faktury ...) i przesłane do modułu ECM zostaną usunięte.
 PurgeRunNow=Czyść teraz
 PurgeNothingToDelete=Nie ma katalogu lub pliku do usunięcia.
 PurgeNDirectoriesDeleted=<b> %s</b> pliki lub katalogi usunięte.
@@ -227,8 +227,8 @@ Security=Bezpieczeństwo
 Passwords=Hasła
 DoNotStoreClearPassword=Nie przechowuj w bazie danych niezakodowanych haseł. Przechowuj jedynie hasła zakodowane.
 MainDbPasswordFileConfEncrypted=Hasło bazy danych zakodowane w conf.php
-InstrucToEncodePass=Aby zaszyfrować hasło, w pliku <b>conf.php</b> zastąp linię<br><b>$dolibarr_main_db_pass="..."</b><br> na <br><b>$dolibarr_main_db_pass="crypted:%s"</b>
-InstrucToClearPass=Aby odszyfrować hasło (czysty tekst), w pliku <b>conf.php</b> zastąp linię  <br><b>$dolibarr_main_db_pass="crypted:...";</b><br> na <br><b>$dolibarr_main_db_pass="%s";</b>
+InstrucToEncodePass=To have password encoded into the <b>conf.php</b> file, replace the line <br><b>$dolibarr_main_db_pass="...";</b><br>by<br><b>$dolibarr_main_db_pass="crypted:%s";</b>
+InstrucToClearPass=To have password decoded (clear) into the <b>conf.php</b> file, replace the line <br><b>$dolibarr_main_db_pass="crypted:...";</b><br>by<br><b>$dolibarr_main_db_pass="%s";</b>
 ProtectAndEncryptPdfFiles=Ochrona generowanych plików PDF (Aktywowany nie jest zalecany, przerwa masowe generowanie plików pdf)
 ProtectAndEncryptPdfFilesDesc=Ochrona dokument PDF udostępnia go do odczytu i druku z wykorzystaniem dowolnej przeglądarki plików PDF. Jednakże, edycja i kopiowanie nie jest już możliwe. Należy pamiętać, że korzystając z tej funkcji, budowa globalnego,  skumulowanego pliku PDF nie jest możliwa (np. zestawienie niezapłaconych faktur).
 Feature=Funkcja
@@ -237,7 +237,7 @@ DolibarrProjectLeader=Kierownik projektu
 Developpers=Programiści / Współpracownicy
 OtherDeveloppers=Inni Deweloperzy / Współpracownicy
 OfficialWebSite=Międzynarodowa, oficjalna strona Dolibarr
-OfficialWebSiteLocal=Lokalna strona internetowa (% s)
+OfficialWebSiteLocal=Local web site (%s)
 OfficialWiki=Dolibarr Wiki
 OfficialDemo=Dolibarr online demo
 OfficialMarketPlace=Oficjalne miejsce dystrybucji zewnętrznych modułów / dodatków
@@ -272,17 +272,17 @@ MAIN_MAIL_SMTPS_ID=Identyfikator SMTP, jeżeli wymaga uwierzytelniania
 MAIN_MAIL_SMTPS_PW=Hasło SMTP , jeżeli wymagane uwierzytelniania
 MAIN_MAIL_EMAIL_TLS= Użyj szyfrowania TLS (SSL)
 MAIN_DISABLE_ALL_SMS=Wyłącz wysyłanie wszystkich SMS (do celów badawczych lub testowych)
-MAIN_SMS_SENDMODE=Metoda do wysyłania wiadomości SMS
-MAIN_MAIL_SMS_FROM=Domyślny numer telefonu do wysyłania SMS
-FeatureNotAvailableOnLinux=Cechy te nie są dostępne w systemach takich jak Unix. Przetestuj swój program sendmail lokalnie.
-SubmitTranslationENUS=Jeśli tłumaczenie dla tego języka nie jest kompletna i znaleźć błędy, można to skorygować poprzez edycję plików w <b>katalogu% s Langs /</b> złożyć zmodyfikowane pliki na dolibarr.org/forum~~pobj lub dla deweloperów na github.com/Dolibarr/dolibarr~~pobj.
-SubmitTranslation=Jeżeli tłumaczenie dla tego języka jest niekompletne lub znalazłeś/aś błędy, możesz je poprawić edetując pliki w folderze <b>langs/%s</b> i wysłać twoją zmianę do www.transifex.com/dolibarr-association/dolibarr/
+MAIN_SMS_SENDMODE=Metoda służy do wysyłania wiadomości SMS
+MAIN_MAIL_SMS_FROM=Nadawca domyślny numer telefonu wysyłaniu SMS-ów
+FeatureNotAvailableOnLinux=Cechy te nie są dostępne w systemach Unix, takich jak. Przetestuj swój program sendmail lokalnie.
+SubmitTranslationENUS=If translation for this language is not complete or you find errors, you can correct this by editing files into directory <b>langs/%s</b> and submit modified files on dolibarr.org/forum or for developers on github.com/Dolibarr/dolibarr.
+SubmitTranslation=If translation for this language is not complete or you find errors, you can correct this by editing files into directory <b>langs/%s</b> and submit your change to www.transifex.com/dolibarr-association/dolibarr/
 ModuleSetup=Moduł konfiguracji
 ModulesSetup=Moduły konfiguracji
 ModuleFamilyBase=System
 ModuleFamilyCrm=Zarządzanie relacjami z klientem (CRM)
 ModuleFamilyProducts=Zarządzanie produktami
-ModuleFamilyHr=Zarządzanie Zasobami Ludzkimi (HR)
+ModuleFamilyHr=Zarządzanie zasobami ludzkimi
 ModuleFamilyProjects=Projekty / Praca zespołowa
 ModuleFamilyOther=Inne
 ModuleFamilyTechnic=Narzędzia dla wielu modłułów
@@ -298,25 +298,25 @@ ThisIsProcessToFollow=Jest to proces konfiguracji do:
 ThisIsAlternativeProcessToFollow=To jest alternatywna konfiguracja do procesu:
 StepNb=Krok %s
 FindPackageFromWebSite=Odnajdź pakiet, który zapewnia wybraną przez Ciebię funkcję (np. na oficjalnej stronie internetowej %s).
-DownloadPackageFromWebSite=Pobierz pakiet (przykładowo z oficjalnej strony %s)
-UnpackPackageInDolibarrRoot=Rozpakuj plik pakietu na serwerze w katalogu platformy Dolibarr przeznaczonym dla zewnętrznych modułów: <b>%s</b>
+DownloadPackageFromWebSite=Download package (for example from official web site %s).
+UnpackPackageInDolibarrRoot=Unpack package file into Dolibarr server directory dedicated to external modules: <b>%s</b>
 SetupIsReadyForUse=Instalacja została zakończona. Dolibarr jest gotowy do użycia z nowym elementem.
 NotExistsDirect=Alternatywna ścieżka główna nie została zdefiniowana.<br>
 InfDirAlt=Od wersji 3, możliwe jest zdefiniowanie alternatywnego katalogu głównego.Pozwala to na przechowywanie wtyczek i szablonów niestandardowych. <br> Wystarczy utworzyć katalog w katalogu głównym Dolibarr (np: na zamówienie). <br>
 InfDirExample=<br> Następnie deklarowany w pliku conf.php  <br> $ Dolibarr_main_url_root_alt = "http: // myserver / custom" <br> $ Dolibarr_main_document_root_alt = "/ ścieżka / z / Dolibarr / htdocs / obyczaju" <br> * Linie te są skomentowane z "#", aby usunąć komentarz należy jedynie usunąć znak.
-YouCanSubmitFile=W tym kroku, możesz wysłać pakiet używając modułu: Wybierz plik modułu
+YouCanSubmitFile=For this step, you can send package using this tool: Select module file
 CurrentVersion=Aktualna wersja Dolibarr
 CallUpdatePage=Wejdź na stronę aktualizacji struktury bazy danych i danych %s.
 LastStableVersion=Ostatnia wersja stabilna
 UpdateServerOffline=Aktualizacja serwera nieaktywny
-GenericMaskCodes=Można wpisać dowolną maskę numeracji. W masce, można stosować następujące tagi: <br><b>{000000}</b> odpowiada liczbie, która jest zwiększona z każdym %s. Wprowadź dowolną liczbę zer jako żądaną długość licznika. Licznik zostanie uzupełniony zerami z lewej, aby mieć długość jak w zdefiniowanej masce. <br><b>{000000+000}</b> Podobnie jak poprzednia, ale z przesunięciem odpowiadającym numerowi na prawo od znaku + począwszy od pierwszego %s. <br><b>{000000@x}</b> Taka sama jak poprzednia. Licznik jest wyzerowany, gdy miesiąc osiągnie x (x od 1 do 12 lub ​​0 jeżeli licznik ma się zorować począwszy od pierwszego miesiąca rozliczeniowego w roku, okreslonego w konfihuracji, lub 99 aby zerować licznik co miesiąc). Jeżeli wykorzystywana jest ta maska, a x jest ustawiony na 2 lub więcej, w masce wymagany jest również ciąg {rr}{mm} lub {rrrr}{mm}. <br><b>{dd}</b> to dni (01 do 31). <br><b>{mm}</b> to miesiące (01 do 12). <br><b>{rr}, {rrrr}</b> lub <b>{r}</b> dla roku ponad (2 cyfry, 4 cyfry lub 1 cyfra) <br>
-GenericMaskCodes2=<b>Cccc} {kod</b> klienta na n znaków <br> <b>{Cccc000}</b>po kodzie klienta na n znaków występuje licznik dedykowany klientowi. Licznik poświęcony klientowi jest resetowany w tym samym czasie, co licznik globalny. <br> <b>{Tttt}</b> kod strony trzeciej na n znaków (patrz słownik stron trzecich). <br>
+GenericMaskCodes=Można wpisać dowolną maskę numeracji. W tej masce, może stosować następujące tagi: <br> <b>{000000}</b> odpowiada liczbie, która jest zwiększona w każdym% s. Wprowadzić dowolną liczbę zer jako żądaną długość licznika. Licznik zostaną zakończone zerami z lewej, aby mieć jak najwięcej zer jak maski. <br> <b>{000000 + 000}</b> sama jak poprzednia, ale przesunięciem odpowiadającym numerem, na prawo od znaku + odnosi się począwszy od pierwszego% s. <br> <b>{000000} @ x,</b> ale sama jak poprzednia licznik jest wyzerowany, gdy miesiąc osiągnięciu x (x od 1 do 12 lub ​​0 do korzystania pierwszych miesiącach roku podatkowego określone w konfiguracji, lub 99 do wyzerowany co miesiąc ). Jeśli opcja ta jest używana, a x jest 2 lub więcej, wymagana jest również to ciąg {rr} {mm} lub {rrrr} {mm}. <br> <b>{Dd}</b> dni (01 do 31). <br> <b>{Mm}</b> miesięcy (01 do 12). <br> <b>{Rr}, {rrrr}</b> lub <b>{r}</b> roku ponad 2, 4 lub 1 liczb. <br>
+GenericMaskCodes2=<b>Cccc} {kod</b> klienta na n znaków <br> <b>{Cccc000}</b>po kodzie klienta na n znaków występuje licznik dedykowany klientowi. Licznik poświęcony klientowi jest resetowany w tym samym czasie, co licznik globalny. <br> <b>{Tttt}</b> kod kontrahenta na n znaków (patrz słownik stron trzecich). <br>
 GenericMaskCodes3=Wszystkie inne znaki w masce pozostaną nienaruszone. <br> Spacje są niedozwolone. <br>
 GenericMaskCodes4a=<u>Przykład na 99-cie %s strony trzeciej TheCompany utworzony 2007-01-31:</u> <br>
-GenericMaskCodes4b=<u>Przykład strony trzeciej utworzony w dniu 2007-03-01:</u> <br>
+GenericMaskCodes4b=<u>Przykład kontrahenta utworzonego w dniu 2007-03-01:</u> <br>
 GenericMaskCodes4c=<u>Przykład produktu utworzony 2007-03-01:</u><br>
 GenericMaskCodes5=<b>ABC{yy}{mm}-{000000}</b> wygeneruje <b>ABC0701-000099</b><br><b>{0000+100@1}-ZZZ/{dd}/XXX</b> wygeneruje <b>0199-ZZZ/31/XXX</b>
-GenericNumRefModelDesc=Zwraca edytowalny numer zgodnie z definicją maska.
+GenericNumRefModelDesc=Zwraca numer wysyłki zgodnie z zdefiniowaną maską
 ServerAvailableOnIPOrPort=Serwer dostępny jest pod <b>adresem %s</b> na <b>porcie %s</b>
 ServerNotAvailableOnIPOrPort=Serwer nie jest dostępna pod <b>adresem %s</b> na <b>porcie %s</b>
 DoTestServerAvailability=Test łączności z serwerem
@@ -329,7 +329,7 @@ UMaskExplanation=Ten parametr pozwala określić uprawnienia ustawione domyślni
 SeeWikiForAllTeam=Zapraszamy na stronę wiki dla zapoznania się z pełną listą wszystkich uczestników i ich organizacji
 UseACacheDelay= Opóźnienie dla buforowania odpowiedzi eksportu w sekundach (0 lub puste pole oznacza brak buforowania)
 DisableLinkToHelpCenter=Ukryj link <b>"Potrzebujesz pomocy lub wsparcia"</b> na stronie logowania
-DisableLinkToHelp=Ukryj link do pomocy online "<b>%s</b>"
+DisableLinkToHelp=Ukryj link <b>" %s Pomoc online"</b> w lewym menu
 AddCRIfTooLong=Brak automatycznego zawijania. Jeśli linia znajduje się poza dokumentem, należy dodać znak powrotu w polu tekstowym.
 ModuleDisabled=Moduł wyłączony
 ModuleDisabledSoNoEvent=Moduł wyłączony lub zdarzenie nie zostało utworzone
@@ -338,7 +338,7 @@ MinLength=Minimalna długość
 LanguageFilesCachedIntoShmopSharedMemory=Pliki. Lang załadowane do pamięci współdzielonej
 ExamplesWithCurrentSetup=Przykłady z obecnie działającą konfiguracją
 ListOfDirectories=Lista katalogów szablonów OpenDocument
-ListOfDirectoriesForModelGenODT=Lista katalogów zawierających pliki szablonów w formacie OpenDocument.<br><br>Wstaw tutaj pełną ścieżkę dostępu do katalogów.<br>Każdy folder dodaj w nowej linii.<br>W celu dodania katalogu modułu GET, dodaj<b>DOL_DATA_ROOT/ecm/twojanazwakatalogu</b>.<br><br>Pliki w tych katalogach muszą mieć rozszerzenie <b>.odt</b> lub <b>.ods</b>.
+ListOfDirectoriesForModelGenODT=List of directories containing templates files with OpenDocument format.<br><br>Put here full path of directories.<br>Add a carriage return between eah directory.<br>To add a directory of the GED module, add here <b>DOL_DATA_ROOT/ecm/yourdirectoryname</b>.<br><br>Files in those directories must end with <b>.odt</b> or <b>.ods</b>.
 NumberOfModelFilesFound=Liczba plików szablonów ODT/ODS znalezionych we wskazanych katalogach
 ExampleOfDirectoriesForModelGen=Przykłady składni: <br> c: \\ mydir <br> / Home / mydir <br> DOL_DATA_ROOT / ECM / ecmdir
 FollowingSubstitutionKeysCanBeUsed=<br> Aby dowiedzieć się jak stworzyć szablony dokumentów odt, przed zapisaniem ich w katalogach, zapoznaj się z dokumentacją wiki:
@@ -352,7 +352,7 @@ ThemeDir=Katalog Skórek
 ConnectionTimeout=Przekroczony czas połączenia
 ResponseTimeout=Przekroczony czas odpowiedzi
 SmsTestMessage=Wiadomość testowa z PHONEFROM__ __ do __ PHONETO__
-ModuleMustBeEnabledFirst=Moduł <b>%s</b> musi być najpierw włączony, aby użyć tych funkcji.
+ModuleMustBeEnabledFirst=<b>%s</b> moduł musi być włączony przed użyciem tej funkcji.
 SecurityToken=Klucz do bezpiecznego URL
 NoSmsEngine=Brak menedżera SMSów nadawczych. Menedżer SMSów nadawczych nie jest instalowany z domyślną dystrybucją (dystrybucje zależne są od dostawcy zewnętrznego). Menedżera można znaleźć pod adresem http://www.dolistore.com
 PDF=PDF
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Ukryj wszystkie informacje dotyczące podatku VAT w w
 HideDescOnPDF=Ukryj opis produktów w wygenerowanych plikach PDF
 HideRefOnPDF=Ukryj numer referencyjny produktów w generowanych plikach PDF
 HideDetailsOnPDF=Ukryj szczegóły linii produktów w generowanych plikach PDF
-PlaceCustomerAddressToIsoLocation=Użyj francuski pozycji standardowej (La postea dla pozycji adresu klienta
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Biblioteka
 UrlGenerationParameters=Parametry do zabezpiecznie adresu URL
 SecurityTokenIsUnique=Użyj unikalnego klucza zabezpieczeń dla każdego adresu
@@ -391,14 +391,14 @@ ExtrafieldRadio=Przełącznik
 ExtrafieldCheckBoxFromList= Pole z tabeli
 ExtrafieldLink=Link do obiektu
 ExtrafieldParamHelpselect=Lista parametrów musi być zgodna z wartością klucza <br><br> Na przykład: <br> 1, wartość1 <br> 2, wartość2 <br> 3, wartość3 <br> ... <br><br> W celu uzyskania listy zależnej: <br> 1, wartość1 | parent_list_code: parent_key <br> 2, wartość2 | parent_list_code: parent_key
-ExtrafieldParamHelpcheckbox=Lista parametrów musi wyglądać nastepująco: klucz,wartość<br><br> przykładowo: <br>1,wartość1<br>2,wartość2<br>3,wartość3<br>...
-ExtrafieldParamHelpradio=Lista parametrów musi wyglądać nastepująco: klucz,wartość<br><br> przykładowo: <br>1,wartość1<br>2,wartość2<br>3,wartość3<br>...
-ExtrafieldParamHelpsellist=Lista parametrów pochodzi z tabeli<br>Składnia : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>Filtr może być prostym testem (przykładowo active=1) w celu wyświetlenie tylko aktywnych wartości<br>Możesz użyć w filtrze również $ID$, który jest obecnym id dla obiektu<br>To wykonania SELECT w filtrze użyj $SEL$<br>Jeżeli chcesz filtrować extrafields użyj składni extra.fieldcode=... (gdzie kod pola jest kodem extrafield)<br><br>W celu uzyskania listy zależnej od innej listy:<br>c_typent:libelle:id:parent_list_code|parent_column:filter
-ExtrafieldParamHelpchkbxlst=Lista parametrów pochodzi z tabeli<br>Składnia : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>Filtr może być prostym testem (przykładowo active=1) w celu wyświetlenie tylko aktywnych wartości<br>Możesz użyć w filtrze również $ID$, który jest obecnym id dla obiektu<br>To wykonania SELECT w filtrze użyj $SEL$<br>Jeżeli chcesz filtrować extrafields użyj składni extra.fieldcode=... (gdzie kod pola jest kodem extrafield)<br><br>W celu uzyskania listy zależnej od innej listy:<br>c_typent:libelle:id:parent_list_code|parent_column:filter
+ExtrafieldParamHelpcheckbox=Parametry lista musi tak być, wartość klucza <br><br> Na przykład: <br> 1, wartosc1 <br> 2, wartość2 <br> 3, wartość3 <br> ...
+ExtrafieldParamHelpradio=Parametry lista musi tak być, wartość klucza <br><br> Na przykład: <br> 1, wartosc1 <br> 2, wartość2 <br> 3, wartość3 <br> ...
+ExtrafieldParamHelpsellist=Lista parametrów przychodzi z tabeli <br> Składnia: nazwa_tabeli: label_field: id_field :: Filtr <br> Przykład: c_typent: libelle: id :: Filtr <br><br> Filtr może być prosty test (np aktywny = 1), aby wyświetlić tylko aktywne wartości <br> jeśli chcesz filtrować extrafields używać syntaxt extra.fieldcode = ... (gdzie kod pole jest kod extrafield) <br><br> W celu uzyskania listy zależności od drugiego: <br> c_typent: libelle: id: parent_list_code | parent_column: filtr
+ExtrafieldParamHelpchkbxlst=Lista parametrów przychodzi z tabeli <br> Składnia: nazwa_tabeli: label_field: id_field :: Filtr <br> Przykład: c_typent: libelle: id :: Filtr <br><br> Filtr może być prosty test (np aktywny = 1), aby wyświetlić tylko aktywne wartości <br> jeśli chcesz filtrować extrafields używać syntaxt extra.fieldcode = ... (gdzie kod pole jest kod extrafield) <br><br> W celu uzyskania listy zależności od drugiego: <br> c_typent: libelle: id: parent_list_code | parent_column: filtr
 ExtrafieldParamHelplink=Parametry muszą być ObjectName: Classpath <br> Składnia: ObjectName: Classpath <br> Przykład: Societe: Societe / klasa / societe.class.php
 LibraryToBuildPDF=Biblioteka wykorzystana do generowania plików PDF
 WarningUsingFPDF=Uwaga: Twój <b>conf.php</b> zawiera dyrektywę <b>dolibarr_pdf_force_fpdf = 1.</b> Oznacza to, że korzystasz z biblioteki FPDF do generowania plików PDF. Ta biblioteka jest nieaktualna i nie obsługuje wielu funkcji (Unicode, przejrzystości obrazu, cyrylicy, czcionek arabskich oraz azjatyckich ...), więc mogą wystąpić błędy podczas generowania pliku PDF. <br> Aby rozwiązać ten problem i mieć pełne wsparcie przy generowaniu plików PDF, należy pobrać <a href="http://www.tcpdf.org/" target="_blank">bibliotekę TCPDF</a> , następnie linię umieścić wewnątrz komentarza lub usunąć <b>$ dolibarr_pdf_force_fpdf = 1,</b> i dodać zamiast <b>$ dolibarr_lib_TCPDF_PATH = "path_to_TCPDF_dir"</b>
-LocalTaxDesc=Niektóre kraje dodają 2 lub 3 stawki podatkowe na każdą pozycję faktury. W takiej sytuacji , wybierz drugą i trzecią stawkę podatku i ich wielkość. Możliwe typy to:<br>1: Lokalny podatek dodany do produktów i usług bez VAT (podatek jest obliczany od kwoty bez doliczonego VAT)<br>2: Lokalny podatek jest doliczany do produktów i usług i zawiera VAT (podatek jest obliczany od kwoty i dodawany VAT)<br>3: Lokalny podatek jest doliczany do produktów bez VAT (lokalny podatek jest obliczany od kwoty bez VAT)<br>4: Lokalny podatek na produktach zawiera VAT (lokalny podatek jest obliczany od kwoty i doliczany jest VAT)<br>5: Lokalny podatek jest doliczany do usług bez VAT (lokalny podatek jest obliczany od kwoty bez VAT)<br>6: Lokalny podatek na usługach zawiera VAT (lokalny podatek jest obliczany od kwoty i doliczany jest VAT)
+LocalTaxDesc=Some countries apply 2 or 3 taxes on each invoice line. If this is the case, choose type for second and third tax and its rate. Possible type are:<br>1 : local tax apply on products and services without vat (localtax is calculated on amount without tax)<br>2 : local tax apply on products and services including vat (localtax is calculated on amount + main tax)<br>3 : local tax apply on products without vat (localtax is calculated on amount without tax)<br>4 : local tax apply on products including vat (localtax is calculated on amount + main vat)<br>5 : local tax apply on services without vat (localtax is calculated on amount without tax)<br>6 : local tax apply on services including vat (localtax is calculated on amount + tax)
 SMS=SMS
 LinkToTestClickToDial=Wprowadź numer telefonu, aby zobaczyć link do przetestowania url ClickToDial dla <strong>użytkownika% s</strong>
 RefreshPhoneLink=Odśwież link
@@ -407,15 +407,16 @@ KeepEmptyToUseDefault=Zostaw puste by używać domyślnych wartości
 DefaultLink=Domyślny link
 ValueOverwrittenByUserSetup=Uwaga, ta wartość może być zastąpiona przez specyficzną konfiguracją użytkownika (każdy użytkownik może ustawić własny clicktodial url)
 ExternalModule=Moduł zewnętrzny - Zainstalowane w katalogu% s
-BarcodeInitForThirdparties=Msza kodów kreskowych o rozruchu thirdparties
-BarcodeInitForProductsOrServices=Msza startowych kodów kreskowych lub zresetować na produkty lub usługi
-CurrentlyNWithoutBarCode=Obecnie masz <strong>rekordy% s% s%</strong> s bez kodu kreskowego zdefiniowane.
-InitEmptyBarCode=Init wartość przyszłorocznego% s puste rekordy
-EraseAllCurrentBarCode=Usuń wszystkie aktualne wartości kodów kreskowych
+BarcodeInitForThirdparties=Masowa inicjalizacja kodów kreskowych dla kontrahentów
+BarcodeInitForProductsOrServices=Masowe generowanie kodów lub reset kodów kreskowych dla usług i produktów
+CurrentlyNWithoutBarCode=Obecnie masz <strong>%s</strong> na <strong>%s</strong> wpisów bez zdefiniowanego kodu kreskowego.
+InitEmptyBarCode=Generuj wartość dla kolejnych %s pustych wpisów
+EraseAllCurrentBarCode=Usuń wszystkie aktualne kody kreskowe
 ConfirmEraseAllCurrentBarCode=Czy na pewno chcesz usunąć wszystkie bieżące wartości kodów kreskowych?
 AllBarcodeReset=Wszystkie wartości zostały usunięte z kodem kreskowym
 NoBarcodeNumberingTemplateDefined=Nie szablonu numeracji kodów kreskowych włączona w konfiguracji modułu kodów kreskowych.
 NoRecordWithoutBarcodeDefined=Brak zapisu bez wartości kodów kreskowych zdefiniowane.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Użytkownicy i grupy
@@ -471,7 +472,7 @@ Module80Desc=Zarządzanie wysyłkami oraz kolejnością zamówień
 Module85Name=Banki oraz gotówka
 Module85Desc=Zarządzanie kontami bankowymi lub gotówkowymi
 Module100Name=Strona zewnętrzna
-Module100Desc=Moduł ten umieszcza zewnętrzną stronę internetową w menu Dolibarr i wyświetla ją w ramce Dolibarr 
+Module100Desc=Moduł ten umieszcza zewnętrzną stronę internetową w menu Dolibarr i wyświetla ją w ramce Dolibarr
 Module105Name=Mailman i SPIP
 Module105Desc=Interfejs Mailman lub SPIP dla członka modułu
 Module200Name=LDAP
@@ -492,17 +493,17 @@ Module400Name=Projekty / Możliwości / Wskazówki
 Module400Desc=Zarządzanie projektami, możliwości lub wskazówki. Następnie możesz przypisać dowolny element (faktury, zamówienia, propozycje, interwencje, ...) do projektu i uzyskać widok poprzeczny z widoku projektu.
 Module410Name=Webcalendar
 Module410Desc=Integracja Webcalendar
-Module500Name=Koszty specjalne
+Module500Name=Special expenses
 Module500Desc=Zarządzanie kosztami specjalnymi (podatki, opłaty ZUS, dywidendy)
 Module510Name=Wynagrodzenia
-Module510Desc=Zarządzanie wynagrodzeniami pracowników i płatnościami
+Module510Desc=Zarządzanie wynagrodzeniami i płatnościami pracowników
 Module520Name=Pożyczka
-Module520Desc=Zarządzanie kredytami
+Module520Desc=Zarządzanie kredytów
 Module600Name=Powiadomienia
-Module600Desc=Wyślij informację poprzez e-mail odnośnie niektórych zdarzeń biznesowych związanych z Dolibarr do stron trzecich (ustawienia zdefiniowane dla każdej strony trzeciej)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Darowizny
 Module700Desc=Zarządzanie darowiznami
-Module770Name=Zestawienia wydatków
+Module770Name=Expense reports
 Module770Desc=Zarządzanie i roszczenia raporty wydatków (transport, posiłek, ...)
 Module1120Name=Dostawca propozycja handlowa
 Module1120Desc=Dostawca komercyjnych i wniosek propozycja ceny
@@ -524,10 +525,10 @@ Module2400Name=Agenda
 Module2400Desc=Zarządzanie zdarzeniami / zadaniami oraz agendą
 Module2500Name=Zarządzanie zawartością elektroniczną (ECM)
 Module2500Desc=Zapisz i udostępnij dokumenty
-Module2600Name=Usługi API/Web (serwer SOAP)
-Module2600Desc=Włącz serwer SOAP Dolibarr dostarczający usługi API
-Module2610Name=Usługi API/Web (serwer REST)
-Module2610Desc=Włącz serwer REST Dolibarr dostarczający usługi  API
+Module2600Name=API services (Web services SOAP)
+Module2600Desc=Enable the Dolibarr SOAP server providing API services
+Module2610Name=API services (Web services REST)
+Module2610Desc=Enable the Dolibarr REST server providing API services
 Module2660Name=Połączeń WebServices (klient SOAP)
 Module2660Desc=Włącz Dolibarr serwisów internetowych klienta (może być używany do pchania danych / wnioski o dopuszczenie do zewnętrznych serwerów. Zamówień Dostawca obsługiwane tylko na chwilę)
 Module2700Name=Gravatar
@@ -536,7 +537,7 @@ Module2800Desc=FTP Client
 Module2900Name=GeoIPMaxmind
 Module2900Desc=Możliwości konwersji GeoIP Maxmind
 Module3100Name=Skype
-Module3100Desc=Dodaj przycisk Skype do karty użytkownika/kontrahenta/kontaktu/członka
+Module3100Desc=Dodaj przycisk Skype do karty zwolenników / osób trzecich / kontaktów
 Module4000Name=HR
 Module4000Desc=Zarządzanie zasobami ludzkimi
 Module5000Name=Multi-company
@@ -546,7 +547,7 @@ Module6000Desc=Zarządzania przepływem pracy
 Module20000Name=Zarządzanie "Pozostaw Żądanie"
 Module20000Desc=Zadeklaruj oraz nadzoruj wnioski pracowników dotyczące wyjść z pracy
 Module39000Name=Partia produktów
-Module39000Desc=Partia lub numer seryjny, zarządzanie według daty ważności lub daty sprzedaży poroduktów
+Module39000Desc=Partia lub numer seryjny, zarządzanie według daty ważności lub daty sprzedaży produktów
 Module50000Name=Paybox
 Module50000Desc=Moduł oferujący płatność online za pomocą karty kredytowej z Paybox
 Module50100Name=Punkt sprzedaży
@@ -557,8 +558,8 @@ Module50400Name=Rachunkowość (zaawansowane)
 Module50400Desc=Rachunkowości zarządczej (podwójne strony)
 Module54000Name=PrintIPP
 Module54000Desc=Druk bezpośredni (bez otwierania dokumentów) za pomocą interfejsu Puchary IPP (drukarki muszą być widoczne z serwera, a CUPS musi być installé na serwerze).
-Module55000Name=Sonda, Ankieta lub Głosowanie
-Module55000Desc=Moduł do internetowych ankiet, badań lub głosów (jak Doodle, czopy Rdvz, ...)
+Module55000Name=Poll, Survey or Vote
+Module55000Desc=Module to make online polls, surveys or votes (like Doodle, Studs, Rdvz, ...)
 Module59000Name=Marże
 Module59000Desc=Moduł do zarządzania marżami
 Module60000Name=Prowizje
@@ -582,9 +583,9 @@ Permission32=Tworzenie / modyfikacja produktów
 Permission34=Usuwanie produktów
 Permission36=Podejrzyj / zarządzaj ukrytymi produktami
 Permission38=Eksport produktów
-Permission41=Przeglądaj projekty i zadania (udostępnione projekty i projekty dla których jestem osobą kontaktową). Można również wprowadzić czas zużyty na przypisane zadania (ewidencja czasu)
+Permission41=Read projects and tasks (shared project and projects i'm contact for). Can also enter time consumed on assigned tasks (timesheet)
 Permission42=Tworzenie / modyfikacja projektów (projekty współdzielone oraz projekty, w których biorę udział)
-Permission44=Usuń projekty (projekty współdzielone oraz projekty, dla których jestem osoba kontaktową)
+Permission44=Usuwanie projektów (projekty współdzielone oraz projekty, w których biorę udział)
 Permission61=Czytaj interwencje
 Permission62=Tworzenie / modyfikacja interwencji
 Permission64=Usuwanie interwencji
@@ -603,10 +604,10 @@ Permission86=Wyślij zamówienia klientów
 Permission87=Zamknij zamówienia klientów
 Permission88=Anuluj zamówienia klientów
 Permission89=Usuń zamówienia klientów
-Permission91=Przeglądaj opłaty ZUS, podatki i VAT
-Permission92=Stwórz/modyfikuj opłaty ZUS lub podatki bieżące i VAT
-Permission93=Usuń opłaty ZUS lub podatki bieżące i VAT
-Permission94=Eksportuj opłaty ZUS lub podatki podatki bieżące
+Permission91=Read social or fiscal taxes and vat
+Permission92=Create/modify social or fiscal taxes and vat
+Permission93=Delete social or fiscal taxes and vat
+Permission94=Export social or fiscal taxes
 Permission95=Przeczytaj raporty
 Permission101=Czytaj ustawienia
 Permission102=Utwórz / modyfikuj ustawienia
@@ -620,13 +621,13 @@ Permission114=Skonsoliduj transakcje
 Permission115=Eksport transakcji oraz oświadczeń obrachunkowych
 Permission116=Przelewy pomiędzy rachunkami
 Permission117=Zarządzanie wysyłką czeków
-Permission121=Czytaj strony trzecie związane z użytkownikiem
+Permission121=Przeglądaj kontrahentów związanych z użytkownikiem
 Permission122=Tworzenie / modyfikacja stron trzecich związanych z użytkownikiem
-Permission125=Usuń strony trzecie związane z użytkownikiem
+Permission125=Usuń kontrahentów związanych z użytkownikiem z użytkownikiem
 Permission126=Eksport stron trzecich
-Permission141=Przeglądaj wszystkie projekty i zadania (także prywatne projekty, dla których nie jestem osobą kontaktową)
-Permission142=Utwórz/modyfikuj wszystkie projektu i zadania (także prywatne projekty, dla których nie jestem osobą kontaktową)
-Permission144=Usuń wszystkie projekty i zadania (także prywatne projekty, dla których nie jestem osobą kontaktową)
+Permission141=Read all projects and tasks (also private projects i am not contact for)
+Permission142=Create/modify all projects and tasks (also private projects i am not contact for)
+Permission144=Delete all projects and tasks (also private projects i am not contact for)
 Permission146=Czytaj dostawców
 Permission147=Czytaj statystyki
 Permission151=Czytaj zlecenia stałe
@@ -638,7 +639,7 @@ Permission162=Tworzenie / modyfikacja umowy / subskrypcji
 Permission163=Aktywacja usługi / subskrypcji umowy
 Permission164=Wyłączanie usługi / subskrypcji umowy
 Permission165=Usuń umowy / subskrypcje
-Permission171=Przeglądaj podróże i ich koszty (twoje i twoich podwładnych)
+Permission171=Read trips and expenses (yours and your subordinates)
 Permission172=Tworzenie / modyfikacja wyjazdów i kosztów
 Permission173=Usuń wyjazdy i wydatki
 Permission174=Przeczytaj wszystkie wycieczki i koszty
@@ -716,15 +717,15 @@ Permission401=Odczytaj zniżki
 Permission402=Tworzenie / modyfikacja zniżek
 Permission403=Walidacja zniżek
 Permission404=Usuwanie zniżek
-Permission510=Przeglądaj wynagrodzenia
-Permission512=Tworzenie/modyfikacja wynagrodzeń
+Permission510=Czytaj Wynagrodzenia
+Permission512=Tworzenie / modyfikacja pensje
 Permission514=Usuń pensje
-Permission517=Eksportuj wynagrodzenia
-Permission520=Przeglądaj kredyty
-Permission522=Twórz/Modyfikuj kredyt
+Permission517=Wynagrodzenia eksport
+Permission520=Czytaj Kredyty
+Permission522=Tworzenie / modyfikacja kredytów
 Permission524=Usuń kredyty
 Permission525=Kalkulator kredytowy Dostęp
-Permission527=Eksportuj kredyty
+Permission527=Kredyty eksportowe
 Permission531=Cztaj usługi
 Permission532=Tworzenie / modyfikacja usług
 Permission534=Usuwanie usług
@@ -733,7 +734,7 @@ Permission538=Eksport usług
 Permission701=Zobacz darowizny
 Permission702=Tworzenie / modyfikacja darowizn
 Permission703=Usuń darowizny
-Permission771=Przeglądaj raporty kosztów (twoje i twoich podwładnych)
+Permission771=Read expense reports (yours and your subordinates)
 Permission772=Tworzenie / modyfikacja raportów wydatków
 Permission773=Usuń raporty wydatków
 Permission774=Przeczytaj wszystkie raporty wydatków (nawet dla użytkowników nie podwładni)
@@ -770,12 +771,12 @@ Permission1237=Eksport zamówień dostawcy oraz ich szczegółów
 Permission1251=Uruchom masowy import danych zewnętrznych do bazy danych (wgrywanie danych)
 Permission1321=Eksport faktur klienta, atrybutów oraz płatności
 Permission1421=Eksport zamówień oraz atrybutów klienta
-Permission20001=Przejrzyj wnioski urlopowe (swoje i swoich podwładnych)
-Permission20002=Stwórz/modyfikuj swój wniosek urlopowy
-Permission20003=Usuń wniosek urlopowy
-Permission20004=Przejrzyj wszystkie wnioski urlopowe (również nie twoich podwładnych)
-Permission20005=Stwórz/modyfikuj wniosek urlopowy dla wszystkich
-Permission20006=Wnioski urlopowe Admin (konfiguracja i aktualizacja bilansowe)
+Permission20001=Read leave requests (yours and your subordinates)
+Permission20002=Create/modify your leave requests
+Permission20003=Delete leave requests
+Permission20004=Read all leave requests (even user not subordinates)
+Permission20005=Create/modify leave requests for everybody
+Permission20006=Admin leave requests (setup and update balance)
 Permission23001=Czytaj Zaplanowane zadania
 Permission23002=Tworzenie / aktualizacja Zaplanowanych zadań
 Permission23003=Usuwanie Zaplanowanego zadania
@@ -800,22 +801,22 @@ Permission55001=Czytaj ankiet
 Permission55002=Tworzenie / modyfikacja ankiet
 Permission59001=Czytaj marż handlowych
 Permission59002=Zdefiniuj marż handlowych
-Permission59003=Przeglądaj marże dla każdego użytkownika
+Permission59003=Przeczytaj co margines użytkownika
 DictionaryCompanyType=Typy kontrahentów
-DictionaryCompanyJuridicalType=Prawne, rodzaje thirdparties
-DictionaryProspectLevel=Perspektywa potencjalny poziom
-DictionaryCanton=Województwo
+DictionaryCompanyJuridicalType=Prawne rodzaje kontrahentów
+DictionaryProspectLevel=Potencjalny poziom możliwości
+DictionaryCanton=Stany/Kantony
 DictionaryRegion=Regiony
 DictionaryCountry=Kraje
 DictionaryCurrency=Waluty
-DictionaryCivility=Tytuł Grzeczność
-DictionaryActions=Typ zdarzeń w agendzie
-DictionarySocialContributions=Typy opłat ZUS lub podatków bieżących
-DictionaryVAT=VAT ceny lub podatku od sprzedaży ceny
+DictionaryCivility=Tytuł grzecznościowy
+DictionaryActions=Rodzaj wydarzenia porządku obrad
+DictionarySocialContributions=Typy opłat ZUS i podatków
+DictionaryVAT=Stawki VAT lub stawki podatku od sprzedaży
 DictionaryRevenueStamp=Ilość znaczków opłaty skarbowej
 DictionaryPaymentConditions=Warunki płatności
 DictionaryPaymentModes=Tryby płatności
-DictionaryTypeContact=Typy Kontaktu/Adresu
+DictionaryTypeContact=Typy kontaktu/adresu
 DictionaryEcotaxe=Podatku ekologicznego (WEEE)
 DictionaryPaperFormat=Formaty papieru
 DictionaryFees=Rodzaj opłaty
@@ -827,19 +828,19 @@ DictionarySource=Pochodzenie wniosków / zleceń
 DictionaryAccountancyplan=Plan kont
 DictionaryAccountancysystem=Modele dla planu kont
 DictionaryEMailTemplates=Szablony wiadomości e-mail
-DictionaryUnits=Jednostki
-DictionaryProspectStatus=Stan Poszukiwania
-DictionaryHolidayTypes=Typy urlopów
-DictionaryOpportunityStatus=Stan szansa dla projektu / ołowiu
+DictionaryUnits=Units
+DictionaryProspectStatus=Status możliwości
+DictionaryHolidayTypes=Type of leaves
+DictionaryOpportunityStatus=Opportunity status for project/lead
 SetupSaved=Konfiguracja zapisana
 BackToModuleList=Powrót do listy modułów
 BackToDictionaryList=Powrót do listy słowników
 VATReceivedOnly=Specjalna stawka nie obciążona
 VATManagement=Zarządzanie VAT
-VATIsUsedDesc=Domyślna stawka VAT podczas tworzenia faktur, zamówień itd. jest ustawiona zgodnie z aktywną zasadą.<br> Jeżeli sprzedający nie jest płatnikiem VAT, wówczas VAT jest równy 0.<br> Jeżeli kraj sprzedaży jest taki sam jak kraj zakupu, wówczas stawka VAT jest równa domyślnie stawce dla kraju sprzedaży. <br>Jeżeli sprzedawca i kupujący mieszkają na terenie UE i dobra są transportowane samochodem, statkiem, samolotem, domyślnie stawka VAT jest równa 0 (VAT powinien być zapłacony przez kupującego w kraju, gdzie zarejestrowana jest jego firma, a nie przez sprzedającego).<br>Jeżeli sprzedający i kupujący mieszkają na terenie UE i kupujący nie jest firmą, wówczas VAT jest równy stawce VAT z kraju sprzedającego.<br>Jeżeli sprzedający i kupujący mieszkają w UE i obaj są firmami, wówczas VAT jest równy 0.<br>Dla innych przypadków VAT domyślnie jest równy 0.
+VATIsUsedDesc=Stawka VAT domyślnie podczas tworzenia perspektywy, faktur, zamówień itp wykonaj standardową zasadę czynnego: <br> Jeśli sprzedający nie poddaje opodatkowaniu podatkiem VAT, to podatek VAT domyślnie = 0. Koniec rządów. <br> Jeśli (sprzedaż kraj = zakupem kraj), a następnie domyślnie = VAT VAT produktu w kraju sprzedaży. Koniec rządów. <br> Jeżeli sprzedający i kupujący we Wspólnocie Europejskiej i towarów są produkty transportu (samochód, statek, samolot), domyślny VAT = 0 (VAT powinny być wypłacane przez kupującego na customoffice swojego kraju, a nie sprzedawcy). Koniec rządów. <br> Jeżeli sprzedający i kupujący we Wspólnocie Europejskiej, a kupujący nie jest spółką, a następnie domyślnie = VAT VAT sprzedawanych produktów. Koniec rządów. <br> Jeżeli sprzedający i kupujący we Wspólnocie Europejskiej i kupującego jest firma, to VAT domyślnie = 0. Koniec rządów. <br> Else proponowany domyślny VAT = 0. Koniec rządów.
 VATIsNotUsedDesc=Domyślnie proponowany VAT wynosi 0. Może być wykorzystany w przypadku takich stowarzyszeń, osób fizycznych lub małych firm.
 VATIsUsedExampleFR=We Francji, oznacza to, że firmy i organizacje wykorzystujące rzeczywisty system fiskalny (uproszczony rzeczywisty lub normalny rzeczywisty). System, w którym VAT jest deklarowany.
-VATIsNotUsedExampleFR=We Francji, oznacza to stowarzyszenia, które są zadeklarowane bez VAT lub przedsiębiorstwa, organizacje lub wolnych zawodów, które wybrały system podatkowy mikroprzedsiębiorstwo w serii (VAT) oraz zapłacone franczyzy VAT bez deklaracji VAT. Wybór ten będzie wyświetlany odniesienie "Nie dotyczy podatku VAT - art-293B CGI" na fakturach.
+VATIsNotUsedExampleFR=We Francji, oznacza to stowarzyszenia, które nie są zgłoszone VAT lub firm, organizacji i wolnych zawodów, które wybrały mikro przedsiębiorstw systemu fiskalnego (VAT w franczyzy) i wypłaciła franszyzowej VAT bez deklaracji VAT. Ten wybór będzie wyświetlany odniesienie "Nie dotyczy podatku VAT - art-293B z CGI" na fakturach.
 ##### Local Taxes #####
 LTRate=Stawka
 LocalTax1IsNotUsed=Nie należy używać drugiego podatku
@@ -855,15 +856,15 @@ LocalTax2Management=Trzeci rodzaj podatku
 LocalTax2IsUsedExample=
 LocalTax2IsNotUsedExample=
 LocalTax1ManagementES= RE Management
-LocalTax1IsUsedDescES= Stopa RE domyślnie podczas tworzenia perspektyw, faktur, zamówień itp wykonaj standardową regułę aktywny: <br> Jeśli te nabywca nie podlega RE, RE domyślnie = 0. Koniec rządów. <br> Jeżeli nabywca poddaje się następnie RE RE domyślnie. Koniec rządów. <br>
+LocalTax1IsUsedDescES= RE stawki domyślnie podczas tworzenia perspektyw, faktury, zamówienia itp. postępuj zgodnie z aktywnych zasadę: <br> Jeśli te kupujący nie podlega RE, RE domyślnie = 0. Koniec panowania. <br> Jeśli kupujący jest poddawany RE następnie RE domyślnie. Koniec panowania. <br>
 LocalTax1IsNotUsedDescES= Domyślnie proponowany RE wynosi 0. Koniec zasady.
-LocalTax1IsUsedExampleES= W Hiszpanii są specjaliści z zastrzeżeniem pewnych określonych sekcji hiszpańskiej IAE.
-LocalTax1IsNotUsedExampleES= W Hiszpanii są one profesjonalne i społeczeństwa oraz z zastrzeżeniem pewnych odcinkach hiszpańskiej IAE.
+LocalTax1IsUsedExampleES= W Hiszpanii są specjaliści z zastrzeżeniem niektórych szczególnych grup hiszpański IAE.
+LocalTax1IsNotUsedExampleES= W Hiszpanii są zawodowej i społecznej oraz z zastrzeżeniem pewnych odcinkach hiszpański IAE.
 LocalTax2ManagementES= IRPF Management
-LocalTax2IsUsedDescES= Stopa RE domyślnie podczas tworzenia perspektyw, faktur, zamówień itp wykonaj standardową regułę aktywny: <br> Jeśli sprzedawca nie jest poddawana IRPF, a następnie IRPF domyślnie = 0. Koniec rządów. <br> Jeśli sprzedawca jest poddawana IRPF wtedy IRPF domyślnie. Koniec rządów. <br>
+LocalTax2IsUsedDescES= RE stawki domyślnie podczas tworzenia perspektyw, faktury, zamówienia itp. postępuj zgodnie z aktywnych zasadę: <br> Jeśli sprzedający nie jest poddawany IRPF, a następnie IRPF domyślnie = 0. Koniec panowania. <br> Jeżeli sprzedający jest poddawany IRPF następnie IRPF domyślnie. Koniec panowania. <br>
 LocalTax2IsNotUsedDescES= Domyślnie proponowany IRPF wynosi 0. Koniec zasady.
-LocalTax2IsUsedExampleES= W Hiszpanii, freelancerów i niezależnych specjalistów, którzy świadczą usługi i firmy, którzy wybrali system podatkowy modułów.
-LocalTax2IsNotUsedExampleES= W Hiszpanii są bussines nieobjętych systemem podatkowym modułów.
+LocalTax2IsUsedExampleES= W Hiszpanii, freelancerów i przedstawicieli wolnych zawodów, którzy świadczą usługi i przedsiębiorstwa, którzy wybrali system podatkowy modułów.
+LocalTax2IsNotUsedExampleES= W Hiszpanii nie są one przedmiotem Bussines modułów systemu podatkowego.
 CalcLocaltax=Raporty odnośnie podatków lokalnych
 CalcLocaltax1=Sprzedaż - Zakupy
 CalcLocaltax1Desc=Lokalne raporty Podatki są obliczane z różnicy między sprzedażą localtaxes i localtaxes zakupów
@@ -871,7 +872,7 @@ CalcLocaltax2=Zakupy
 CalcLocaltax2Desc=Lokalne raporty Podatki są łącznie localtaxes zakupów
 CalcLocaltax3=Sprzedaż
 CalcLocaltax3Desc=Lokalne raporty Podatki są za łączną sprzedaży localtaxes
-LabelUsedByDefault=Etykieta używana domyślnie jeżeli nie można znaleźć tłumaczenia
+LabelUsedByDefault=Wytwórnia używany domyślnie, jeśli nie można znaleźć tłumaczenie dla kodu
 LabelOnDocuments=Etykieta na dokumenty
 NbOfDays=Nb dni
 AtEndOfMonth=Na koniec miesiąca
@@ -933,7 +934,7 @@ MaxSizeList=Maksymalna długość listy
 DefaultMaxSizeList=Domyślna maksymalna długość listy
 DefaultMaxSizeShortList=Domyślna maksymalna długość dla krótkiej listy (przykłado na karcie klienta)
 MessageOfDay=Wiadomość dnia
-MessageLogin=Wiadomość strona logowania 
+MessageLogin=Wiadomość strona logowania
 PermanentLeftSearchForm=Stały formularz wyszukiwania w lewym menu
 DefaultLanguage=Domyślny język do użytku (kod języka)
 EnableMultilangInterface=Włącz wielojęzyczny interfejs
@@ -947,14 +948,14 @@ CompanyZip=Kod pocztowy
 CompanyTown=Miasto
 CompanyCountry=Kraj
 CompanyCurrency=Główna waluta
-CompanyObject=Przedmiotem firmy
+CompanyObject=Object of the company
 Logo=Logo
 DoNotShow=Nie pokazuj
 DoNotSuggestPaymentMode=Nie proponuj
 NoActiveBankAccountDefined=Brak zdefiniowanego aktywnego konta bankowego
 OwnerOfBankAccount=Właściciel konta bankowego %s
 BankModuleNotActive=Moduł Rachunków bankowych jest nie aktywny
-ShowBugTrackLink=Pokaż link "<strong>%s</strong>"
+ShowBugTrackLink=Show link "<strong>%s</strong>"
 ShowWorkBoard=Pokaż "warsztat" na stronie głównej
 Alerts=Alarmy
 Delays=Opóźnienia
@@ -963,23 +964,24 @@ DelaysBeforeWarning=Opóźnienia przed ostrzeżeniem
 DelaysOfToleranceBeforeWarning=Tolerancja opóźnień przed ostrzeżeniem
 DelaysOfToleranceDesc=Ten ekran pozwala na określenie dopuszczalnego opóźnienia przed uruchomieniem alarmu na ekranie z pictogramami %s dla każdego opóźnionego elementu.
 Delays_MAIN_DELAY_ACTIONS_TODO=Tolerancja opóźnienia (w dniach) przed alarmem dotyczącym planowanych działań niezrealizowanych
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Tolerancja opóźnienia (w dniach) przed alarmem dotyczącym planowanych działań nieprzetworzonych
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Tolerancja opóźnienia (w dniach) przed alarmem dotyczącym zamówień dostawców nieprzetworzonych
-Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Opóźnić tolerancji (w dniach) przed wpisu na temat propozycji, aby zamknąć
-Delays_MAIN_DELAY_PROPALS_TO_BILL=Opóźnić tolerancji (w dniach) przed wpisu na temat propozycji nie rozliczone
-Delays_MAIN_DELAY_NOT_ACTIVATED_SERVICES=Dopuszczalne opóźnienie (w dniach) przed alertem dla usług do aktywacji
-Delays_MAIN_DELAY_RUNNING_SERVICES=Dopuszczalne opóźnienie (w dniach) przed alertem dla wygasających usług
-Delays_MAIN_DELAY_SUPPLIER_BILLS_TO_PAY=Dopuszczalne opóźnienie (w dniach) przed alertem dla niezapłacych faktur dostawcy
+Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Opóźnienie tolerancji (w dniach) przed wpisu w sprawie propozycji, aby zamknąć
+Delays_MAIN_DELAY_PROPALS_TO_BILL=Opóźnienie tolerancji (w dniach) przed wpisu na temat propozycji nie rozliczone
+Delays_MAIN_DELAY_NOT_ACTIVATED_SERVICES=Tolerancja opóźnienia (liczba dni) przed wpisu na usługi, aby uaktywnić
+Delays_MAIN_DELAY_RUNNING_SERVICES=Tolerancja opóźnienie (w dniach) upłynął przed wpisu na usługi
+Delays_MAIN_DELAY_SUPPLIER_BILLS_TO_PAY=Tolerancja opóźnienia (liczba dni) przed wpisu na dostawcę niezapłaconych faktur
 Delays_MAIN_DELAY_CUSTOMER_BILLS_UNPAYED=Opóźnienie (w dniach) przed alertem o niezapłaconych fakturach
-Delays_MAIN_DELAY_TRANSACTIONS_TO_CONCILIATE=Dopuszczalne opóźnienie (w dniach) alertu o zbliżającej się rekoncyljacji na koncie bankowym
-Delays_MAIN_DELAY_MEMBERS=Dopuszczalne opóźnienie (w dniach) przed alertem o niezapłaconej składce członkowskiej
-Delays_MAIN_DELAY_CHEQUES_TO_DEPOSIT=Dopuszczalne opóźnienie (w dniach) przed alertem o zrobieniu czeku depozytowego
+Delays_MAIN_DELAY_TRANSACTIONS_TO_CONCILIATE=Tolerancja opóźnienia (liczba dni) przed wpisu w oczekiwaniu banku pojednania
+Delays_MAIN_DELAY_MEMBERS=Tolerancja opóźnienie (w dniach) przed wpisu na opóźnione składki członkowskiej
+Delays_MAIN_DELAY_CHEQUES_TO_DEPOSIT=Tolerancja opóźnienia (liczba dni) przed wpisu do deponowania czeków do
 Delays_MAIN_DELAY_EXPENSEREPORTS=Opóźnienie tolerancji (w dniach) przed wpisu do zestawienia wydatków do zatwierdzenia
-SetupDescription1=Wszystkie parametry dostępne w ustawieniach pozwalają ci na ustawienie Dolibarr przed rozpoczęciem korzystania z niego.
-SetupDescription2=2 najważniejsze kroki do wykonania w ustawieniach, to 2 pierwsze opcje w lewym menu ustawień, czyli Firma/Fundacja i Moduły:
-SetupDescription3=Parametry w menu <a href="%s">Ustawienia -> Firma/Fundacja</a> są bardzo ważne ponieważ wprowadzone informacje używane są do wyświetlania w widokach Dolibarr i do modyfikowania środowiska pracy (dla przykładu funkcjonalności skojarzone z twoim krajem tj.: waluta, stawka podatku)
-SetupDescription4=Parametry w menu <a href="%s">Ustawienia -> Moduły</a> są wymagane ponieważ Dolibarr nie jest stałą platformą ERP/CRM, ale sumą wielu modułów bardziej lub mniej od siebie zależnych. Tylko po aktywowaniu modułów, które Cię interesują, zobaczysz odpowiednie funkcjonalności w menu.
-SetupDescription5=Inne pozycje menu zarządzające opcjonalnymi parametrami.
+SetupDescription1=Wszystkie parametry dostępne w konfiguracji obszaru pozwalają na konfigurację Dolibarr przed rozpoczęciem jej używania.
+SetupDescription2=2 Najważniejsze kroki konfiguracji są 2 pierwszych w lewym menu, oznacza to, firmy / fundacji stronie konfiguracji i instalacji modułów strony:
+SetupDescription3=<b>Firma / fundacji</b> konfiguracji jest wymagane, ponieważ wkład informacje są wykorzystywane na Dolibarr wyświetla Dolibarr i zmiany zachowań (na przykład na funkcje związane z danym kraju).
+SetupDescription4=<b>Moduły</b> konfiguracji jest wymagane, ponieważ Dolibarr nie jest proste ERP / CRM, ale suma kilku modułów, wszystkie mniej lub bardziej niezależne. To dopiero po aktywacji modułów jesteś interesująca, widać cechy pojawiły się w Dolibarr menu.
+SetupDescription5=Inne pozycje menu zarządzają opcjonalnymi parametrami.
 EventsSetup=Konfiguracja dzienników zdarzeń
 LogEvents=Zdarzenia audytu bezpieczeństwa
 Audit=Audyt
@@ -991,109 +993,110 @@ InfoDatabase=Informacje o bazie danych
 InfoPHP=Informacje o PHP
 InfoPerf=Informacje o występy
 BrowserName=Nazwa przeglądarki
-BrowserOS=Przeglądarka Systemu Operacyjnego
+BrowserOS=Przeglądarka OS
 ListEvents=Zdarzenia audytu
 ListOfSecurityEvents=Lista zdarzeń bezpieczeństwa Dolibarr
 SecurityEventsPurged=Zdarzenia dotyczące bezpieczeństwa oczyszczone
-LogEventDesc=Tutaj możesz włączyć logowanie zdarzeń związanych z bezpieczeństwem dla Dolibarr. Administrator może zobaczyć te treści poprzez Menu <b>Narzędzia systemowe - Audyt</b>. Uwaga, ta funkcjonalność może zwiększyć zużycie przestrzeni przez bazę danych.
-AreaForAdminOnly=Ta funkcjonalność może być użyta tylko przez <b>administratorów</b>.
-SystemInfoDesc=Informacje systemowe zawierają różne techniczne informacje, które otrzymujesz jedynie w trybie do odczytu i są widoczne tylko dla użytkowników na prawach administratora.
-SystemAreaForAdminOnly=Ta przestrzeń jest dostępna jedynie dla administratorów. Żadne z uprawnień Dolibarr nie zniesie tego ograniczenia.
-CompanyFundationDesc=Edytuj na tej stronie wszystkie znane Ci informacje na temat firmy lub fundacji, które chcesz udostępnić (Aby to zrobić, kliknij na przycisk "Modyfikuj" na dole strony)
-DisplayDesc=Możesz wybrać każdy parametr związany z Dolibarr wyglądać i czuć się tutaj
+LogEventDesc=Można włączyć dziennik Dolibarr bezpieczeństwa imprez tutaj. Administratorzy mogą wtedy zobaczyć jego zawartość za pomocą menu <b>Narzędzia systemowe - Audyt.</b> Ostrzeżenie: Funkcja ta może zużywają duże ilości danych w bazie danych.
+AreaForAdminOnly=Cechy te mogą być używane tylko przez <b>administratora użytkowników.</b> Administrator cechy i pomóc w Dolibarr są określone przez następujące picto:
+SystemInfoDesc=System informacji jest różne informacje techniczne można uzyskać w trybie tylko do odczytu i widoczne tylko dla administratorów.
+SystemAreaForAdminOnly=Obszar ten jest dostępny tylko dla administratora użytkowników. Żaden z Dolibarr uprawnień może zmniejszyć ten limit.
+CompanyFundationDesc=Na tej stronie edytuj wszystkie znane Ci informacje o firmie lub fundacji (Aby tego dokonać, kliknij na przycisk "Modyfikuj" na dole strony)
+DisplayDesc=Możesz wybrać każdego z parametrów związanych z wyglądem i Dolibarr tutaj
 AvailableModules=Dostępne moduły
 DeprecatedModules=Przestarzałe moduły
-ToActivateModule=Aby aktywować moduły, przejdź do ustawień (Home->Ustawienia->Moduły).
-SessionTimeOut=Czas wygasnięcia sesji
-SessionExplanation=Gwarancja ta liczba, że ​​sesja nigdy nie wygaśnie przed tym opóźnieniem, jeśli czystsze sesji odbywa się poprzez wewnętrzne PHP czystsze sesji (i nic więcej). Wewnętrzne czystsze sesji PHP nie gwarantuje, że sesja wygasa tuż po tym opóźnieniem. Będzie ona wygaśnie, po tej zwłoki, a gdy sesja jest czystsze prowadził, więc <b>każdy% s /% s</b> dostępu, ale tylko podczas dostępu przez innych sesji. <br> Uwaga: na niektórych serwerach z zewnętrznym mechanizmem czyszczącym sesji (cron w Debianie, Ubuntu ...), sesje mogą być zniszczone po upływie określonego przez domyślne <strong>session.gc_maxlifetime,</strong> bez względu na to, co tu wprowadzić wartość.
-TriggersAvailable=Dostępne wyzwalacze
-TriggersDesc=Wyzwalacze są pliki, które będą modyfikować zachowania Dolibarr workflow raz skopiowany do <b>htdocs katalogu</b> / <b>core / wyzwalaczy.</b> Zdali sobie sprawę, nowych działań, aktywowane Dolibarr wydarzeń (na tworzenie nowych spółek, zatwierdzenia faktury, ...).
-TriggerDisabledByName=Wyzwalacze w tym pliku są wyłączone przez przyrostek <b>NORUN</b> w ich nazwach.
-TriggerDisabledAsModuleDisabled=Wyzwalacze w tym pliku są wyłączone gdy<b>moduł %s</b> jest wyłączony.
-TriggerAlwaysActive=Wyzwalacze w tych plikach są zawsze aktywne, niezależnie od aktywowanych modułów Dolibarr.
-TriggerActiveAsModuleActive=Wyzwalacze w tym pliku są aktywne, gdy moduł <b>%s</b> jest włączony
-GeneratedPasswordDesc=Zdefiniuj tutaj zasady, które mają być wykorzystywane do generowania nowego hasła, jeżeli będziesz chciał skorzystać z automatycznie generowanego hasła
+ToActivateModule=Aby uaktywnić modules, przejdź na konfigurację Powierzchnia.
+SessionTimeOut=Godzina dla sesji
+SessionExplanation=Numer ten gwarantuje, że sesja nigdy nie wygaśnie przed upływem tego opóźnienia. Ale PHP sessoin zarządzania nie zawsze gwarantują, że sesja wygasa po tym terminie: Ten problem występuje, jeśli system do czyszczenia Wikisłowniku sesji jest uruchomiony. <br> Uwaga: nie szczególności systemu wewnętrznej PHP będzie czyste sesji każdy <b>temat %s / %s</b> dostępu, ale tylko podczas dostępu przez innych sesji.
+TriggersAvailable=Dostępne wyzwala
+TriggersDesc=Wyzwalacze są pliki, które będą modyfikować zachowania Dolibarr pracy po skopiowaniu do katalogu <b>htdocs / includes / wyzwala.</b> One zrealizowane nowych działań, uaktywnionego Dolibarr na imprezy (utworzenie nowej spółki, zatwierdzania faktur, ...).
+TriggerDisabledByName=Wyzwalacze w tym pliku są wyłączone przez <b>NORUN-suffix</b> w ich imieniu.
+TriggerDisabledAsModuleDisabled=Wyzwalacze w tym pliku są wyłączone jako <b>modułu %s</b> została wyłączona.
+TriggerAlwaysActive=Wyzwalacze w tym pliku są zawsze aktywne, niezależnie są aktywowane Dolibarr modułów.
+TriggerActiveAsModuleActive=Wyzwalacze w tym pliku są aktywne jako <b>modułu %s</b> jest aktywny.
+GeneratedPasswordDesc=Określ tutaj reguły, które chcesz użyć do wygenerowania nowego hasła, jeśli zapyta się automatycznie wygenerowane hasło
 DictionaryDesc=Określ tutaj wszystkie dane teleadresowe referencyjnych. Możesz wypełnić predefiniowaną wartość z Ciebie.
-ConstDesc=Ta strona pozwala na edycję wszystkich innych parametrów nie dostępnych na poprzednich stronach. Są one zarezerwowane dla zaawansowanych programistów i testerów.
-OnceSetupFinishedCreateUsers=Ostrzeżenie. Jesteś użytkownikiem Dolibarr na prawach administratora. Użytkownik na prawach administratora jest używany do ustawień platformy Dolibarr. Do zwykłego korzystania z Dolibarr zalecane jest używanie użytkowników o mniejszych prawach dostępu, którego można utworzyć w menu Użytkownicy & Grupy.
+ConstDesc=Ta strona pozwala edytować wszystkie inne parametry nie są dostępne w poprzedniej strony. Są one zastrzeżone dla zaawansowanych parametrów deweloperzy lub troubleshouting.
+OnceSetupFinishedCreateUsers=Ostrzeżenie, jesteś Dolibarr administratora użytkownika. Administrator użytkowników wykorzystywane są do konfiguracji Dolibarr. Dla Zazwyczaj korzystanie z Dolibarr, zaleca się używać nieujemnych administratora użytkownika tworzone Użytkownicy i grupy menu.
 MiscellaneousDesc=Określ tutaj wszystkie inne parametry związane z bezpieczeństwem.
-LimitsSetup=Ustawienia Limitów/Precyzji
-LimitsDesc=Możesz tutaj zdefiniowć limity, precyzję i optymalizację używaną w Dolibarr
-MAIN_MAX_DECIMALS_UNIT=Maksymalna ilość miejsc po przecinku dla ceny jednostkowej
-MAIN_MAX_DECIMALS_TOT=Maksymalna ilość miejsc po przecinku dla ceny sprzedaży
-MAIN_MAX_DECIMALS_SHOWN=Max dziesiętnych do cen podanych na ekranie (Dodaj <b>...</b> po ten numer, jeśli chcesz zobaczyć <b>...,</b> gdy liczba jest obcięta, gdy pokazane na ekranie)
-MAIN_DISABLE_PDF_COMPRESSION=Użyj kompresji PDF dla generowanych plików PDF
-MAIN_ROUNDING_RULE_TOT=Krok zakres zaokrąglenia (zaokrąglenie do krajów, w których odbywa się na czymś innym, niż podstawy 10. Na przykład, umieścić 0,05 jeśli zaokrąglanie odbywa się przez 0,05 etapach)
-UnitPriceOfProduct=Jednostkowa cena netto produktu
-TotalPriceAfterRounding=Łączna cena (netto/VAT/z podatkiem) po zaokrągleniu
-ParameterActiveForNextInputOnly=Parametr skuteczny tylko dla następnego wejścia
-NoEventOrNoAuditSetup=Nie zarejestrowano żadnych zdarzeń bezpieczeństwa. To może być normalne jeżeli audyt nie został włączony w menu "Ustawienia -> Bezpieczeństwo ->Audyt".
-NoEventFoundWithCriteria=Nie znaleziono zdarzeń bezpieczeństwa dla tych kryteriów wyszukiwania.
-SeeLocalSendMailSetup=Zobacz lokalne ustawienia usługi sendmail
+LimitsSetup=Ograniczenia / Precision konfiguracji
+LimitsDesc=Można określić limity, doprecyzowanie i optymalizacje stosowane przez Dolibarr tutaj
+MAIN_MAX_DECIMALS_UNIT=Max dziesiętnych na ceny jednostkowe
+MAIN_MAX_DECIMALS_TOT=Max dziesiętnych dla całkowitej ceny
+MAIN_MAX_DECIMALS_SHOWN=Max dziesiętnych ceny wyświetlane na ekranie (Dodaj <b>...</b> po ten numer, jeśli chcesz zobaczyć <b>...</b> kiedy liczba jest obcięty przy wyświetlane na ekranie)
+MAIN_DISABLE_PDF_COMPRESSION=Użyj PDF kompresji generowanych plików PDF.
+MAIN_ROUNDING_RULE_TOT=Step of rounding range (for countries where rounding is done on something else than base 10. For example, put 0.05 if rounding is done by 0.05 steps)
+UnitPriceOfProduct=Cena netto jednostki produktu
+TotalPriceAfterRounding=Łączna cena (netto / VAT / wraz z podatku) po zaokrągleniu
+ParameterActiveForNextInputOnly=Parametr skuteczne wejście tylko dla najbliższych
+NoEventOrNoAuditSetup=Nr bezpieczeństwa zdarzenie zostało jeszcze zarejestrowane. To może być normalne, jeśli kontrola nie została włączona w "setup - bezpieczeństwo - audytu" strony.
+NoEventFoundWithCriteria=Nr bezpieczeństwa zdarzenie zostało znalezionych dla takich kryteriów wyszukiwania.
+SeeLocalSendMailSetup=Zobacz lokalnej konfiguracji sendmaila
 BackupDesc=Aby wykonać pełną kopię zapasową Dolibarr, musisz:
-BackupDesc2=Zapisz zawartość katalogu dokumentów (<b>%s</b>), który zawiera wszystkie załadowane i wygenerowane pliki (Więc to obejmuje wszystkie pliki zrzutu generowane w kroku 1).
+BackupDesc2=Save content of documents directory (<b>%s</b>) that contains all uploaded and generated files (So it includes all dump files generated at step 1).
 BackupDesc3=Zapisz zawartość Twojej bazy danych (<b>%s</b>) do kopi zapasowej. Aby tego dokonać, możesz użyć asystenta.
-BackupDescX=Zarchiwizowany katalog należy przechowywać w bezpiecznym miejscu.
-BackupDescY=Wygenerowany plik zrzutu powinien być przechowywany w bezpiecznym miejscu.
-BackupPHPWarning=Kopia zapasowa nie może być gwarantowana przy użyciu tej metody. Preferuję poprzednią
-RestoreDesc=Aby przywrócić kopię zapasową Dolibarr, należy:
+BackupDescX=Zarchiwizowane katalogu należy przechowywać w bezpiecznym miejscu.
+BackupDescY=Wygenerowany plik zrzutu powinny być przechowywane w bezpiecznym miejscu.
+BackupPHPWarning=Kopia zapasowa nie może być gwarantowana przy użyciu tej metody. Wolę poprzedni
+RestoreDesc=Aby przywrócić Dolibarr zapasowej, należy:
 RestoreDesc2=Przywróć pliki archiwalny (np. ZIP) katalogu dokumentów, aby wyodrębnić drzewa plików w katalogu dokumentów do nowej instalacji Dolibarr lub do bieżącego katalogu dokumentów <b>( %s).</b>
 RestoreDesc3=Przywróć dane z pliku kopii zapasowej, do bazy danych nowej instalacji Dolibarr lub do bazy danych tej bieżącej instalacji (<b>%s</b>). Uwaga, gdy przywracanie zostanie zakończone, należy użyć loginu i hasła, które istniały, gdy kopia zapasowa została utworzona, aby połączyć się ponownie. Aby przywrócić kopię zapasową bazy danych do bieżącej instalacji, można użyć tego asystenta.
 RestoreMySQL=Import MySQL
-ForcedToByAModule= Ta zasada zmusza do <b>%s</b> przez aktywowany moduł
+ForcedToByAModule= Ta zasada jest zmuszona <b>do %s</b> przez aktywowany modułu
 PreviousDumpFiles=Dump bazy danych dostępne pliki kopii zapasowej
 WeekStartOnDay=Pierwszy dzień tygodnia
 RunningUpdateProcessMayBeRequired=Uruchomiony proces aktualizacji wydaje się konieczne (programy różni się od wersji %s %s wersja bazy danych)
 YouMustRunCommandFromCommandLineAfterLoginToUser=Należy uruchomić to polecenie z wiersza polecenia po zalogowaniu się do powłoki z <b>%s</b> użytkownika.
-YourPHPDoesNotHaveSSLSupport=Funkcje SSL są niedostępne w twojej wersji PHP
+YourPHPDoesNotHaveSSLSupport=funkcji SSL nie są dostępne w PHP
 DownloadMoreSkins=Więcej skórek do pobrania
-SimpleNumRefModelDesc=Zwraca numer z formatu %syymm nnnn, gdzie yy to rok, MM miesiąc i nnnn jest ciągiem bez otworu, bez resetowania
+SimpleNumRefModelDesc=Zwraca numer w farmacie %syymm nnnn, gdzie yy to rok, mm to miesiąc i nnnn jest ciągiem cyfr bez przerwania i bez możliwości resetu do wartości początkowej
 ShowProfIdInAddress=Pokaż zawodami identyfikator z adresów na dokumentach
 ShowVATIntaInAddress=Ukryj VAT Intra num z adresów na dokumenty
 TranslationUncomplete=Częściowe tłumaczenie
 SomeTranslationAreUncomplete=Niektóre języki mogą być częściowo tłumaczona lub maja zawiera błędy. Jeśli wykrycie niektórych, można naprawić pliki językowe z zarejestrowaniem się <a href="http://transifex.com/projects/p/dolibarr/" target="_blank">http://transifex.com/projects/p/dolibarr/</a> .
 MenuUseLayout=Dodać pionowe menu hidable (javascript opcja nie może być wyłączone)
 MAIN_DISABLE_METEO=Wyłącz widok pictogramów meteo
-TestLoginToAPI=Test logowania do API
+TestLoginToAPI=Przetestuj się zalogować do interfejsu API
 ProxyDesc=Niektóre funkcje Dolibarr muszą mieć dostęp do Internetu. Tutaj możesz określić parametry tego dostępu. Jeśli serwer Dolibarr jest za serwerem proxy, te parametry określą jak uzyskać dostęp do Internetu za jego pośrednictwem.
 ExternalAccess=Zewnętrzny dostęp
-MAIN_PROXY_USE=Użyj serwera proxy (bezpośredniego dostępu do internetu)
-MAIN_PROXY_HOST=Nazwa/Adres serwera proxy
+MAIN_PROXY_USE=Użyj serwera proxy (inaczej bezpośredni dostęp do internetu)
+MAIN_PROXY_HOST=Imię i nazwisko / adres serwera proxy
 MAIN_PROXY_PORT=Port serwera proxy
 MAIN_PROXY_USER=Zaloguj się, aby korzystać z serwera proxy
 MAIN_PROXY_PASS=Hasło do korzystania z serwera proxy
 DefineHereComplementaryAttributes=Określ tutaj wszystkie ATUTY, nie są już dostępne domyślnie i że chcesz być obsługiwane przez %s.
-ExtraFields=Atrybuty uzupełniające
+ExtraFields=Uzupełniające atrybuty
 ExtraFieldsLines=Atrybuty uzupełniające (linie)
 ExtraFieldsSupplierOrdersLines=(Linie uzupełniające atrybuty order)
 ExtraFieldsSupplierInvoicesLines=Atrybuty uzupełniające (linie na fakturze)
-ExtraFieldsThirdParties=Atrybuty uzupełniające (kontrahent)
-ExtraFieldsContacts=Atrybuty uzupełniające (kontakt/adres)
+ExtraFieldsThirdParties=Atrybuty uzupełniające (thirdparty)
+ExtraFieldsContacts=Atrybuty uzupełniające (kontakt / adres)
 ExtraFieldsMember=Atrybuty uzupełniające (członek)
-ExtraFieldsMemberType=Atrybuty uzupełniające (typ członka)
+ExtraFieldsMemberType=Atrybuty uzupełniające (typ członkiem)
 ExtraFieldsCustomerOrders=Zamówienia uzupełniające (atrybuty)
 ExtraFieldsCustomerInvoices=Atrybuty uzupełniające (faktury)
-ExtraFieldsSupplierOrders=Atrybuty uzupełniające (zamówienia)
+ExtraFieldsSupplierOrders=Zamówienia uzupełniające (atrybuty)
 ExtraFieldsSupplierInvoices=Atrybuty uzupełniające (faktury)
-ExtraFieldsProject=Atrybuty uzupełniające (projekty)
+ExtraFieldsProject=Atrybuty uzupełniające (projektów)
 ExtraFieldsProjectTask=Atrybuty uzupełniające (zadania)
-ExtraFieldHasWrongValue=Atrybut %s ma nieprawidłową wartość.
-AlphaNumOnlyCharsAndNoSpace=tylko znaki alfanumeryczne bez spacji
-AlphaNumOnlyLowerCharsAndNoSpace=tylko znaki alfanumeryczne i małe litery bez spacji
-SendingMailSetup=Konfiguracja wysyłki email
+ExtraFieldHasWrongValue=Atrybut% s ma nieprawidłową wartość.
+AlphaNumOnlyCharsAndNoSpace=tylko alphanumericals znaków bez spacji
+AlphaNumOnlyLowerCharsAndNoSpace=tylko alphanumericals i małe litery bez przestrzeni
+SendingMailSetup=Ustawienie sendings emailem
 SendmailOptionNotComplete=Uwaga, w niektórych systemach Linux, aby wysłać e-mail z poczty elektronicznej, konfiguracja wykonanie sendmail musi conatins opcja-ba (mail.force_extra_parameters parametr w pliku php.ini). Jeśli nigdy niektórzy odbiorcy otrzymywać e-maile, spróbuj edytować ten parametr PHP z mail.force_extra_parameters =-ba).
 PathToDocuments=Ścieżka do dokumentów
 PathDirectory=Katalog
-SendmailOptionMayHurtBuggedMTA=Funkcja do wysyłania maili z wykorzystaniem metody "PHP poczty bezpośredniej" wygeneruje wiadomości, że może nie być prawidłowo przeanalizowany przez niektórych otrzymujących serwerów pocztowych. Powoduje to, że niektóre maile nie mogą być odczytywane przez ludzi, hostowanych przez te platformy podsłuchu. To przypadku niektórych dostawców internetowych (Ex: Orange we Francji). To nie jest problem w Dolibarr, ani w PHP, ale na otrzymywanie serwera poczty. Możesz jednak dodać opcji MAIN_FIX_FOR_BUGGED_MTA do 1 w konfiguracji - inne zmodyfikować Dolibarr, aby tego uniknąć. Jednakże, mogą wystąpić problemy z innymi serwerami, które przestrzegają ściśle standardu SMTP. Innym rozwiązaniem (zalecane) jest użycie metody "gniazda SMTP biblioteki", który nie ma wad.
-TranslationSetup=Konfiguracja tłumaczenia
-TranslationDesc=Wybór języka widoczne na ekranie mogą być modyfikowane: <br> * Na całym świecie z menu <strong>Start - Ustawienia - Wyświetlacz</strong> <br> * Dla użytkowników tylko z <strong>wyświetlaczem</strong> karta <strong>użytkownika</strong> karty użytkownika (kliknij logowania na górze ekranu).
-TotalNumberOfActivatedModules=Łączna liczba aktywowanych modułów <b>%s</b>
-YouMustEnableOneModule=Musisz włączyć przynajmniej 1 moduł
-ClassNotFoundIntoPathWarning=Klasa %s nie została znaleziona w ścieżce PHP
+SendmailOptionMayHurtBuggedMTA=Funkcja wysłać maile za pomocą metody "PHP poczty bezpośredniej" wygeneruje wiadomości, że może nie być prawidłowo przeanalizowany przez niektórych otrzymujących serwerów pocztowych. Powoduje to, że niektóre maile nie mogą być odczytywane przez ludzi obsługiwanych przez te platformy podsłuchu. To przypadku niektórych dostawców internetowych (Ex: Pomarańczowy we Francji). To nie jest problem w Dolibarr, ani w PHP, ale na otrzymywanie serwera poczty. Możesz jednak dodać opcję MAIN_FIX_FOR_BUGGED_MTA do 1 w konfiguracji - inne zmodyfikować Dolibarr, aby tego uniknąć. Jednakże, mogą wystąpić problemy z innymi serwerami, które przestrzegają ściśle standardu SMTP. Inne rozwiązanie (zalecane) jest użycie metody "gniazdo SMTP biblioteki", który nie ma wad.
+TranslationSetup=Konfiguracja de la traduction
+TranslationDesc=Wybór języka widoczne na ekranie mogą być modyfikowane: <br> * Globalnie z menu <strong>Start - Ustawienia - Wyświetlacz</strong> <br> * Dla użytkowników tylko z <strong>wyświetlaczem</strong> karta <strong>użytkownika</strong> karty użytkownika (kliknij zaloguj się na górze ekranu).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
+TotalNumberOfActivatedModules=Łączna liczba aktywowanych modułów <b>funkcji:% s</b>
+YouMustEnableOneModule=Musisz przynajmniej umożliwić 1 moduł
+ClassNotFoundIntoPathWarning=Klasa% s nie znaleziono na drodze PHP
 YesInSummer=Tak w lecie
 OnlyFollowingModulesAreOpenedToExternalUsers=Uwaga, tylko następujące moduły są otwarte dla użytkowników zewnętrznych (bez względu na uprawnienia tych użytkowników):
 SuhosinSessionEncrypt=Przechowywania sesji szyfrowane Suhosin
-ConditionIsCurrently=Stan jest obecnie %s
+ConditionIsCurrently=Stan jest obecnie% s
 YouUseBestDriver=Za pomocą sterownika% s, który jest najlepszym kierowcą dostępne obecnie.
 YouDoNotUseBestDriver=Używać dysku% s% s, ale kierowca jest zalecane.
 NbOfProductIsLowerThanNoPb=Masz tylko% s produktów / usług do bazy danych. W ten sposób nie wymaga żadnej szczególnej optymalizacji.
@@ -1110,55 +1113,55 @@ GetBarCode=Pobierz kod kreskowy
 EmptyNumRefModelDesc=Kod jest bezpłatne. Kod ten może być zmieniane w dowolnym momencie.
 ##### Module password generation
 PasswordGenerationStandard=Wróć hasło generowane zgodnie z wewnętrznym Dolibarr algorytmu: 8 znaków zawierających cyfry i znaki udostępniony w małe.
-PasswordGenerationNone=Nie sugeruj żadnego generowanego hasła. Hasło musi być wprowadzone ręcznie.
+PasswordGenerationNone=Nie zgłosił żadnych wygenerowane hasło. Hasło należy wpisać ręcznie.
 PasswordGenerationPerso=Powrót hasło zależności osobiście określonej konfiguracji.
 SetupPerso=Zgodnie z twoją konfiguracją
 PasswordPatternDesc=Opis wzoru hasła
 ##### Users setup #####
-UserGroupSetup=Ustawienia modułu "Użytkownicy i grupy"
+UserGroupSetup=Użytkownicy i grupy konfiguracji modułu
 GeneratePassword=Zaproponuj wygenerowane hasło
-RuleForGeneratedPasswords=Zasady generowania sugerowanych haseł lub zatwierdzania haseł
-DoNotSuggest=Nie sugeruj żadnego hasła
+RuleForGeneratedPasswords=Artykuł sugerował, aby wygenerować hasła
+DoNotSuggest=Nie zgłosił żadnych hasło
 EncryptedPasswordInDatabase=Aby umożliwić szyfrowanie haseł w bazie danych
-DisableForgetPasswordLinkOnLogonPage=Nie pokazuj linka "Zapomniałeś hasła" na stronie logowania
-UsersSetup=Ustawienia modułu użytkowników
-UserMailRequired=Wymagany email to stworzenia nowego użytkownika
+DisableForgetPasswordLinkOnLogonPage=Nie pokazuj link "Zapomniałeś hasła" na stronie logowania
+UsersSetup=Użytkownicy modułu konfiguracji
+UserMailRequired=Email wymagane, aby utworzyć nowego użytkownika
 ##### HRM setup #####
 HRMSetup=Ustawianie modułu HR
 ##### Company setup #####
-CompanySetup=Ustawienia modułu firm
+CompanySetup=Firmy konfiguracji modułu
 CompanyCodeChecker=Moduł dla stron trzecich i generowania kodu kontroli (klienta lub dostawcy)
 AccountCodeManager=Moduł do generowania kodu rachunkowych (klienta lub dostawcy)
 ModuleCompanyCodeAquarium=Zwrócić rachunkowych kod zbudowany przez %s, a następnie trzeciej dostawcy kod dostawcy rachunkowych kod i %s, a następnie trzeciej klienta kodu dla klienta rachunkowych kodu.
-ModuleCompanyCodePanicum=Zwróć pusty kod rachunkowości
-ModuleCompanyCodeDigitaria=Księgowość kod zależy od trzeciej kodu. Kod składa się z charakterem "C" na pierwszej pozycji, po którym następuje pierwsze 5 znaków w kodzie strony trzeciej.
+ModuleCompanyCodePanicum=Wróć pusty rachunkowych kodu.
+ModuleCompanyCodeDigitaria=Księgowość kod zależy od trzeciej kodu. Kod składa się z charakterem "C" na pierwszej pozycji, po którym następuje pierwsze 5 znaków w kodzie kontrahenta.
 UseNotifications=Użyj powiadomień
-NotificationsDesc=Wiadomości e-mail powiadomienia funkcja umożliwia automatyczne cichu wysłać pocztę, Dolibarr dla niektórych wydarzeń. Cele powiadomień można określić: <br> * Na OSOBAMI kontakty (klientów lub dostawców), jeden kontakt w czasie. <br> * Lub ustawienie globalne adresy e-mail na stronie docelowej konfiguracji modułu.
+NotificationsDesc=Wiadomości e-mail powiadomienia funkcja pozwala na automatyczne wysyłanie poczty w milczeniu, na niektórych imprezach na Dolibarr. Cele zgłoszeń można zdefiniować: <br> * Na OSOBAMI kontakty (klientów i dostawców), jeden kontakt w czasie. <br> * Lub ustawienie globalne adresy e-mail celem w stronie konfiguracji modułu.
 ModelModules=Szablony dokumentów
-DocumentModelOdt=Generowanie dokumentów z szablonów OpenDocument (pliki .ODT or .ODS dla OpenOffice, KOffice, TextEdit, ...)
-WatermarkOnDraft=Znak wodny na szkicu dokumentu
+DocumentModelOdt=Generowanie dokumentów z szablonów (.odt OpenDocuments lub ods pliki dla OpenOffice, KOffice, TextEdit, ...)
+WatermarkOnDraft=Znak wodny w sprawie projektu dokumentu
 JSOnPaimentBill=Aktywuj funkcję automatyczne wypełnianie linii płatności w formie płatności
 CompanyIdProfChecker=Profesjonalny Identyfikator unikalny
-MustBeUnique=Musi być unikatowy?
-MustBeMandatory=Obowiązkowe do tworzenia kontrahentów?
-MustBeInvoiceMandatory=Obowiązkowe do zatwierdzania faktur?
+MustBeUnique=Musi być wyjątkowa?
+MustBeMandatory=Obowiązkowe do tworzenia stron trzecich?
+MustBeInvoiceMandatory=Obowiązkowe do sprawdzania poprawności faktur?
 Miscellaneous=Różne
 ##### Webcal setup #####
 WebCalSetup=Webcalendar link konfiguracji
 WebCalSyncro=Dodaj Dolibarr wydarzeń WebCalendar
 WebCalAllways=Zawsze, nie pytając
-WebCalYesByDefault=Na żądanie (domyślnie - "tak")
-WebCalNoByDefault=Na życzenie (domyślnie "nie")
+WebCalYesByDefault=Na żądanie (tak domyślnie)
+WebCalNoByDefault=Na życzenie (bez domyślnie)
 WebCalNever=Nigdy
 WebCalURL=URL kalendarza dostępu
 WebCalServer=Serwerze bazy danych kalendarza
 WebCalDatabaseName=Nazwa bazy danych
-WebCalUser=Użytkownicy z dostępem do bazy danych
+WebCalUser=Użytkownicy mają dostęp do bazy danych
 WebCalSetupSaved=Webcalendar konfiguracji zapisany pomyślnie.
-WebCalTestOk=Połączenie do serwera '%s' z bazą danych '%s' z użytkownikiem '%s' się powiodło.
-WebCalTestKo1=Połączenie do serwera '%s' powiodło się, ale nie można było połączyć się z bazą danych '%s'.
-WebCalTestKo2=Połączenie z serwerem '%s' jako użytkownik '%s' nie powiodło się.
-WebCalErrorConnectOkButWrongDatabase=Połączenie udało się, ale baza danych nie wygląda jak baza danych Webcalendar.
+WebCalTestOk=Połączenie do serwera '% s' w bazie danych '% s' z użytkownika '% s' sukces.
+WebCalTestKo1=Połączenie do serwera ' %s' sukces, ale baza danych' %s' nie mógł zostać osiągnięty.
+WebCalTestKo2=Połączenie do serwera ' %s' z użytkownika' %s' nie powiodło się.
+WebCalErrorConnectOkButWrongDatabase=Połączenie udało, ale baza danych nie patrzy się Webcalendar danych.
 WebCalAddEventOnCreateActions=Dodaj wydarzenie w kalendarzu działań utworzyć
 WebCalAddEventOnCreateCompany=Dodaj wydarzenie w kalendarzu tworzyć spółki
 WebCalAddEventOnStatusPropal=Dodaj wydarzenie w kalendarzu propozycji zmiany statusu
@@ -1168,37 +1171,37 @@ WebCalAddEventOnStatusMember=Dodaj kalendarz przypadku zmiany statusu członków
 WebCalUrlForVCalExport=Wywóz <b>link %s</b> format jest dostępny na poniższy link: %s
 WebCalCheckWebcalSetup=Może Webcal modułu konfiguracji nie jest prawidłowe.
 ##### Invoices #####
-BillsSetup=Ustawienie madułu faktur
-BillsDate=Data faktur
-BillsNumberingModule=Model numeracji faktur i not kredytowych
-BillsPDFModules=Modele dokumentów faktur
-CreditNoteSetup=Ustawienia modułu noty kredytowej
-CreditNotePDFModules=Modele dokumentów not kredytowych
+BillsSetup=Konfiguracja modułu faktur
+BillsDate=Faktury daty
+BillsNumberingModule=Faktur i not kredytowych numeracji modułu
+BillsPDFModules=Faktura dokumentów modele
+CreditNoteSetup=Nota kredytowa konfiguracji modułu
+CreditNotePDFModules=Nota kredytowa dokument modeli
 CreditNote=Nota kredytowa
-CreditNotes=Noty kredytowe
-ForceInvoiceDate=Wymuś zmianę daty faktury na datę zatwierdzenia tej faktury
+CreditNotes=Not kredytowych
+ForceInvoiceDate=Siły daty wystawienia faktury do walidacji daty
 AllowCreditNoteWithoutRelatedInvoice=Pozwól na tworzenie not kredytowych bez dowiązanej faktury
 DisableRepeatable=Wyłącz powtarzalny faktur
-SuggestedPaymentModesIfNotDefinedInInvoice=Sygerowany domyślnie sposób płatności na fakturze jeżeli nie zdefiniowano innego dla faktury
-EnableEditDeleteValidInvoice=Włącz możliwość educji/usuwania zatwierdzonej nieopłaconej faktury
+SuggestedPaymentModesIfNotDefinedInInvoice=Sugerowane tryb płatności na fakturze domyślnie jeśli nie jest zdefiniowane w fakturze
+EnableEditDeleteValidInvoice=Włącz możliwość edytować / usuwać ważnej faktury bez zapłaty
 SuggestPaymentByRIBOnAccount=Zaproponuj płatność wycofać z
 SuggestPaymentByChequeToAddress=Zaproponuj płatności czekiem do
-FreeLegalTextOnInvoices=Dowolny tekst na fakturach
-WatermarkOnDraftInvoices=Znak wodny na szkicu faktury (brak jeśli pusty)
+FreeLegalTextOnInvoices=Wolny tekst na fakturach
+WatermarkOnDraftInvoices=Znak wodny na projekt faktury (brak jeśli pusty)
 PaymentsNumberingModule=Model numeracji płatności
 ##### Proposals #####
-PropalSetup=Ustawienia modułu propozycji handlowych
+PropalSetup=Konfiguracja modułu ofert handlowych
 CreateForm=Tworzenie formularzy
 NumberOfProductLines=Liczba linii produktów
-ProposalsNumberingModules=Model numeracji propozycji handlowej
-ProposalsPDFModules=Model dokumentów propozycji handlowej
+ProposalsNumberingModules=Commercial wniosku numeracji modules
+ProposalsPDFModules=Commercial wniosku dokumenty modeli
 ClassifiedInvoiced=Sklasyfikowany zafakturowana
 HideTreadedPropal=Ukryj leczonych propozycji w wykazie
 AddShippingDateAbility=Dodaj datę wysyłki zdolność
 AddDeliveryAddressAbility=Dodaj datę dostawy zdolność
 UseOptionLineIfNoQuantity=Linia produktów / usług z zerową ilość jest traktowana jako opcja
 FreeLegalTextOnProposal=Darmowy tekstu propozycji
-WatermarkOnDraftProposal=Znak wodny na szkicu propozycji handlowej (brak jeśli pusty)
+WatermarkOnDraftProposal=Znak wodny projektów wniosków komercyjnych (brak jeśli pusty)
 BANK_ASK_PAYMENT_BANK_DURING_PROPOSAL=Zapytaj o rachunku bankowego przeznaczenia propozycji
 ##### SupplierProposal #####
 SupplierProposalSetup=Cena żąda konfiguracji modułu dostawcy
@@ -1209,13 +1212,13 @@ WatermarkOnDraftSupplierProposal=Znak wodny w sprawie projektu cenie żąda dost
 BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_PROPOSAL=Zapytaj o rachunku bankowego przeznaczenia proponowaniu ceny
 WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER=Zapytaj o magazyn źródłowy dla zamówienia
 ##### Orders #####
-OrdersSetup=Konfiguracja zarządzaniem zamówieniami
-OrdersNumberingModules=Model numeracji zamówień
-OrdersModelModule=Model dokumentu zamówienia
+OrdersSetup=Konfiguracja modułu zamówień
+OrdersNumberingModules=Zamówienia numeracji modules
+OrdersModelModule=Zamów dokumenty modeli
 HideTreadedOrders=Ukryj leczonych lub anulowane zlecenia z listy
 ValidOrderAfterPropalClosed=Aby zatwierdzić wniosek, aby po bliższa, umożliwia nie krok po tymczasowym porządku
-FreeLegalTextOnOrders=Dowolny tekst na zamówieniach
-WatermarkOnDraftOrders=Znak wodny na szkicu zamówienia (brak jeśli pusty)
+FreeLegalTextOnOrders=Wolny tekst na zamówienie
+WatermarkOnDraftOrders=Znak wodny w sprawie projektów zamówień (brak jeśli pusty)
 ShippableOrderIconInList=Dodaj ikonę w liście zamówień, które wskazują, czy zamówienie jest shippable
 BANK_ASK_PAYMENT_BANK_DURING_ORDER=Zapytaj o rachunku bankowego przeznaczenia porządku
 ##### Clicktodial #####
@@ -1224,24 +1227,24 @@ ClickToDialUrlDesc=Url called when a click on phone picto is done.  Dans l'url,
 ##### Bookmark4u #####
 Bookmark4uSetup=Bookmark4u konfiguracji modułu
 ##### Interventions #####
-InterventionsSetup=Konfiguracja modułu interwencji
-FreeLegalTextOnInterventions=Dowolny tekst na dokumentach interwencji
-FicheinterNumberingModules=Model numeracji interwencji
+InterventionsSetup=Interwencje konfiguracji modułu
+FreeLegalTextOnInterventions=Darmowe tekst na dokumenty interwencji
+FicheinterNumberingModules=Interwencja numeracji modules
 TemplatePDFInterventions=Interwencja karty wzorów dokumentów
-WatermarkOnDraftInterventionCards=Znak wodny na dokumentach karty interwencji (brak jeśli pusty)
+WatermarkOnDraftInterventionCards=Znak wodny na dokumentach kart interwencji (brak jeśli pusty)
 ##### Contracts #####
-ContractsSetup=Konfiguracja modułu Kontrakty/Subskrypcje
+ContractsSetup=Kontrakty / konfiguracji modułu Subskrybcje
 ContractsNumberingModules=Kontrakty numerowania modułów
 TemplatePDFContracts=Kontrakty modele dokumenty
 FreeLegalTextOnContracts=Wolny tekst na kontraktach
 WatermarkOnDraftContractCards=Znak wodny w sprawie projektów umów (brak jeśli pusty)
 ContractsAndServices=Lista kontaktów i usług
 ##### Members #####
-MembersSetup=Konfiguracja modułu członków
+MembersSetup=Członkowie konfiguracji modułu
 MemberMainOptions=Główne opcje
 AddSubscriptionIntoAccount=Dodaj do subskrypcji konta bankowego lub środków pieniężnych, bankowych modułu
 AdherentLoginRequired= Zarządzanie logowania dla każdego członka
-AdherentMailRequired=Wymagany email do stworzenia nowego członka
+AdherentMailRequired=Email wymagane, aby utworzyć nowy członek
 MemberSendInformationByMailByDefault=Checkbox wysłać mail z potwierdzeniem do członków jest domyślnie
 ##### LDAP setup #####
 LDAPSetup=Konfiguracja LDAP
@@ -1250,8 +1253,8 @@ LDAPUsersSynchro=Użytkownicy
 LDAPGroupsSynchro=Grupy
 LDAPContactsSynchro=Kontakty
 LDAPMembersSynchro=Członkowie
-LDAPSynchronization=Synchronizacja LDAP
-LDAPFunctionsNotAvailableOnPHP=Funkcje LDAP nie są dostępne w twojej wersji PHP
+LDAPSynchronization=LDAP synchronizacji
+LDAPFunctionsNotAvailableOnPHP=LDAP funkcje nie są availbale w PHP
 LDAPToDolibarr=LDAP -> Dolibarr
 DolibarrToLDAP=Dolibarr -> LDAP
 LDAPNamingAttribute=Wpisz LDAP
@@ -1260,13 +1263,13 @@ LDAPSynchronizeGroups=Synchronizacja Dolibarr grup LDAP
 LDAPSynchronizeContacts=Synchronizacja kontaktów z Dolibarr LDAP
 LDAPSynchronizeMembers=Synchronizacja członków fundacji Dolibarr modułu z LDAP
 LDAPTypeExample=Openldap, Egroupware lub usługi Active Directory
-LDAPPrimaryServer=Serwer podstawowy
-LDAPSecondaryServer=Serwer dodatkowy
-LDAPServerPort=Port serwera
+LDAPPrimaryServer=Podstawowy serwer
+LDAPSecondaryServer=Dodatkowy serwer
+LDAPServerPort=Portu serwera
 LDAPServerPortExample=Standardowy port: 389
-LDAPServerProtocolVersion=Wersja protokołu
+LDAPServerProtocolVersion=Protokół wersji
 LDAPServerUseTLS=Użyj TLS
-LDAPServerUseTLSExample=Twój serwer LDAP używa TLS
+LDAPServerUseTLSExample=Twoja użyć serwera LDAP TLS
 LDAPServerDn=Serwer DN
 LDAPAdminDn=Administrator DN
 LDAPAdminDnExample=Complete DN (ex: cn=adminldap,dc=society,dc=Kompletny DN (dawniej: cn= adminldap, dc= społeczeństwa, dc= com)
@@ -1277,13 +1280,13 @@ LDAPGroupDn=Grupy DN
 LDAPGroupDnExample=Complete DN (ex: ou=groups,dc=society,dc=Kompletny DN (dawniej: ou= Grupy, dc= społeczeństwa, dc= com)
 LDAPServerExample=Adres serwera (np. localhost, 192.168.0.2, LDAPS: / / ldap.example.com /)
 LDAPServerDnExample=Complete DN (ex: dc=company,dc=Kompletny DN (dawniej: dc= firma, dc= com)
-LDAPPasswordExample=Hasło administratora
-LDAPDnSynchroActive=Synchronizacja użytkowników i grup
-LDAPDnSynchroActiveExample=Synchronizacja LDAP do Dolibarr lub Dolibar do LDAP
-LDAPDnContactActive=Synchronizacja kontaktów
+LDAPPasswordExample=Administrator hasło
+LDAPDnSynchroActive=Użytkownicy i grupy synchronizacji
+LDAPDnSynchroActiveExample=LDAP do Dolibarr lub Dolibarr do synchronizacji LDAP
+LDAPDnContactActive=Kontakty 'synchronizacji
 LDAPDnContactActiveYes=Aktywowany synchronizacji
 LDAPDnContactActiveExample=Aktywowany / Unactivated synchronizacji
-LDAPDnMemberActive=Synchronizacja członków
+LDAPDnMemberActive=Posłów synchronizacji
 LDAPDnMemberActiveExample=Aktywowany / Unactivated synchronizacji
 LDAPContactDn=Dolibarr kontaktów "DN
 LDAPContactDnExample=Complete DN (ex: ou=contacts,dc=society,dc=Kompletny DN (dawniej: ou= Kontakty, DC= społeczeństwa, dc= com)
@@ -1300,20 +1303,20 @@ LDAPContactObjectClassListExample=Lista objectClass definiowania rekordu atrybut
 LDAPMemberTypeDn=Dolibarr członka typu DN
 LDAPMemberTypeDnExample=Complete DN (ex: ou=type_members,dc=society,dc=Kompletny DN (dawniej: ou= type_members, dc= społeczeństwa, dc= com)
 LDAPTestConnect=Test połączenia LDAP
-LDAPTestSynchroContact=Test synchronizacji kontaktów
-LDAPTestSynchroUser=Test synchronizacji użytkownika
-LDAPTestSynchroGroup=Test synchronizacji grupy
-LDAPTestSynchroMember=Test synchronizacji członka
-LDAPTestSearch= Test wyszukiwania LDAP
-LDAPSynchroOK=Udany test synchronizacji
-LDAPSynchroKO=Test synchronizacji nie powiódł się
-LDAPSynchroKOMayBePermissions=Test synchronizacji nie powiódł się. Upewnij się, że z serwerem jest poprawnie skonfigurowane i dopuść aktualizacje LDAP.
-LDAPTCPConnectOK=Połączenie TCP do serwera LDAP powiodło się (Serwer=%s, Port=%s)
-LDAPTCPConnectKO=Połączenie TCP do serwera LDAP nie powiodło się (Serwer=%s, Port=%s)
-LDAPBindOK=Połączenie/Autoryzacja na serwerze LDAP powiodło się (Serwer=%s, Port=%s, Admin=%s, Hasło=%s)
-LDAPBindKO=Połączenie/Autoryzacja na serwerze LDAP nie powiodło się (Serwer=%s, Port=%s, Admin=%s, Hasło=%s)
-LDAPUnbindSuccessfull=Odłączenie powiodło się
-LDAPUnbindFailed=Odłączenie od serwera nie powiodło się.
+LDAPTestSynchroContact=Test kontaktu synchronizacji
+LDAPTestSynchroUser=Test użytkownika synchronizacji
+LDAPTestSynchroGroup=Test grupy synchronizacji
+LDAPTestSynchroMember=Test członka synchronizacji
+LDAPTestSearch= Testowanie wyszukiwania LDAP
+LDAPSynchroOK=Synchronizacja udany test
+LDAPSynchroKO=Niepowodzenie testu synchronizacji
+LDAPSynchroKOMayBePermissions=Niepowodzenie testu synchronizacji. Upewnij się, że łączenie się z serwerem jest poprawnie skonfigurowany i pozwala LDAP udpates
+LDAPTCPConnectOK=TCP connect to LDAP server successful (Server=%s, Port=TCP podłączyć do serwera LDAP powiodło się (Server= %s, port= %s)
+LDAPTCPConnectKO=TCP connect to LDAP server failed (Server=%s, Port=TCP podłączyć do serwera LDAP nie powiodło się (Server= %s, port= %s)
+LDAPBindOK=Połącz / Authentificate na serwerze LDAP sukces (Server =% s, port =% s, Admin =% s, hasło =% s)
+LDAPBindKO=Connect/Authentificate to LDAP server failed (Server=%s, Port=%s, Admin=%s, Password=Kontakt / Authentificate do serwera LDAP nie powiodło się (Server= %s, port= %s, %s= Administrator, Password= %s)
+LDAPUnbindSuccessfull=Odłącz sukces
+LDAPUnbindFailed=Odłącz nie
 LDAPConnectToDNSuccessfull=Połączenie au DN ( %s) Russie
 LDAPConnectToDNFailed=Połączenie au DN ( %s) choue
 LDAPSetupForVersion3=Skonfigurowane dla serwera LDAP w wersji 3
@@ -1330,7 +1333,7 @@ LDAPFieldFullname=Imię i nazwisko
 LDAPFieldFullnameExample=Przykład: cn
 LDAPFieldPassword=Hasło
 LDAPFieldPasswordNotCrypted=Hasło nie zaszyfrowane
-LDAPFieldPasswordCrypted=Hasło zaszyfrowane
+LDAPFieldPasswordCrypted=Zaszyfrowane hasło
 LDAPFieldPasswordExample=Przykład: userPassword
 LDAPFieldCommonName=Nazwa zwyczajowa
 LDAPFieldCommonNameExample=Przykład: cn
@@ -1340,18 +1343,18 @@ LDAPFieldFirstName=Imię
 LDAPFieldFirstNameExample=Przykład: GivenName
 LDAPFieldMail=Adres e-mail
 LDAPFieldMailExample=Przykład: poczta
-LDAPFieldPhone=Firmowy numer telefonu
-LDAPFieldPhoneExample=Przykład: 000 000 000
-LDAPFieldHomePhone=Prywatny numer telefonu
-LDAPFieldHomePhoneExample=Przykład: 000 000 000
+LDAPFieldPhone=Profesjonalne numer telefonu
+LDAPFieldPhoneExample=Przykład: telephonenumber
+LDAPFieldHomePhone=Osobiste numer telefonu
+LDAPFieldHomePhoneExample=Przykład: homephone
 LDAPFieldMobile=Telefon komórkowy
-LDAPFieldMobileExample=Przykład: 000 000 000
+LDAPFieldMobileExample=Przykład: telefon komórkowy
 LDAPFieldFax=Numer faksu
-LDAPFieldFaxExample=Przykład: 00 000 00 00
+LDAPFieldFaxExample=Przykład: facsimiletelephonenumber
 LDAPFieldAddress=Ulica
 LDAPFieldAddressExample=Przykład: ulica
 LDAPFieldZip=Kod pocztowy
-LDAPFieldZipExample=Przykład: 00-000
+LDAPFieldZipExample=Przykład: KodPocztowy
 LDAPFieldTown=Miasto
 LDAPFieldTownExample=Przykład: l
 LDAPFieldCountry=Kraj
@@ -1360,19 +1363,19 @@ LDAPFieldDescription=Opis
 LDAPFieldDescriptionExample=Przykład: opis
 LDAPFieldNotePublic=Notatka publiczna
 LDAPFieldNotePublicExample=Przykład: notatka publiczna
-LDAPFieldGroupMembers= Grupa członków
+LDAPFieldGroupMembers= Członkowie grupy
 LDAPFieldGroupMembersExample= Przykład: uniqueMember
 LDAPFieldBirthdate=Data urodzenia
-LDAPFieldBirthdateExample=Przykład: rrrr-mm-dd
+LDAPFieldBirthdateExample=Przykład:
 LDAPFieldCompany=Firma
 LDAPFieldCompanyExample=Przykład: o
 LDAPFieldSid=SID
 LDAPFieldSidExample=Przykład: objectSid
 LDAPFieldEndLastSubscription=Data zakończenia subskrypcji
-LDAPFieldTitle=Post/Funkcja
+LDAPFieldTitle=Post / Funkcja
 LDAPFieldTitleExample=Przykład: tytuł
 LDAPParametersAreStillHardCoded=Parametry LDAP nadal sztywno (w klasie kontaktowego)
-LDAPSetupNotComplete=Konfiguracja LDAP jest niekompletna (przejdź do kolejnych zakładek)
+LDAPSetupNotComplete=LDAP konfiguracji nie są kompletne (przejdź na innych kartach)
 LDAPNoUserOrPasswordProvidedAccessIsReadOnly=Nr hasło administratora lub przewidziane. LDAP dostęp będą anonimowe i w trybie tylko do odczytu.
 LDAPDescContact=Ta strona pozwala na zdefiniowanie atrybutów LDAP nazwę LDAP drzewa dla każdego danych na Dolibarr kontakty.
 LDAPDescUsers=Ta strona pozwala na zdefiniowanie atrybutów LDAP nazwę LDAP drzewa dla każdego danych na Dolibarr użytkowników.
@@ -1399,30 +1402,30 @@ CacheByClient=Cache przez przeglądarkę
 CompressionOfResources=Kompresja odpowiedzi HTTP
 TestNotPossibleWithCurrentBrowsers=Taka automatyczna detekcja nie jest możliwe przy obecnych przeglądarek
 ##### Products #####
-ProductSetup=Ustawienie modułu produktów
+ProductSetup=Produkty konfiguracji modułu
 ServiceSetup=Konfiguracja modułu Usługi
-ProductServiceSetup=Ustawienie modulu Produktów i Usług
-NumberOfProductShowInSelect=Maksymalna liczba produktów na liście rozwijanej (0=bez limitu)
+ProductServiceSetup=Produkty i usługi moduły konfiguracyjne
+NumberOfProductShowInSelect=Max number of products in combos select lists (0=Maksymalna liczba produktów combo wybrać list (0= bez limitu)
 ConfirmDeleteProductLineAbility=Potwierdzenie usunięcia linii produkuje w formach
 ModifyProductDescAbility=Personalizacja opisy produkowanych w formach
 ViewProductDescInFormAbility=Wizualizacja opisy produktów w formach (inaczej jak popup tooltip)
-MergePropalProductCard=Aktywuj w karcie produktu dołączony usług / Files opcję scalania dokument PDF produktu do wniosku PDF Azur, jeśli produkt / usługa jest we wniosku
+MergePropalProductCard=Activate in product/service Attached Files tab an option to merge product PDF document to proposal PDF azur if product/service is in the proposal
 ViewProductDescInThirdpartyLanguageAbility=Wizualizacja produktów opisów w thirdparty języku
-UseMaskOnClone=Użyj kolejnego numeru referencyjnego dla produktu, gdy klonujesz produkt%s (dostępne jeżeli skonfigurowano maskę)
+UseMaskOnClone=Use product next ref when we clone a product%s (available if mask configured)
 UseSearchToSelectProductTooltip=Także jeśli masz dużą ilość produktu (> 100 000), można zwiększyć prędkość przez ustawienie stałej PRODUCT_DONOTSEARCH_ANYWHERE do 1 w Setup-> Inne. Szukaj zostaną ograniczone do początku łańcucha.
 UseSearchToSelectProduct=Użyj wyszukiwarki aby wybrać produkt (zamiast listy rozwijanej).
 UseEcoTaxeAbility=Wsparcie Eko-Taxe (WEEE)
-SetDefaultBarcodeTypeProducts=Domyślny kod kreskowy używany dla produktów
+SetDefaultBarcodeTypeProducts=Domyślny kod kreskowy typu użyć do produktów
 SetDefaultBarcodeTypeThirdParties=Domyślny kod kreskowy typu do użytku dla osób trzecich
-UseUnits=Zdefiniować jednostkę miary dla ilości w czasie zamówienia, wniosku lub faktura linii edycji
-ProductCodeChecker= Moduł do generowania i sprawdzania kodów dla produktów i usług
-ProductOtherConf= Konfiguracja Produktu/Usługi
+UseUnits=Define a unit of measure for Quantity during order, proposal or invoice lines edition
+ProductCodeChecker= Moduł do generowania kodu produktu i sprawdzeniu (produkt lub usługa)
+ProductOtherConf= Konfiguracja produktu / usługi
 IsNotADir=To nie katalog!
 ##### Syslog #####
-SyslogSetup=Konfiguracja modułu Logi
+SyslogSetup=Syslog konfiguracji modułu
 SyslogOutput=Zaloguj wyjście
 SyslogSyslog=Syslog
-SyslogFacility=Obiekt
+SyslogFacility=Funkcja
 SyslogLevel=Poziom
 SyslogSimpleFile=Plik
 SyslogFilename=Nazwa pliku i ścieżka
@@ -1430,28 +1433,28 @@ YouCanUseDOL_DATA_ROOT=Możesz użyć DOL_DATA_ROOT / dolibarr.log do pliku w Do
 ErrorUnknownSyslogConstant=Stała %s nie jest znany syslog stałej
 OnlyWindowsLOG_USER=System Windows obsługuje tylko LOG_USER
 SyslogSentryDSN=Sentry DSN
-SyslogSentryFromProject=DSN z projektu Sentry
+SyslogSentryFromProject=DSN from your Sentry project
 ##### Donations #####
-DonationsSetup=Konfiguracja modułu darowizn
+DonationsSetup=Darowizna konfiguracji modułu
 DonationsReceiptModel=Szablon otrzymania wpłaty
 ##### Barcode #####
-BarcodeSetup=Konfiguracja kodu kreskowego
+BarcodeSetup=Barcode konfiguracji
 PaperFormatModule=Format druku modułu
 BarcodeEncodeModule=Barcode typ kodowania
-UseBarcodeInProductModule=Użuj kodów kreskowych dla produktów
+UseBarcodeInProductModule=Wykorzystanie kodów kreskowych dla produktów
 CodeBarGenerator=Generator kodów kreskowych
 ChooseABarCode=Nie określono generatora
 FormatNotSupportedByGenerator=Format nie jest obsługiwany przez ten generator
 BarcodeDescEAN8=Kod kreskowy typu EAN8
-BarcodeDescEAN13=Kod kreskowy typu EAN13
+BarcodeDescEAN13=Kodów kreskowych typu EAN13
 BarcodeDescUPC=Kod kreskowy typu UPC
 BarcodeDescISBN=Kod kreskowy typu ISBN
 BarcodeDescC39=Kod kreskowy typu C39
 BarcodeDescC128=Kod kreskowy typu C128
-BarcodeDescDATAMATRIX=Kodów kreskowych typu Datamatrix
-BarcodeDescQRCODE=Kod kreskowy lub kod QR
-GenbarcodeLocation=Narzędzie lini poleceń do generowania generowani akodów kreskowyh (używane przez wewnętrzny silnik dla niektórych typów kodów). Musi być kompatybilny z "genbarcode".<br>Przykładowo: /usr/local/bin/genbarcode
-BarcodeInternalEngine=Silnik wewnętrzny
+BarcodeDescDATAMATRIX=Barcode of type Datamatrix
+BarcodeDescQRCODE=Barcode of type QR code
+GenbarcodeLocation=Bar generowanie kodu narzędzie wiersza polecenia (używany przez silnik wewnętrznego dla niektórych typów kodów kreskowych). Muszą być zgodne z "genbarcode". <br> Na przykład: / usr / local / bin / genbarcode
+BarcodeInternalEngine=Silnik wewnętrznego
 BarCodeNumberManager=Manager auto zdefiniować numery kodów kreskowych
 ##### Prelevements #####
 WithdrawalsSetup=Wycofanie konfiguracji modułu
@@ -1466,47 +1469,47 @@ MailingEMailFrom=Nadawca wiadomości e-mail (Z) na e-maile wysyłane przez e-mai
 MailingEMailError=Powrót e-mail (Errors-do) na e-maile z błędami
 MailingDelay=Sekund po wysłaniu czekać następnej wiadomości
 ##### Notification #####
-NotificationSetup=Ustawianie modułu powiadamiania EMail
+NotificationSetup=Napisz e-mail konfiguracji modułu powiadomienia
 NotificationEMailFrom=Nadawca wiadomości e-mail (Z) na e-maile wysyłane do powiadomień
-ListOfAvailableNotifications=Lista wydarzeń można ustawić powiadomienia, dla wszystkich thirdparty (przejdź do thirdparty karty do instalacji) lub poprzez ustawienie stałego email (lista zależy od aktywowanych modułów)
+ListOfAvailableNotifications=Lista wydarzeń można ustawić powiadomienia w odniesieniu do każdego thirdparty (przejdź do thirdparty karty, aby ustawić) lub ustawiając stały adres e-mail (Lista modułów zależy od aktywowanych)
 FixedEmailTarget=Naprawiono docelowy adres e-mail
 ##### Sendings #####
-SendingsSetup=Wysyłanie konfiguracji modułu
+SendingsSetup=Konfiguracja modułu wysyłek
 SendingsReceiptModel=Wysyłanie otrzymania modelu
 SendingsNumberingModules=Sendings numerowania modułów
-SendingsAbility=Arkusze Pomoc wysyłki dla dostaw klientów
+SendingsAbility=Obsługuj arkusze wysyłkowe dla dostaw do klientów
 NoNeedForDeliveryReceipts=W większości przypadków, sendings wpływy są wykorzystywane zarówno jako karty klienta dostaw (wykaz produktów wysłać) i arkusze, które są recevied i podpisana przez klienta. Więc produktu dostaw wpływów jest powielony funkcji i rzadko jest włączony.
-FreeLegalTextOnShippings=Dowolny tekst na przesyłkach
+FreeLegalTextOnShippings=Dowolny tekst sprawie przemieszczania
 ##### Deliveries #####
 DeliveryOrderNumberingModules=Produkty dostaw otrzymania numeracji modułu
 DeliveryOrderModel=Produkty dostaw otrzymania modelu
-DeliveriesOrderAbility=Wsparcie dostaw produktów wpływy
+DeliveriesOrderAbility=Obsługuj wysyłki przychodzące z dostawami produktów
 FreeLegalTextOnDeliveryReceipts=Wolny tekst na dostawy wpływy
 ##### FCKeditor #####
 AdvancedEditor=Zaawansowany edytor
 ActivateFCKeditor=Uaktywnij FCKeditor za:
 FCKeditorForCompany=WYSIWIG tworzenie / edycja spółek opis i notatki
 FCKeditorForProduct=WYSIWIG tworzenie / edycja produktów / usług "opis i notatki
-FCKeditorForProductDetails=WYSIWIG tworzenie / edycja produktów szczegóły linii dla wszystkich podmiotów (wnioski, zamówienia, faktury, itp <font class="warning">...). Ostrzeżenie: Korzystanie z tej opcji, w ​​tym przypadku nie jest poważnie zalecane, gdyż może to spowodować problemy z znaków specjalnych i strona formatowania, gdy buduje PDF akta.</font>
+FCKeditorForProductDetails=WYSIWIG tworzenie / edycja produktów szczegóły linii dla wszystkich podmiotów (wnioski, zamówienia, faktury, itp ...). <font class="warning">Ostrzeżenie: Użycie tej opcji w tym przypadku nie jest zalecane, ponieważ może poważnie to spowodować problemy z znaków specjalnych i strona formatowania, gdy buduje PDF pliki.</font>
 FCKeditorForMailing= WYSIWIG tworzenie / edycja wiadomości
-FCKeditorForUserSignature=WYSIWIG tworzenie/edycja podpisu użytkownika
-FCKeditorForMail=WYSIWIG tworzenie/edycja dla wszystkich eMail (z wyjątkiem Narzędzia -> eMailing)
+FCKeditorForUserSignature=WYSIWIG tworzenie / edycja podpisu użytkownika
+FCKeditorForMail=WYSIWIG tworzenie / edycja dla wszystkich wiadomości (z wyjątkiem Outils-> e-maila)
 ##### OSCommerce 1 #####
 OSCommerceErrorConnectOkButWrongDatabase=Połączenie udało, ale baza danych nie patrzy się osCommerce danych (klucz %s nie został znaleziony w tabeli %s).
 OSCommerceTestOk=Połączenie do serwera ' %s' w bazie danych " %s" z użytkownika' %s' powiodło się.
 OSCommerceTestKo1=Połączenie do serwera ' %s' sukces, ale baza danych' %s' nie mógł zostać osiągnięty.
 OSCommerceTestKo2=Połączenie do serwera ' %s' z użytkownika' %s' nie powiodło się.
 ##### Stock #####
-StockSetup=Konfiguracja modułu magazynu
-UserWarehouse=Wykorzystanie użytkowników osobiste magazyny
-IfYouUsePointOfSaleCheckModule=W przypadku korzystania z modułu Point of Sale (POS dostarczonych przez moduł domyślnie lub innego modułu zewnętrznego), ta konfiguracja może być ignorowane przez swój punkt modułu sprzedaż. Większość punktem modułów sprzedaży są przeznaczone do tworzenia natychmiast fakturę i zmniejszyć czas, opcje są domyślnie co tutaj. Tak więc, jeśli chcesz, czy nie mieć spadek akcji podczas rejestracji sprzedać z twojego punktu sprzedaży, sprawdź również swój moduł POS skonfigurować.
+StockSetup=Magazyn konfiguracji modułu
+UserWarehouse=Korzystanie użytkowników osobiste magazyny
+IfYouUsePointOfSaleCheckModule=W przypadku korzystania z modułu Point of Sale (moduł POS dostarczony domyślnie lub inny moduł zewnętrzny), ta konfiguracja może być ignorowana przez twój moduł POS. Większość modułów POS jest zaprojektowana, aby wystawiać natychmiast fakturę i obniżać zapas domyślnie, czyli podobnie jak poniższe opcje. Tak więc, jeśli chcesz lub nie, aby twój moduł POS obsłużył zmniejszanie zapasu na magazynie podczas rejestrowania sprzedaży, sprawdź konfigurację twojego modułu POS.
 ##### Menu #####
 MenuDeleted=Menu skreślony
 TreeMenu=Drzewo menu
 Menus=Menu
 TreeMenuPersonalized=Spersonalizowane menu
 NewMenu=Nowe menu
-MenuConf=Konfiguracja menu
+MenuConf=Menu konfiguracji
 Menu=Wybór menu
 MenuHandler=Menu obsługi
 MenuModule=Źródło modułu
@@ -1531,10 +1534,10 @@ DeleteMenu=Usuń w menu
 ConfirmDeleteMenu=Czy na pewno chcesz usunąć <b>menu %s?</b>
 FailedToInitializeMenu=Nie można zainicjowac menu
 ##### Tax #####
-TaxSetup=Podatki, podatki socjalne i fiskalne i dywidendy konfiguracji modułu
+TaxSetup=Taxes, social or fiscal taxes and dividends module setup
 OptionVatMode=Opcja d'exigibilit de TVA
-OptionVATDefault=Metoda kasowa
-OptionVATDebitOption=Zasada memoriału
+OptionVATDefault=Kasowej
+OptionVATDebitOption=Memoriału
 OptionVatDefaultDesc=VAT jest należny: <br> - W dniu dostawy / płatności za towary <br> - Na opłatę za usługi
 OptionVatDebitOptionDesc=VAT jest należny: <br> - W dniu dostawy / płatności za towary <br> - Na fakturze (obciążenie) na usługi
 SummaryOfVatExigibilityUsedByDefault=Czas VAT exigibility domyślnie wg wybranej opcji:
@@ -1548,23 +1551,23 @@ Sell=Sprzedać
 InvoiceDateUsed=Faktura używany termin
 YourCompanyDoesNotUseVAT=Twoja firma została określona, aby nie używać VAT (Start - Ustawienia - Firma / fundacji), więc nie ma VAT opcje konfiguracji.
 AccountancyCode=Kod Księgowość
-AccountancyCodeSell=Kod rachunku sprzedaży
-AccountancyCodeBuy=Kod konta zakupu
+AccountancyCodeSell=Rachunek sprzedaży. kod
+AccountancyCodeBuy=Kup konto. kod
 ##### Agenda #####
 AgendaSetup=Działania i porządku konfiguracji modułu
 PasswordTogetVCalExport=Klucz do wywozu zezwolić na link
 PastDelayVCalExport=Nie starsze niż eksport przypadku
 AGENDA_USE_EVENT_TYPE=Typy użyć zdarzenia (udało się menu Setup -> słownik -> Rodzaj wydarzenia porządku obrad)
-AGENDA_USE_EVENT_TYPE_DEFAULT=Ustaw automatycznie tę wartość domyślną dla typu zdarzenia w przypadku tworzenia postaci
+AGENDA_USE_EVENT_TYPE_DEFAULT=Set automatically this default value for type of event into event create form
 AGENDA_DEFAULT_FILTER_TYPE=Ustaw automatycznie tego typu imprezy w filtrze wyszukiwania widzenia porządku obrad
 AGENDA_DEFAULT_FILTER_STATUS=Ustaw automatycznie tego stanu dla wydarzeń w filtrze wyszukiwania widzenia porządku obrad
 AGENDA_DEFAULT_VIEW=Która karta chcesz otworzyć domyślnie po wybraniu menu Agendę
 ##### ClickToDial #####
-ClickToDialDesc=Moduł ten pozwala na wykonanie numery telefonów kliknąć. Kliknięcie tej ikony spowoduje zadzwonić, aby telefon zadzwonić pod numer telefonu. To może być użyty do wywołania systemu call center z Dolibarr, że może zadzwonić pod numer telefonu na systemie SIP, na przykład.
+ClickToDialDesc=Moduł ten pozwala dodać ikonę po numer telefonu Dolibarr kontakty. Kliknięcie na tę ikonę, będzie połączenie z serveur z danego adresu URL można zdefiniować poniżej. Może to być wykorzystane, aby połączyć się z Call Center z systemu Dolibarr, że mogą dzwonić na numer telefonu SIP system przykład.
 ClickToDialUseTelLink=Używaj tylko łącza "tel:" na numery telefonów
 ClickToDialUseTelLinkDesc=Użyj tej metody, jeśli użytkownicy mają softphone lub interfejs oprogramowania zainstalowanego na tym samym komputerze, niż przeglądarce i nazywa się po kliknięciu na link w przeglądarce, które zaczynają się od "tel:". Jeśli potrzebujesz pełne rozwiązanie serwera (bez potrzeby instalacji oprogramowania lokalnego), należy ustawić na "Nie" i wypełnić następne pole.
 ##### Point Of Sales (CashDesk) #####
-CashDesk=Punkt sprzedaży
+CashDesk=Punktów sprzedaży
 CashDeskSetup=Kasa konfiguracji modułu
 CashDeskThirdPartyForSell=Domyślnie ogólny osób trzecich do korzystania z Sells
 CashDeskBankAccountForSell=Środki pieniężne na rachunku do korzystania sprzedaje
@@ -1585,16 +1588,16 @@ WebServicesDesc=Umożliwiając tym module Dolibarr stać się serwis serwera św
 WSDLCanBeDownloadedHere=Hasło pliku WSDL świadczonych serviceses można pobrać tutaj
 EndPointIs=SOAP klienci muszą wysłać swoje wnioski do Dolibarr punktem końcowym dostępne na Url
 ##### API ####
-ApiSetup=Ustawianie modułu API
-ApiDesc=Po włączeniu tego moduły Dolibarr stanie się serwerem REST zapewniającym różne usługi internetowe
-KeyForApiAccess=Klucz do użycia API (parametr "api_key")
-ApiProductionMode=Włącz tryb produkcyjny (będzie to włączyć a skrytek korzystanie z usług zarządzania)
-ApiEndPointIs=Mozesz uzuskać do stęp do API poprzez URL
-ApiExporerIs=Można zwiedzić API pod adresem URL
-OnlyActiveElementsAreExposed=Tylko elementy z włączonych modułów sa widoczne
-ApiKey=Klucz do API
+ApiSetup=API module setup
+ApiDesc=By enabling this module, Dolibarr become a REST server to provide miscellaneous web services.
+KeyForApiAccess=Key to use API (parameter "api_key")
+ApiProductionMode=Enable production mode
+ApiEndPointIs=You can access to the API at url
+ApiExporerIs=You can explore the API at url
+OnlyActiveElementsAreExposed=Only elements from enabled modules are exposed
+ApiKey=Key for API
 ##### Bank #####
-BankSetupModule=Ustawienie modułu bankowego
+BankSetupModule=Bank konfiguracji modułu
 FreeLegalTextOnChequeReceipts=Darmowy czek tekst na wpływy
 BankOrderShow=Wyświetl rachunków bankowych dla krajów stosujących &quot;Szczegółowe numer bankowy&quot;
 BankOrderGlobal=Ogólny
@@ -1622,14 +1625,14 @@ ProjectsSetup=Projekt instalacji modułu
 ProjectsModelModule=Wzór dokumentu projektu sprawozdania
 TasksNumberingModules=Zadania numeracji modułu
 TaskModelModule=Zadania raporty modelu dokumentu
-UseSearchToSelectProject=Użyj pól wyboru Autouzupełnianie projektu (zamiast przy użyciu pola listy)
+UseSearchToSelectProject=Use autocompletion fields to choose project (instead of using a list box)
 ##### ECM (GED) #####
 ECMSetup = Konfiguracja GED
-ECMAutoTree = Zobacz także automatyczne drzewa folderów i dokumentów
+ECMAutoTree = Automatyczne drzewa folderów i dokumentów
 ##### Fiscal Year #####
-FiscalYears=Lata fiskalne
+FiscalYears=Lat podatkowych
 FiscalYear=Rok podatkowy
-FiscalYearCard=Karta roku fiskalnego
+FiscalYearCard=Fiskalny rok karty
 NewFiscalYear=Nowy rok podatkowy
 EditFiscalYear=Edycja rok obrotowy
 OpenFiscalYear=Otwórz rok obrotowy
@@ -1662,42 +1665,43 @@ SomethingMakeInstallFromWebNotPossible=Instalacja zewnętrznych modułów za pom
 SomethingMakeInstallFromWebNotPossible2=Z tego powodu, proces uaktualnienia tutaj opisany jest jednie krokiem manualnym, który wykonać może uprawniony użytkownik.
 InstallModuleFromWebHasBeenDisabledByFile=Instalacja zewnętrznych modułów z poziomu aplikacji została wyłączona przez administratora. Musisz poprosić go o usunięcie pliku <strong>%s</strong> aby włączyć odpowiednią funkcję.
 ConfFileMuseContainCustom=Instalacja zewnętrznego modułu z poziomu aplikacji, zapisuje pliki w katlogu <strong>%s</strong>. Abu katalog ten był przetwarzany przez Dolibarr, musisz skonfigurować Twój plik <strong>conf/conf.php</strong>by w opcji <br>- <strong>$dolibarr_main_url_root_alt</strong> ustawić wartość <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> ustawić wartość <strong>"%s/custom"</strong>
-HighlightLinesOnMouseHover=Podświetlaj linie tabeli, gdy kursor myszy jest nad nimi
-HighlightLinesColor=Zaznacz kolor linii, gdy przechodzi myszy nad (zachować puste bez podświetlenia)
+HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
+HighlightLinesColor=Color of highlight line when mouse move passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Kolor odnośników
-PressF5AfterChangingThis=Naciśnij F5 na klawiaturze po zmianie tej wartości, aby zmiany przyniosły efekt
-NotSupportedByAllThemes=Pracuje z tematem Eldy, ale nie jest wpierany przez wszsytkie tematy
-BackgroundColor=Kolor tła
-TopMenuBackgroundColor=Kolor tła dla górnego menu
-LeftMenuBackgroundColor=Kolor tła dla lewego menu
-BackgroundTableTitleColor=Kolor tła dla lini nagłówka w tabeli
-BackgroundTableLineOddColor=kolor tła dla nieparzystych wierszy tabeli
-BackgroundTableLineEvenColor=Kolor tła nawet linie tabeli
-MinimumNoticePeriod=Minimalny okres wypowiedzenia (Żądanie urlopu musi być wykonane przed tym opóźnieniem)
-NbAddedAutomatically=Liczba dni dodawanych do liczników użytkowników (automatycznie) w każdym miesiącu
-EnterAnyCode=To pole zawiera odniesienie do identyfikacji linii. Wprowadź dowolną wartość z wyboru, ale bez znaków specjalnych.
-UnicodeCurrency=Wpisz tutaj między szelkami, lista liczby bajtów, które stanowią symbol waluty. Dla exemple: za $, wprowadź [36] - na Brazylia Real R $ [82,36] - za €, wprowadź [8364]
-PositionIntoComboList=Pozycja linii na liście rozwijanej
-SellTaxRate=Stawka podatku od sprzedaży
-RecuperableOnly=Tak na VAT "Non Perçue powtórnego przetwarzania" dedykowany do jakiegoś stanu we Francji. Przechowywać wartość na "Nie" we wszystkich innych przypadkach.
-UrlTrackingDesc=Jeśli dostawca lub usługi transportowe oferują stronę lub witrynę internetową, aby sprawdzić status swojej przesyłki, można ją wpisać tutaj. Możesz użyć przycisk {TrackID} do parametrów URL więc system zastąpi go wartość numeru śledzenia użytkownika weszła w karcie przesyłki.
-OpportunityPercent=Podczas tworzenia okazję, będzie określona szacunkowo ilość projektu / ołowiu. Według stanu okazji, kwota ta może być pomnożyć przez tego wskaźnika do oceny globalnej ilości wszystkie możliwości mogą generować. Wartość jest procent (od 0 do 100).
-TemplateForElement=Rekord ten szablon jest przeznaczony do której elementem
-TypeOfTemplate=Typ szablonu
-TemplateIsVisibleByOwnerOnly=Szablon jest widziany jedynie przez właściciela
+PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
+NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
+BackgroundColor=Background color
+TopMenuBackgroundColor=Background color for Top menu
+LeftMenuBackgroundColor=Background color for Left menu
+BackgroundTableTitleColor=Background color for Table title line
+BackgroundTableLineOddColor=Background color for odd table lines
+BackgroundTableLineEvenColor=Background color for even table lines
+MinimumNoticePeriod=Minimum notice period (Your leave request must be done before this delay)
+NbAddedAutomatically=Number of days added to counters of users (automatically) each month
+EnterAnyCode=This field contains a reference to identify line. Enter any value of your choice, but without special characters.
+UnicodeCurrency=Enter here between braces, list of byte number that represent the currency symbol. For exemple: for $, enter [36] - for brazil real R$ [82,36] - for €, enter [8364]
+PositionIntoComboList=Position of line into combo lists
+SellTaxRate=Sale tax rate
+RecuperableOnly=Yes for VAT "Non Perçue Récupérable" dedicated for some state in France. Keep value to "No" in all other cases.
+UrlTrackingDesc=If the provider or transport service offer a page or web site to check status of your shipping, you can enter it here. You can use the key {TRACKID} into URL parameters so the system will replace it with value of tracking number user entered into shipment card.
+OpportunityPercent=When you create an opportunity, you will defined an estimated amount of project/lead. According to status of opportunity, this amount may be multiplicated by this rate to evaluate global amount all your opportunities may generate. Value is percent (between 0 and 100).
+TemplateForElement=This template record is dedicated to which element
+TypeOfTemplate=Type of template
+TemplateIsVisibleByOwnerOnly=Template is visible by owner only
 FixTZ=Strefa czasowa fix
-FillFixTZOnlyIfRequired=Przykład: +2 (wypełnić tylko w przypadku problemu doświadczył)
-ExpectedChecksum=Oczekiwana suma kontrolna
-CurrentChecksum=Aktualna suma kontrolna
-MailToSendProposal=Wysłać propozycję klientowi
-MailToSendOrder=Wysłać zamówienie klienta
-MailToSendInvoice=Wysłać fakturę klienta
-MailToSendShipment=Wysłać dostawę
-MailToSendIntervention=Wysłać interwencję
-MailToSendSupplierRequestForQuotation=Aby wysłać wniosek do notowania dostawca
-MailToSendSupplierOrder=Wysłać zamówienie dostawcy
-MailToSendSupplierInvoice=Wysłać fakturę dostawcy
-MailToThirdparty=Wysłać wiadomość e-mail ze strony kontrahenta
+FillFixTZOnlyIfRequired=Example: +2 (fill only if problem experienced)
+ExpectedChecksum=Expected Checksum
+CurrentChecksum=Current Checksum
+MailToSendProposal=To send customer proposal
+MailToSendOrder=To send customer order
+MailToSendInvoice=To send customer invoice
+MailToSendShipment=To send shipment
+MailToSendIntervention=To send intervention
+MailToSendSupplierRequestForQuotation=To send quotation request to supplier
+MailToSendSupplierOrder=To send supplier order
+MailToSendSupplierInvoice=To send supplier invoice
+MailToThirdparty=To send email from thirdparty page
 ByDefaultInList=Pokaż domyślnie w widoku listy
 YouUseLastStableVersion=Używasz ostatniej stabilej wersji
 TitleExampleForMajorRelease=Przykład wiadomości można użyć, aby ogłosić to główne wydanie (prosimy używać go na swoich stronach internetowych)
diff --git a/htdocs/langs/pl_PL/agenda.lang b/htdocs/langs/pl_PL/agenda.lang
index 9f7837bfc06d8dabb3eab2475fc094cce4cc873d..cdc18893a869e9358726793a52760ba82ff40640 100644
--- a/htdocs/langs/pl_PL/agenda.lang
+++ b/htdocs/langs/pl_PL/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Wszystkie zdarzenia/zadania
 ViewCal=Pokaż miesiąc
 ViewDay=Pokaż dzień
 ViewWeek=Pokaż tydzień
+ViewYear=Year view
 ViewPerUser=Za wglądem użytkownika
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Widok ze zdefiniowanymi filtrami
 AutoActions= Automatyczne wypełnianie
 AgendaAutoActionDesc= Określ tu wydarzenia, dla których Dolibarr ma tworzyć automatycznie wpisy w agendzie. Jeżeli nic nie jest zaznaczone (domyślnie), w agendzie zostaną utworzone wpisy wyłącznie dla działań ręcznych.
diff --git a/htdocs/langs/pl_PL/banks.lang b/htdocs/langs/pl_PL/banks.lang
index 6423bcdb7a8bb648881a9ce2148c189b1d321b46..f225c89460c79d3a81a973b5c669fee583ac8688 100644
--- a/htdocs/langs/pl_PL/banks.lang
+++ b/htdocs/langs/pl_PL/banks.lang
@@ -112,9 +112,9 @@ BankLineConciliated=Transakcja rekoncyliowana
 CustomerInvoicePayment=Płatności klienta
 CustomerInvoicePaymentBack=Płatności z powrotem klienta
 SupplierInvoicePayment=Płatności dostawcy
-WithdrawalPayment=Wycofanie płatności
+WithdrawalPayment=Wycofana płatność
 SocialContributionPayment=Płatność za ZUS/podatek
-FinancialAccountJournal=Rachunek finansowy dziennika
+FinancialAccountJournal=Dziennik rachunku finansowego
 BankTransfer=Przelew bankowy
 BankTransfers=Przelewy bankowe
 TransferDesc=Przy przelewie z jednego konta do drugiego, Dolibarr napisze dwa rekordy (ujemne dla konta źródłowego i kredytu na rachunku docelowym, o tej samej kwocie. Te same etykiety i daty będą stosowane w odniesieniu do tej transakcji)
@@ -127,7 +127,7 @@ ConfirmValidateCheckReceipt=Czy na pewno chcesz, aby potwierdzić odbiór tej ko
 DeleteCheckReceipt=Usunąć to przyjęcie czeku?
 ConfirmDeleteCheckReceipt=Czy jesteś, że chcesz usunąć to przyjęcie czeku?
 BankChecks=Czeki bankowe
-BankChecksToReceipt=Dziennik konta finansowego
+BankChecksToReceipt=Czeki czekają za wpłatę
 ShowCheckReceipt=Pokaż sprawdzić otrzymania wpłaty
 NumberOfCheques=Nr czeku
 DeleteTransaction=Usuń transakcje
diff --git a/htdocs/langs/pl_PL/bills.lang b/htdocs/langs/pl_PL/bills.lang
index dd2f791eaa6081bf6c40e8d1e231f07de1bbbb9c..6dfa732558e0236c25069ecccadee174b7fba00c 100644
--- a/htdocs/langs/pl_PL/bills.lang
+++ b/htdocs/langs/pl_PL/bills.lang
@@ -6,7 +6,7 @@ BillsCustomer=Faktura klientów
 BillsSuppliers=Faktury dostawców
 BillsCustomersUnpaid=Niezapłacone faktury klientów
 BillsCustomersUnpaidForCompany=Nie zapłacone faktury klientów dla %s
-BillsSuppliersUnpaid=Nie zapłacone faktury dostawców
+BillsSuppliersUnpaid=Niezapłacone faktury dostawców
 BillsSuppliersUnpaidForCompany=Nie zapłacone faktury dostawców dla %s
 BillsLate=Opóźnienia w płatnościach
 BillsStatistics=Statystyki faktur klientów
@@ -21,8 +21,8 @@ InvoiceDepositDesc=Tego rodzaju faktura jest wystawiana, gdy została dana zalic
 InvoiceProForma=Proforma faktury
 InvoiceProFormaAsk=Proforma faktury
 InvoiceProFormaDesc=<b>Faktura proforma</b> jest obrazem prawdziwej faktury, ale nie ma jeszcze wartości księgowych.
-InvoiceReplacement=Zastąpienie faktury
-InvoiceReplacementAsk=Zastąpienie faktury do faktury
+InvoiceReplacement=Duplikat faktury
+InvoiceReplacementAsk=Duplikat faktury do faktury
 InvoiceReplacementDesc=<b>Zastąpienie faktury</b> służy do anulowania i/lub całkowitego zastąpienia faktury dla, której nie odnotowano wpłaty. <br><br> Uwaga: Można zastąpić tylko faktury bez zapłaty. Jeżeli korekta nie jest jeszcze zamknięta/ukończona, zostanie ona automatycznie zamknięta i przeniesiona do "porzucone".
 InvoiceAvoir=Nota kredytowa
 InvoiceAvoirAsk=Edytuj notatkę do skorygowania faktury
@@ -62,10 +62,10 @@ PaidBack=Spłacona
 DeletePayment=Usuń płatności
 ConfirmDeletePayment=Czy na pewno chcesz usunąć tę płatność?
 ConfirmConvertToReduc=Czy chcesz przemienić tą notę kredytu do absolutnej zniżki? <br> Kwota kredytu będzie zapisana wśród wszystkich zniżek i będzie możliwe wykorzystanie ich jako zniżki dla obecnych lub przyszłych faktur dla tego klienta.
-SupplierPayments=Dostawcy płatności
+SupplierPayments=Płatności dostawców
 ReceivedPayments=Otrzymane płatności
 ReceivedCustomersPayments=Zaliczki otrzymane od klientów
-PayedSuppliersPayments=Płatności zapłaci dostawcom
+PayedSuppliersPayments=Płatności zapłacone dostawcom
 ReceivedCustomersPaymentsToValid=Odebrane płatności klientów do potwierdzenia
 PaymentsReportsForYear=Raporty płatności dla %s
 PaymentsReports=Raporty płatności
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Płatności już wykonane
 PaymentsBackAlreadyDone=Zwroty płatności już wykonane
 PaymentRule=Zasady płatności
 PaymentMode=Typ płatności
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Typ płatności
 PaymentTerm=Zasady płatności
 PaymentConditions=Warunki płatności
@@ -92,8 +94,8 @@ CreateCreditNote=Stwórz notę kredytową
 AddBill=Tworzenie faktury lub noty kredytowej
 AddToDraftInvoices=Dodaj do szkicu faktury
 DeleteBill=Usuń fakturę
-SearchACustomerInvoice=Szukaj klienta faktury
-SearchASupplierInvoice=Szukaj dostawcy faktury
+SearchACustomerInvoice=Szukaj faktury klienta
+SearchASupplierInvoice=Szukaj faktury dostawcy
 CancelBill=Anulowanie faktury
 SendRemindByMail=Wyślij przypomnienie / ponaglenie mailem
 DoPayment=Wykonaj płatność
@@ -140,7 +142,7 @@ ActionsOnBill=Działania na fakturze
 NewBill=Nowa faktura
 LastBills=Ostatnia %s faktur
 LastCustomersBills=Ostatnia %s odbiorców faktur
-LastSuppliersBills=Ostatnia %s dostawców faktur
+LastSuppliersBills=Ostatnie %s faktury dostawców
 AllBills=Wszystkie faktury
 OtherBills=Inne faktury
 DraftBills=Projekt faktur
@@ -169,8 +171,8 @@ ConfirmClassifyPaidPartiallyReasonProductReturnedDesc=Ten wybór jest używany,
 ConfirmClassifyPaidPartiallyReasonOtherDesc=Użyj tego wyboru, jeśli wszystkie inne nie odpowiadać, na przykład w następującej sytuacji: <br> - Opłaty nie są kompletne, ponieważ niektóre produkty zostały wysłane z powrotem <br> - Kwota zbyt ważne, gdyż twierdził, rabat został zapomniany <br> We wszystkich przypadkach kwota ponad twierdził musi być rozwiązany w księgowości system poprzez stworzenie kredytu notatkę.
 ConfirmClassifyAbandonReasonOther=Inny
 ConfirmClassifyAbandonReasonOtherDesc=Wybór ten będzie używany we wszystkich innych przypadkach. Na przykład wówczas. gdy planujesz utworzyć fakturę zastępującą.
-ConfirmCustomerPayment=Czy to potwierdzić paiement wejściowych <b>dla %s %s?</b>
-ConfirmSupplierPayment=Czy możesz potwierdzić tej płatności wejście <b>dla% s%</b> s?
+ConfirmCustomerPayment=Czy potwierdzasz płatność wejściową na kwotę <b>%s</b> %s?
+ConfirmSupplierPayment=Czy potwierdzasz płatność wejściową na kwotę <b>%s</b> <b>%s</b>?
 ConfirmValidatePayment=Êtes-vous sur de vouloir Valider ce paiment, aucune zmiany n'est możliwe une fois le paiement ważne?
 ValidateBill=Zatwierdź fakturę
 UnvalidateBill=Niepotwierdzona faktura
@@ -184,10 +186,11 @@ ShowInvoice=Pokaż fakturę
 ShowInvoiceReplace=Pokaż faktury zastępcze
 ShowInvoiceAvoir=Pokaż notę kredytową
 ShowInvoiceDeposit=Pokaż złożeniu faktury
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Pokaż płatności
-AlreadyPaid=Już zapłacone
-AlreadyPaidBack=Już zwrócona
-AlreadyPaidNoCreditNotesNoDeposits=Już wypłacone (bez not kredytowych i depozytów)
+AlreadyPaid=Zapłacono
+AlreadyPaidBack=Zwrócono
+AlreadyPaidNoCreditNotesNoDeposits=Zapłacono (bez not kredytowych i depozytów)
 Abandoned=Porzucone
 RemainderToPay=Nieopłacone
 RemainderToTake=Pozostała kwota do podjęcia
@@ -208,7 +211,7 @@ ToBill=Do rachunku
 RemainderToBill=Pozostająca do rachunku
 SendBillByMail=Wyślij fakturę pocztą e-mail
 SendReminderBillByMail=Wyślij przypomnienie pocztą e-mail
-RelatedCommercialProposals=Podobne propozycje handlowe
+RelatedCommercialProposals=Podobne oferty handlowe
 MenuToValid=Do ważnych
 DateMaxPayment=Płatności należne przed
 DateEcheance=Ze względu terminu
@@ -221,6 +224,7 @@ NonPercuRecuperable=Niepodlegające zwrotowi
 SetConditions=Ustaw warunki płatności
 SetMode=Ustaw tryb płatności
 Billed=Billed
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Szablon faktury
 RepeatableInvoices=Szablon faktur
 Repeatable=Szablon
@@ -233,9 +237,9 @@ CustomersInvoicesAndPayments=Faktury i płatności klienta
 ExportDataset_invoice_1=Klient faktury i faktury listę "linii
 ExportDataset_invoice_2=Faktury i płatności klienta
 ProformaBill=Proforma Bill:
-Reduction=Zniżka
+Reduction=Rabat
 ReductionShort=Zniżka
-Reductions=Obniżki
+Reductions=Rabaty
 ReductionsShort=Zniżka
 Discounts=Zniżki
 AddDiscount=Stwórz zniżkę
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Kwota ta została opuszczonych (klient mówi się, że z
 HelpAbandonOther=Kwota ta została opuszczonych, ponieważ był to błąd (zły klient otrzymuje fakturę lub inny na przykład)
 IdSocialContribution=ID płatności składki ZUS/podatku
 PaymentId=ID Płatności
+PaymentRef=Payment ref.
 InvoiceId=ID Faktury
 InvoiceRef=Nr referencyjny faktury
 InvoiceDateCreation=Data utworzenia faktury
@@ -283,7 +288,7 @@ CloneInvoice=Powiel fakturę
 ConfirmCloneInvoice=Czy jesteś pewny, że chcesz powielić tą fakturę: <b>%s</b>?
 DisabledBecauseReplacedInvoice=Działania wyłączone, ponieważ na fakturze została zastąpiona
 DescTaxAndDividendsArea=Obszar ten stanowi podsumowanie wszystkich płatności dokonanych na specjalne wydatki. Tylko zapisy z płatności w czasie ustalonym roku zostały tu uwzględnione.
-NbOfPayments=Nb płatności
+NbOfPayments=Ilość płatności
 SplitDiscount=Split zniżki w dwóch
 ConfirmSplitDiscount=Czy na pewno chcesz podzielić tym rabat <b>w %s %s</b> na 2 niższe zniżki?
 TypeAmountOfEachNewDiscount=Wejście kwoty dla każdego z dwóch części:
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Pozwiązane z: faktura dostawca
 LatestRelatedBill=Ostatnie pokrewne faktury
 WarningBillExist=Ostrzeżenie, jedna lub więcej faktur istnieje
 MergingPDFTool=Narzędzie do dzielenia PDF
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Niezwłocznie
@@ -393,10 +402,11 @@ Reported=Opóźniony
 DisabledBecausePayments=Nie możliwe, ponieważ istnieją pewne płatności
 CantRemovePaymentWithOneInvoicePaid=Nie można usunąć płatności, ponieważ istnieje przynajmniej na fakturze sklasyfikowane płatne
 ExpectedToPay=Oczekuje płatności
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Wypłacana przez płatność
-ClosePaidInvoicesAutomatically=Sklasyfikować "Paid" wszystkie standardowe, sytuacja lub faktury zamienne wypłacane w całości.
+ClosePaidInvoicesAutomatically=Sklasyfikować jako "Zapłacone" wszystkie  standardowe faktury lub duplikaty faktur wpłacone w całości.
 ClosePaidCreditNotesAutomatically=Klasyfikująsubstancje "Paid" wszystkie noty kredytowe w całości zwrócona.
-AllCompletelyPayedInvoiceWillBeClosed=Wszystko faktura bez pozostawać do zapłaty zostanie automatycznie zamknięta do statusu &quot;płatny&quot;.
+AllCompletelyPayedInvoiceWillBeClosed=Wszystkie faktury bez kwoty do zapłaty zostaną automatycznie zamknięte i oznaczone statusem "Zapłacono"
 ToMakePayment=Płacić
 ToMakePaymentBack=Spłacać
 ListOfYourUnpaidInvoices=Lista niezapłaconych faktur
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Uwaga: Ta lista zawiera tylko faktury dla osób trz
 RevenueStamp=Znaczek skarbowy
 YouMustCreateInvoiceFromThird=Ta opcja jest dostępna tylko podczas tworzenia faktury z zakładki "klienta" z thirdparty
 PDFCrabeDescription=Faktura Crabe modelu. Pełna faktura modelu (VAT Wsparcie opcji, rabaty, warunki płatności, logo, itp. ..)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Zwróć numer w formacie %srrmm-nnnn dla standardowych faktur i %srrmm-nnnn dla not kredytowych, gdzie rr oznacza rok, mm to miesiąc, a nnnn to kolejny niepowtarzalny numer rozpoczynający się od 0
 MarsNumRefModelDesc1=Zwraca numer w formacie %srrmm-nnnn dla standardowych faktur, %srrmm-nnnn dla duplikatow faktur, %srrmm-nnnn dla faktur zaliczkowych i %srrmm-nnnn dla not kredytowych, gdzie rr to rok, mm to miesiąc, a nnnn to kolejny niepowtarzalny numer rozpoczynający się od 0
 TerreNumRefModelError=Rachunek zaczynające się od $ syymm już istnieje i nie jest kompatybilne z tym modelem sekwencji. Usuń go lub zmienić jego nazwę, aby włączyć ten moduł.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=Sytuacja ta jest ostateczna.
 CantBeLessThanMinPercent=Postęp nie może być mniejsza niż wartość w poprzedniej sytuacji.
 NoSituations=Brak otwartych sytuacji
 InvoiceSituationLast=Ostatnia i główna faktura
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/pl_PL/boxes.lang b/htdocs/langs/pl_PL/boxes.lang
index 3136ff3b3384af74374dafa13c28567f36806f67..6ee6e6ec623680f144f0be037cd035e655a9e73a 100644
--- a/htdocs/langs/pl_PL/boxes.lang
+++ b/htdocs/langs/pl_PL/boxes.lang
@@ -7,7 +7,7 @@ BoxLastSupplierBills=Ostatnie faktury dostawców
 BoxLastCustomerBills=Ostatnie faktury klienta
 BoxOldestUnpaidCustomerBills=Najstarsze niezapłacone faktury
 BoxOldestUnpaidSupplierBills=Najstarsze niezapłacone faktury dostawcy
-BoxLastProposals=Ostatnia oferta propozycji
+BoxLastProposals=Ostatnie ofery handlowe
 BoxLastProspects=Ostatnie modyfikowani potencjalni klienci
 BoxLastCustomers=Ostatni zmodyfikowani klienci
 BoxLastSuppliers=Ostatni zmodyfikowani dostawcy
@@ -35,9 +35,9 @@ BoxTitleLastCustomers=Ostatni %s zarejestrowani klienci
 BoxTitleLastModifiedSuppliers=%s ostatnio zmodyfikowanych dostawców
 BoxTitleLastModifiedCustomers=%s ostatnio zmodyfikowanych klientów
 BoxTitleLastCustomersOrProspects=Ostatni %s klienci lub prospekty
-BoxTitleLastPropals=Ostatnie %s propozycje
-BoxTitleLastModifiedPropals=Ostatnich %s zmodyfikowanych propozycji
-BoxTitleLastCustomerBills=%s ostatnich faktur klientów
+BoxTitleLastPropals=Ostatnie %s ofert
+BoxTitleLastModifiedPropals=Ostatnich %s zmodyfikowanych ofert
+BoxTitleLastCustomerBills=Ostatnie %s faktury klientów
 BoxTitleLastModifiedCustomerBills=Ostatnich %s zmodyfikowanych faktur klienta
 BoxTitleLastSupplierBills=Ostatnich %s dostawców faktur
 BoxTitleLastModifiedSupplierBills=Ostatnich %s zmodyfikowanych faktur dostawcy
@@ -87,11 +87,12 @@ BoxCustomersInvoicesPerMonth=Ilość faktur w skali miesiąca
 BoxSuppliersInvoicesPerMonth=Faktury dostawcy na miesiąc
 BoxCustomersOrdersPerMonth=Zamówienia klientów miesięcznie
 BoxSuppliersOrdersPerMonth=Zamówienia dla dostawców miesięcznie
-BoxProposalsPerMonth=Propozycje na miesiąc
+BoxProposalsPerMonth=Ofert na miesiąc
 NoTooLowStockProducts=Brak produktów z niską ilością w magazynie
 BoxProductDistribution=Produkty / Usługi 
 BoxProductDistributionFor=Dystrybucja z %s dla %s
 ForCustomersInvoices=Faktury Klientów
 ForCustomersOrders=Zamówienia klientów
-ForProposals=Propozycje
+ForProposals=Oferty
 LastXMonthRolling=Ostnich %s w ubiegłym miesiącu 
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/pl_PL/categories.lang b/htdocs/langs/pl_PL/categories.lang
index a1fc6b823aee0f958c0f431afcb942433c536bac..33d73df66bd4f556d816bc2c86e5b9423a932a75 100644
--- a/htdocs/langs/pl_PL/categories.lang
+++ b/htdocs/langs/pl_PL/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Tag/kategoria produktu
 MembersCategoryShort=Tag/kategoria członków
 SuppliersCategoriesShort=Tagi/kategorie dostawców
 CustomersCategoriesShort=Tagi/kategorie klientów
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Kat. klient/poten. klient.
 ProductsCategoriesShort=Tagi/kategorie produktów
 MembersCategoriesShort=Użytkownicy tagów / kategorii
@@ -87,7 +88,7 @@ ThisCategoryHasNoMember=Ta kategoria nie zawiera żadnych członków.
 ThisCategoryHasNoContact=Ta kategoria nie zawiera żadnego kontaktu.
 AssignedToCustomer=Przypisany do klienta
 AssignedToTheCustomer=Przypisany do klienta
-InternalCategory=Inernal kategorii
+InternalCategory=Wewnętrzna kategoria
 CategoryContents=Tag / kategoria treści
 CategId=Tag / ID kategorii
 CatSupList=Lista tagów/kategorii dostawcy
diff --git a/htdocs/langs/pl_PL/commercial.lang b/htdocs/langs/pl_PL/commercial.lang
index 70877933beb29af307555521df9bc8e7b9f570a5..469823c7afebed3019231e982817e644ed1627d7 100644
--- a/htdocs/langs/pl_PL/commercial.lang
+++ b/htdocs/langs/pl_PL/commercial.lang
@@ -1,8 +1,8 @@
 # Dolibarr language file - Source file is en_US - commercial
-Commercial=Komercyjne
-CommercialArea=Powierzchnia handlowa
-CommercialCard=Karta komercyjna
-CustomerArea=Klienci obszaru
+Commercial=Handel
+CommercialArea=Obszar zamówień
+CommercialCard=Karta zamówienia
+CustomerArea=Obszar klienta
 Customer=Klient
 Customers=Klienci
 Prospect=Widok
diff --git a/htdocs/langs/pl_PL/companies.lang b/htdocs/langs/pl_PL/companies.lang
index 4a9881d25b01d6cf310ca01ef33d2e591bfa9c05..98cd4e7be2e9392a6877e4135b8428e256595486 100644
--- a/htdocs/langs/pl_PL/companies.lang
+++ b/htdocs/langs/pl_PL/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (RC)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (IF)
 ProfId4MA=Id prof. 4 (CNSS)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (RFC).
 ProfId2MX=Prof Id 2 (R.. P. IMSS)
@@ -280,7 +280,7 @@ NoContactDefinedForThirdParty=Brak zdefiniowanych kontaktów dla tego kontrahent
 NoContactDefined=Brak zdefinowanych kontaktów
 DefaultContact=Domyślny kontakt/adres
 AddCompany=Stwórz firmę
-AddThirdParty=Dodaj stronę trzecią
+AddThirdParty=Dodaj kontrahenta
 DeleteACompany=Usuń firmę
 PersonalInformations=Prywatne dane osobowe
 AccountancyCode=Kod księgowy
@@ -311,11 +311,11 @@ ShowContact=Pokaż kontakt
 ContactsAllShort=Wszystkie (bez filtra)
 ContactType=Typ kontaktu
 ContactForOrders=Kontakt dla zamówienia
-ContactForProposals=Kontakt dla propozycji
+ContactForProposals=Kontakt dla oferty
 ContactForContracts=Kontakt dla kontraktu
 ContactForInvoices=Kontakt dla faktury
 NoContactForAnyOrder=Ten kontakt nie jest kontaktem dla żadnego zamówienia
-NoContactForAnyProposal=Ten kontakt nie jest kontaktem dla żadnej propozycji biznesowej
+NoContactForAnyProposal=Ten kontakt nie jest kontaktem dla żadnej oferty handlowej
 NoContactForAnyContract=Ten kontakt nie jest kontaktem dla żadnego kontraktu
 NoContactForAnyInvoice=Ten kontakt nie jest kontaktem dla żadnej faktury
 NewContact=Nowy kontakt
diff --git a/htdocs/langs/pl_PL/compta.lang b/htdocs/langs/pl_PL/compta.lang
index 1381886374d4856b4264b63fef43d61af46840e0..98cc3cae0bc25b95e03494e7683b2f57576cbb8e 100644
--- a/htdocs/langs/pl_PL/compta.lang
+++ b/htdocs/langs/pl_PL/compta.lang
@@ -1,6 +1,6 @@
 # Dolibarr language file - Source file is en_US - compta
 Accountancy=Księgowość
-AccountancyCard=Księgowość karty
+AccountancyCard=Karta księgowości
 Treasury=Skarbiec
 MenuFinancial=Finanse
 TaxModuleSetupToModifyRules=Przejdź do <a href="%s">konfiguracji modułu Podatki</a> zmodyfikować zasady obliczania
@@ -24,7 +24,7 @@ Accountsparent=Konta rodzica
 BillsForSuppliers=Rachunki dla dostawców
 Income=Przychody
 Outcome=Rezultat
-ReportInOut=Przychody / Rezultat
+ReportInOut=Przychody/Koszty
 ReportTurnover=Obrót
 PaymentsNotLinkedToInvoice=Płatność nie dowiązana do żadnej faktury, więc nie dowiązana do żadnego kontrahenta
 PaymentsNotLinkedToUser=Płatnośc nie dowiązana do żadnego użytkownika
@@ -53,8 +53,8 @@ LT2SupplierES=Zakupy IRPF
 LT1CustomerES=RE sprzedaży
 LT1SupplierES=RE zakupów
 VATCollected=VAT zebrane
-ToPay=Aby zapłacić
-ToGet=Aby powrócić
+ToPay=Do zapłaty
+ToGet=Do zwrotu
 SpecialExpensesArea=Obszar dla wszystkich specjalnych płatności
 TaxAndDividendsArea=Obszar podatków, składek społecznych/podatków fiskalnych i dywident
 SocialContribution=Opłata ZUS lub podatek
@@ -66,7 +66,7 @@ MenuSocialContributions=ZUS/podatek
 MenuNewSocialContribution=Nowa opłata ZUS/podatek
 NewSocialContribution=Nowa opłata ZUS/podatek
 ContributionsToPay=Opłata ZUS/podatek do zapłacenia
-AccountancyTreasuryArea=Księgowość / Skarbu obszarze
+AccountancyTreasuryArea=Obszar księgowości
 AccountancySetup=Konfiguracja księgowości
 NewPayment=Nowa płatność
 Payments=Płatności
@@ -79,15 +79,15 @@ ListPayment=Wykaz płatności
 ListOfPayments=Wykaz płatności
 ListOfCustomerPayments=Lista płatności klientów
 ListOfSupplierPayments=Lista płatności dostawców
-DateStartPeriod=Data okres rozruchu
-DateEndPeriod=Data zakończenia okresu
+DateStartPeriod=Data początku okresu
+DateEndPeriod=Data końca okresu
 NewVATPayment=Nowa płatność za podatek VAT
 newLT1Payment=Nowa płatność podatku 2
 newLT2Payment=Nowa płatność podatku 3
-LT1Payment=Płatnośc podatku 2
+LT1Payment=Płatność podatku 2
 LT1Payments=Platności podatku 2
 LT2Payment=Płatność podatku 3
-LT2Payments=Płątności podatku 3
+LT2Payments=Płatności podatku 3
 newLT1PaymentES=Nowa płatność RE
 newLT2PaymentES=Nowa płatnośc IRPF - podatek dochodowy od osób fizycznych w Hiszpani
 LT1PaymentES=RE: Płatność
@@ -103,9 +103,9 @@ ShowVatPayment=Pokaż płatności za podatek VAT
 TotalToPay=Razem do zapłaty
 TotalVATReceived=Razem VAT otrzymana
 CustomerAccountancyCode=Kod księgowości klienta
-SupplierAccountancyCode=Kod księgowosci dostawcy
-CustomerAccountancyCodeShort=Kod konta klienta
-SupplierAccountancyCodeShort=Kod konta dostawcy
+SupplierAccountancyCode=Kod rachunkowy dostawcy
+CustomerAccountancyCodeShort=Kod księg. klienta
+SupplierAccountancyCodeShort=Kod rach. dost.
 AccountNumberShort=Numer konta
 AccountNumber=Numer konta
 NewAccount=Nowe konto
@@ -147,14 +147,15 @@ AnnualByCompaniesInputOutputMode=Bilan et des recettes dpenses, dtail par tiers,
 SeeReportInInputOutputMode=Voir le <b>rapport %sRecettes-Dpenses %s comptabilit</b> dit pour un <b>Caisse de</b> calcul sur les paiements effectivement raliss
 SeeReportInDueDebtMode=Voir le <b>rapport %sCrances-dettes %s comptabilit</b> dit <b>d'engagement</b> pour un calcul sur les factures mises
 RulesAmountWithTaxIncluded=- Kwoty podane są łącznie z podatkami
-RulesResultDue=- Obejmuje zaległe faktury, koszty, VAT, darowizny niezaleznie czy zostały one zapłacone. Obejmuje również wypłacane pensje. <br> - Na podstawie daty zatwierdzania faktur i VAT oraz terminów płatności za wydatki. Dla wynagrodzeń wynagrodzenia określonych w module wynagrodzeń, używany jest termin wypłaty.
-RulesResultInOut=- Obejmuje rzeczywiste płatności dokonywane za faktury, koszty, podatek VAT oraz wynagrodzenia. <br> - W oparciu o terminy płatności faktur, kosztów, podatku VAT oraz wynagrodzeń. Data darowizn dla darowizn.
+RulesResultDue=- Obejmuje zaległe faktury, koszty, podatek VAT, darowizny niezaleznie czy zostały one zapłacone. Obejmuje również wypłacane pensje. <br> - Podstawą jest data zatwierdzania faktur i VAT oraz terminów płatności za wydatki. Dla wynagrodzeń określonych w module wynagrodzeń brana jest pod uwagę data wypłaty wynagrodzeń.
+RulesResultInOut=- Obejmuje rzeczywiste płatności dokonywane za faktury, koszty, podatek VAT oraz wynagrodzenia. <br> Opiera się na  datach płatności faktur, wygenerowania kosztów, podatku VAT oraz wynagrodzeń. Dla darowizn brana jest pod uwagę data przekazania darowizny.
 RulesCADue=- Zawiera numery faktur klienta, niezależnie czy są płacone, czy też nie. <br> - Jest oparte na podstawie daty zatwierdzenia tych faktur. <br>
 RulesCAIn=- Obejmuje wszystkie skuteczne płatności faktur otrzymanych od klientów. <br> - Jest on oparty na dacie płatności tych faktur <br>
 DepositsAreNotIncluded=- Faktury depozytów są ani też
 DepositsAreIncluded=- Faktury depozytowe są zawarte
 LT2ReportByCustomersInInputOutputModeES=Raport osób trzecich IRPF
 LT1ReportByCustomersInInputOutputModeES=Sprawozdanie trzecim RE partii
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Sprawozdanie VAT klienta gromadzone i wypłacane
 VATReportByCustomersInDueDebtMode=Sprawozdanie VAT klienta gromadzone i wypłacane
 VATReportByQuartersInInputOutputMode=Sprawozdanie stawki VAT pobierane i wypłacane
@@ -197,23 +198,23 @@ InvoiceDispatched=Wysłane faktury
 AccountancyDashboard=Podsumowanie Księgowość
 ByProductsAndServices=Przez produkty i usługi
 RefExt=Ref Zewnętrzne
-ToCreateAPredefinedInvoice=Aby utworzyć predefiniowany fakturę, utworzyć standardowy fakturę następnie, bez sprawdzania, kliknij na przycisk "Convert to predefiniowanym faktury".
+ToCreateAPredefinedInvoice=Aby utworzyć predefiniowaną fakturę, należy utworzyć standardową fakturę, a następnie bez jej zatwierdzania kliknąć na przycisk "Konwertuj do predefiniowanej faktury".
 LinkedOrder=Link do zamówienia
 Mode1=Metoda 1
 Mode2=Metoda 2
-CalculationRuleDesc=Aby obliczyć całkowity podatek VAT, nie ma dwóch metod: <br> Metoda 1 jest zaokrąglenie vat na każdej linii, a następnie ich zsumowanie. <br> Metoda 2 jest zsumowanie wszystkich vat na każdej linii, a następnie zaokrąglenie wyniku. <br> Efekt końcowy może różni się od kilku centów. Domyślnym trybem jest <b>tryb% s.</b>
-CalculationRuleDescSupplier=W zależności od dostawcy, wybrać odpowiednią metodę stosującą tą samą zasadę obliczania i uzyskać teaki sam wynik, jak oczekiwany przez dostawcę.
+CalculationRuleDesc=Aby obliczyć całkowity podatek VAT, można wykorzystać jedną z dwóch metod: <br> Metoda 1 polega na zaokrągleniu VAT dla każdej pozycji, a następnie ich zsumowaniu. <br> Metoda 2 polega na zsumowaniu wszystkich VAT z każdej pozycji, a następnie zaokrągleniu wyniku. <br> Efekt końcowy może różnić się o kilka groszy. Domyślnym trybem jest tryb <b>%s</b>.
+CalculationRuleDescSupplier=W zależności od dostawcy, wybierz odpowiednią metodę, aby dodać podobną zasadę i otrzymać podobny wynik oczekiwany przez dostawcę.
 TurnoverPerProductInCommitmentAccountingNotRelevant=Raport obroty na produkcie, w przypadku korzystania z trybu <b>rachunkowości gotówki,</b> nie ma znaczenia. Raport ten jest dostępny tylko w przypadku korzystania z trybu <b>zaangażowanie rachunkowości</b> (patrz konfiguracja modułu księgowego).
 CalculationMode=Tryb Obliczanie
-AccountancyJournal=Kod Księgowość czasopisma
+AccountancyJournal=Dziennik kodów księgowości
 ACCOUNTING_VAT_SOLD_ACCOUNT=Domyślny kod rachunkowości dla poboru podatku VAT (VAT od sprzedaży)
 ACCOUNTING_VAT_BUY_ACCOUNT=Domyślny kod księgowości dla odzyskiwania VAT (VAT od zakupu)
-ACCOUNTING_VAT_PAY_ACCOUNT=Domyślny kod księgowości dla płacenia VAT
+ACCOUNTING_VAT_PAY_ACCOUNT=Domyślny kod księgowości dla płatności za podatek VAT
 ACCOUNTING_ACCOUNT_CUSTOMER=Kod księgowości domyślnie dla thirdparties klientów
 ACCOUNTING_ACCOUNT_SUPPLIER=Kod Księgowość domyślnie dla thirdparties dostawca
-CloneTax=Powiel opłatę ZUS/podatek
+CloneTax=Powiel opłatę za ZUS/podatek
 ConfirmCloneTax=Potwierdź powielenie płatności za ZUS/podatek
-CloneTaxForNextMonth=Sklonować go na następny miesiąc
+CloneTaxForNextMonth=Powiel to na następny miesiąc
 SimpleReport=Prosty raport
 AddExtraReport=Raport rozszerzony
 OtherCountriesCustomersReport=Raport o klientach zagranicznych
diff --git a/htdocs/langs/pl_PL/contracts.lang b/htdocs/langs/pl_PL/contracts.lang
index 1753ebe71c90e81a7a6a34fc9b2fa79b259224ff..72aab48bb3b7bcecd638df31aa7b761075a4805f 100644
--- a/htdocs/langs/pl_PL/contracts.lang
+++ b/htdocs/langs/pl_PL/contracts.lang
@@ -1,7 +1,7 @@
 # Dolibarr language file - Source file is en_US - contracts
 ContractsArea=Obszar kontraktów
 ListOfContracts=Lista kontraktów
-LastModifiedContracts=W ostatnim% s zmodyfikowane umowy
+LastModifiedContracts=Ostatnie %s zmodyfikowanych kontraktów
 AllContracts=Wszystkie umowy
 ContractCard=Zamówienie karty
 ContractStatus=Statu kontraktu
@@ -20,7 +20,7 @@ ServiceStatusClosed=Zamknięte
 ServicesLegend=Usługi legendy
 Contracts=Kontrakty
 ContractsSubscriptions=Umowy/Subskrypcje
-ContractsAndLine=Kontrakty i linia umów
+ContractsAndLine=Kontrakty i pozycje kontraktów
 Contract=Kontrakt
 ContractLine=Pozycja kontraktu
 Closing=Zamknięcie
@@ -68,27 +68,27 @@ DateStartPlanned=Planowana data rozpoczęcia
 DateStartPlannedShort=Planowana data rozpoczęcia
 DateEndPlanned=Planowana data zakończenia
 DateEndPlannedShort=Planowana data zakończenia
-DateStartReal=Real data rozpoczęcia
-DateStartRealShort=Real data rozpoczęcia
-DateEndReal=Real data zakończenia
-DateEndRealShort=Real data zakończenia
+DateStartReal=Rzeczywista data rozpoczęcia
+DateStartRealShort=Rzeczywista data rozpoczęcia
+DateEndReal=Rzeczywista data zakończenia
+DateEndRealShort=Rzeczywista data zakończenia
 NbOfServices=Nb usług
 CloseService=Zamknij usługi
 ServicesNomberShort=Usługa %s (s)
-RunningServices=Uruchamianie usług
+RunningServices=Uruchomione usługi
 BoardRunningServices=Minął prowadzenie usług
 ServiceStatus=Status usługi
-DraftContracts=Projekty budowlane
+DraftContracts=Szkice kontaktów
 CloseRefusedBecauseOneServiceActive=Umowa nie może zostać zamknięty, gdyż istnieje co najmniej jeden serwis otwarty na nim
-CloseAllContracts=Zamknij wszystkie umowy
-DeleteContractLine=Usuń umowy linii
-ConfirmDeleteContractLine=Czy na pewno chcesz usunąć tę linię zamówienia?
+CloseAllContracts=Zamknij wszystkie pozycje kontraktu
+DeleteContractLine=Usuń pozycję z kontraktu
+ConfirmDeleteContractLine=Czy na pewno chcesz usunąć tę pozycję z kontraktu?
 MoveToAnotherContract=Przenieś usługi do innego kontraktu.
 ConfirmMoveToAnotherContract=Wybrałem nowy kontrakt docelowy  i potwierdzam chęć przesunięcia tego serwicu do tego kontaktu.
 ConfirmMoveToAnotherContractQuestion=Wybierz, w którym istniejące umowy (na tej stronie), które chcesz przenieść tę usługę?
 PaymentRenewContractId=Odnowienie umowy linii (liczba %s)
 ExpiredSince=Data ważności
-RelatedContracts=Związane z nimi umowy
+RelatedContracts=Powiązane kontrakty
 NoExpiredServices=Nie minął aktywne usługi
 ListOfServicesToExpireWithDuration=Lista usług wygasających w ciągu %s dni
 ListOfServicesToExpireWithDurationNeg=Lista usług wygasły z więcej niż% s dni
diff --git a/htdocs/langs/pl_PL/cron.lang b/htdocs/langs/pl_PL/cron.lang
index 97ff7d4e722f5f687cc09808bcaf271f96b872fb..7e197417484b160b0060fc0e05e718484d43b177 100644
--- a/htdocs/langs/pl_PL/cron.lang
+++ b/htdocs/langs/pl_PL/cron.lang
@@ -2,7 +2,7 @@
 # About page
 About = O
 CronAbout = O Cron
-CronAboutPage = Cron o stronie
+CronAboutPage = Strona o cron
 # Right
 Permission23101 = Przeglądaj zaplanowane zadania
 Permission23102 = Stwórz/zaktualizuj zaplanowane zadanie
@@ -13,13 +13,14 @@ CronSetup= Konfiguracja zarządzania zaplanowanymi zadaniami
 URLToLaunchCronJobs=Adres URL, aby sprawdzić i uruchomić wymagane cron, jeśli
 OrToLaunchASpecificJob=Albo sprawdzić i uruchomić określonej pracy
 KeyForCronAccess=Klucz zabezpieczeń dla URL, aby uruchomić cron
-FileToLaunchCronJobs=Wiersz poleceń uruchomić cron
-CronExplainHowToRunUnix=Na środowisku Unix należy użyć następującego crontabie Uruchom wiersz poleceń co 5 minut
-CronExplainHowToRunWin=W systemie Microsoft (tm) environement systemu Windows można użyć narzędzi zaplanowane zadanie do uruchomienia linii poleceń co 5 minut
+FileToLaunchCronJobs=Linia poleceń do uruchamiania zadań crona
+CronExplainHowToRunUnix=W środowisku Unix należy użyć następującego wpisu crontab, aby uruchomić wiersz poleceń co 5 minut
+CronExplainHowToRunWin=W środowisku Microsoft Windows(tm) można użyć narzędzia  Zaplanowane zadania, aby uruchomić linię poleceń co 5 minut
 # Menu
 CronJobs=Zaplanowane zadania
-CronListActive=Lista aktywnych/zaplanowanych zadań
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=Lista wyłączonych zadań
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Ostatni bieg
 CronLastOutput=Ostatnie wyjście prowadzony
@@ -29,16 +30,16 @@ CronCommand=Komenda
 CronList=Zaplanowane zadania
 CronDelete=Usuwanie zaplanowanych zadań
 CronConfirmDelete=Czy jesteś pewny, że chcesz usunąć te zaplanowane zadania?
-CronExecute=Zaplanowanej pracy
+CronExecute=Uruchom zaplanowane zadania
 CronConfirmExecute=Jesteś pewny, że chcesz teraz wykonać te zaplanowane zadania?
 CronInfo=Moduł zaplanowanych zadań pozwala na uruchamianie zadań, ktore były zaplanowane
 CronWaitingJobs=Oczekujące zadania
 CronTask=Zadanie
 CronNone=Żaden
-CronDtStart=Data rozpoczęcia
-CronDtEnd=Data zakończenia
-CronDtNextLaunch=Następna realizacja
-CronDtLastLaunch=Ostatnia egzekucja
+CronDtStart=Not before
+CronDtEnd=Not after
+CronDtNextLaunch=Kolejne wykonanie
+CronDtLastLaunch=Ostatnie wykonanie
 CronFrequency=Częstotliwość
 CronClass=Klasa
 CronMethod=Metoda
@@ -46,27 +47,28 @@ CronModule=Moduł
 CronAction=Akcja
 CronStatus=Status
 CronStatusActive=Włączone
-CronStatusInactive=Niepełnosprawnych
+CronStatusInactive=Wyłączony
 CronNoJobs=Brak zarejestrowanych zadań
 CronPriority=Priorytet
 CronLabel=Opis
-CronNbRun=Nb. szalupa
+CronNbRun=Ilość uruchomień
+CronMaxRun=Max nb. launch
 CronEach=Każdy
-JobFinished=Praca rozpoczął i zakończył
+JobFinished=Zadania uruchomione i zakończone
 #Page card
 CronAdd= Dodaj zadanie
 CronHourStart= Data i godzina rozpoczęcia zadania
 CronEvery=Wykonaj każde zadanie
-CronObject=Instance / Obiekt do tworzenia
+CronObject=Instancja/Obiekt do utworzenia
 CronArgs=Parametry
 CronSaveSucess=Zapisano pomyślnie
 CronNote=Komentarz
-CronFieldMandatory=Pola% s jest obowiązkowe
+CronFieldMandatory=Pole %s jest obowiązkowe
 CronErrEndDateStartDt=Data zakończenia nie może być wcześniejsza niż data rozpoczęcia
 CronStatusActiveBtn=Włączone
 CronStatusInactiveBtn=Wyłączone
 CronTaskInactive=To zadanie jest wyłączone
-CronDtLastResult=Data Ostatnie wyniki
+CronDtLastResult=Data ostanich wyników
 CronId=ID
 CronClassFile=Klasy (filename.class.php)
 CronModuleHelp=Nazwa Dolibarr katalogu modułu (także współpracować z zewnętrznym modułem Dolibarr). <BR> Dla exemple sprowadzić metodę Dolibarr obiektu wyrobów / htdocs / /class/product.class.php <u>produktu,</u> wartość modułu jest <i>produktem</i>
@@ -84,6 +86,6 @@ CronType=Typ zadania
 CronType_method=Wywołanie metody z klasy Dolibarr
 CronType_command=Polecenie powłoki
 CronMenu=Cron
-CronCannotLoadClass=Nie można załadować klasy% s% s lub obiektu
+CronCannotLoadClass=Nie można załadować klasy s% lub obiektu %s
 UseMenuModuleToolsToAddCronJobs=Wejdź w menu "Home - modułów narzędzi - Lista zadań", aby zobaczyć i edytować zaplanowane zadania.
 TaskDisabled=Zadanie wyłączone
diff --git a/htdocs/langs/pl_PL/deliveries.lang b/htdocs/langs/pl_PL/deliveries.lang
index 0b0354d0d6c244ea3065c512a99e1bb831f66119..f24035f276ae1e5375c0e7f5f6f71465c279a3b6 100644
--- a/htdocs/langs/pl_PL/deliveries.lang
+++ b/htdocs/langs/pl_PL/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Czy na pewno chcesz usunąć <b>%s</b> potwierdzeni
 DeliveryMethod=Metoda dostawy
 TrackingNumber=Numer przesyłki
 DeliveryNotValidated=Dostawa nie zatwierdzona
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Nazwisko i podpis:
 ToAndDate=To___________________________________ na ____ / _____ / __________
diff --git a/htdocs/langs/pl_PL/donations.lang b/htdocs/langs/pl_PL/donations.lang
index a4c92adae96372dfaca854be34b0f8fda23b26a3..b48d945bec5c27a99d9026aab6d46ab9ba3ce5ce 100644
--- a/htdocs/langs/pl_PL/donations.lang
+++ b/htdocs/langs/pl_PL/donations.lang
@@ -1,8 +1,8 @@
 # Dolibarr language file - Source file is en_US - donations
 Donation=Darowizna
 Donations=Darowizny
-DonationRef=Darowizna sędzią.
-Donor=Donor
+DonationRef=Nr referencyjny darowizny
+Donor=Darczyńca
 Donors=Darczyńcy
 AddDonation=Tworzenie darowizny
 NewDonation=Nowa darowizna
@@ -14,9 +14,9 @@ PromisesNotValid=Nie potwierdzone obietnice
 PromisesValid=Zatwierdzone obietnice
 DonationsPaid=Darowizny paid
 DonationsReceived=Darowizny otrzymane
-PublicDonation=Publiczne oddawanie
+PublicDonation=Publiczna dotacja
 DonationsNumber=Darowizna numer
-DonationsArea=Darowizny obszarze
+DonationsArea=Obszar dotacji
 DonationStatusPromiseNotValidated=Projekt obietnicy
 DonationStatusPromiseValidated=Zatwierdzona obietnicy
 DonationStatusPaid=Darowizna otrzymana
@@ -34,7 +34,7 @@ SearchADonation=Szukaj darowiznę
 DonationRecipient=Darowizna odbiorca
 ThankYou=Dziękujemy
 IConfirmDonationReception=Odbiorca deklarują odbiór, jako darowiznę, następującej kwoty
-MinimumAmount=Minimalna kwota to% s
+MinimumAmount=Minimalna kwota to %s
 FreeTextOnDonations=Dowolny tekst do wyświetlenia w stopce
 FrenchOptions=Opcje dla Francji
 DONATION_ART200=Pokaż artykuł 200 z CGI, jeśli obawiasz
diff --git a/htdocs/langs/pl_PL/errors.lang b/htdocs/langs/pl_PL/errors.lang
index b9626f5fc59c956cbeec388c34ad9aa255036c2f..0757f7048a36bb25ba75a4f4ac860e702dafea7b 100644
--- a/htdocs/langs/pl_PL/errors.lang
+++ b/htdocs/langs/pl_PL/errors.lang
@@ -4,59 +4,59 @@
 NoErrorCommitIsDone=Nie ma błędu, zobowiązujemy
 # Errors
 ErrorButCommitIsDone=Znalezione błędy, ale mimo to możemy potwierdzić
-ErrorBadEMail=EMail %s jest nie tak
-ErrorBadUrl=Url %s jest nie tak
+ErrorBadEMail=EMail %s jest błędny
+ErrorBadUrl=Url %s jest błędny
 ErrorLoginAlreadyExists=Zaloguj %s już istnieje.
 ErrorGroupAlreadyExists=Grupa %s już istnieje.
 ErrorRecordNotFound=Rekord nie został znaleziony.
-ErrorFailToCopyFile=Nie udało się skopiować pliku <b>'%s</b> do <b>%s</b>.
-ErrorFailToRenameFile=Nie można zmienić nazwy pliku <b>'%s</b> &quot;na&quot; <b>%s</b> strony'.
-ErrorFailToDeleteFile=Nie można usunąć pliku <b>" %s".</b>
-ErrorFailToCreateFile=Nie można utworzyć pliku <b>' %s'.</b>
-ErrorFailToRenameDir=Nie można zmienić nazwy katalogu <b>' %s' do' %s'.</b>
-ErrorFailToCreateDir=Nie można utworzyć katalogu <b>' %s'.</b>
-ErrorFailToDeleteDir=Nie można usunąć katalogu <b>" %s".</b>
+ErrorFailToCopyFile=Nie udało się skopiować pliku '<b>%s</b>' do '<b>%s</b>'.
+ErrorFailToRenameFile=Nie można zmienić nazwy pliku '<b>%s</b>' na '<b>%s</b>'.
+ErrorFailToDeleteFile=Nie można usunąć pliku '<b>%s</b>'.
+ErrorFailToCreateFile=Nie można utworzyć pliku '<b>%s</b>'.
+ErrorFailToRenameDir=Nie można zmienić nazwy katalogu <b>%s</b> na <b>%s</b>.
+ErrorFailToCreateDir=Nie można utworzyć katalogu '<b>%s</b>'.
+ErrorFailToDeleteDir=Nie można usunąć katalogu '<b %s</b>'.
 ErrorFailedToDeleteJoinedFiles=Nie można usunąć, ponieważ jednostka nie ma przystąpiły niektóre pliki. Usuń dołączyć plików.
 ErrorThisContactIsAlreadyDefinedAsThisType=Ten kontakt jest już zdefiniowana jako kontaktowy dla tego typu.
 ErrorCashAccountAcceptsOnlyCashMoney=To konto bankowe jest kontem gotówkowym, więc akceptuje jedynie płatności gotówkowe
-ErrorFromToAccountsMustDiffers=konto źródłowe i docelowe musi być różne
-ErrorBadThirdPartyName=Zła wartość w trzeciej imię
+ErrorFromToAccountsMustDiffers=Konta źródłowe i docelowe muszą być inne
+ErrorBadThirdPartyName=Zła wartość dla nazwy kontrahenta
 ErrorProdIdIsMandatory=%s jest obowiązkowy
-ErrorBadCustomerCodeSyntax=Bad składni kodu klienta
+ErrorBadCustomerCodeSyntax=Zła skadnia dla kodu klienta
 ErrorBadBarCodeSyntax=Zła składnia kodu kreskowego. Może ustawić typ kodu kreskowego lub złe Zdefiniowane maskę kodów kreskowych do numerowania, że ​​nie pasuje do wartości zeskanowany.
 ErrorCustomerCodeRequired=Wymagany kod klienta
 ErrorBarCodeRequired=Wymagany kod kreskowy
 ErrorCustomerCodeAlreadyUsed=Kod klienta jest już używany
 ErrorBarCodeAlreadyUsed=Kod kreskowy już używana
-ErrorPrefixRequired=Prefiks wymagana
+ErrorPrefixRequired=Wymaga przedrostka
 ErrorUrlNotValid=Adres strony internetowej jest nieprawidłowy
-ErrorBadSupplierCodeSyntax=Bad składni kodu dostawcy
-ErrorSupplierCodeRequired=Dostawca kod wymagane
-ErrorSupplierCodeAlreadyUsed=Dostawca kod już używane
-ErrorBadParameters=Bad parametry
+ErrorBadSupplierCodeSyntax=Zła składnia dla kodu dostawcy
+ErrorSupplierCodeRequired=Wymagany kod dostawcy
+ErrorSupplierCodeAlreadyUsed=Kod dostawcy aktualnie używany
+ErrorBadParameters=Złe parametry
 ErrorBadValueForParameter=Wrong wartość '%s &quot;dla parametrów nieprawidłowe&quot; %s spacerem
 ErrorBadImageFormat=Plik obrazu ma nie Obsługiwany format (Twój PHP nie obsługuje funkcje do konwersji obrazów tego formatu)
-ErrorBadDateFormat=Wartość '%s &quot;ma zły format daty
-ErrorWrongDate=Data nie jest poprawny!
+ErrorBadDateFormat=Wartość '%s' ma zły format daty
+ErrorWrongDate=Data nie jest poprawna!
 ErrorFailedToWriteInDir=Nie można zapisać w katalogu %s
 ErrorFoundBadEmailInFile=Found incorrect email syntax for %s lines in file (example line %s with email=Znaleziono nieprawidłowy adres e-mail składni %s linii w pliku (np. z linii email %s= %s)
 ErrorUserCannotBeDelete=Użytkownik nie może być usunięty. Może być to związane jest na Dolibarr podmiotów.
-ErrorFieldsRequired=Niektóre pola wymagane nie były obsadzone.
+ErrorFieldsRequired=Niektóre pola wymagane nie były uzupełnione.
 ErrorFailedToCreateDir=Nie można utworzyć katalogu. Sprawdź, czy serwer WWW użytkownik ma uprawnienia do zapisu do katalogu dokumentów Dolibarr. Jeśli parametr <b>safe_mode</b> jest włączona w tym PHP, czy posiada Dolibarr php pliki do serwera internetowego użytkownika (lub grupy).
-ErrorNoMailDefinedForThisUser=Nie określono mail do tego użytkownika
-ErrorFeatureNeedJavascript=Ta funkcja JavaScript trzeba być aktywowany do pracy. Zmień to w konfiguracji - wyświetlacz.
+ErrorNoMailDefinedForThisUser=Nie określono adresu email dla tego użytkownika
+ErrorFeatureNeedJavascript=Ta funkcja wymaga do pracy aktywowanego JavaScript. Zmień to w konfiguracji - wyświetlanie.
 ErrorTopMenuMustHaveAParentWithId0=Menu typu "góry" nie może mieć dominującej menu. Umieść 0 dominującej w menu lub wybrać z menu typu "Lewy".
 ErrorLeftMenuMustHaveAParentId=Menu typu "Lewy" musi mieć identyfikator rodzica.
 ErrorFileNotFound=Nie znaleziono pliku (Złe drogi, złe uprawnienia lub odmowa dostępu przez openbasedir parametr)
 ErrorDirNotFound=Nie znaleziono katalogu <b>%s</b> (Bad ścieżki złe uprawnienia lub odmowa dostępu przez openbasedir PHP safe_mode lub parametr)
-ErrorFunctionNotAvailableInPHP=<b>Funkcja %s</b> jest wymagane dla tej funkcji, ale nie jest dostępny w tej wersji / konfiguracji PHP.
-ErrorDirAlreadyExists=A katalog o takiej nazwie już istnieje.
+ErrorFunctionNotAvailableInPHP=Funkcja <b>%s</b> jest wymagana dla tej funkcjonalności, ale nie jest dostępna w tej wersji/konfiguracji PHP.
+ErrorDirAlreadyExists=Katalog o takiej nazwie już istnieje.
 ErrorFileAlreadyExists=Plik o takiej nazwie już istnieje.
-ErrorPartialFile=Plik nie otrzymał całkowicie przez serwer.
+ErrorPartialFile=Plik nieodebrany w całości przez serwer.
 ErrorNoTmpDir=Tymczasowy directy %s nie istnieje.
 ErrorUploadBlockedByAddon=Prześlij zablokowane / PHP wtyczki Apache.
 ErrorFileSizeTooLarge=Rozmiar pliku jest zbyt duży.
-ErrorSizeTooLongForIntType=Rozmiar zbyt długo typu int (%s cyfr maksimum)
+ErrorSizeTooLongForIntType=Rozmiar zbyt długi dal typu int (max %s cyfr)
 ErrorSizeTooLongForVarcharType=Rozmiar zbyt długo typu string (%s znaków maksymalnie)
 ErrorNoValueForSelectType=Proszę wypełnić wartości listy wyboru
 ErrorNoValueForCheckBoxType=Proszę wypełnić pole wyboru wartości dla listy
@@ -64,7 +64,7 @@ ErrorNoValueForRadioType=Proszę wypełnić wartość liście radiowej
 ErrorBadFormatValueList=Wartość na tej liście nie może mieć więcej niż jeden <u>przecinek: %s,</u> ale wymagany jest przynajmniej jeden: klucz, wartość
 ErrorFieldCanNotContainSpecialCharacters=<b>Pole %s</b> nie zawiera znaki specjalne.
 ErrorFieldCanNotContainSpecialNorUpperCharacters=<b>Pole% s nie</b> może zawierać znaków specjalnych, ani wielkich liter i nie może zawierać tylko liczby.
-ErrorNoAccountancyModuleLoaded=Nr rachunkowych moduł aktywowany
+ErrorNoAccountancyModuleLoaded=Nie aktywowano modułu księgowości
 ErrorExportDuplicateProfil=Ta nazwa profil już istnieje dla tego zestawu eksportu.
 ErrorLDAPSetupNotComplete=Dolibarr-LDAP dopasowywania nie jest kompletna.
 ErrorLDAPMakeManualTest=A. LDIF plik został wygenerowany w katalogu %s. Spróbuj załadować go ręcznie z wiersza polecenia, aby mieć więcej informacji na temat błędów.
@@ -72,45 +72,45 @@ ErrorCantSaveADoneUserWithZeroPercentage=Nie można zapisać działania z "Statu
 ErrorRefAlreadyExists=Numer identyfikacyjny używany do tworzenia już istnieje.
 ErrorPleaseTypeBankTransactionReportName=Wpisz nazwę banku otrzymania gdy transakcja jest zgłaszane (Format RRRRMM lub RRRRMMDD)
 ErrorRecordHasChildren=Nie można usunąć rekordy, ponieważ ma pewne Childs.
-ErrorRecordIsUsedCantDelete=Nie możesz usuwać rekord. Jest ona już używana lub włączane do innego obiektu.
-ErrorModuleRequireJavascript=JavaScript nie musi być wyłączona do tej pracy funkcji. Aby włączyć / wyłączyć Javascript, przejdź do menu Start-> Ustawienia-> Ekran.
+ErrorRecordIsUsedCantDelete=Nie można usunąc wpisu. Jest on już używany lub dołączony do innego obiektu.
+ErrorModuleRequireJavascript=JavaScript nie może być wyłączony aby korzystać z tej funkcji. Aby włączyć/wyłączyć Javascript, przejdź do menu Start->Ustawienia->Ekran.
 ErrorPasswordsMustMatch=Zarówno wpisane hasło musi się zgadzać się
-ErrorContactEMail=Techniczny błąd. Proszę skontaktować się z administratorem, aby po <b>%s</b> email pl zapewnić <b>%s</b> kod błędu w wiadomości, a nawet lepsze, dodając kopię ekranu strony.
+ErrorContactEMail=Błąd techniczny. Proszę skontaktować się z administratorem, pod adresem email <b>%s</b> podając kod błędu <b>%s</b> w wiadomości, lub lepiej - zrzut ekranu.
 ErrorWrongValueForField=Nieprawidłowa wartość dla <b>%s</b> numer pola (wartość <b>&quot;%s&quot;</b> nie pasuje regex <b>%s</b> zasady)
 ErrorFieldValueNotIn=Błędna wartość numeru <b>pola% s (wartości '%</b> s' nie jest wartością pola dostępne w <b>tabeli% s% s)</b>
 ErrorFieldRefNotIn=Nieprawidłowa wartość dla <b>%s</b> liczba pól (wartość <b>'%s</b> &quot;nie jest <b>%s</b> istniejących ref)
 ErrorsOnXLines=Błędów na linii źródło <b>%s</b>
 ErrorFileIsInfectedWithAVirus=Program antywirusowy nie był w stanie potwierdzić (plik może być zainfekowany przez wirusa)
-ErrorSpecialCharNotAllowedForField=Znaki specjalne nie są dozwolone dla pola &quot;%s&quot;
+ErrorSpecialCharNotAllowedForField=Znaki specjalne nie są dozwolone dla pola "%s"
 ErrorDatabaseParameterWrong=parametr konfiguracji bazy danych <b>&quot;%s&quot;</b> ma wartość nie jest zgodna korzystać Dolibarr (musi mieć wartość <b>&quot;%s&quot;).</b>
 ErrorNumRefModel=Odniesienia nie istnieje w bazie danych (%s) i nie jest zgodna z tą zasadą numeracji. Zmiana nazwy lub usuwanie zapisu w odniesieniu do aktywacji tego modułu.
 ErrorQtyTooLowForThisSupplier=Zbyt mała ilość tego dostawcy lub ceny nie określono tego produktu dla tego dostawca
 ErrorModuleSetupNotComplete=Instalacja modułu wygląda na uncomplete. Idź na instalacji - Moduły do ​​wykonania.
-ErrorBadMask=Błąd na masce
+ErrorBadMask=Błąd w masce wprowadzania
 ErrorBadMaskFailedToLocatePosOfSequence=Błąd, maska ​​bez kolejnego numeru
 ErrorBadMaskBadRazMonth=Błąd, zła wartość zresetowane
 ErrorMaxNumberReachForThisMask=Maksymalna liczba zasięg dla tej maski
 ErrorCounterMustHaveMoreThan3Digits=Licznik musi mieć więcej niż 3 cyfry
 ErrorSelectAtLeastOne=Błąd. Wybierz co najmniej jeden wpis.
 ErrorProductWithRefNotExist=Produkt z <i>'%s</i> &quot;odniesienia nie istnieje
-ErrorDeleteNotPossibleLineIsConsolidated=Usuń nie możliwe, ponieważ zapis jest związany z transation bankowego, który jest conciliated
+ErrorDeleteNotPossibleLineIsConsolidated=Usunięcie nie możliwe, ponieważ wpis jest związany z transakcją bankową, która była konsyliowana
 ErrorProdIdAlreadyExist=%s jest przypisany do innego państwa
-ErrorFailedToSendPassword=Nie można wysłać hasło
+ErrorFailedToSendPassword=Nie można wysłać hasła
 ErrorFailedToLoadRSSFile=Nie dostać kanału RSS. Spróbuj dodać stałą MAIN_SIMPLEXMLLOAD_DEBUG czy komunikaty o błędach nie zawiera wystarczających informacji.
-ErrorPasswordDiffers=Hasła różni, wpisz je ponownie.
+ErrorPasswordDiffers=Różne hasła, wprowadź je ponownie.
 ErrorForbidden=Brak dostępu. <br> Próby uzyskania dostępu do strony, strefy lub funkcji modułu niepełnosprawnej lub bez w uwierzytelnionej sesji lub że nie jest dozwolone do użytkownika.
 ErrorForbidden2=Wykorzystanie tej nazwie może być zdefiniowana przez administratora z menu Dolibarr %s-> %s.
 ErrorForbidden3=Wydaje się, że Dolibarr nie jest używany przez uwierzytelniane sesji. Rzuć okiem na Dolibarr konfiguracji dokumentacji wiedzieć, jak zarządzać authentications (htaccess, mod_auth lub innych ...).
 ErrorNoImagickReadimage=Funkcja imagick_readimage nie jest w tej PHP. Podgląd może być dostępny. Administratorzy mogą wyłączyć tę zakładkę z menu Ustawienia - Ekran.
-ErrorRecordAlreadyExists=Zapis już istnieje
-ErrorCantReadFile=Nie można odczytać pliku ' %s'
-ErrorCantReadDir=Nie można odczytać katalogu ' %s'
+ErrorRecordAlreadyExists=Wpis już istnieje
+ErrorCantReadFile=Nie można odczytać pliku '%s'
+ErrorCantReadDir=Nie można odczytać katalogu '%s'
 ErrorFailedToFindEntity=Nie można odczytać jednostki " %s"
 ErrorBadLoginPassword=Zła wartość dla loginu lub hasła
-ErrorLoginDisabled=Twoje konto zostało zablokowane
+ErrorLoginDisabled=Twoje konto zostało wyłączone
 ErrorFailedToRunExternalCommand=Nie można uruchomić polecenia zewnętrznych. Zameldowanie jest ona dostępna i runnable przez serwer PHP. Jeśli PHP <b>safe mode</b> jest włączony, czy polecenie wewnątrz katalogu określonym przez parametr <b>safe_mode_exec_dir.</b>
 ErrorFailedToChangePassword=Nie można zmienić hasła
-ErrorLoginDoesNotExists=Użytkownik z <b>logowania %s</b> nie może zostać znaleziony.
+ErrorLoginDoesNotExists=Użytkownik <b>%s</b> nie został znaleziony.
 ErrorLoginHasNoEmail=Ten użytkownik nie ma adresu e-mail. Proces przerwany.
 ErrorBadValueForCode=Zła wartość typy kodu. Spróbuj ponownie z nową wartość ...
 ErrorBothFieldCantBeNegative=Pola %s i %s nie może być zarówno negatywny
@@ -126,52 +126,52 @@ ErrorFailedToAddToMailmanList=Nie udało się dodać% s do% s listy Mailman lub
 ErrorFailedToRemoveToMailmanList=Nie udało się usunąć rekord% s do% s listy Mailman lub podstawy SPIP
 ErrorNewValueCantMatchOldValue=Nowa wartość nie może być równa starego
 ErrorFailedToValidatePasswordReset=Nie udało się REINIT hasło. Mogą być wykonywane już reinit (ten link może być używany tylko jeden raz). Jeśli nie, spróbuj ponownie uruchomić proces reinit.
-ErrorToConnectToMysqlCheckInstance=Podłącz się do bazy danych nie powiedzie się. Sprawdź serwer MySQL jest uruchomiony (w większości przypadków, można go uruchomić z linii poleceń z "sudo /etc/init.d/mysql start").
-ErrorFailedToAddContact=Nie udało się dodać kontakt
-ErrorDateMustBeBeforeToday=Data nie może być większa niż dzisiaj
+ErrorToConnectToMysqlCheckInstance=Połączenie z bazą danych nie powiodło się. Sprawdź czy serwer MySQL jest uruchomiony (w większości przypadków, można go uruchomić z linii poleceń komendą "sudo /etc/init.d/mysql start").
+ErrorFailedToAddContact=Nie udało się dodać kontaktu
+ErrorDateMustBeBeforeToday=Data nie może być nowsza niż dzisiejsza
 ErrorPaymentModeDefinedToWithoutSetup=Tryb płatność została ustawiona na typ% s, ale konfiguracja modułu faktury nie została zakończona do określenia informacji, aby pokazać tym trybie płatności.
-ErrorPHPNeedModule=Błąd, Twój PHP musi mieć zainstalowanego <b>modułu% s,</b> aby korzystać z tej funkcji.
+ErrorPHPNeedModule=Błąd, PHP musi mieć zainstalowany moduł <b>%s</b>, aby korzystać z tej funkcji.
 ErrorOpenIDSetupNotComplete=Ty konfiguracji Dolibarr plik konfiguracyjny, aby umożliwić uwierzytelnianie OpenID, ale adres URL usługi OpenID nie jest zdefiniowany w stałej% s
-ErrorWarehouseMustDiffers=Źródłowy i docelowy składach, musi różni
-ErrorBadFormat=Bad Format!
+ErrorWarehouseMustDiffers=magazyn źródłowy i docelowy musi być różny
+ErrorBadFormat=Zły format!
 ErrorMemberNotLinkedToAThirpartyLinkOrCreateFirst=Błąd, członek ten nie jest jeszcze związana z żadnymi thirdparty. Członkiem Link do istniejącej strony trzeciej lub utworzyć nowy thirdparty przed utworzeniem subskrypcji z faktury.
-ErrorThereIsSomeDeliveries=Błąd występuje kilka dostaw związane z tym przemieszczenia. Wykreślenie odmówił.
+ErrorThereIsSomeDeliveries=Błąd, występuje kilka dostaw związanych z tą przesyłką. Usunięcie odrzucone.
 ErrorCantDeletePaymentReconciliated=Nie można usunąć płatności, które generowane transakcji w banku, który został pojednaniem
 ErrorCantDeletePaymentSharedWithPayedInvoice=Nie można usunąć płatności udostępnionej przez co najmniej jednego stanu zapłaci faktury z
 ErrorPriceExpression1=Nie można przypisać do stałej '% s'
 ErrorPriceExpression2=Nie można przedefiniować wbudowanej funkcji "% s"
 ErrorPriceExpression3=Niezdefiniowana zmienna '% s' w definicji funkcji
-ErrorPriceExpression4=Nieprawidłowy znak '% s'
-ErrorPriceExpression5=Nieoczekiwany "% s"
-ErrorPriceExpression6=Błędna liczba argumentów (% s podano,% s oczekiwany)
-ErrorPriceExpression8=Operator nieoczekiwane "% s"
-ErrorPriceExpression9=Wystąpił błąd
+ErrorPriceExpression4=Niedozwolony znak '%s'
+ErrorPriceExpression5=Nieoczekiwany '%s'
+ErrorPriceExpression6=Błędna liczba argumentów (%s podano, %s oczekiwany)
+ErrorPriceExpression8=Nieoczekiwany operator '%s'
+ErrorPriceExpression9=Wystąpił nieoczekiwany błąd
 ErrorPriceExpression10=Iperator '% s' nie ma argumentu
 ErrorPriceExpression11=Spodziewając '% s'
 ErrorPriceExpression14=Dzielenie przez zero
-ErrorPriceExpression17=Niezdefiniowana zmienna '% s'
+ErrorPriceExpression17=Niezdefiniowana zmienna '%s'
 ErrorPriceExpression19=Ekspresja Nie znaleziono
 ErrorPriceExpression20=Pusty wyraz
-ErrorPriceExpression21=Pusty wynik '% s'
-ErrorPriceExpression22=Wynik negatywny "% s"
-ErrorPriceExpressionInternal=Wewnętrzny błąd "% s"
-ErrorPriceExpressionUnknown=Nieznany błąd "% s"
-ErrorSrcAndTargetWarehouseMustDiffers=Źródłowy i docelowy składach, musi różni
-ErrorTryToMakeMoveOnProductRequiringBatchData=Błąd, próbowano przemieścić magazyn bez informacji lot / seriala, na produkt wymagający informację lot / serial. 
+ErrorPriceExpression21=Pusty wynik '%s'
+ErrorPriceExpression22=Wynik negatywny '%s'
+ErrorPriceExpressionInternal=Wewnętrzny błąd '%s'
+ErrorPriceExpressionUnknown=Nieznany błąd '%s'
+ErrorSrcAndTargetWarehouseMustDiffers=Magazyn źródłowy i docelowy musi być różny
+ErrorTryToMakeMoveOnProductRequiringBatchData=Błąd, próbowano przemieścić zapas bez informacji  o locie/numerze seryjnym, dla produktu wymagającego tych informacji.
 ErrorCantSetReceptionToTotalDoneWithReceptionToApprove=Wszystkie zarejestrowane przyjęcia muszą najpierw zostać zweryfikowane (zatwierdzone lub odrzucone) przed dopuszczeniem ich do wykonania tej akcji
 ErrorCantSetReceptionToTotalDoneWithReceptionDenied=Wszystkie zarejestrowane przyjęcia muszą najpierw zostać zweryfikowane (zatwierdzone) przed dopuszczeniem ich do wykonania tej akcji
-ErrorGlobalVariableUpdater0=Żądanie HTTP nie powiodło się z powodu błędu '% s'
-ErrorGlobalVariableUpdater1=Nieprawidłowy format JSON '% s'
+ErrorGlobalVariableUpdater0=Żądanie HTTP nie powiodło się z powodu błędu '%s'
+ErrorGlobalVariableUpdater1=Nieprawidłowy format JSON '%s'
 ErrorGlobalVariableUpdater2=Brakuje parametru '% s'
 ErrorGlobalVariableUpdater3=Wymagane dane nie stwierdzono w wyniku
 ErrorGlobalVariableUpdater4=Klient SOAP nie powiodło się z powodu błędu '% s'
-ErrorGlobalVariableUpdater5=Globalna zmienna wybrana
+ErrorGlobalVariableUpdater5=Nie wybrano zmiennej globalnej
 ErrorFieldMustBeANumeric=Pole <b>%s</b> musi mieć wartość numeryczną
 ErrorFieldMustBeAnInteger=Pole <b>%s</b> musi być liczbą całkowitą
 ErrorMandatoryParametersNotProvided=Obowiązkowe parametr (y) nie przewidziane
 ErrorOppStatusRequiredIfAmount=Możesz ustawić szacunkową kwotę za możliwość / ołowiu. Więc należy także wprowadzić swój status
 ErrorBadDefinitionOfMenuArrayInModuleDescriptor=Bad definicja tablicy w menu modułu deskryptora (zły stosunek jakości do kluczowego fk_menu)
-ErrorSavingChanges=Wystąpił błąd ocurred podczas zapisywania zmian
+ErrorSavingChanges=Wystąpił błąd podczas zapisywania zmian
 
 # Warnings
 WarningPasswordSetWithNoAccount=Hasło zostało ustawione dla tego użytkownika. Jednakże nie Konto użytkownika zostało utworzone. Więc to hasło jest przechowywane, ale nie mogą być używane do logowania do Dolibarr. Może być stosowany przez zewnętrzny moduł / interfejsu, ale jeśli nie trzeba definiować dowolną logowania ani hasła do członka, można wyłączyć opcję "Zarządzaj login dla każdego członka" od konfiguracji modułu użytkownika. Jeśli potrzebujesz zarządzać logowanie, ale nie wymagają hasła, możesz zachować to pole puste, aby uniknąć tego ostrzeżenia. Uwaga: E może być również stosowany jako login, jeśli element jest połączony do użytkownika.
@@ -180,7 +180,7 @@ WarningSafeModeOnCheckExecDir=Uwaga, opcja <b>safe_mode</b> w PHP jest więc pol
 WarningAllowUrlFopenMustBeOn=<b>Allow_url_fopen</b> Parametr musi być ustawiony <b>w</b> Filer <b>php.ini</b> za ten moduł pracy całkowicie. Należy zmodyfikować ten plik ręcznie.
 WarningBuildScriptNotRunned=<b>Skrypt %s</b> nie zostało jeszcze prowadził do tworzenia grafiki, lub nie ma danych do pokazania.
 WarningBookmarkAlreadyExists=Zakładka z tego tytułu lub ten cel (URL) już istnieje.
-WarningPassIsEmpty=Ostrzeżenie, hasło bazy danych jest pusta. To jest chroniony. Należy dodać hasło do bazy danych i zmienić conf.php pliku w celu odzwierciedlenia tego.
+WarningPassIsEmpty=Ostrzeżenie, hasło do bazy danych jest puste. Jest to luka w zabezpieczeniach. Powinieneś dodać hasło do bazy danych i zmienić wpis w pliku conf.php aby zmiany przyniosły efekt.
 WarningConfFileMustBeReadOnly=Uwaga, plik konfiguracyjny <b>(htdocs / conf / conf.php)</b> mogą być zastąpione przez serwer internetowy. Jest to poważna luka w zabezpieczeniach. Modyfikowanie uprawnień na wniosek jest w trybie tylko do odczytu dla użytkownika system operacyjny używany przez serwer sieci Web. Jeśli używasz systemu Windows i format FAT na dysku, musisz wiedzieć, że ten system plików nie pozwala na dodawanie uprawnień do pliku, więc nie może być całkowicie bezpieczne.
 WarningsOnXLines=Ostrzeżeń na linii źródło <b>%s</b>
 WarningNoDocumentModelActivated=Nie modelu do generowania dokumentu, został aktywowany. Model będzie wybraną domyślnie dopóki nie zajrzysz do modułu konfiguracji.
@@ -190,7 +190,7 @@ WarningCloseAlways=Ostrzeżenie, zamykanie odbywa się nawet wtedy, gdy kwota za
 WarningUsingThisBoxSlowDown=Ostrzeżenie, za pomocą tego pola spowolnić poważnie do wszystkich stron zawierających pola.
 WarningClickToDialUserSetupNotComplete=Konfiguracja ClickToDial informacji dla użytkownika nie są kompletne (patrz zakładka ClickToDial na kartę użytkownika).
 WarningNotRelevant=Bez znaczenia dla tej operacji zbiorze
-WarningFeatureDisabledWithDisplayOptimizedForBlindNoJs=Funkcja wyłączona podczas konfiguracji wyświetlacz jest zoptymalizowana dla osoby niewidomej lub tekstowych przeglądarek.
-WarningPaymentDateLowerThanInvoiceDate=Termin płatności (% s) jest wcześniejsza niż dzień wystawienia faktury (% s) dla faktury% s.
+WarningFeatureDisabledWithDisplayOptimizedForBlindNoJs=Funkcja wyłączona gdy konfiguracja wyświetlania jest zoptymalizowana pod kątem osób niewidomych lub przeglądarek tekstowych.
+WarningPaymentDateLowerThanInvoiceDate=Termin płatności (%s) jest wcześniejszy niż dzień wystawienia faktury (%s) dla faktury %s.
 WarningTooManyDataPleaseUseMoreFilters=Zbyt wiele danych (więcej niż% s linii). Proszę używać więcej filtrów lub ustawić stałą% s na wyższy limit.
 WarningSomeLinesWithNullHourlyRate=Kilka razy były rejestrowane przez użytkowników, gdy ich stawka godzinowa nie zostało zdefiniowane. Wartość 0 wykorzystano, ale może to powodować niewłaściwą wyceny czasu spędzonego.
diff --git a/htdocs/langs/pl_PL/exports.lang b/htdocs/langs/pl_PL/exports.lang
index 0a1fd9c7f5580b6f27a6d8753c95c0dd26904c52..bae1ad6f1857cb29f2c7f5bdcc3bccaa07dd5f55 100644
--- a/htdocs/langs/pl_PL/exports.lang
+++ b/htdocs/langs/pl_PL/exports.lang
@@ -3,85 +3,85 @@ ExportsArea=Obszar exportu
 ImportArea=Obszar importu
 NewExport=Nowy eksport
 NewImport=Nowy import
-ExportableDatas=Eksport danych
-ImportableDatas=Import danych
-SelectExportDataSet=Wybierz dane, które chcesz wyeksportować ...
-SelectImportDataSet=Wybierz dane, które chcesz zaimportować ...
-SelectExportFields=Wybierz pola, które chcesz wyeksportować, lub wybrać predefiniowany profil eksportu
+ExportableDatas=Eksportowalny zbiór danych
+ImportableDatas=Importowalny zbiór danych
+SelectExportDataSet=Wybierz zbiór danych, który chcesz wyeksportować...
+SelectImportDataSet=Wybierz zbiór danych, który chcesz zaimportować...
+SelectExportFields=Wybierz pola, które chcesz wyeksportować, lub wybierz predefiniowany profil eksportu
 SelectImportFields=Wybierz pola plików źródłowych chcesz importować, a ich pola docelowego w bazie danych, przesuwając je w górę iw dół z kotwicą% s, lub wybierz predefiniowany profil importu:
 NotImportedFields=Obszary plik przywożonych źródła nie
-SaveExportModel=Zapisz ten wywóz profil jeśli masz zamiar ponownego użycia go później ...
-SaveImportModel=Zapisz ten przywóz profil jeśli masz zamiar ponownego użycia go później ...
-ExportModelName=Eksport nazy profilu
+SaveExportModel=Zapisz ten profil eksportu jeśli masz zamiar ponownie go użyć...
+SaveImportModel=Zapisz ten profil eksportu jeśli masz zamiar ponownie go użyć...
+ExportModelName=Nazwa profilu eksportowego
 ExportModelSaved=Eksport profil zapisany pod <b>nazwą %s.</b>
 ExportableFields=Wywóz pola
 ExportedFields=Eksportowane pola
 ImportModelName=Importuj nazwę profilu
 ImportModelSaved=Import profilu zapisany pod <b>nazwą %s.</b>
 ImportableFields=Przywozowe pola
-ImportedFields=Przywożone pola
-DatasetToExport=Dataset do wywozu
+ImportedFields=Zaimportowane pola
+DatasetToExport=Zbiór danych do eksportu
 DatasetToImport=Dataset importować
 NoDiscardedFields=Nie pól w pliku źródłowym są odrzucane
-Dataset=Dataset
-ChooseFieldsOrdersAndTitle=Wybierz pola porządku ...
-FieldsOrder=Obszary celu
+Dataset=Zbiór danych
+ChooseFieldsOrdersAndTitle=Wybierz kolejność pól...
+FieldsOrder=Kolejność pól
 FieldsTitle=Obszary tytuł
 FieldOrder=Aby Field
 FieldTitle=pole tytuł
 ChooseExportFormat=Wybierz format eksportu
-NowClickToGenerateToBuildExportFile=Teraz kliknij na "Generuj" budować pliku eksportu ...
-AvailableFormats=Formaty disponibles
+NowClickToGenerateToBuildExportFile=Teraz wybierz format pliku z listy rozwijanej i  kliknij na "Generuj" w celu wygenerowania pliku eksportu...
+AvailableFormats=Dostępne formaty
 LibraryShort=Biblioteka
 LibraryUsed=Librairie
 LibraryVersion=Wersja
 Step=Krok
-FormatedImport=Import asystent
-FormatedImportDesc1=Obszar ten pozwala importować spersonalizowanych danych, za pomocą asystenta, który pomoże Państwu w procesie bez wiedzy technicznej.
-FormatedImportDesc2=Pierwszym krokiem jest wybór króla dane, które chcesz załadować, a następnie załadować plik, a następnie wybrać pola, które chcesz załadować.
-FormatedExport=Eksport asystent
-FormatedExportDesc1=Obszar ten pozwala na eksport spersonalizowanych danych, za pomocą asystenta, który pomoże Państwu w procesie bez wiedzy technicznej.
-FormatedExportDesc2=Pierwszym krokiem jest wybór gotowych danych, a następnie wybrać pola, które chcesz w wyniku plików, które kolejności.
-FormatedExportDesc3=Po danych na wywóz są wybierane, można określić format pliku, który chcesz wyeksportować dane.
+FormatedImport=Asystent importu
+FormatedImportDesc1=Obszar ten pozwala importować spersonalizowane dane za pomocą asystenta, który pomoże osobą bez wiedzy technicznej w procesie.
+FormatedImportDesc2=Pierwszym krokiem jest wybór rodzaju danych, które chcesz załadować, kolejnym jest załadowanie pliku, a następnie wybór pól, które chcesz załadować.
+FormatedExport=Asystent eksportu
+FormatedExportDesc1=Obszar ten pozwala eksportować spersonalizowane dane za pomocą asystenta, który pomoże osobą bez wiedzy technicznej w procesie.
+FormatedExportDesc2=Pierwszym krokiem jest wybór predefiniowanego zbioru danych, a następnie wybrać pola, które chcesz w wyniku plików, które kolejności.
+FormatedExportDesc3=Kiedy dane do eksportu sa zaznaczone, możesz zdefinować format pliku wyjściowego, do któego chcesz eksportować dane
 Sheet=Arkusz
 NoImportableData=Nr przywozowe danych (bez modułu z definicji pozwalają na import danych)
-FileSuccessfullyBuilt=Eksport plików generowanych
+FileSuccessfullyBuilt=Plik eksportu wygenerowany
 SQLUsedForExport=Zapytanie SQL wykorzystywane do budowania pliku eksportu
 LineId=Identyfikator linii
 LineLabel=Etykieta linii
-LineDescription=Opis linii
-LineUnitPrice=Cena jednostkowa linii
-LineVATRate=Stawka VAT linii
-LineQty=Ilość dla linii
-LineTotalHT=Kwota netto podatku dla linii
-LineTotalTTC=Kwota z podatku na linii
-LineTotalVAT=Kwota podatku VAT dla linii
-TypeOfLineServiceOrProduct=Rodzaj linii (0= produkt, usługa 1=)
+LineDescription=Opis pozycji
+LineUnitPrice=Cena jednostkowa pozycji
+LineVATRate=Stawka VAT pozycji
+LineQty=Ilość dla pozycji
+LineTotalHT=Kwota netto podatku dla pozycji
+LineTotalTTC=Kwota z podatkiem dla pozycji
+LineTotalVAT=Kwota podatku VAT dla pozycji
+TypeOfLineServiceOrProduct=Rodzaj pozycji (0=produkt, 1=usługa)
 FileWithDataToImport=Plik z danymi do importu
-FileToImport=Źródło plik do zaimportowania
-FileMustHaveOneOfFollowingFormat=Plik do importu musi mieć jeden z następującego formatu
-DownloadEmptyExample=Pobierz przykład pusty plik źródłowy
+FileToImport=Plik źródłowy do zaimportowania
+FileMustHaveOneOfFollowingFormat=Plik do zaimportowania musi mieć jeden z następujących formatów
+DownloadEmptyExample=Pobierz przykładowy pusty plik źródłowy
 ChooseFormatOfFileToImport=Wybierz format pliku do wykorzystania jako format pliku importu, klikając na picto %s, aby je wybrać ...
 ChooseFileToImport=Wybierz plik do zaimportowania, a następnie kliknij przycisk picto %s ...
-SourceFileFormat=format pliku źródłowego
-FieldsInSourceFile=Obszary w pliku źródłowym
+SourceFileFormat=Format pliku źródłowego
+FieldsInSourceFile=Pola w pliku źródłowym
 FieldsInTargetDatabase=Pola docelowe w bazie danych Dolibarr (wytłuszczenie = obowiązkowe)
 Field=Pole
-NoFields=Nie pól
+NoFields=Brak pól
 MoveField=Przenieś %s kolumnie polu numeru
-ExampleOfImportFile=Example_of_import_file
+ExampleOfImportFile=Przykład_importowanego_pliku
 SaveImportProfile=Zapisz ten profil importu
-ErrorImportDuplicateProfil=Nie udało się zapisać w tym profilu import o tej nazwie. Istniejących już profil o tej nazwie.
+ErrorImportDuplicateProfil=Nie udało się zapisać profilu importu pod podaną nazwą. Istnieje już profil importu o tej nazwie.
 ImportSummary=Import konfiguracji podsumowanie
-TablesTarget=Ukierunkowane tabele
-FieldsTarget=Określonych dziedzinach
-TableTarget=Ukierunkowane tabeli
-FieldTarget=Ukierunkowane pole
-FieldSource=polu Source
-DoNotImportFirstLine=Nie przywozili pierwszym wierszu pliku źródłowego
+TablesTarget=Tabele docelowe
+FieldsTarget=Pola docelowe
+TableTarget=Tabela docelowa
+FieldTarget=Pole docelowe
+FieldSource=Pole źródłowe
+DoNotImportFirstLine=Nie importuj pierwszej pozycji z pliku źródłowego
 NbOfSourceLines=Liczba linii w pliku źródłowym
 NowClickToTestTheImport=Sprawdź parametry na przywóz zostało to określone. Jeśli są one prawidłowe, kliknij na przycisk <b>&quot;%s&quot;,</b> aby uruchomić symulację procesu importowania (żadne dane nie zostaną zmienione w bazie danych, to tylko symulacja na razie) ...
-RunSimulateImportFile=Uruchomienie symulacji import
+RunSimulateImportFile=Uruchom symulację importu
 FieldNeedSource=To pole wymaga danych z pliku źródłowego
 SomeMandatoryFieldHaveNoSource=Niektóre z pól obowiązkowych nie ma źródła danych z pliku
 InformationOnSourceFile=Informacje o pliku źródłowego
@@ -95,7 +95,7 @@ ErrorMissingMandatoryValue=Obowiązkowe jest pusty danych w pliku źródłowym d
 TooMuchErrors=Nadal <b>%s</b> inne linie z błędami, ale wyjście jest niewielki.
 TooMuchWarnings=Nadal <b>%s</b> inne linie z ostrzeżeniami, ale wyjście jest niewielki.
 EmptyLine=Pusty wiersz (zostanie odrzucona)
-CorrectErrorBeforeRunningImport=Najpierw trzeba poprawić wszystkie błędy przed uruchomieniem ostateczne na przywóz.
+CorrectErrorBeforeRunningImport=Najpierw musisz poprawić wszystkie błędy zanim uruchomisz ostatecznie import.
 FileWasImported=Plik został przywieziony z <b>%s</b> numerycznych.
 YouCanUseImportIdToFindRecord=Możesz znaleźć wszystkie importowane rekordy w bazie danych przez filtrowanie <b>import_key</b> pole <b>= &quot;%s&quot;.</b>
 NbOfLinesOK=Liczba linii bez błędów i żadnych ostrzeżeń: <b>%s.</b>
@@ -104,7 +104,7 @@ DataComeFromNoWhere=Wartości, aby dodać pochodzi z nigdzie w pliku źródłowy
 DataComeFromFileFieldNb=Wartości, aby dodać pochodzi z <b>%s</b> numer pola w pliku źródłowym.
 DataComeFromIdFoundFromRef=Wartość, która pochodzi z <b>%s</b> numer dziedzinie pliku źródłowego zostaną wykorzystane w celu znalezienia id rodzica obiektu do użytkowania (So <b>%s</b> objet że ma ref. Od pliku źródłowego musi istnieć w Dolibarr).
 DataComeFromIdFoundFromCodeId=Kod, który pochodzi z numeru <b>pola% s</b> w pliku źródłowym zostaną wykorzystane, aby znaleźć identyfikator obiektu nadrzędnego w użyciu (Tak Kod z pliku źródłowego musi istnieje w <b>słowniku% s).</b> Zauważ, że jeśli wiesz, id, można również użyć go do pliku źródłowego zamiast kodu. Import powinien pracować w obu przypadkach.
-DataIsInsertedInto=Danych pochodzących z pliku źródłowego zostanie wstawiony w pole następujące brzmienie:
+DataIsInsertedInto=Dane pochodzące z pliku źródłowego zostaną wstawione w następujące pola:
 DataIDSourceIsInsertedInto=Id rodzica znalezionego obiektu na podstawie danych w pliku źródłowym, zostaną włączone do następujących dziedzinach:
 DataCodeIDSourceIsInsertedInto=Id linii macierzystej znaleźć z kodem, zostaną włączone do następnego pola:
 SourceRequired=Wartość danych jest obowiązkowe
@@ -119,7 +119,7 @@ ExportFieldAutomaticallyAdded=<b>Pole% s</b> został automatycznie dodany. Będz
 CsvOptions=Opcje csv
 Separator=Separator
 Enclosure=Ogrodzenie
-SuppliersProducts=Dostawcy Produkty
+SuppliersProducts=Produkty dostawców
 BankCode=Kod banku
 DeskCode=Recepcja kod
 BankAccountNumber=Numer konta
@@ -131,6 +131,6 @@ ExportNumericFilter=Filtry "NNNNN 'o jeden wartości <br> Filtry "NNNNN + NNNNN"
 ## filters
 SelectFilterFields=Jeśli chcesz filtrować niektóre wartości, wartości po prostu wejść tutaj.
 FilterableFields=Pola do filtrowania
-FilteredFields=Pola filtrowane
+FilteredFields=Filtrowane pola
 FilteredFieldsValues=Wart filtru
 FormatControlRule=Zasada kontroli formatu
diff --git a/htdocs/langs/pl_PL/holiday.lang b/htdocs/langs/pl_PL/holiday.lang
index f3aee1b725efe354aff5e8cb94b832f150837503..e8bfd58ffae83bf03786de5ffffbc3ed9a25674e 100644
--- a/htdocs/langs/pl_PL/holiday.lang
+++ b/htdocs/langs/pl_PL/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=Musisz włączyć moduł Urlopów aby zobaczyć tą stronę.
 NotConfigModCP=Musisz skonfigurować moduł Urlopów aby zobaczyć tą stronę. Aby to zrobić, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;">kliknij tutaj</a>
 NoCPforUser=Nie masz żadnych dostępnych dni.
 AddCP=Złożyć wniosek do urlopu
-Employe=Pracownik
 DateDebCP=Data rozpoczęcia
 DateFinCP=Data zakończenia
 DateCreateCP=Data utworzenia
@@ -23,7 +22,7 @@ ReviewedByCP=Zostanie rozpatrzony przez
 DescCP=Opis
 SendRequestCP=Tworzenie wniosku urlopowego
 DelayToRequestCP=Zostawić wnioski muszą być wykonane co <b>​​najmniej% s dzień (dni)</b> przed nimi.
-MenuConfCP=Edytuj bilans urlopów
+MenuConfCP=Balance of leaves
 UpdateAllCP=Aktualizuj urlopy
 SoldeCPUser=Liście saldo <b>jest% s</b> dni.
 ErrorEndDateCP=Musisz wybrać datę zakończenia większą niż data rozpoczęcia.
@@ -79,9 +78,9 @@ PrevSoldeCP=Poprzedni Saldo
 NewSoldeCP=New Balance
 alreadyCPexist=Wniosek urlopowy na ten okres czasu został już zrobiony.
 UserName=Nazwa użytkownika
-Employee=Pracownik
 FirstDayOfHoliday=Pierwszy dzień wakacji
 LastDayOfHoliday=Ostatni dzień wakacji
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Miesięczna aktualizacja
 ManualUpdate=Ręczna aktualizacja
 HolidaysCancelation=Anulowanie wniosku urlopowego
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Twoje zapytanie urlopu dla% s do% s została odrzucona z nas
 HolidaysCanceled=Anulowane wniosku urlopowego
 HolidaysCanceledBody=Twój wniosek urlopowy od %s do %s został anulowany.
 NewByMonth=Nie masz żadnych dostępnych dni.
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Idź do <strong>Home - Ustawienia - Słowniki - Rodzaj urlopów</strong> w celu stworzenia różnych typów urlopów.
diff --git a/htdocs/langs/pl_PL/hrm.lang b/htdocs/langs/pl_PL/hrm.lang
index 8dfd56c7a23676cff55d0a08b9495cea98d50e02..9e97e0dbfe98bc4cae200664381cf322cde8f276 100644
--- a/htdocs/langs/pl_PL/hrm.lang
+++ b/htdocs/langs/pl_PL/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HR - lista funkcji
 ListOfEmployees=Lista pracowników
 Employees=Zatrudnionych
 Employee=Zatrudnieni
+Employe=Employe
 NewEmployee=Nowe zatrudnienie
 EmployeeCard=Karta pracownika
diff --git a/htdocs/langs/pl_PL/install.lang b/htdocs/langs/pl_PL/install.lang
index e9366421bfae9f2f15ee10279e5de374300ceda9..e7512b938fab2752d95b2f1d5ce96d70b94d87af 100644
--- a/htdocs/langs/pl_PL/install.lang
+++ b/htdocs/langs/pl_PL/install.lang
@@ -156,7 +156,7 @@ ErrorDatabaseVersionForbiddenForMigration=Twoja wersja bazy danych to %s. Ma kry
 MigrationFixData=Napraw nieznormalizowane dane
 MigrationOrder=Migracja danych zamówień odbiorców
 MigrationSupplierOrder=Migracja danych zamówień dostawców
-MigrationProposal=Migracja danych propozycji handlowych
+MigrationProposal=Migracja danych dla ofert handlowych
 MigrationInvoice=Migracja dla danych faktur odbiorców
 MigrationContract=Migracja danych kontraktów
 MigrationSuccessfullUpdate=Aktualizacja powiodła się
diff --git a/htdocs/langs/pl_PL/interventions.lang b/htdocs/langs/pl_PL/interventions.lang
index 8a4d8bc8a80b64abdc074e0de05709c7e76fa238..50ce8093c3ef02ab75105a4ba43a01ed339ba163 100644
--- a/htdocs/langs/pl_PL/interventions.lang
+++ b/htdocs/langs/pl_PL/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Zwróć numer w formacie %syymm-nnnn, gdzie yy to rok, m
 PacificNumRefModelError=karta interwencji rozpoczynająca się od $syymm już istnieje i nie jest zgodna z wzorem numerowania. Usuń ją lub zmień nazwę, aby aktywować ten moduł.
 PrintProductsOnFichinter=Drukuj produkty na karcie interwencji
 PrintProductsOnFichinterDetails=Interwencje generowane z zamówień
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=ID interwencji
 InterRef=Numer referencyjny interwencji
diff --git a/htdocs/langs/pl_PL/loan.lang b/htdocs/langs/pl_PL/loan.lang
index ca893134fcbde8234ea114ecb30ef4f5f62801b6..31ca1fe2f1da62e1ddd22df5e9e1ac8a773bad1c 100644
--- a/htdocs/langs/pl_PL/loan.lang
+++ b/htdocs/langs/pl_PL/loan.lang
@@ -38,10 +38,10 @@ MonthlyInterestRateDesc=<b>Miesięczna stopa procentowa</b> = roczna stopa proce
 MonthTermDesc=<b>Miesięcy okres</b> kredytowania w miesiącach = ilość lat wziąłeś kredyt się do czasów 12
 MonthlyPaymentDesc=Miesięczny płatności zorientowali się, stosując następujący wzór
 AmortizationPaymentDesc=<a href="#amortization">Amortyzacja</a> zepsuje, ile miesięczne płatności idzie w kierunku zainteresowania banku, a ile idzie do spłaty kwoty głównej pożyczki.
-AmountFinanced=Kwota Finansowane
+AmountFinanced=Kwota finansowania
 AmortizationMonthlyPaymentOverYears=Amortyzacja miesięczną <b>spłatę:% s</b> na% s lat
 Totalsforyear=Sumy dla roku
-MonthlyPayment=Miesięczny Płatność
+MonthlyPayment=Miesięczna płatność
 LoanCalcDesc=<b>Kalkulator kredytu hipotecznego</b> może być używany, aby dowiedzieć miesięcznych wypłat kredytu hipotecznego w domu, w oparciu o cenę domu na sprzedaż w, okres kredytowania pożądanym, dół procent płatności kupującego, i stopy procentowej kredytu. <br> Ten kalkulator czynniki PMI (Private Mortgage Insurance) dla kredytów w których mniej niż 20% jest umieszczone jako zaliczki. Brane pod uwagę również to podatki od nieruchomości miasto, a ich wpływ na łączne miesięczne płatności hipotecznych. <br>
 GoToInterest=% s zostanie przeznaczona INTERESÓW
 GoToPrincipal=% s zostanie przeznaczona PODSTAWOWA
diff --git a/htdocs/langs/pl_PL/mails.lang b/htdocs/langs/pl_PL/mails.lang
index ed5ab5bfa0b0a03246344552945bf3d9ce29843e..7a4521783e891c059a4a632f3eaec61694d7eceb 100644
--- a/htdocs/langs/pl_PL/mails.lang
+++ b/htdocs/langs/pl_PL/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Klucz użyty do szyfrowania URL używany do "potwierdzenia
 EMailSentToNRecipients=Mail wysłany do %s odbiorców.
 XTargetsAdded=<b>% s</b> dodany do listy odbiorców docelowych
 EachInvoiceWillBeAttachedToEmail=Dokument używa domyślnego szablonu faktury i będą tworzone i dołączone do każdego maila w przyszłości.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Przypomnienie faktury %s (%s)
 SendRemind=Wyślij przypomnienie poprzez Maila
 RemindSent=%s przypomnie(n)ie wysłano
diff --git a/htdocs/langs/pl_PL/main.lang b/htdocs/langs/pl_PL/main.lang
index b457de15c8ce35c6e904090881937236c397e5be..aeeb2017513f4a54243f800b70cb5bd87aea47d7 100644
--- a/htdocs/langs/pl_PL/main.lang
+++ b/htdocs/langs/pl_PL/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=Połączenia z bazą danych
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Brak tłumaczenia
 NoRecordFound=Rekord nie został znaleziony.
 NoError=Brak błędów
@@ -105,6 +106,7 @@ NotePrivate=Uwaga (prywatna)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr ustawił ograniczenia dokładności cen jednostkowych <b>do %s</b> miejsc po przecinku.
 DoTest=Test
 ToFilter=Filtr
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Ostrzeżenie! masz co najmniej jeden element, który przekroczył tolerancje zwłoki.
 yes=tak
 Yes=Tak
@@ -198,7 +200,7 @@ MultiLanguage=Wielo-językowość
 Note=Uwaga
 CurrentNote=Aktualna uwaga
 Title=Tytuł
-Label=Etykieta
+Label=Nazwa
 RefOrLabel=Nr ref. lub etykieta
 Info=Log
 Family=Rodzina
@@ -228,12 +230,14 @@ Now=Teraz
 HourStart=Godzina startu
 Date=Data
 DateAndHour=Data i godzina
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Data rozpoczęcia
 DateEnd=Data zakończenia
 DateCreation=Data utworzenia
 DateCreationShort=Data utworzenia
 DateModification=Zmiana daty
-DateModificationShort=Modyfik. daty
+DateModificationShort=Data modyfikacji
 DateLastModification=Ostatnia zmiana daty
 DateValidation=Zatwierdzenie daty
 DateClosing=Ostateczny termin
@@ -330,7 +334,7 @@ PriceQtyMinTTC=Cena ilości min. (z VAT)
 Percentage=Procentowo
 Total=Razem
 SubTotal=Po podliczeniu
-TotalHTShort=Ogółem (netto)
+TotalHTShort=Suma (netto)
 TotalTTCShort=Ogółem (z VAT)
 TotalHT=Razem (po odliczeniu podatku)
 TotalHTforthispage=Razem (po odliczeniu podatku) dla tej strony
@@ -343,8 +347,8 @@ TotalLT1ES=Razem RE
 TotalLT2ES=Razem IRPF
 IncludedVAT=Zawiera VAT
 HT=Bez VAT
-TTC=z VAT
-VAT=Sprzedaż opodatkowana VAT
+TTC= z VAT
+VAT=Stawka VAT
 VATs=Podatek od sprzedaży 
 LT1ES=RE
 LT2ES=IRPF
@@ -363,9 +367,9 @@ Favorite=Ulubiony
 ShortInfo=Info.
 Ref=Nr ref.
 ExternalRef=Ref. zewnętrzny
-RefSupplier=Nr ref. Dostawca
+RefSupplier=Nr ref. dostawcy
 RefPayment=Nr ref. płatności
-CommercialProposalsShort=Propozycje komercyjne
+CommercialProposalsShort=Oferty komercyjne
 Comment=Komentarz
 Comments=Komentarze
 ActionsToDo=Działania do zrobienia
@@ -401,7 +405,7 @@ MyBookmarks=Moje zakładki
 OtherInformationsBoxes=Inne informacje
 DolibarrBoard=Załoga Dollibara
 DolibarrStateBoard=Statystyki
-DolibarrWorkBoard=Zadania załogi
+DolibarrWorkBoard=Do zrobienia
 Available=Dostępny
 NotYetAvailable=Nie są jeszcze dostępne
 NotAvailable=Niedostępne
@@ -417,7 +421,7 @@ Other=Inny
 Others=Inne
 OtherInformations=Inne informacje
 Quantity=Ilość
-Qty=Ilosc
+Qty=Ilość
 ChangedBy=Zmieniona przez
 ApprovedBy=Zatwierdzony przez
 ApprovedBy2=Zatwierdzony przez (drugie zatwierdzenie)
@@ -437,7 +441,7 @@ Discount=Rabat
 Unknown=Nieznany
 General=Ogólne
 Size=Rozmiar
-Received=Odebrane
+Received=Przyjęto
 Paid=Zapłacone
 Topic=Temat
 ByCompanies=Według zamówień
@@ -607,7 +611,8 @@ TotalWoman=Razem
 TotalMan=Razem
 NeverReceived=Nigdy nie otrzymała
 Canceled=Anulowany
-YouCanChangeValuesForThisListFromDictionarySetup=Możesz zmieniać wartości dla tej listy z menu setup - słownik
+YouCanChangeValuesForThisListFromDictionarySetup=Możesz zmieniać wartości dla tej listy z menu Konfiguracja - Słownik
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Kolor
 Documents=Związanych plików
 DocumentsNb=Związanych plików (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=Brak obrazów
 HomeDashboard=Podsumowanie całościowe
+Dashboard=Dashboard
 Deductible=Odliczenie
 from=od
 toward=kierunek
diff --git a/htdocs/langs/pl_PL/margins.lang b/htdocs/langs/pl_PL/margins.lang
index 4d8651a7fc8287f45c436924518cd576fb534057..7fb4248ccae8d9455613a2b3dc83779bde965c3e 100644
--- a/htdocs/langs/pl_PL/margins.lang
+++ b/htdocs/langs/pl_PL/margins.lang
@@ -35,8 +35,9 @@ MargeBrute=Raw marża
 MargeNette=Rentowność netto
 MargeType1=Marża na najlepszej cenie dostawcy
 MargeType2=Marża na średniej cenie ważonej
-MARGIN_TYPE_DETAILS=Raw margin: Cena sprzedaży - cena zakupu <br/> Rentowność netto: Cena sprzedaży - cena kosztów
-MarginTypeDesc=Marża na najlepszej cenie zakupu: Cena sprzedaży - Najlepsza cena dostawcy zdefiniowana na karcie produktu <br/> Marża na cenie średnio ważonej (WAP): Cena sprzedaży - średnio ważona cena produktu (WAP) lub najlepszs cena dostawcy jeśli WAP jeszcze niezdefiniowana
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cena fabryczna
 BuyingCost=Cena fabryczna
 UnitCharges=Koszty jednostkowe
diff --git a/htdocs/langs/pl_PL/oauth.lang b/htdocs/langs/pl_PL/oauth.lang
index 853a48c8ad7e52c538f06d96aacb11844e85d138..f277b286cf83df9a191440484f98c37b333ddd8d 100644
--- a/htdocs/langs/pl_PL/oauth.lang
+++ b/htdocs/langs/pl_PL/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token usunięto
 RequestAccess=Kliknij tutaj w celu wysłania zapotrzebowania/odnowienia dostępu i otrzymania nowego tokena.
 DeleteAccess=Kliknuj tutaj, aby usunąć token
 UseTheFollowingUrlAsRedirectURI=Użyj następującego adresu URL jako Przekierowanie URI podczas tworzenia poświadczeń dostawcy OAuth:
-ListOfSupportedOauthProviders=Wpisz tutaj poświadczenie dostroczone przez twojego dostawcę OAuth2. Tylko wspierani dostawcy OAuth2 są tutaj widoczni. To ustawianie może być użyte przez inne moduły, ktore potrzebuję autentyfikacji OAuth2.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=API Google
 OAUTH_GOOGLE_ID=ID API Google
 OAUTH_GOOGLE_SECRET=ID API Google Secret
diff --git a/htdocs/langs/pl_PL/orders.lang b/htdocs/langs/pl_PL/orders.lang
index 39dc63a7d372d3dc4aec988a79820502d50891cd..a6dffab091c1a1f966f497e2245ee0683b63fbdd 100644
--- a/htdocs/langs/pl_PL/orders.lang
+++ b/htdocs/langs/pl_PL/orders.lang
@@ -5,7 +5,7 @@ OrderCard=Karta zamówienia
 OrderId=ID zamówienia
 Order=Zamówienie
 Orders=Zamówienia
-OrderLine=Linia zamówienia
+OrderLine=Pozycja w zamówieniu
 OrderFollow=Kontynuacja
 OrderDate=Data zamówienia
 OrderToProcess=Celem przetwarzania
@@ -24,7 +24,7 @@ OrdersToBill=Dostarczone zamówienia klienta
 OrdersInProcess=Zamówienia klienta w przygotowaniu
 OrdersToProcess=Zamówienia klienta do przygotowania
 SuppliersOrdersToProcess=Zamówienia dostwacy do przygotowania
-StatusOrderCanceledShort=Odwołany
+StatusOrderCanceledShort=Anulowano
 StatusOrderDraftShort=Szkic
 StatusOrderValidatedShort=Zatwierdzone
 StatusOrderSentShort=W przygotowaniu
@@ -38,7 +38,7 @@ StatusOrderApprovedShort=Zatwierdzone
 StatusOrderRefusedShort=Odmowa
 StatusOrderBilledShort=Rozliczone
 StatusOrderToProcessShort=Aby proces
-StatusOrderReceivedPartiallyShort=Częściowo otzrymane
+StatusOrderReceivedPartiallyShort=Częściowo otrzymano
 StatusOrderReceivedAllShort=Wszystko otrzymane
 StatusOrderCanceled=Odwołane
 StatusOrderDraft=Projekt (musi zostać zatwierdzony)
@@ -48,48 +48,48 @@ StatusOrderOnProcessWithValidation=Zamówione - odbiór lub walidacji czuwania
 StatusOrderProcessed=Przetworzone
 StatusOrderToBill=Dostarczone
 StatusOrderToBill2=Do rachunku
-StatusOrderApproved=Zatwierdzono
-StatusOrderRefused=Odmowa
+StatusOrderApproved=Przyjęto
+StatusOrderRefused=Odrzucono
 StatusOrderBilled=Rozliczone
-StatusOrderReceivedPartially=Częściowo otrzymała
-StatusOrderReceivedAll=Wszystko otrzymała
+StatusOrderReceivedPartially=Częściowo otrzymano
+StatusOrderReceivedAll=Otrzymano w całości
 ShippingExist=Przesyłka istnieje
 ProductQtyInDraft=Ilość produktów w projektach zamówień
 ProductQtyInDraftOrWaitingApproved=Ilość produktów w projekcie lub zatwierdzonych zamówień, jeszcze nie zamówione
 DraftOrWaitingApproved=Projekt nie został jeszcze zatwierdzony lub sortowane
 DraftOrWaitingShipped=Projekt lub zatwierdzonych jeszcze nie wysłane
-MenuOrdersToBill=Zamówienia na rachunku
+MenuOrdersToBill=Zamówienia dostarczono
 MenuOrdersToBill2=Rozliczanych zamówienia
-SearchOrder=Szukaj celu
+SearchOrder=Szukaj zamówienia
 SearchACustomerOrder=Szukaj zamówienia klienta
 SearchASupplierOrder=Szukaj zamówienia dostawcy
 ShipProduct=Statek produktu
-CreateOrder=Tworzenie Zamówienie
+CreateOrder=Utwórz zamówienie
 RefuseOrder=Odmówić celu
 ApproveOrder=Zatwierdź zamówienie
 Approve2Order=Zatwierdza porządek (drugi poziom)
-ValidateOrder=Sprawdź zamówienie
-UnvalidateOrder=Unvalidate zamówienie
+ValidateOrder=Zatwierdź zamówienie
+UnvalidateOrder=Niezatwierdzone zamówienie
 DeleteOrder=Usuń zamówienie
-CancelOrder=Anulować zamówienie
-OrderReopened= %s zamówień ponownie otwartych
+CancelOrder=Anuluj zamówienie
+OrderReopened= Zamówienie %s ponownie otwarte
 AddOrder=Stwórz zamówienie
 AddToMyOrders=Dodaj do moich zamówień
 AddToOtherOrders=Dodaj do innych zamówień
-AddToDraftOrders=Dodaj do projektu porządku
+AddToDraftOrders=Dodaj do szkicu zamówienia
 ShowOrder=Pokaż zamówienie
 OrdersOpened=Zamówienia do przygotowania
-NoOpenedOrders=Brak otawrtych zamówień
+NoOpenedOrders=Brak otwartych zamówień
 NoOtherOpenedOrders=Brak innych otwartych zamówień
 NoDraftOrders=Brak projektów zamówień
-NoOrder=Brak zamówień
+NoOrder=No order
 NoSupplierOrder=Brak zamówień od dostawców
 OtherOrders=Inne zamówienia
 LastOrders=Ostatnie %s zamówień klienta
 LastCustomerOrders=Ostatnie %s zamówień klienta
 LastSupplierOrders=Ostatnie %s zamówień dla dostawcy
-LastModifiedOrders=Ostatnia %s zmodyfikowane zamówień
-LastClosedOrders=Ostatnia %s zamkniętych zleceń
+LastModifiedOrders=Ostatnie %s zmydyfikowanych zamówień
+LastClosedOrders=Ostatnie %s zamkniętych zamówień
 AllOrders=Wszystkie zamówienia
 NbOfOrders=Liczba zleceń
 OrdersStatistics=Statystyki zamówień
@@ -101,9 +101,9 @@ CloseOrder=Zamknij zamówienie
 ConfirmCloseOrder=Czy na pewno chcesz zamknąć to zamówienie? Gdy zamówienie jest zamknięta, to może być rozliczone.
 ConfirmCloseOrderIfSending=Czy na pewno chcesz zamknąć to zamówienie? Musisz zamknąć zamówienie tylko wtedy, gdy wszystkie wysyłki są zrobione.
 ConfirmDeleteOrder=Czy na pewno chcesz usunąć to zamówienie?
-ConfirmValidateOrder=Czy na pewno chcesz, aby potwierdzić tej kolejności pod <b>nazwą %s?</b>
-ConfirmUnvalidateOrder=Czy na pewno chcesz przywrócić <b>%s</b> zamówień ze statusem projektu?
-ConfirmCancelOrder=Czy na pewno chcesz anulować zamówienie?
+ConfirmValidateOrder=Czy napewno zatwierdzić zamówienie pod nazwą <b>%s</b>?
+ConfirmUnvalidateOrder=Czy na pewno chcesz przywrócić zamówienie <b>%s</b> do statusu szkicu?
+ConfirmCancelOrder=Czy na pewno chcesz anulować to zamówienie?
 ConfirmMakeOrder=Czy na pewno chcesz, aby potwierdzić wprowadzone tym celu <b>na %s?</b>
 GenerateBill=Generuj fakturę
 ClassifyShipped=Oznacz jako dostarczone
@@ -121,14 +121,14 @@ RefCustomerOrderShort=Nr referencyjny zamówienia klienta
 SendOrderByMail=Wyślij zamówienie pocztą
 ActionsOnOrder=Działania mające na celu
 NoArticleOfTypeProduct=Nr artykułu typu "produktu", więc nie shippable artykule tej kolejności
-OrderMode=Postanowienie metody
+OrderMode=Sposób złożenia zamówienia
 AuthorRequest=Wniosek autora
 UseCustomerContactAsOrderRecipientIfExist=Użyj klienta adres, jeśli określone zamiast trzeciej kolejności adres odbiorcy adres
-RunningOrders=Zamówienia na proces
+RunningOrders=Zamówienia w przetwarzaniu
 UserWithApproveOrderGrant=Useres przyznane z "zatwierdza zamówienia zgody.
 PaymentOrderRef=Płatność celu %s
 CloneOrder=Powiel zamówienie
-ConfirmCloneOrder=Czy na pewno chcesz klon tej <b>kolejności %s?</b>
+ConfirmCloneOrder=Czy na pewno chcesz powielić zamówienie <b>%s</b>?
 DispatchSupplierOrder=%s Odbiór aby dostawca
 FirstApprovalAlreadyDone=Pierwsze zatwierdzenie już zrobione
 SecondApprovalAlreadyDone=Wykonano drugie zatwierdzenie
@@ -150,14 +150,14 @@ Error_FailedToLoad_COMMANDE_SUPPLIER_ADDON_File=Nie można załadować modułu p
 Error_FailedToLoad_COMMANDE_ADDON_File=Nie można załadować modułu pliku ' %s'
 Error_OrderNotChecked=Nie wybrano zamówienia do faktury
 # Sources
-OrderSource0=Commercial wniosku
+OrderSource0=Oferta handlowa
 OrderSource1=Internet
 OrderSource2=Kampania pocztowa
 OrderSource3=Kampania telefoniczna
 OrderSource4=Kampania Fax
 OrderSource5=Reklama
 OrderSource6=Przechowywać
-QtyOrdered=Ilosc sortowane
+QtyOrdered=Zamówiona ilość
 AddDeliveryCostLine=Dodaj dostawy koszt linii wskazujące wagi zamówienia
 # Documents models
 PDFEinsteinDescription=Pełna kolejność modelu (logo. ..)
diff --git a/htdocs/langs/pl_PL/other.lang b/htdocs/langs/pl_PL/other.lang
index b59a30bba8371ef2aa72e2518670da97f267c6a1..f4c62fd9b4b514f1e22915c0452d517bebaf9aa9 100644
--- a/htdocs/langs/pl_PL/other.lang
+++ b/htdocs/langs/pl_PL/other.lang
@@ -114,19 +114,19 @@ WeightUnitkg=kg
 WeightUnitg=g
 WeightUnitmg=mg
 WeightUnitpound=funt
-Length=Lengde
+Length=Długość
 LengthUnitm=m
 LengthUnitdm=dm
 LengthUnitcm=cm
 LengthUnitmm=mm
-Surface=Område
+Surface=Powierzchnia
 SurfaceUnitm2=m²
 SurfaceUnitdm2=dm²
 SurfaceUnitcm2=cm²
 SurfaceUnitmm2=mm²
 SurfaceUnitfoot2=ft²
 SurfaceUnitinch2=in²
-Volume=Tom
+Volume=Objętość
 TotalVolume=Całkowita objętość
 VolumeUnitm3=m³
 VolumeUnitdm3=dm³ (l)
@@ -238,3 +238,8 @@ ToExport=Eksport
 NewExport=Nowy eksport
 ##### External sites #####
 ExternalSites=Eksterne nettsteder
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/pl_PL/paypal.lang b/htdocs/langs/pl_PL/paypal.lang
index 12257ee49e2563dfaee3da7e8edf8e0297617549..e3b44eab374eef57ef1b71bcf5ed06ccdfcf6b7b 100644
--- a/htdocs/langs/pl_PL/paypal.lang
+++ b/htdocs/langs/pl_PL/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Tryb testu / sandbox
 PAYPAL_API_USER=API użytkownika
 PAYPAL_API_PASSWORD=API hasło
 PAYPAL_API_SIGNATURE=Podpis API
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Oferta płatności "integralnej" (Karta kredytowa+Paypal) lub tylko "Paypal"
 PaypalModeIntegral=Integralny
 PaypalModeOnlyPaypal=Tylko PayPal
diff --git a/htdocs/langs/pl_PL/printing.lang b/htdocs/langs/pl_PL/printing.lang
index 86051b81fbe73d4826aebc48a5243fe704d1491e..d9d3d4882ee2f84f23c837ec469fff119ac47685 100644
--- a/htdocs/langs/pl_PL/printing.lang
+++ b/htdocs/langs/pl_PL/printing.lang
@@ -1,26 +1,26 @@
 # Dolibarr language file - Source file is en_US - printing
 Module64000Name=Drukowanie bezpośrednie
-Module64000Desc=Umożliw drukowanie bezpośrenie
+Module64000Desc=Włącz drukowanie bezpośrenie
 PrintingSetup=Ustawienia Direct Printing System
-PrintingDesc=Moduł ten dodaje przycisk Drukuj, aby wysłać dokumenty bezpośrednio do drukarki (bez otwierania dokumentu do aplikacji) z różnych modułów.
+PrintingDesc=Moduł ten dodaje przycisk Drukuj wysyłający dokumenty bezpośrednio do drukarki (bez otwierania dokumentu w aplikacji).
 MenuDirectPrinting=Zadania drukowania bezpośredniego
 DirectPrint=Wydruk bezpośredni
 ModuleDriverSetup=Konfiguracja modułu sterownika
-PrintingDriverDesc=Zmienne konfiguracyjne dla drukowania sterownika.
-ListDrivers=Lista kierowców
+PrintingDriverDesc=Zmienne konfiguracyjne dla sterownika wydruku.
+ListDrivers=Lista sterowników
 PrintTestDesc=Lista drukarek.
-FileWasSentToPrinter=Plik% s został wysłany do drukarki
-NoActivePrintingModuleFound=Nie aktywny moduł do drukowania dokumentu
+FileWasSentToPrinter=Plik %s został wysłany do drukarki
+NoActivePrintingModuleFound=Brak aktywnego modułu do drukowania dokumentów
 PleaseSelectaDriverfromList=Proszę wybrać sterownik z listy.
 PleaseConfigureDriverfromList=Skonfiguruj sterownik wybrany z listy
-SetupDriver=Ustawień sterownika
+SetupDriver=Ustawienia sterownika
 TestDriver=Test
-TargetedPrinter=Ukierunkowane drukarki
-UserConf=Ustawienia na użytkownika
+TargetedPrinter=Drukarka docelowa
+UserConf=Konfiguracja per użytkownik
 PRINTGCP=Google Cloud Print
-PRINTGCP_INFO=Ustawienie Google OAuth API
+PRINTGCP_INFO=Konfiguracja API Google OAuth
 PRINTGCP_AUTHLINK=Poświadczenie
-PRINTGCP_TOKEN_ACCESS=Google Cloud Print OAuth Reklamowe
+PRINTGCP_TOKEN_ACCESS=Token Cloud Print OAuth
 PRINTGCP_TOKEN_REFRESH=Reklamowe Odśwież Present
 PRINTGCP_TOKEN_EXPIRED=Token wygasł
 PRINTGCP_TOKEN_EXPIRE_AT=Token wygaśnie za
@@ -28,8 +28,8 @@ PRINTGCP_DELETE_TOKEN=Usuń zachowany token
 PrintGCPDesc=Sterownik ten pozwala na wysyłanie dokumentów bezpośrednio do drukarki z Google Cloud Print.
 PrintingDriverDescprintgcp=Zmienne konfiguracyjne dla sterownika drukowania Google Cloud Print.
 PrintTestDescprintgcp=Lista drukarek dla Google Cloud Print.
-PRINTGCP_LOGIN=Google Logowanie
-PRINTGCP_PASSWORD=Konto Google hasło
+PRINTGCP_LOGIN=logowanie do konta Google
+PRINTGCP_PASSWORD=Hasło do konta Google
 STATE_ONLINE=Online
 STATE_UNKNOWN=Nieznany
 STATE_OFFLINE=Offline
@@ -43,23 +43,23 @@ TYPE_ANDROID_CHROME_SNAPSHOT=Android
 TYPE_IOS_CHROME_SNAPSHOT=IOS
 GCP_Name=Nazwa
 GCP_displayName=Nazwa wyświetlana
-GCP_Id=Drukarka Id
+GCP_Id=ID drukarki
 GCP_OwnerName=Nazwa właściciela
 GCP_State=Stan drukarki
 GCP_connectionStatus=Stan online
 GCP_Type=Typ drukarki
-PRINTIPP=PrintIPP kierowcy
+PRINTIPP=Sterownik PrintIPP
 PrintIPPSetup=Konfiguracja modułu Direct Print
-PrintIPPDesc=Sterownik ten pozwala na wysyłanie dokumentów bezpośrednio do drukarki. To wymaga systemu Linux z CUPS zainstalowanych.
-PrintingDriverDescprintipp=Zmienne konfiguracyjne dla sterownika drukowania PrintIPP.
-PrintTestDescprintipp=Lista drukarek dla kierowcy PrintIPP.
+PrintIPPDesc=Sterownik ten pozwala na wysyłanie dokumentów bezpośrednio do drukarki. Wymagany system Linux z zainstalowanym CUPS.
+PrintingDriverDescprintipp=Zmienne konfiguracyjne dla sterownika wydruku PrintIPP.
+PrintTestDescprintipp=Lista drukarek dla sterownika PrintIPP.
 PRINTIPP_ENABLED=Pokaż ikonę "Druk bezpośredni" na listach dokumentów
 PRINTIPP_HOST=Serwer druku
 PRINTIPP_PORT=Port
 PRINTIPP_USER=Login
 PRINTIPP_PASSWORD=Hasło
 NoPrinterFound=Nie znaleziono drukarki (sprawdź konfigurację CUPS)
-NoDefaultPrinterDefined=Nie drukarka domyślna zdefiniowana
+NoDefaultPrinterDefined=Nie zdefiniowano drukarki domyślnej
 DefaultPrinter=Drukarka domyślna
 Printer=Drukarka
 CupsServer=Serwer CUPS
@@ -68,10 +68,10 @@ IPP_Name=Nazwa drukarki
 IPP_State=Stan drukarki
 IPP_State_reason=Powodem państwa
 IPP_State_reason1=Reason1 państwowe
-IPP_BW=BW
+IPP_BW=Czarno-Biały
 IPP_Color=Kolor
 IPP_Device=Urządzenie
-IPP_Media=Media do drukarek
+IPP_Media=Nośnik drukarki
 IPP_Supported=Typ nośnika
 STATE_IPP_idle=Bezczynny
 STATE_IPP_stopped=Zatrzymany
@@ -79,8 +79,8 @@ STATE_IPP_paused=Wstrzymany
 STATE_IPP_toner-low-report=Niski poziom tonera
 STATE_IPP_none=Żaden
 MEDIA_IPP_stationery=Materiały biurowe
-MEDIA_IPP_thermal=Termiczny
-IPP_COLOR_print-black=BW drukarki
-DirectPrintingJobsDesc=Ta strona zadania drukowania listy znaleziono dostępnych drukarek.
+MEDIA_IPP_thermal=Termiczna
+IPP_COLOR_print-black=Drukarka czarno-biała
+DirectPrintingJobsDesc=Ta strona pokazuje listę zadań wydruku dla dostępnych drukarek.
 GoogleAuthNotConfigured=Ustawienia Google OAuth nie zrobił. Włącz moduł OAuth i ustawić Google ID / tajemnica.
 GoogleAuthConfigured=Poświadczenia Google OAuth znaleźć w konfiguracji modułu OAuth.
diff --git a/htdocs/langs/pl_PL/products.lang b/htdocs/langs/pl_PL/products.lang
index cd9f29e37f2c207e4947a5328c09baefb8550a21..51149d9d8c81d250c33f07581fe0b65f2894389f 100644
--- a/htdocs/langs/pl_PL/products.lang
+++ b/htdocs/langs/pl_PL/products.lang
@@ -140,7 +140,7 @@ ProductToAddSearch=Szukaj produktu do dodania
 AddDel=Dodaj / Usuń
 NoMatchFound=Nie znaleziono odpowiednika
 ProductAssociationList=Lista produktów/usłu, które są częścią virtualnego produktu/pakietu
-ProductParentList=Lista produktów / usług pakietowych z tym produktem jako składnika
+ProductParentList=Lista produktów/usług pakietowych z tym produktem jako składnikiem
 ErrorAssociationIsFatherOfThis=Jeden z wybranych produktów jest nadrzędny dla produktu bierzącego
 DeleteProduct=Usuń produkt / usługę
 ConfirmDeleteProduct=Czy na pewno chcesz usunąć ten produkt / usługę?
@@ -252,7 +252,7 @@ UnitPmp=Jednostka VWAP netto
 CostPmpHT=Łączna VWAP netto
 ProductUsedForBuild=Automatycznie zużyte przez produkcję
 ProductBuilded=Produkcja została zakończona
-ProductsMultiPrice=Multi-cena produktu
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Ceny klienta (produktów lub usług, multi-ceny)
 ProductSellByQuarterHT=Kwartalne obroty na produktach przed opodatkowaniem
 ServiceSellByQuarterHT=Kwartalne obroty na usłuigach przed opodatkowaniem
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Wybież plik PDF
 IncludingProductWithTag=Włączająć produkt/usługę z tagiem
 DefaultPriceRealPriceMayDependOnCustomer=Domyślna cena, realna cena może zależeć od klienta
 WarningSelectOneDocument=Proszę zaznaczyć co najmniej jeden dokument
-DefaultUnitToShow=Jednostki
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/pl_PL/projects.lang b/htdocs/langs/pl_PL/projects.lang
index f103b63a6c9ffddcb631100da55fe6450f2fff96..35301d5cf613e8ea5fbca450f5d2e4a5dae996ec 100644
--- a/htdocs/langs/pl_PL/projects.lang
+++ b/htdocs/langs/pl_PL/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=Ten widok przedstawia wszystkie projekty i zadania, któr
 ProjectsDesc=Ten widok przedstawia wszystkie projekty (twoje uprawnienia użytkownika pozwalają wyświetlać wszystko).
 MyTasksDesc=Ten widok jest ograniczony do projektów lub zadań, dla których jesteś kontaktem (cokolwiek jest w typie).
 OnlyOpenedProject=Tylko otwarte projekty są widoczne (szkice projektów lub zamknięte projekty są niewidoczne)
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Ten widok przedstawia wszystkie projekty i zadania, które możesz przeczytać.
 TasksDesc=Ten widok przedstawia wszystkie projekty i zadania (twoje uprawnienia mają dostępu do wglądu we wszystko).
 AllTaskVisibleButEditIfYouAreAssigned=Wszystkie zadania dla tego projektu są widoczne, ale możesz wprowadzić czas tylko dla zadań, które są do ciebie przypisane. Przypisz zadanie do siebie jeżeli chcesz wprowadzić czas.
@@ -29,7 +30,9 @@ OfficerProject=Oficer projektu
 LastProjects=Ostatnia %s projektów
 AllProjects=Wszystkie projekty
 OpenedProjects=Otwarte projekty
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Szanse ilość otwartych projektów przez statusu
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Lista projektów
 ShowProject=Pokaż projekt
 SetProject=Ustaw projekt
@@ -69,7 +72,7 @@ Progress=Postęp
 ProgressDeclared=Deklarowany postęp
 ProgressCalculated=Obliczony postęp
 Time=Czas
-ListProposalsAssociatedProject=Lista komercyjnych propozycji związanych z projektem
+ListProposalsAssociatedProject=Lista ofert handlowcych związanych z projektem
 ListOrdersAssociatedProject=Lista zamówień klienta związanych z projektem
 ListInvoicesAssociatedProject=Lista faktur klienta związanych z projektem
 ListPredefinedInvoicesAssociatedProject=Lista klientów predefinowanych faktur związanych z projektem
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Zadań %s zmodyfikowano
 TaskDeletedInDolibarr=Zadań %s usunięto
 OpportunityStatus=Stan okazja
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Kwota okazja
 OpportunityAmountShort=Opp. ilość
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projekty z tym użytkownika jako kontakt
 TasksWithThisUserAsContact=Zadania dopisane do tego użytkownika
 ResourceNotAssignedToProject=Nie przypisane do projektu
 ResourceNotAssignedToTask=Nie przypisane do zadania
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Przypisz zadanie do mnie
 AssignTask=Przydzielać
 ProjectOverview=Przegląd
@@ -179,7 +185,7 @@ YouCanCompleteRef=Jeśli chcesz, aby zakończyć ref z niektórych informacji (d
 OpenedProjectsByThirdparties=Projekty otwarte przez kontahentów
 OpportunityTotalAmount=Szanse Całkowita ilość
 OpportunityPonderatedAmount=Ilość możliwości ważone
-OpportunityPonderatedAmountDesc=Szanse kwota ważona z prawdopodobieństwem (w zależności od stanu szans)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Poszukiwania
 OppStatusQUAL=Kwalifikacja
 OppStatusPROPO=Wniosek
diff --git a/htdocs/langs/pl_PL/propal.lang b/htdocs/langs/pl_PL/propal.lang
index 8659677bfec940e18b6d92b878b501c55fe89f38..10a50d82f7a421a2e7a51a3932650feae243d522 100644
--- a/htdocs/langs/pl_PL/propal.lang
+++ b/htdocs/langs/pl_PL/propal.lang
@@ -1,41 +1,42 @@
 # Dolibarr language file - Source file is en_US - propal
-Proposals=Commercial propozycje
-Proposal=Commercial wniosku
-ProposalShort=Wniosek
-ProposalsDraft=Projekt propozycji
-ProposalDraft=Projekt wniosku handlowych
-ProposalsOpened=Otwarte propozycje handlowe
-Prop=Commercial propozycje
-CommercialProposal=Commercial wniosku
-CommercialProposals=Commercial propozycje
-ProposalCard=Karta Wniosek
-NewProp=Nowy wniosek handlowych
-NewProposal=Nowy wniosek handlowych
-NewPropal=Nowa propozycja
+Proposals=Oferty handlowe
+Proposal=Oferta handlowa
+ProposalShort=Oferta
+ProposalsDraft=Szkic ofert handlowych
+ProposalDraft=Szkic oferty handlowej
+ProposalsOpened=Otwarte oferty handlowe
+Prop=Oferty handlowe
+CommercialProposal=Oferta handlowa
+CommercialProposals=Oferty handlowe
+ProposalCard=Karta oferty
+NewProp=Nowa oferta handlowa
+NewProposal=Nowa oferta handlowa
+NewPropal=Nowa oferta
 Prospect=Prospect
 ProspectList=Prospect listy
-DeleteProp=Usuń handlowych wniosku
-ValidateProp=Validate handlowych wniosku
+DeleteProp=Usuń propozycję handlową
+ValidateProp=Zatwierdź propozycję handlową
 AddProp=Utwórz wniosek
 ConfirmDeleteProp=Czy na pewno chcesz usunąć tę propozycję handlową?
 ConfirmValidateProp=Czy na pewno chcesz, aby potwierdzić tę propozycję handlową?
-LastPropals=Ostatnia %s propozycje
-LastClosedProposals=Ostatnia %s zamknięte propozycje
-LastModifiedProposals=Ostatnia %s zmodyfikowane propozycje
-AllPropals=Wszystkie propozycje
-LastProposals=Ostatnie propozycje
-SearchAProposal=Szukaj projektu
-ProposalsStatistics=Commercial propozycje "statystyki
-NumberOfProposalsByMonth=Liczba miesięcy
-AmountOfProposalsByMonthHT=Kwota przez miesiąc (po odliczeniu podatku)
-NbOfProposals=Liczba propozycji
-ShowPropal=Pokaż wniosku
-PropalsDraft=Robocze
+LastPropals=Ostatnie %s ofert
+LastClosedProposals=Ostatnie %s zamkniętych ofert
+LastModifiedProposals=Ostatnie %s zmodyfikowanych ofert
+AllPropals=Wszystkie oferty
+LastProposals=Ostatnie oferty
+SearchAProposal=Szukaj oferty
+NoProposal=No proposal
+ProposalsStatistics=Statystyki ofert handlowych
+NumberOfProposalsByMonth=Ilość w miesiącu
+AmountOfProposalsByMonthHT=Kwota w miesiącu (po odliczeniu podatku)
+NbOfProposals=Liczba ofert handlowych
+ShowPropal=Pokaż oferty
+PropalsDraft=Szkice
 PropalsOpened=Otwórz
 PropalsNotBilled=Zamknięte nie rozliczone
-PropalStatusDraft=Projekt (musi zostać zatwierdzone)
-PropalStatusValidated=Zatwierdzona (projekt jest otwarty)
-PropalStatusOpened=Zatwierdzona (projekt jest otwarty)
+PropalStatusDraft=Szkic (musi zostać zatwierdzony)
+PropalStatusValidated=Zatwierdzona (oferta jest otwarta)
+PropalStatusOpened=Zatwierdzona (oferta jest otwarta)
 PropalStatusClosed=Zamknięte
 PropalStatusSigned=Podpisano (do rachunku)
 PropalStatusNotSigned=Nie podpisały (zamknięte)
@@ -47,36 +48,37 @@ PropalStatusClosedShort=Zamknięte
 PropalStatusSignedShort=Podpisano
 PropalStatusNotSignedShort=Nie podpisała
 PropalStatusBilledShort=Billed
-PropalsToClose=Propozycji, aby zamknąć
-PropalsToBill=Podpisano propozycji do rachunku
-ListOfProposals=Lista propozycji
+PropalsToClose=Oferty handlowe do zamknięcia
+PropalsToBill=Przypisano ofertę handlową do rachunku
+ListOfProposals=Lissta ofert handlowych
 ActionsOnPropal=Działania na wniosek
 NoOpenedPropals=Brak otwartych ofert handlowych
-NoOtherOpenedPropals=Brak innych otwartych propozycji handlowych
-NoPropal=Brak propozycji handlowych
-RefProposal=Commercial wniosku ref
-SendPropalByMail=Wyślij handlowych wniosku pocztą
-AssociatedDocuments=Dokumenty związane z projektem:
+NoOtherOpenedPropals=Brak innych otwartych ofert handlowych
+NoPropal=Brak ofert handlowych
+RefProposal=Nr referencyjny oferty handlowej
+SendPropalByMail=Wyślij propozycję handlowa emailem
+AssociatedDocuments=Dokumenty związane z propozycją:
 ErrorCantOpenDir=Nie można otworzyć katalogu
 DatePropal=Data wniosku
 DateEndPropal=Data końca obowiązywania
 DateEndPropalShort=Data zakończenia
 ValidityDuration=Ważność czas
-CloseAs=Zamknij ze statusu
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Klasyfikacja billed
 BuildBill=Zbuduj faktury
 ErrorPropalNotFound=Propal %s nie znaleziono
 Estimate=Prognoza:
 EstimateShort=Prognoza
-OtherPropals=Inne propozycje
-AddToDraftProposals=Dodaj do szkicu wniosku
-NoDraftProposals=Brak szkiców wniosku
-CopyPropalFrom=Tworzenie komercyjnych wniosek kopiowanie istniejących wniosku
-CreateEmptyPropal=Utwórz pusty propozycji Vierge lub z wykazu produktów / usług
+OtherPropals=Inne oferty
+AddToDraftProposals=Dodaj do projektu oferty
+NoDraftProposals=Brak projektu oferty
+CopyPropalFrom=Stwórz ofertę handlową poprzez skopiowanie istniejącej oferty
+CreateEmptyPropal=Utwórz pustą ofertę handlową lub z wykazu produktów / usług
 DefaultProposalDurationValidity=Domyślny czas ważności wniosku handlowych (w dniach)
 UseCustomerContactAsPropalRecipientIfExist=Użyj klienta adres, jeśli określone zamiast trzeciej adres wniosku adres odbiorcy
-ClonePropal=Clone handlowych wniosku
-ConfirmClonePropal=Czy na pewno chcesz klon tej propozycji <b>komercyjnych %s?</b>
+ClonePropal=Powiel propozycję handlową
+ConfirmClonePropal=Czy na pewno chcesz powielić propozycję handlową <b>%s</b>?
 ConfirmReOpenProp=Czy na pewno chcesz otworzyć z powrotem handlowe <b>%s</b> propozycję?
 ProposalsAndProposalsLines=Commercial wniosku i linie
 ProposalLine=Wniosek linii
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Domyślny model kreacji.
 DefaultModelPropalToBill=Domyślny szablon po zamknięciu wniosku biznesowego ( do zafakturowania)
 DefaultModelPropalClosed=Domyślny szablon po zamknięciu projektu biznesowego ( weryfikowane )
 ProposalCustomerSignature=Wpisany akceptacji i pieczęć firmy, data i podpis
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/pl_PL/receiptprinter.lang b/htdocs/langs/pl_PL/receiptprinter.lang
index 9c259b1d11262bfc6633efa86ddef36760d4e064..7a29a4053870ba3df303c6d0ee9a32aa1854eeef 100644
--- a/htdocs/langs/pl_PL/receiptprinter.lang
+++ b/htdocs/langs/pl_PL/receiptprinter.lang
@@ -5,8 +5,8 @@ PrinterDeleted=Drukarka %s usunięta
 TestSentToPrinter=Test wysyłania do drukarki %s
 ReceiptPrinterDesc=Ustawienia drukarek
 ReceiptPrinterTemplateDesc=Ustawienia szablonów
-ReceiptPrinterTypeDesc=Opis typu drukarki
-ReceiptPrinterProfileDesc=Opis profilu drukarki
+ReceiptPrinterTypeDesc=Opis typu drukarki przyjęciowej
+ReceiptPrinterProfileDesc=Opis profilu drukarki przyjęciowej
 ListPrinters=Lista drukarek
 SetupReceiptTemplate=Ustawienie szablonu
 CONNECTOR_DUMMY=Atrapa drukarki
@@ -65,9 +65,9 @@ DOL_PRINT_DAY_LETTERS=Drukuj numer dnia
 DOL_PRINT_TABLE=Drukuj numer stolika (np.; w restauracjach)
 DOL_PRINT_CUTLERY=Drukuj ilośc sztućcy (np.: dla restauracji)
 DOL_PRINT_PAYMENT=Drukuj metodę płatności
-DOL_PRINT_LOGO=Print logo przechowywane na drukarce. Przykład: 32 | 32
+DOL_PRINT_LOGO=Drukuj logo przechowywane na drukarce. Przykład: 32 | 32
 DOL_PRINT_LOGO_OLD=Print logo przechowywane na drukarce. Muszą być przestrzegane przez kod logo. Dla starych drukarek.
-DOL_PRINT_ORDER_LINES=Drukuj linie zamówienia
+DOL_PRINT_ORDER_LINES=Drukuj pozycje zamówienia
 DOL_PRINT_ORDER_TAX=Drukuj sumę podatków dla zamówienia
 DOL_PRINT_ORDER_LOCAL_TAX=Drukuj lokalne podatki dla zamówienia
 DOL_PRINT_ORDER_TOTAL=Drukuj zamówienie łącznie
@@ -84,13 +84,13 @@ DOL_PRINT_CUSTOMER_ACCOUNT_BALANCE=Drukuj saldo konta klienta
 DOL_PRINT_VENDOR_LASTNAME=Drukuj nazwisko sprzedawcy
 DOL_PRINT_VENDOR_FIRSTNAME=Drukuj imię sprzedawcy
 DOL_PRINT_VENDOR_MAIL=Drukuj mail sprzedawcy
-DOL_PRINT_CUSTOMER_POINTS=Drukuj ilośc punktów klienta
-DOL_PRINT_ORDER_POINTS=Drukuj ilośc punktów za zamówienie
+DOL_PRINT_CUSTOMER_POINTS=Drukuj ilość punktów klienta
+DOL_PRINT_ORDER_POINTS=Drukuj ilość punktów za zamówienie
 DOL_PRINT_IF_CUSTOMER=Drukuj linii, jeśli klient ma wpływ na zamówienie
 DOL_PRINT_IF_VENDOR=Drukuj linii, jeśli sprzedawca ma wpływ na zamówienie
 DOL_PRINT_IF_HAPPY_HOUR=Drukuj linie jeżeli Happy Hour
 DOL_PRINT_IF_NUM_ORDER_UNIQUE=Drukuj linię jeżeli zamówienie jest zatwierdzone
-DOL_PRINT_IF_CUSTOMER_POINTS=Drukij linię jeżeli punkty klient > 0
+DOL_PRINT_IF_CUSTOMER_POINTS=Drukij linię jeżeli punkty klienta > 0
 DOL_PRINT_IF_ORDER_POINTS=Drukuj linię jeżeli punkty za zamówienie > 0
 DOL_PRINT_IF_CUSTOMER_TAX_NUMBER=Drukuj linię jeżeli klient posiada numer NIP
-DOL_PRINT_IF_CUSTOMER_ACCOUNT_BALANCE_POSITIVE=Drukuj linii, jeśli saldo klienta> 0
+DOL_PRINT_IF_CUSTOMER_ACCOUNT_BALANCE_POSITIVE=Drukuj linii jeśli saldo klienta > 0
diff --git a/htdocs/langs/pl_PL/salaries.lang b/htdocs/langs/pl_PL/salaries.lang
index be4c518794cfce3d35d6bbdb6568e894373c87eb..423c49250e94e1fa187b42363927d14cf676361f 100644
--- a/htdocs/langs/pl_PL/salaries.lang
+++ b/htdocs/langs/pl_PL/salaries.lang
@@ -3,7 +3,6 @@ SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Kod rachunkowości dla wypłat
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Kod rachunkowości dla obciązeń finansowych
 Salary=Wypłata
 Salaries=Wypłaty
-Employee=Zatrudnienie
 NewSalaryPayment=Nowa wypłata
 SalaryPayment=Wypłata wynagrodzenia
 SalariesPayments=Wypłaty wynagordzeń
@@ -11,5 +10,5 @@ ShowSalaryPayment=Pokaż wypłaty wynagrodzeń
 THM=Średnia cena za godzine
 TJM=Średnia cena za dzień
 CurrentSalary=Aktualne wynagrodzenie
-THMDescription=Ta wartość może być użyta do obliczenia kosztów poniesionych przy projekcie wprowadzonym przez użytkowników jeżeli moduł projektów jest używany
-TJMDescription=Ta wartośc jest aktualni ejedyni einformacją i ni ejest wykorzystywana do jakichkolwiek obliczeń
+THMDescription=Ta wartość może być użyta do obliczenia kosztów poniesionych przy projekcie do którego przystąpili użytkownicy jeżeli moduł projektów jest używany
+TJMDescription=Ta wartość jest aktualnie jedynie informacją i nie jest wykorzystywana do jakichkolwiek obliczeń
diff --git a/htdocs/langs/pl_PL/sendings.lang b/htdocs/langs/pl_PL/sendings.lang
index b335408941b31900dff14bc938862d3cf79d293a..dfd19ab982879378600c457829298d9d04b190ad 100644
--- a/htdocs/langs/pl_PL/sendings.lang
+++ b/htdocs/langs/pl_PL/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=Wszystkie wysyłki
 Shipment=Transport
 Shipments=Transporty
 ShowSending=Pokaż przesyłki
-Receivings=Wpływy
+Receivings=Delivery Receipts
 SendingsArea=Obszar wysyłek
 ListOfSendings=Lista wysyłek
 SendingMethod=Sposób wysyłki
@@ -20,9 +20,9 @@ SendingCard=Karta Przesyłka
 NewSending=Nowy transport
 CreateASending=Utwórz transport
 CreateSending=Utwórz transport
-QtyOrdered=Ilosc sortowane
-QtyShipped=Ilosc wysłane
-QtyToShip=Ilosc do statku
+QtyOrdered=Zamówiona ilość
+QtyShipped=Wysłana ilość
+QtyToShip=Ilość do wysłania
 QtyReceived=Ilość otrzymanych
 KeepToShip=Pozostają do wysyłki
 OtherSendingsForSameOrder=Inne sendings do tego celu
diff --git a/htdocs/langs/pl_PL/sms.lang b/htdocs/langs/pl_PL/sms.lang
index 74b9d8a2290aadf4f40539372f4d3f51471f6d66..02001a6531b300379fe89a841c6273d8fb481fca 100644
--- a/htdocs/langs/pl_PL/sms.lang
+++ b/htdocs/langs/pl_PL/sms.lang
@@ -1,6 +1,6 @@
 # Dolibarr language file - Source file is en_US - sms
 Sms=Sms
-SmsSetup=Sms setup
+SmsSetup=Konfiguracja SMS
 SmsDesc=Ta strona pozwala na zdefiniowanie globals opcje SMS funkcji
 SmsCard=SMS karty
 AllSms=Wszystko SMS campains
@@ -49,5 +49,6 @@ SendSms=Wyślij SMS
 SmsInfoCharRemain=Nb z pozostałych znaków
 SmsInfoNumero= (W formacie międzynarodowym np.: +33899701761)
 DelayBeforeSending=Opóźnienie przed wysłaniem (minuty)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Żaden cel nie dostępne. Sprawdź konfigurację dostawcy SMS.
 
diff --git a/htdocs/langs/pl_PL/stocks.lang b/htdocs/langs/pl_PL/stocks.lang
index 4daefd7a474da1d0ba45fa70c9f81f7a48401159..9a51d3b9635a59553cc6d455a478f8f3399692bc 100644
--- a/htdocs/langs/pl_PL/stocks.lang
+++ b/htdocs/langs/pl_PL/stocks.lang
@@ -5,9 +5,9 @@ Warehouses=Magazyny
 NewWarehouse=Nowy magazyn / obszar magazynowania
 WarehouseEdit=Modyfikacja magazynu
 MenuNewWarehouse=Nowy magazyn
-WarehouseOpened=Magazyn otwarty
-WarehouseClosed=Magazyn zamknięte
-WarehouseSource=Źródło magazynu
+WarehouseOpened=Warehouse open
+WarehouseClosed=Magazyn zamknięty
+WarehouseSource=Magazyn źródłowy
 WarehouseSourceNotDefined=Nie zdefiniowano magazynu,
 AddOne=Dodaj jedną
 WarehouseTarget=Docelowy magazynie
@@ -16,16 +16,16 @@ CancelSending=Anuluj wysyłanie
 DeleteSending=Usuń wysyłanie
 Stock=Stan
 Stocks=Stany
-StocksByLotSerial=Zapas po locie/numerze seryjnym
+StocksByLotSerial=Zapasy wg. lotu/nr seryjnego
 Movement=Ruch
 Movements=Ruchy
 ErrorWarehouseRefRequired=Nazwa referencyjna magazynu wymagana
-ErrorWarehouseLabelRequired=Magazyn etykiecie jest wymagane
+ErrorWarehouseLabelRequired=Etykieta magazynu jest wymagana
 CorrectStock=Popraw stan
 ListOfWarehouses=Lista magazynów
 ListOfStockMovements=Wykaz stanu magazynowego
 StocksArea=Powierzchnia magazynów
-Location=Lieu
+Location=Lokacja
 LocationSummary=Nazwa skrócona lokalizacji
 NumberOfDifferentProducts=Wiele różnych środków
 NumberOfProducts=Łączna liczba produktów
@@ -33,44 +33,44 @@ LastMovement=Ostatni ruch
 LastMovements=Ostatnie ruchy
 Units=Jednostki
 Unit=Jednostka
-StockCorrection=Poprawny stanie
-StockTransfer=Przesunięcie zapsu
-StockMovement=Przesunięcie zapasu
+StockCorrection=Korekta zapasu
+StockTransfer=Transfer zapasu
+StockMovement=Przeniesienie zapasu
 StockMovements=Przesunięcia zapasu
 LabelMovement=Etykieta Ruch
 NumberOfUnit=Liczba jednostek
 UnitPurchaseValue=Jednostkowa cena nabycia
 TotalStock=Razem w akcji
-StockTooLow=Zasób zbyt niska
-StockLowerThanLimit=Zdjęcie niższa niż progu alarmu
+StockTooLow=Zbyt niski zapas
+StockLowerThanLimit=Zapas mniejszy niż alarm o zbyt niskim zapasie
 EnhancedValue=Wartość
 PMPValue=Wartość
 PMPValueShort=WAP
 EnhancedValueOfWarehouses=Magazyny wartości
-UserWarehouseAutoCreate=Tworzenie stanie automatycznie podczas tworzenia użytkownika
+UserWarehouseAutoCreate=Twórz automatycznie magazyn gdy stworzysz użytkownika
 IndependantSubProductStock=Produkt akcji i subproduct akcji są niezależne
 QtyDispatched=Ilość wysyłanych
 QtyDispatchedShort=Ilość wysyłanych
 QtyToDispatchShort=Ilość wysyłką
 OrderDispatch=Postanowienie wysyłkowe
-RuleForStockManagementDecrease=Funkcja automatycznego obniżania zapasu (ręczne obniżenie zapasu jest zawsze możliwe, nawet wówczas gdy reguły automatycznego obniżania są aktywne)
-RuleForStockManagementIncrease=Funkcja automatycznego podwyższania zapasu (ręczne podwyższenie zapasu jest zawsze możliwe, nawet wówczas gdy reguły automatycznego obniżania są aktywne)
-DeStockOnBill=Spadek realnych zasobów faktur / not kredytowych
-DeStockOnValidateOrder=Spadek realnych zasobów zamówień notatek
-DeStockOnShipment=Obniżenie relanych zapasów po zatwierdzeniu wysyłki
-ReStockOnBill=Wzrost realnego zasobów faktur / not kredytowych
-ReStockOnValidateOrder=Wzrost realnego zasobów zamówień notatek
-ReStockOnDispatchOrder=Wzrost rzeczywisty stan zapasów w magazynach ręcznego wysyłki, po otrzymaniu zamówienia dostawca
+RuleForStockManagementDecrease=Zasady dla automatycznego zarządzania zmniejszeniem zapasu (ręczne zmniejszenie jest zawsze możliwe, nawet gdy automatyczne reguły są aktywne)
+RuleForStockManagementIncrease=Zasady dla automatycznego zarządzania zwiększaniem zapasu (ręczne zwiększenie jest zawsze możliwe, nawet gdy automatyczne reguły są aktywne)
+DeStockOnBill=Zmniejsz realne zapasy magazynu po potwierdzeniu faktur / not kredytowych
+DeStockOnValidateOrder=Zmniejsz realne zapasy magazynu po potwierdzeniu zamówień klientów
+DeStockOnShipment=Zmniejsz realne zapasy magazynu po potwierdzeniu wysyłki
+ReStockOnBill=Zwiększ realne zapasy magazynu po potwierdzeniu faktur / not kredytowych
+ReStockOnValidateOrder=Zwiększ realne zapasy magazynu po potwierdzeniu zamówień dostawców
+ReStockOnDispatchOrder=Zwiększ realne zapasy w magazynach przy manualnym wysłaniu po odebraniu zamówienia przez dostawcę
 ReStockOnDeleteInvoice=Wzrost realnych zapasów na fakturze usunięcia
 OrderStatusNotReadyToDispatch=Zamówienie nie jest jeszcze lub nie więcej status, który umożliwia wysyłanie produktów w magazynach czas.
-StockDiffPhysicTeoric=Wyjaśnienie różnicy między fizycznej i teoretycznej magazynie
+StockDiffPhysicTeoric=Wyjaśnienie różnicy między fizycznym i wirtualnym stanem
 NoPredefinedProductToDispatch=Nie gotowych produktów dla tego obiektu. Więc nie w czas wysyłki jest wymagane.
 DispatchVerb=Wysyłka
-StockLimitShort=Limit dla wpisu
-StockLimit=Zdjęcie do wpisu limitu
+StockLimitShort=Limit zapasu przy którym wystąpi alarm
+StockLimit=Limit zapasu przy którym wystąpi alarm
 PhysicalStock=Fizyczne stany
 RealStock=Realny magazyn
-VirtualStock=Wirtualne stanie
+VirtualStock=Wirtualny zapas
 MininumStock=Minimum stock
 StockUp=Stanie się
 MininumStockShort=Magazyn minimum
@@ -83,8 +83,8 @@ WarehousesAndProductsBatchDetail=Magazyny i produkty (z detalami na lot / serial
 AverageUnitPricePMPShort=Średnia cena wejścia
 AverageUnitPricePMP=Średnia cena wejścia
 SellPriceMin=Cena sprzedaży jednostki
-EstimatedStockValueSellShort=Wartość dla sprzedaży
-EstimatedStockValueSell=Wartość dla sprzedaży
+EstimatedStockValueSellShort=Wartość sprzedaży
+EstimatedStockValueSell=Wartość sprzedaży
 EstimatedStockValueShort=Szacunkowa wartość zapasów
 EstimatedStockValue=Szacunkowa wartość magazynu
 DeleteAWarehouse=Usuń magazyn
@@ -100,11 +100,11 @@ DesiredMaxStock=Pożądany maksymalny zapas
 StockToBuy=Na zamówienie
 Replenishment=Uzupełnianie
 ReplenishmentOrders=Zamówień towarów
-VirtualDiffersFromPhysical=Według zwiększyć / zmniejszyć fizyczne opcji na akcje, akcji i wirtualnego akcji (fizyczne + zlecenia bieżące) może się różnić
+VirtualDiffersFromPhysical=According to increase/decrease stock options, physical stock and virtual stock (physical + current orders) may differ
 UseVirtualStockByDefault=Użyj wirtualnej akcji domyślnie, zamiast fizycznego magazynie, do uzupełniania funkcji
 UseVirtualStock=Użyj wirtualnej akcji
 UsePhysicalStock=Użyj fizycznej akcji
-CurentSelectionMode=Aktywny tryb wyboru
+CurentSelectionMode=Current selection mode
 CurentlyUsingVirtualStock=Wirtualny Zdjęcie
 CurentlyUsingPhysicalStock=Zdjęcie fizyczny
 RuleForStockReplenishment=Reguła dla uzupełnienia zapasów
@@ -113,28 +113,28 @@ AlertOnly= Tylko alarmy
 WarehouseForStockDecrease=<b>Magazyn% s</b> zostaną wykorzystane do zmniejszenia magazynie
 WarehouseForStockIncrease=<b>Magazyn% s</b> zostaną wykorzystane do zwiększenia magazynie
 ForThisWarehouse=W tym magazynie
-ReplenishmentStatusDesc=Lista wszystkich produktów z zapasem mniejszym niż zapas pożądany (lub niższy niż poziom alarmowania, jeżeli opcja "tylko alarmuj" jest zaznaczona). Użyj opcji - pozoli ona na stworzenie zamówień do dostawców w celu zmniejszenia różnic.
-ReplenishmentOrdersDesc=Jest to lista wszystkich otwartych zleceń dostawca tym predefiniowanych produktów. Tylko otwarte zlecenia z gotowych produktów, więc rozkazy, które mogą wpływać zapasów, są widoczne tutaj.
+ReplenishmentStatusDesc=This is a list of all products with a stock lower than desired stock (or lower than alert value if checkbox "alert only" is checked), and suggest you to create supplier orders to fill the difference.
+ReplenishmentOrdersDesc=This is a list of all opened supplier orders including predefined products. Only opened orders with predefined products, so orders that may affect stocks, are visible here.
 Replenishments=Uzupełnianie
 NbOfProductBeforePeriod=Ilość produktów w magazynie% s przed wybrany okres (<% s)
 NbOfProductAfterPeriod=Ilość produktów w magazynie% s po wybraniu okres (>% s)
-MassMovement=Masowy ruch
-MassStockMovement=Msza ruch Zdjęcie
+MassMovement=Masowe przesunięcie
+MassStockMovement=Masowe przesunięcie zapasu
 SelectProductInAndOutWareHouse=Wybierz produkt, ilość, magazyn źródłowy i docelowy magazyn, a następnie kliknij przycisk "% s". Po wykonaniu tych wszystkich wymaganych ruchów, kliknij na "% s".
 RecordMovement=Rekord transfert
 ReceivingForSameOrder=Wpływy do tego celu
 StockMovementRecorded=Zbiory zapisane ruchy
-RuleForStockAvailability=Zasady dotyczące wymagań dotyczących
-StockMustBeEnoughForInvoice=Poziom zapasu musi być wstarczająco duży aby dodać produkt/usługę do faktury
-StockMustBeEnoughForOrder=Poziom zapasu musi być wystarczająco duży aby dodać produkt/usługę do zamówienia
-StockMustBeEnoughForShipment= Poziom zapasu musi być wystarczająco duży aby dodać produkt/usługę do wysyłki
-MovementLabel=Wytwórnia ruchu
-InventoryCode=Kod Ruch i inwentaryzacji
+RuleForStockAvailability=Zasady dotyczące dostępności zapasu
+StockMustBeEnoughForInvoice=Zapas dla produktu/usługi musi być wystarczający aby je dodać do faktury
+StockMustBeEnoughForOrder=Zapas dla produktu/usługi musi być wystarczający aby je dodać do zamówienia
+StockMustBeEnoughForShipment= Zapas dla produktu/usługi musi być wystarczający aby je dodać do wysyłki
+MovementLabel=Etykieta ruchu
+InventoryCode=Kod inwentaryzacji
 IsInPackage=Zawarte w pakiecie
 ShowWarehouse=Pokaż magazyn
-MovementCorrectStock=Korekta zapasu dla prosuktu %s
-MovementTransferStock=Transfer Zdjęcie produktu% s do innego magazynu
-WarehouseMustBeSelectedAtFirstStepWhenProductBatchModuleOn=Magazyn źródłowy musi być tutaj zdefiniowany, kiedy włączony jest moduł "Lot produktu". Będzie to użyte do na liście partii/nr seryjnych dostępnych dla produktów, kóre wymagają nr partii/nr seryjnego przy przesunięciu zapasu. Jeżeli chcesz wysłać towar z różnych magazynów, stwórz przesyłkę w kilku korkach.
-InventoryCodeShort=Kod Fv/ Przesunięcia 
-NoPendingReceptionOnSupplierOrder=Nie czeka na odbiór ze względu na otwarcie zamówienia dostawca
+MovementCorrectStock=Korekta zapasu dla artykułu %s
+MovementTransferStock=Transferuj zapas artykułu %s do innego magazynu
+WarehouseMustBeSelectedAtFirstStepWhenProductBatchModuleOn=Source warehouse must be defined here when "Product lot" module is on. It will be used to list which lot/serial are available for products requiring lot/serial data for movement. If you want to send products from different warehouses, just make the shipment into several steps.
+InventoryCodeShort=Kod Fv/ Przesunięcia
+NoPendingReceptionOnSupplierOrder=No pending reception due to open supplier order
 ThisSerialAlreadyExistWithDifferentDate=Ten lot/numer seryjny (<strong>%s</strong>) już istnieje ale z inna data do wykorzystania lub sprzedania (znaleziono  <strong>%s</strong> a wszedłeś w <strong>%s</strong>)
diff --git a/htdocs/langs/pl_PL/supplier_proposal.lang b/htdocs/langs/pl_PL/supplier_proposal.lang
index 8cf7893aa99a7ed729dd48909854794e59ffb350..b1c490eafbea499ba3ac5baae40f2b7fcf19e263 100644
--- a/htdocs/langs/pl_PL/supplier_proposal.lang
+++ b/htdocs/langs/pl_PL/supplier_proposal.lang
@@ -1,17 +1,16 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
-SupplierProposal=Propozycja handlowa dostawcy
+SupplierProposal=Oferty handlowe dostawcy
 supplier_proposalDESC=Zarządzaj żądań cenowych na dostawców
-supplier_proposalMENU_LEFT_TITLE=Oferty dostawcy
-supplier_proposalMENU_LEFT_TITLE_NEW=Nowe zapytanie
-supplier_proposalMENU_LEFT_TITLE_LIST=Lista
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Zapytanie o cenę
 CommRequests=Zapytania o cenę
 SearchRequest=Znajdź zapytanie
 DraftRequests=Projekt zapytania
 LastModifiedRequests=W ostatnim% s zmodyfikowane żądania cenowe
 RequestsOpened=Otwórz zapytanie o cenę
-SupplierProposalArea=Obszar propozycje dostawca
-SupplierProposalShort=Oferta dostawcy
+SupplierProposalArea=Obszar ofert dostawcy
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Oferty dostawcy
 NewAskPrice=Nowe zapytanie o cenę
 NewAsk=Nowe zapytanie
diff --git a/htdocs/langs/pl_PL/trips.lang b/htdocs/langs/pl_PL/trips.lang
index f06b201f86c4fdb375ad973f0893ffffaa48fd79..786f4bd2ab29f2a99697a6307b749d0922c09e53 100644
--- a/htdocs/langs/pl_PL/trips.lang
+++ b/htdocs/langs/pl_PL/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informacje raport z wydatków
 PDFStandardExpenseReports=Standardowy szablon do generowania dokumentu PDF do raportu wydatków
 ExpenseReportLine=Linia raport z wydatków
 TF_OTHER=Inny
-TF_TRANSPORTATION=Transport
+TF_TRIP=Transportation
 TF_LUNCH=Obiad
 TF_METRO=Metro
 TF_TRAIN=Pociąg
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Czy na pewno chcesz, aby potwierdzić ten raport wydatków?
 NoTripsToExportCSV=Nie raport z wydatków na eksport za ten okres.
 ExpenseReportPayment=Płatność Raport wydatek
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Raporty wydatków płacić
diff --git a/htdocs/langs/pl_PL/users.lang b/htdocs/langs/pl_PL/users.lang
index be672d3ce427a43e9a237691a3f9b79b6c7af886..49e385017852b443bb3c08106f074c731ce0f24b 100644
--- a/htdocs/langs/pl_PL/users.lang
+++ b/htdocs/langs/pl_PL/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=Adres URL OpenID
 LoginUsingOpenID=Użyj do logowania OpenID
 WeeklyHours=Tygodniowy czas
 ColorUser=Kolor użytkownik
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/pl_PL/workflow.lang b/htdocs/langs/pl_PL/workflow.lang
index 7f741ac1c23d7ffa2dacadd31020336ab0cf1ab1..15b2e8266208e934b82c62feab0fa387536a26b3 100644
--- a/htdocs/langs/pl_PL/workflow.lang
+++ b/htdocs/langs/pl_PL/workflow.lang
@@ -3,7 +3,7 @@ WorkflowSetup=Konfiguracja modułu przepływu pracy
 WorkflowDesc=Moduł ten jest przeznaczony do zmiany zachowania automatycznych działań na język aplikacji. Domyślnie pracy jest otwarty (można robić rzeczy w określonej kolejności). Możesz włączyć automatyczne czynności, które są zainteresowane.
 ThereIsNoWorkflowToModify=Nie ma zmiany workflow dostępne z aktywnych modułów.
 descWORKFLOW_PROPAL_AUTOCREATE_ORDER=Automatycznie twórz zamówienie klienta po podpisaniu oferty handlowej
-descWORKFLOW_PROPAL_AUTOCREATE_INVOICE=Automatycznie twórz fakturę dla klienta po podpisaniu propozycji handlowej
+descWORKFLOW_PROPAL_AUTOCREATE_INVOICE=Automatycznie twórz fakturę dla klienta po podpisaniu oferty handlowej
 descWORKFLOW_CONTRACT_AUTOCREATE_INVOICE=Automatycznie stwórz fakturę dla klienta po zatwierdzeniu kontraktu
 descWORKFLOW_ORDER_AUTOCREATE_INVOICE=Automatycznie twórz fakturę dla klienta po zamknięciu zamówienia od klienta
 descWORKFLOW_ORDER_CLASSIFY_BILLED_PROPAL=Klasyfikowania związany propozycję źródłowego zapowiadane gdy zamówienie klienta jest ustawiony na płatne
diff --git a/htdocs/langs/pt_BR/accountancy.lang b/htdocs/langs/pt_BR/accountancy.lang
index 582b758b939b0ab4d33097ca05b5c65eb5b6c1de..e8e2cce1634d6f409d5f35cf8ea76155d4aed829 100644
--- a/htdocs/langs/pt_BR/accountancy.lang
+++ b/htdocs/langs/pt_BR/accountancy.lang
@@ -10,7 +10,6 @@ JournalFinancial=Diários financeiros
 OptionsDeactivatedForThisExportModel=Para este modelo de exportação, as opções são desativadas
 Selectmodelcsv=Escolha um modelo de exportação
 Modelcsv_CEGID=Exportação em direção CEGID Especialista
-Back=Retorno
 Definechartofaccounts=Definir um gráfico de contas
 Selectchartofaccounts=Selecionar um gráfico de contas
 Addanaccount=Adicionar uma conta contábil
@@ -61,10 +60,6 @@ Labelcompte=Conta rótulo
 Sens=Significado
 Codejournal=Jornal
 DelBookKeeping=Excluir os registros da contabilidade geral
-BankJournal=Diário do Banco
-DescBankJournal=Diário de banco incluindo todos os tipos de pagamentos que não sejam de caixa
-CashJournal=Diário de dinheiro - em espécie
-DescCashJournal=Livro caixa, incluindo dinheiro como tipo de pagamento
 CashPayment=Pagamento em dinheiro
 NewAccountingMvt=Nova movimentação
 NumMvts=Número de movimento
diff --git a/htdocs/langs/pt_BR/admin.lang b/htdocs/langs/pt_BR/admin.lang
index 0fe1e1e362f604e4e6843f32899e3e5c8d6ff170..599641a05eee7f99ae4acd6e8cf25e0755f4947c 100644
--- a/htdocs/langs/pt_BR/admin.lang
+++ b/htdocs/langs/pt_BR/admin.lang
@@ -412,7 +412,6 @@ Module500Name=Taxas, Contribuições Sociais e Dividendos
 Module500Desc=Gestor Taxas, Contribuições Sociais e Dividentos
 Module510Desc=Gestão de funcionários salários e pagamentos
 Module520Desc=Gestão dos empréstimos
-Module600Desc=Envia notificações pelo email em alguns eventos de negócio para os contatos de terceiros
 Module700Name=Doações
 Module700Desc=Gestor de Doações
 Module770Desc=Gestão e reivindicação de relatórios de despesas (transporte, refeição, ...)
diff --git a/htdocs/langs/pt_BR/agenda.lang b/htdocs/langs/pt_BR/agenda.lang
index 0dd0cdab8d7d998052e0a924a32d8e8b90dbed25..b523ca32d83b2d14074109fc2bd53b7ee9e48d4f 100644
--- a/htdocs/langs/pt_BR/agenda.lang
+++ b/htdocs/langs/pt_BR/agenda.lang
@@ -83,6 +83,4 @@ ConfirmCloneEvent=Tem certeza de que deseja clonar o <b>evento %s?</b>
 RepeatEvent=Repita evento
 EveryWeek=Toda semana
 EveryMonth=Todo mês
-DayOfMonth=Dia do mês
-DayOfWeek=Dia da semana
 DateStartPlusOne=Data de início + 1 hora
diff --git a/htdocs/langs/pt_BR/banks.lang b/htdocs/langs/pt_BR/banks.lang
index 1491b58b7b5233327e59ed023babcf7c6d191d81..d212a3390165bf72df865cd83f347debf6378498 100644
--- a/htdocs/langs/pt_BR/banks.lang
+++ b/htdocs/langs/pt_BR/banks.lang
@@ -136,4 +136,8 @@ DeleteARib=Deletar registro de BAN
 ConfirmDeleteRib=Você tem certeza que deseja deletar esse registro de BAN?
 StartDate=Data de início
 EndDate=Data final
+RejectCheck=Cheque devolvido
 ConfirmRejectCheck=Você está certo de que quer marcar esta como rejeitada?
+RejectCheckDate=Data do cheque foi devolvido
+CheckRejected=Cheque devolvido
+CheckRejectedAndInvoicesReopened=Cheque devolvido e faturas reabertas
diff --git a/htdocs/langs/pt_BR/bills.lang b/htdocs/langs/pt_BR/bills.lang
index f02d94da2284385e20c40693d9d238f17d656783..1b0d7336e5768edc9f006c0a5e3cc916d54c3c90 100644
--- a/htdocs/langs/pt_BR/bills.lang
+++ b/htdocs/langs/pt_BR/bills.lang
@@ -68,6 +68,7 @@ PaymentsReportsForYear=Relatórios de pagamentos por %s
 PaymentsAlreadyDone=Pagamentos já feitos
 PaymentsBackAlreadyDone=Reembolsos de pagamentos já feitos
 PaymentRule=Regra de pagamento
+PaymentModeShort=Forma de Pagamento
 PaymentTerm=Termo de pagamento
 PaymentConditions=Prazo de pagamento
 PaymentConditionsShort=Prazo de pagamento
@@ -80,6 +81,7 @@ ClassifyPaidPartially=Classificar 'parcialmente pago'
 ClassifyClosed=Classificar 'fechado'
 ClassifyUnBilled=Classificar "à faturar"
 CreateBill=Criar fatura
+CreateCreditNote=Criar nota de crédito
 AddBill=Adicionar fatura ou nota de crédito
 AddToDraftInvoices=Adicionar para rascunho de fatura
 DeleteBill=Deletar fatura
@@ -202,6 +204,8 @@ DateEcheance=Data limite do vencimento
 DateInvoice=Data da fatura
 NoInvoice=Nenhuma fatura
 ClassifyBill=Classificar fatura
+SupplierBillsToPay=Faturas de fornecedores não pagos
+CustomerBillsUnpaid=Faturas de clientes não pagos
 SetConditions=Definir condições de pagamento
 Billed=Faturado
 RepeatableInvoice=Fatura pré-definida
@@ -311,6 +315,7 @@ ExtraInfos=Informações extras
 RegulatedOn=Regulamentado em
 ChequeNumber=Nº do Cheque
 ChequeOrTransferNumber=Nº do cheque/transferência
+ChequeMaker=Cheque/transmissor de Transferência
 NetToBePaid=Líquido a ser pago
 PhoneNumber=Telefone
 FullPhoneNumber=Telefone
diff --git a/htdocs/langs/pt_BR/cashdesk.lang b/htdocs/langs/pt_BR/cashdesk.lang
index 52896027064d67fc9be70ca89f4e374e236dc293..e4497e79e88d6cc758612b8632d77d9305ea4f3e 100644
--- a/htdocs/langs/pt_BR/cashdesk.lang
+++ b/htdocs/langs/pt_BR/cashdesk.lang
@@ -20,3 +20,4 @@ ShowCompany=Mostar Empresa
 DeleteArticle=Clique para remover esse artigo
 FilterRefOrLabelOrBC=Procurar (Ref/Rótulo)
 UserNeedPermissionToEditStockToUsePos=Você tentou retirar do estoque com a emissão da fatura, mas o usuário precisa ter permissão para editar estoque.
+DolibarrReceiptPrinter=Impressão de Recibo Dolibarr
diff --git a/htdocs/langs/pt_BR/categories.lang b/htdocs/langs/pt_BR/categories.lang
index a4beed3e56c1e8a59d6a4c4119afb9f85972d1df..ce4d82ce7f69ab3bea817fa56e800b1309c0d7be 100644
--- a/htdocs/langs/pt_BR/categories.lang
+++ b/htdocs/langs/pt_BR/categories.lang
@@ -36,6 +36,9 @@ ImpossibleAssociateCategory=Impossível associar o tag / categoria
 ObjectAlreadyLinkedToCategory=Elemento já está ligada a esta tag / categoria.
 CategorySuccessfullyCreated=Esta tag / categoria %s foi adicionado com sucesso.
 ProductIsInCategories=Produto / serviço está ligada à seguintes tags / categorias
+SupplierIsInCategories=Os Terceiros estão vinculados às seguintes tags/categorias de fornecedores
+CompanyIsInCustomersCategories=Este Terceiro está vinculado às seguintes tags/categorias de Clientes/Prospects
+CompanyIsInSuppliersCategories=Este Terceiro está vinculado às seguintes tags/categorias de fornecedores
 MemberIsInCategories=Esse membro está vinculado a seguintes membros tags / categorias
 ContactIsInCategories=Este contato é ligado à sequência de contatos tags / categorias
 ProductHasNoCategory=Este produto / serviço não está em nenhuma tags / categorias
@@ -82,6 +85,7 @@ CatMemberLinks=Ligações entre os membros e tags / categorias
 DeleteFromCat=Remover de tags / categoria
 ExtraFieldsCategories=atributos complementares
 CategoriesSetup=Configuração Tags / categorias
+CategorieRecursiv=Fazer a ligação com os pais tag/categoria automaticamente
 CategorieRecursivHelp=Se ativado, o produto também será ligada a categoria original quando adicionando em uma subcategoria
 AddProductServiceIntoCategory=Adicione o seguinte produto / serviço
 ShowCategory=Mostrar tag / categoria
diff --git a/htdocs/langs/pt_BR/companies.lang b/htdocs/langs/pt_BR/companies.lang
index 834ddcecaf7fb426080d926a64cb1ecb0aa39472..65d18e3355f30f428823f5a80b690c95dfdf769a 100644
--- a/htdocs/langs/pt_BR/companies.lang
+++ b/htdocs/langs/pt_BR/companies.lang
@@ -47,6 +47,7 @@ PostOrFunction=Cargo/Função
 Surname=Apelido
 Address=Endereço
 State=Estado
+StateShort=Estado
 CountryCode=Código do País
 CountryId=País ID
 PhoneShort=Telefone
@@ -63,8 +64,10 @@ VATIsUsed=Sujeito a ICMS
 VATIsNotUsed=Não Sujeito a ICMS
 CopyAddressFromSoc=Preencher endereço com o endereço do terceiro
 NoEmailDefined=Não tem email definido
+LocalTax1IsUsed=Utilizar segundo imposto
 LocalTax1IsUsedES=É usado RE
 LocalTax1IsNotUsedES=Não é usado RE
+LocalTax2IsUsed=Utilizar terceiro imposto
 LocalTax2IsUsedES=É usado IRPF
 LocalTax2IsNotUsedES=Não é usado IRPF
 TypeLocaltax1ES=RE Tipo
@@ -128,6 +131,8 @@ DeleteACompany=Deletar empresa
 PersonalInformations=Dados Pessoais
 CustomerCode=Código de cliente
 SupplierCode=Código de fornecedor
+CustomerCodeShort=Código de cliente
+SupplierCodeShort=Código de fornecedor
 CustomerAccount=Conta do cliente
 SupplierAccount=Conta do fornecedor
 CustomerCodeDesc=Código de cliente, único para todos os clientes
diff --git a/htdocs/langs/pt_BR/contracts.lang b/htdocs/langs/pt_BR/contracts.lang
index 2b89af9b11e0bda1b628ecbf0300c962eaf71273..9efd00c61e462af8e59a096e652ad390d4e809a9 100644
--- a/htdocs/langs/pt_BR/contracts.lang
+++ b/htdocs/langs/pt_BR/contracts.lang
@@ -13,11 +13,13 @@ ServiceStatusLate=Em Serviço, Expirado
 ServiceStatusClosed=Encerrado
 ServicesLegend=Legenda para os Serviços
 Contracts=Contratos
+ContractsSubscriptions=Contratos
 ContractLine=Linha contrato
 Closing=Fechando
 NoContracts=Sem Contratos
 MenuInactiveServices=Serviços Inativos
 MenuRunningServices=Serviços Ativos
+NewContractSubscription=Novo contrato/subscrição
 AddContract=Criar contrato
 ConfirmDeleteAContract=Tem certeza que quer eliminar este contrato?
 ConfirmValidateContract=Tem certeza que quer Confirmar este contrato?
diff --git a/htdocs/langs/pt_BR/cron.lang b/htdocs/langs/pt_BR/cron.lang
index e660f6fa32b96726444ba6c3e9c58aac5890b1b1..870e1bc00f86faff559ac138a348ad47a74c6690 100644
--- a/htdocs/langs/pt_BR/cron.lang
+++ b/htdocs/langs/pt_BR/cron.lang
@@ -13,7 +13,6 @@ FileToLaunchCronJobs=Linha de comando para iniciar tarefas agendadas
 CronExplainHowToRunUnix=No ambiente Unix você deve usar a seguinte entrada crontab para executar a linha de comando a cada 5 minutos
 CronExplainHowToRunWin=Em ambiente Microsoft (tm)  Windows,  Você PODE USAR Ferramentas de Tarefa agendada Para executar a Linha de Comando de Cada 5 Minutos
 CronJobs=Trabalhos programados
-CronListActive=Lista de tarefas ativas / Programadas
 CronListInactive=Lista de trabalhos nao ativos
 CronDateLastRun=Ultimo acionamento
 CronLastOutput=Saida do ultimo acionamento
@@ -27,8 +26,6 @@ CronInfo=Módulo de tarefas agendadas permitem executar trabalho que foram plane
 CronWaitingJobs=Esperando empregos
 CronTask=Trabalho
 CronNone=Nenhum
-CronDtStart=Data inicio
-CronDtEnd=Data fim
 CronDtNextLaunch=Proxima execuçao
 CronDtLastLaunch=Ultima execuçao
 CronFrequency=Freqüência
diff --git a/htdocs/langs/pt_BR/deliveries.lang b/htdocs/langs/pt_BR/deliveries.lang
index c03bac2259bec0fb805c8522ec117caacf869082..60866da377fc4fd6bb360b08fc0d66570a2263f4 100644
--- a/htdocs/langs/pt_BR/deliveries.lang
+++ b/htdocs/langs/pt_BR/deliveries.lang
@@ -1,4 +1,5 @@
 # Dolibarr language file - Source file is en_US - deliveries
+DeliveryStateSaved=Estado de entrega salvo
 ValidateDeliveryReceiptConfirm=Tem certeza de que deseja confirmar esta entrega?
 DeleteDeliveryReceipt=Apagar Recibo de Entrega
 DeleteDeliveryReceiptConfirm=Tem certeza de que deseja apagar o recibo de entrega <b>%s</b> ?
diff --git a/htdocs/langs/pt_BR/errors.lang b/htdocs/langs/pt_BR/errors.lang
index fc4a30b362fce09ec3c2e7b2418cbfdfb3daf65e..a9aa7687c7d4eccf5a5af8cdf7b43f044c042ef7 100644
--- a/htdocs/langs/pt_BR/errors.lang
+++ b/htdocs/langs/pt_BR/errors.lang
@@ -151,6 +151,9 @@ ErrorFieldMustBeANumeric=O campo <b>%s</b> deve ser um valor numérico
 ErrorFieldMustBeAnInteger=O campo <b>%s</b> deve ser um inteiro
 ErrorMandatoryParametersNotProvided=Parâmetro (s) de preenchimento obrigatório não fornecidas
 ErrorOppStatusRequiredIfAmount=Você define um montante estimado para esta oportunidade/vantagem. Assim, você também deve inserir seu estado
+ErrorBadDefinitionOfMenuArrayInModuleDescriptor=Má definição da matriz Menu No Módulo Descritor (mau valor para fk_menu chave)
+ErrorSavingChanges=Ocorreu um erro ao salvar as alterações
+WarningPasswordSetWithNoAccount=A senha foi definida para esse membro. No entanto, nenhuma conta de usuário foi criada. Portanto, esta senha é armazenada, mas não pode ser usado para acessar Dolibarr. Ele pode ser usado por um módulo / interface externa, mas se você não precisa definir qualquer login nem palavra-passe para um membro, você pode desabilitar a opção "Gerenciar um login para cada membro" da configuração do módulo-Membro. Se você precisa para gerenciar um login, mas não precisa de qualquer senha, você pode manter este campo em branco para evitar este aviso. Nota: E-mail pode também ser utilizado como uma entre o membro se está ligado a um utilizador.
 WarningMandatorySetupNotComplete=Parâmetros de configuração obrigatórios ainda não estão definidos
 WarningSafeModeOnCheckExecDir=Atenção, a opção PHP <b>safe_mode</b> está em modo de comando devem ser armazenados dentro de um diretório declarado pelo php parâmetro <b>safe_mode_exec_dir.</b>
 WarningAllowUrlFopenMustBeOn=o parâmetro <b>allow_url_fopen</b> deve ser especificado a <b>on</b> ao Arquivo <b>php.ini</b> para discolocar deste módulo completamente ativo. deve modificar este Arquivo manualmente
diff --git a/htdocs/langs/pt_BR/holiday.lang b/htdocs/langs/pt_BR/holiday.lang
index f4605a41a58266abb58aef5df3be39c194f1e38a..4365b8289716e0d8eae77df8f9c72a53ecb599e1 100644
--- a/htdocs/langs/pt_BR/holiday.lang
+++ b/htdocs/langs/pt_BR/holiday.lang
@@ -7,7 +7,6 @@ NotActiveModCP=Você deve permitir módulo de folhas para visualizar esta págin
 NotConfigModCP=Você deve configurar o módulo de folhas para ver esta página. Para fazer isso, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click aqui </ a>.
 NoCPforUser=Você não tem qualquer dia disponível.
 AddCP=Faça um pedido de licença
-Employe=Empregado
 DateDebCP=Data inicio
 DateFinCP=Data fim
 DateCreateCP=Data criacão
diff --git a/htdocs/langs/pt_BR/hrm.lang b/htdocs/langs/pt_BR/hrm.lang
index f72b97a074d017f151efb17eb909b78c716b4eb5..78ac4feb8643f4233c3c315401c1e4873e59944f 100644
--- a/htdocs/langs/pt_BR/hrm.lang
+++ b/htdocs/langs/pt_BR/hrm.lang
@@ -1,4 +1,8 @@
 # Dolibarr language file - Source file is en_US - hrm
+HRM_EMAIL_EXTERNAL_SERVICE=E-mail para evitar HRM serviço externo
 Establishments=Estabelecimentos
 DeleteEstablishment=Excluir estabelecimento
 ConfirmDeleteEstablishment=Certeza de eliminar este estabelecimento?
+DictionaryDepartment=HRM - Lista departamento
+DictionaryFunction=HRM - Lista função
+EmployeeCard=Cartão do Empregado
diff --git a/htdocs/langs/pt_BR/install.lang b/htdocs/langs/pt_BR/install.lang
index 3eea099219a8f88d79d9ea50f19721ab3cdac77c..3125697cc477f94709464701644efbc69738ef7f 100644
--- a/htdocs/langs/pt_BR/install.lang
+++ b/htdocs/langs/pt_BR/install.lang
@@ -115,6 +115,7 @@ MigrationShippingDelivery2=Atualizar armazenamento de espediçao 2
 LastStepDesc=<strong>Ultimo passo</strong>: Defina aqui o usuario e a senha que voce planeja usar para conectar-se ao software. Nao perca estas credenciais, pois sao da conta que administra todas as outras contas.
 ActivateModule=Ativar modulo %s
 ShowEditTechnicalParameters=Clique aqui para mostrar/editar parametros avançados (modo avançado)
+WarningUpgrade=Aviso:\nExecutar um backup de seu banco de dados em primeiro lugar?\nIsto é altamente recomendado: por exemplo, devido a alguns erros em sistemas de bases de dados (por exemplo mysql versão 5.5.40 / 41/42/43), alguns dados ou tabelas pode ser perdido durante este processo, por isso é altamente recomendado ter um dump completo de seu banco de dados antes de iniciar a migração.\n\nClique em OK para iniciar o processo de migração ...
 ErrorDatabaseVersionForbiddenForMigration=Sua versão de banco de dados é %s. Ele tem uma perda de dados tomada de bug crítico se você fizer mudanças na estrutura de seu banco de dados, como é exigido pelo processo de migração. Por sua razão, a migração não será permitida até que você atualize seu banco de dados para uma versão fixa superior (lista de versão grampeado conhecido: %s)
 MigrationFixData=Correção para dados não normalizados
 MigrationProposal=Migração de dados de propostas comerciais
diff --git a/htdocs/langs/pt_BR/interventions.lang b/htdocs/langs/pt_BR/interventions.lang
index 4c17725a35490910807ee4ff2f2bbb74b58a95f8..e152b8d9aa0919133cdc1bf6aa92e0711a1ea160 100644
--- a/htdocs/langs/pt_BR/interventions.lang
+++ b/htdocs/langs/pt_BR/interventions.lang
@@ -23,6 +23,7 @@ InterventionClassifiedUnbilledInDolibarr=Intervenção %s definida como à fatur
 InterventionDeletedInDolibarr=Intervenção %s excluída
 SearchAnIntervention=Pesquisar uma intervenção
 InterventionsArea=Área intervenções
+DraftFichinter=Rascunho de intervenções
 LastModifiedInterventions=Últimas %s Intervenções modificadas
 TypeContact_fichinter_internal_INTERREPFOLL=Responsável do Seguimento da Intervenção
 TypeContact_fichinter_external_BILLING=Contato do cliente da faturação da intervenção
@@ -38,3 +39,7 @@ InterDateCreation=Intervenção data de criação
 InterDuration=Duração intervenção
 InterStatus=Status de intervenção
 InterNote=Nota da intervenção
+InterLineId=Linha id de intervenção
+InterLineDate=Linha da data de intervenção
+InterLineDuration=Linha de duração de intervenção
+InterLineDesc=Linha de descrição de intervenção
diff --git a/htdocs/langs/pt_BR/mails.lang b/htdocs/langs/pt_BR/mails.lang
index c3427471a1f62a85ba6dd1c7b928d5524e892eb9..81cdf6bdf2fd2e21d534945803c3e4d7b8586601 100644
--- a/htdocs/langs/pt_BR/mails.lang
+++ b/htdocs/langs/pt_BR/mails.lang
@@ -40,7 +40,12 @@ EachInvoiceWillBeAttachedToEmail=Documento usando o modelo de fatura padrão que
 MailTopicSendRemindUnpaidInvoices=Lembrete da fatura %s (%s)
 SendRemind=Enviar lembrete por e-mails
 RemindSent=%s lembrete(s) de envio
+AllRecipientSelected=Todos os endereços de e-mails dos representantes selecionados
 NoRemindSent=Sem lembrete de e-mail enviado
+ResultOfMailSending=Resultado de envio em massa de e-mails
+NbSelected=Nb selecionado
+NbIgnored=Nb ignorado
+NbSent=Nb enviado
 MailingModuleDescContactCompanies=Contatos de Fornecedores (clientes potenciais, clientes, Fornecedores...)
 MailingModuleDescDolibarrUsers=Usuários de Dolibarr que tem e-mail
 MailingModuleDescEmailsFromFile=E-Mails de um Arquivo (e-mail;Nome;Vários)
@@ -48,6 +53,7 @@ MailingModuleDescEmailsFromUser=Entrar e-mails de usuario (email;sobrenome;nome;
 MailingModuleDescContactsCategories=Fornecedores com e-mail (por categoria)
 MailingModuleDescDolibarrContractsLinesExpired=terceiros com linhas de contatos vencidas
 MailingModuleDescContactsByCompanyCategory=Contatos/Endereços de terceiros (por ategorias de terceiros)
+MailingModuleDescContactsByCategory=Contatos/Endereços de terceiros (por categoria)
 MailingModuleDescMembersCategories=Membros da Fundação (por categoria)
 MailingModuleDescContactsByFunction=Contatos/Enderecos de terceiros (por posição/função)
 LineInFile=Linha %s em arquivo
diff --git a/htdocs/langs/pt_BR/margins.lang b/htdocs/langs/pt_BR/margins.lang
index 062250505455905af1edc427ea5bc641aa24f2f0..8d900715fd7618969d09b17bcd3e86847bdd2a73 100644
--- a/htdocs/langs/pt_BR/margins.lang
+++ b/htdocs/langs/pt_BR/margins.lang
@@ -14,15 +14,18 @@ SalesRepresentativeMargins=Tolerância aos representante de vendas
 UserMargins=Margens do Usuário
 ProductService=Produto ou serviço
 Launch=Inicio
+ForceBuyingPriceIfNull=Compra Força preço / custo para o preço de venda se não definido
+ForceBuyingPriceIfNullDetails=Se o preço de compra / custo não definido, e essa opção "ON", a margem será zero em linha (compra / preço = custo preço de venda), caso contrário ("OFF"), marge será igual ao padrão sugerido.
 MARGIN_METHODE_FOR_DISCOUNT=Metodologia de margem para descontos globais
 UseDiscountAsProduct=Como o produto
 UseDiscountAsService=Como serviço
 UseDiscountOnTotal=Em sub-total
 MARGIN_METHODE_FOR_DISCOUNT_DETAILS=Define se um desconto global e tratado como o produto, serviço, ou somente sob o sub-total na margem.
+MARGIN_TYPE=Compra / Preço de custo sugerido por padrão para cálculo da margem de
 MargeBrute=Margem grosa
 MargeNette=Mergem neta
 MargeType1=Margem de melhor preço com fornecedor
-MARGIN_TYPE_DETAILS=Margem grosa: Preço de venda - Preço de compra<br/>Margem neta: Preço de venda - Preço de custo
+MargeType2=Margem de Preço Médio Ponderado (WAP)
 UnitCharges=Taxas unitárias
 Charges=Despesas
 AgentContactType=Tipo contato do agente comercial
diff --git a/htdocs/langs/pt_BR/oauth.lang b/htdocs/langs/pt_BR/oauth.lang
index b1545a171bbd3c2b451f2da3856f9d14c76fc60a..e5381d67a01874279ccbe9b48557b1cccb176e8f 100644
--- a/htdocs/langs/pt_BR/oauth.lang
+++ b/htdocs/langs/pt_BR/oauth.lang
@@ -8,4 +8,3 @@ TokenDeleted=Token excluído
 RequestAccess=Clique aqui para solicitar/renovar o acesso e receber um novo token para salvar
 DeleteAccess=Clique aqui para apagar o token
 UseTheFollowingUrlAsRedirectURI=Utilize o seguinte URL como o URI de redirecionamento ao criar a sua credencial de seu provedor de OAuth:
-ListOfSupportedOauthProviders=Digite aqui credencial fornecida pelo seu provedor de OAuth2. Apenas provedores OAuth2 são visíveis aqui. Esta configuração pode ser utilizado por outros módulos que precisam de autenticação OAuth2.
diff --git a/htdocs/langs/pt_BR/orders.lang b/htdocs/langs/pt_BR/orders.lang
index 79c29fedcc56d027ff83d1ba50ec2b4d4e181e11..93b5bdcc0ecfa6c0e324e4b36ca740a944ef5a15 100644
--- a/htdocs/langs/pt_BR/orders.lang
+++ b/htdocs/langs/pt_BR/orders.lang
@@ -15,12 +15,15 @@ SuppliersOrdersToProcess=Fornecedor ordens para processar
 StatusOrderSentShort=Em processo
 StatusOrderSent=Envio em processo
 StatusOrderOnProcessShort=Pedido
+StatusOrderDelivered=Entregue
 StatusOrderToBillShort=Entregue
 StatusOrderToBill2Short=A se faturar
+StatusOrderBilledShort=Faturado
 StatusOrderOnProcess=Pedido - Aguardando Recebimento
 StatusOrderOnProcessWithValidation=Ordenada - recepção Standby ou validação
 StatusOrderToBill=A Faturar
 StatusOrderToBill2=A Faturar
+StatusOrderBilled=Faturado
 ShippingExist=Existe envio
 ProductQtyInDraft=Quantidade do produto em projetos de ordens
 ProductQtyInDraftOrWaitingApproved=Quantidade do produto em projecto ou ordens aprovadas, ainda não ordenou
@@ -32,12 +35,14 @@ SearchASupplierOrder=Pesquisar uma ordem de fornecedor
 ApproveOrder=Aprovar pedidos
 Approve2Order=Aprovar pedido (segundo nível)
 UnvalidateOrder=Desaprovar pedido
+OrderReopened=Pedido %s Reaberto
 AddOrder=Criar ordem
 AddToDraftOrders=Adicionar a projeto de pedido
 OrdersOpened=Pedidos para processar
 NoOpenedOrders=Sem pedidos em aberto
 NoOtherOpenedOrders=Não há outros pedidos em aberto
 NoDraftOrders=Não há projetos de pedidos
+NoSupplierOrder=Sem pedido de suprimento
 LastOrders=Pedidos de clientes Última %s
 LastCustomerOrders=Pedidos de clientes Última %s
 LastSupplierOrders=Pedidos a fornecedores Última %s
@@ -53,6 +58,7 @@ ConfirmMakeOrder=Tem certeza que quer confirmar este pedido em data de<b>%s</b>
 GenerateBill=Faturar
 ClassifyShipped=Clasificar entregue
 ClassifyBilled=Classificar "Faturado"
+DraftSuppliersOrders=Rascunho de pedidos para fornecedor
 RelatedCustomerOrders=Pedidos de clientes relacionadas
 RelatedSupplierOrders=Pedidos a fornecedores relacionadas
 ActionsOnOrder=Ações sobre o pedido
diff --git a/htdocs/langs/pt_BR/propal.lang b/htdocs/langs/pt_BR/propal.lang
index 57d9dd8566628ed4bc3c123f6c23590eab8227b2..f27a5d9a79a14dc1f1b08a3dd2f93b7f11206dd6 100644
--- a/htdocs/langs/pt_BR/propal.lang
+++ b/htdocs/langs/pt_BR/propal.lang
@@ -22,10 +22,10 @@ PropalsToBill=Orçamentos Assinados a Faturar
 ActionsOnPropal=Ações sobre o Orçamento
 NoOpenedPropals=Não há propostas comerciais abertas
 NoOtherOpenedPropals=Não há outras propostas comerciais abertas
+NoPropal=Sem proposta comercial
 ErrorCantOpenDir=Impossível Abrir a Pasta
 DatePropal=Data da Proposta
 ValidityDuration=Validade da proposta
-CloseAs=Fechado como
 BuildBill=Criar Fatura
 AddToDraftProposals=Adicionar a projeto de proposta
 NoDraftProposals=Não há projetos de propostas
diff --git a/htdocs/langs/pt_BR/resource.lang b/htdocs/langs/pt_BR/resource.lang
index 95e2c24945cff9d47790c4ff86538533df46d4c3..6ce5735f22e70edb12d300b868e54c4bc1fe69f5 100644
--- a/htdocs/langs/pt_BR/resource.lang
+++ b/htdocs/langs/pt_BR/resource.lang
@@ -6,6 +6,7 @@ NoResourceLinked=Nenhum recurso vinculado
 ResourceCard=Cartao recursos
 AddResource=Criar recurso
 ResourcesLinkedToElement=Recursos vinculados ao elemento
+ShowResource=Mostrar recurso
 ShowResourcePlanning=Mostrar planejamento do recurso
 GotoDate=Ir para data
 ResourceElementPage=Elemento recursos
diff --git a/htdocs/langs/pt_BR/sendings.lang b/htdocs/langs/pt_BR/sendings.lang
index b380b9997e1c5de0eed980a69f4a6f71c27d6088..0ab884b93f2346b7135c00ea9195b644102927d0 100644
--- a/htdocs/langs/pt_BR/sendings.lang
+++ b/htdocs/langs/pt_BR/sendings.lang
@@ -36,6 +36,7 @@ ProductQtyInCustomersOrdersRunning=Quantidade do produto em aberto ordens client
 ProductQtyInSuppliersOrdersRunning=Quantidade do produto em ordens abertas fornecedores
 ProductQtyInShipmentAlreadySent=Quantidade do produto da ordem do cliente abriu já foi enviado
 ProductQtyInSuppliersShipmentAlreadyRecevied=Quantidade do produto a partir da ordem fornecedor abriu já recebeu
+NoProductToShipFoundIntoStock=Nenhum produto para enviar encontrado em armazém <b>%s</b>. Estoque correto ou voltar para escolher outro armazém.
 SendingMethodCATCH=Remoção pelo cliente
 SendingMethodTRANS=Transportadora
 SendingMethodCOLSUI=Acompanhamento
diff --git a/htdocs/langs/pt_BR/supplier_proposal.lang b/htdocs/langs/pt_BR/supplier_proposal.lang
index cb919375150271858196f6990508ae4ca14a1f06..4c706e8f0c898c47bf4ffa35f7f4454eaee2bfad 100644
--- a/htdocs/langs/pt_BR/supplier_proposal.lang
+++ b/htdocs/langs/pt_BR/supplier_proposal.lang
@@ -1,2 +1,4 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 NewAsk=Novo pedido
+SupplierProposalStatusBilled=Faturado
+SupplierProposalStatusBilledShort=Faturado
diff --git a/htdocs/langs/pt_PT/accountancy.lang b/htdocs/langs/pt_PT/accountancy.lang
index 666f652889b388f22addd9caac14319348095ffe..20a0ce1a32b5d97a6970e99a8318aa000344d6be 100644
--- a/htdocs/langs/pt_PT/accountancy.lang
+++ b/htdocs/langs/pt_PT/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Selecione um modelo de exportação
 Modelcsv_normal=Exportação classica
 Modelcsv_CEGID=Exportação em direção Especialista CEGID
 BackToChartofaccounts=Voltar ao plano de contas
-Back=Voltar
 
 Definechartofaccounts=Defenir plano de contas
 Selectchartofaccounts=Selecione plano de contas
@@ -109,10 +108,6 @@ DelBookKeeping=Apagar os registos em Contabilidade geral
 
 DescSellsJournal=Diário de vendas
 DescPurchasesJournal=Diário de compras
-BankJournal=Diário de bancos
-DescBankJournal=Diário de bancos incluindo  todos os tipos de pagamentos excepto em moeda
-CashJournal=Diário de caixa
-DescCashJournal=Diário de caixa incluído pagamentos em moeda
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consulte  as suas linhas da fatura de fornecedor com a co
 ValidateHistory=Validação automatica
 
 ErrorAccountancyCodeIsAlreadyUse=Erro, Não pode apagar uma conta em uso
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Carta de desagregação
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/pt_PT/admin.lang b/htdocs/langs/pt_PT/admin.lang
index 9db24643889cb1233e53dfe7e1ba9c71ff8f7af2..8120c645912a72584a47f94451c934f9a28dcfdb 100644
--- a/htdocs/langs/pt_PT/admin.lang
+++ b/htdocs/langs/pt_PT/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Ocultar todas as informações relativas ao IVA em PD
 HideDescOnPDF=Ocultar a descrição dos produtos no PDF gerado
 HideRefOnPDF=Ocultar a referência dos produtos no PDF gerado
 HideDetailsOnPDF=Ocultar os detalhes das linhas dos produtos no PDF gerado
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Biblioteca
 UrlGenerationParameters=Parâmetros para garantir URLs
 SecurityTokenIsUnique=Use um parâmetro securekey exclusivo para cada URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Utilizadores e Grupos
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Empréstimo
 Module520Desc=Gestão de empréstimos
 Module600Name=Notificações
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Bolsas
 Module700Desc=Gestão de Bolsas
 Module770Name=Relatórios de despesas
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Prazos anterior de notificação
 DelaysOfToleranceBeforeWarning=Prazos de tolerancia antes de notificação
 DelaysOfToleranceDesc=Esta janela permite configurar os prazos de tolerancia antes de que se notifique com o símbolo %s, sobre cada elemento em atraso.
 Delays_MAIN_DELAY_ACTIONS_TODO=Delay tolerance (in days) before alert on planned events not yet realised
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on orders not yet processed
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on suppliers orders not yet processed
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Delay tolerance (in days) before alert on proposals to close
@@ -1087,6 +1089,7 @@ PathDirectory=Catálogo
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuração da tradução
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total de módulos de funcionalidades ativos: <b>%s</b>
 YouMustEnableOneModule=Deve ativar, pelo menos, 1 módulo
 ClassNotFoundIntoPathWarning=Classe %s não encontrada no caminho PHP
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/pt_PT/agenda.lang b/htdocs/langs/pt_PT/agenda.lang
index bd125aa42e2c031920a93e2402dc2d4dd0169ace..c0834a580631ea3bb5f636b782e75575ece17e1c 100644
--- a/htdocs/langs/pt_PT/agenda.lang
+++ b/htdocs/langs/pt_PT/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Todas as Acções
 ViewCal=Ver Calendário
 ViewDay=Modo de exibição Dia
 ViewWeek=Vista da semana
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Ver com filtros predefinidos
 AutoActions= Preenchimento automático
 AgendaAutoActionDesc= Defina aqui os eventos para os quais deseja que o Dolibarr crie automaticamente um evento na agenda. Se não for seleccionada nenhuma opção (por omissão), apenas as acções manuais serão incluídas na agenda
@@ -61,7 +63,7 @@ SupplierOrderSentByEMail=Encomenda a fornecedor %s enviada por email
 SupplierInvoiceSentByEMail=Factura de fornecedor %s enviada por e-mail
 ShippingSentByEMail=Shipment %s sent by EMail
 ShippingValidated= Shipment %s validated
-InterventionSentByEMail=Intervention %s sent by EMail
+InterventionSentByEMail=Intervenção %s enviada por Mensagem Eletrónica
 NewCompanyToDolibarr= Nova Empresa Adicionada
 DateActionPlannedStart= Planeada data de início
 DateActionPlannedEnd= Planeada data de fim
@@ -94,13 +96,13 @@ VisibleTimeRange=Visible time range
 VisibleDaysRange=Visible days range
 AddEvent=Create event
 MyAvailability=My availability
-ActionType=Event type
+ActionType=Tipo de evento
 DateActionBegin=Start event date
 CloneAction=Clone event
 ConfirmCloneEvent=Are you sure you want to clone the event <b>%s</b> ?
 RepeatEvent=Repeat event
-EveryWeek=Every week
-EveryMonth=Every month
-DayOfMonth=Day of month
-DayOfWeek=Day of week
+EveryWeek=Semanalmente
+EveryMonth=Mensalmente
+DayOfMonth=Dia do mês
+DayOfWeek=Dia da semana
 DateStartPlusOne=Date start + 1 hour
diff --git a/htdocs/langs/pt_PT/bills.lang b/htdocs/langs/pt_PT/bills.lang
index 0d9f96430f410945ec336d22281f466bea45ebe2..02591b2bec9aba9bbb412f46b76ceb71fe128269 100644
--- a/htdocs/langs/pt_PT/bills.lang
+++ b/htdocs/langs/pt_PT/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Pagamentos efectuados
 PaymentsBackAlreadyDone=Devolução de pagamentos efetuados
 PaymentRule=Estado do Pagamento
 PaymentMode=Forma de Pagamento
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=Ver factura
 ShowInvoiceReplace=Ver factura rectificativa
 ShowInvoiceAvoir=Ver deposito
 ShowInvoiceDeposit=Ver Factura Depositada
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Ver pagamento
 AlreadyPaid=Já e
 AlreadyPaidBack=Já reembolsado
@@ -221,6 +224,7 @@ NonPercuRecuperable=Não recuperável
 SetConditions=Definir Condições de pagamento
 SetMode=Definir modo de pagamento
 Billed=Facturado
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Fatura Modelo
 RepeatableInvoices=Faturas Modelo
 Repeatable=Modelo
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Este Montante é deixado (cliente julgado como devedor) e
 HelpAbandonOther=Este Montante é deixado,já que se tratava de um erro de facturação (má introdução de dados, factura substituída por outra).
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Pagamento id
+PaymentRef=Payment ref.
 InvoiceId=Id factura
 InvoiceRef=Ref. factura
 InvoiceDateCreation=Data de Criação da Factura
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Última fatura relacionada
 WarningBillExist=Aviso, já existe uma ou mais faturas
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Pronto Pagamento
@@ -393,6 +402,7 @@ Reported=Atrasado
 DisabledBecausePayments=Não é possível, pois há alguns pagamentos
 CantRemovePaymentWithOneInvoicePaid=Não é possível remover o pagamento desde há pelo menos na factura paga classificados
 ExpectedToPay=Pagamento esperado
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Pago por esse pagamento
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third pa
 RevenueStamp=Revenue stamp
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Modelo de factura completo (IVA,  método de pago a mostrar, logotipo...)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=Uma conta a começar com $syymm já existe e não é compatível com este modelo de sequencia. Remove-o ou renomeia para activar este modulo
@@ -433,3 +444,11 @@ DisabledBecauseFinal=Esta situação é final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=Sem situações abertas
 InvoiceSituationLast=Fatura geral e final
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/pt_PT/boxes.lang b/htdocs/langs/pt_PT/boxes.lang
index 6a952fe7aac54e33857fa75a6a3c0ae558bf5e3a..be14c5915b7df998c613795cf07fa80ee7d872d9 100644
--- a/htdocs/langs/pt_PT/boxes.lang
+++ b/htdocs/langs/pt_PT/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Facturas de Clientes
 ForCustomersOrders=Encomendas de clientes
 ForProposals=Orçamentos
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/pt_PT/categories.lang b/htdocs/langs/pt_PT/categories.lang
index fb5f3b40576cfd50fefdca4e6c5bdb94ce8c563d..770df47e772913f45d026fc73fc574e53f70e1e7 100644
--- a/htdocs/langs/pt_PT/categories.lang
+++ b/htdocs/langs/pt_PT/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Cat. Clientes/Potenciais
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
@@ -108,4 +109,4 @@ CategorieRecursiv=Link with parent tag/category automatically
 CategorieRecursivHelp=Se ativado, o produto também irá estar ligado à categoria fonte quando adicionar a uma subcategoria
 AddProductServiceIntoCategory=Adicioanr o produto/serviço seguinte
 ShowCategory=Show tag/category
-ByDefaultInList=By default in list
+ByDefaultInList=Por predefinição na lista
diff --git a/htdocs/langs/pt_PT/companies.lang b/htdocs/langs/pt_PT/companies.lang
index e868ab3195b4253e8026910615d916058a065803..761328702a5dcf83556eec02446f0d6d9d86b1e6 100644
--- a/htdocs/langs/pt_PT/companies.lang
+++ b/htdocs/langs/pt_PT/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (RC)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (IF)
 ProfId4MA=Id prof. 4 (CNSS)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (RFC).
 ProfId2MX=Prof Id 2 (R.. P. IMSS)
diff --git a/htdocs/langs/pt_PT/compta.lang b/htdocs/langs/pt_PT/compta.lang
index 34ae834db3100d129701cb198b41c454947e3021..c267997dd68955c6d5571b96fb0f88174eca1bfe 100644
--- a/htdocs/langs/pt_PT/compta.lang
+++ b/htdocs/langs/pt_PT/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Facturas de depósito não são incluídas
 DepositsAreIncluded=- Facturas de Depósito estão incluídas
 LT2ReportByCustomersInInputOutputModeES=Relatório de terceiros IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/pt_PT/cron.lang b/htdocs/langs/pt_PT/cron.lang
index a72009d7857e94362d0b9185ee2b06d323feb32f..b3b6c1d965bef31439589c405c193e710ff8ad83 100644
--- a/htdocs/langs/pt_PT/cron.lang
+++ b/htdocs/langs/pt_PT/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Tarefas agendadas
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=Lista de trabalhos inativos
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Última execução
 CronLastOutput=Resultado da última execução
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Tarefa
 CronNone=Nenhuma
-CronDtStart=Data de Início
-CronDtEnd=Data Fim
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Próximo execução
 CronDtLastLaunch=Última execução
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=Nenhuma tarefa registada
 CronPriority=Prioridade
 CronLabel=Descrição
 CronNbRun=N.º de Execução
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Terafa lançada e concluída
 #Page card
diff --git a/htdocs/langs/pt_PT/deliveries.lang b/htdocs/langs/pt_PT/deliveries.lang
index 8333d29653983b5b90269ab21a045d9e9b6dc838..f6602583724caa5249a015f408f4a0d3689bd873 100644
--- a/htdocs/langs/pt_PT/deliveries.lang
+++ b/htdocs/langs/pt_PT/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Tem certeza de que deseja eliminar <b>%s</b> recibo
 DeliveryMethod=Método de Envio
 TrackingNumber=Nº de tracking
 DeliveryNotValidated=Entrega não validada
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Nome e assinatura:
 ToAndDate=Em___________________________________ a ____/_____/__________
diff --git a/htdocs/langs/pt_PT/holiday.lang b/htdocs/langs/pt_PT/holiday.lang
index f05401419917ff76b36e6fbcb3d43a33a714be55..573c21f6db5dd7f0accf1d87efc70491d8857182 100644
--- a/htdocs/langs/pt_PT/holiday.lang
+++ b/htdocs/langs/pt_PT/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=Deve ativar o módulo de Licenças para ver esta página.
 NotConfigModCP=Deve configurar o módulo de Licenças para ver esta página. Para o efetuar, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> clique aqui </ a>.
 NoCPforUser=Não tem nenhum dia disponivel.
 AddCP=Efetue um pedido de licença
-Employe=Funcionário
 DateDebCP=Data de início
 DateFinCP=Data de fim
 DateCreateCP=Data de criação
@@ -23,7 +22,7 @@ ReviewedByCP=Será revista por
 DescCP=Descrição
 SendRequestCP=Criar requisição de licença
 DelayToRequestCP=Os pedidos de licença devem ser efetuados com pelo menos <b>%s dia(s)</b> de antecedência.
-MenuConfCP=Editar balanço das licenças
+MenuConfCP=Balance of leaves
 UpdateAllCP=Atualize as licenças
 SoldeCPUser=Balanço de folgas é <b>%s</b> dias
 ErrorEndDateCP=You must select an end date greater than the start date.
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=Uma requisição existe para esse período 
 UserName=Nome
-Employee=Empregado
 FirstDayOfHoliday=Primeiro dia de férias
 LastDayOfHoliday=Ultimo dia de férias
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Actualização Mensal
 ManualUpdate=Actualização Manual
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Adicionado mensalmente
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/pt_PT/hrm.lang b/htdocs/langs/pt_PT/hrm.lang
index fd1afc62240a0ac23b08651a752f6b492576a572..394560e9976de77234501591f2ffec3addcf26f1 100644
--- a/htdocs/langs/pt_PT/hrm.lang
+++ b/htdocs/langs/pt_PT/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=Lista de funcionários
 Employees=Funcionários
 Employee=Funcionário
+Employe=Employe
 NewEmployee=Novo funcionário
 EmployeeCard=Employee card
diff --git a/htdocs/langs/pt_PT/interventions.lang b/htdocs/langs/pt_PT/interventions.lang
index 13a9594a465550986c25078986c4ef1917cdd44c..f7892d4e9413ac0e0eb9ec5bf3989e2dc11e93a6 100644
--- a/htdocs/langs/pt_PT/interventions.lang
+++ b/htdocs/langs/pt_PT/interventions.lang
@@ -36,7 +36,7 @@ InterventionValidatedInDolibarr=Intervention %s validated
 InterventionModifiedInDolibarr=Intervention %s modified
 InterventionClassifiedBilledInDolibarr=Intervention %s set as billed
 InterventionClassifiedUnbilledInDolibarr=Intervention %s set as unbilled
-InterventionSentByEMail=Intervention %s sent by EMail
+InterventionSentByEMail=Intervenção %s enviada por Mensagem Eletrónica
 InterventionDeletedInDolibarr=Intervention %s deleted
 SearchAnIntervention=Search an intervention
 InterventionsArea=Interventions area
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Devolve o número com o formato %syymm-nnnn dónde yy é
 PacificNumRefModelError=Uma factura que começa por # $$syymm existe na base e é incompativel com esta numeração. Eliminia  ou renomea-la para activar este módulo.
 PrintProductsOnFichinter=Imprimir produtos no cartão intervenção
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/pt_PT/mails.lang b/htdocs/langs/pt_PT/mails.lang
index aa41f54d9f9235ed8cbf3bde368d3ecd1086afd1..a284b02a0f243813faba9513fc29e55c71636434 100644
--- a/htdocs/langs/pt_PT/mails.lang
+++ b/htdocs/langs/pt_PT/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=E-mail enviado para %s destinatários.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/pt_PT/main.lang b/htdocs/langs/pt_PT/main.lang
index 1a5bdfd7ae24c51084f01ebc096ae4f617b2101a..6890cffdc5bd087481a6922bf8e448a8dff99883 100644
--- a/htdocs/langs/pt_PT/main.lang
+++ b/htdocs/langs/pt_PT/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%d %b %Y %H:%M
 FormatDateHourText=%d %B %Y %H:%M
 DatabaseConnection=Conexão à Base de Dados
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Sem tradução
 NoRecordFound=Nenhum foi encontrado nenhum registo
 NoError=Nenhum erro
@@ -105,6 +106,7 @@ NotePrivate=Nota (privada)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr está configurado para limitar a precisão dos preços unitarios a <b>%s</b> Decimais.
 DoTest=Teste
 ToFilter=Filtrar
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Atenção, tem um elemento a menos que passou a data de tolerencia.
 yes=Sim
 Yes=Sim
@@ -228,6 +230,8 @@ Now=Ahora
 HourStart=Start hour
 Date=Data
 DateAndHour=Data e Hora
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Data de Início
 DateEnd=Data de Fim
 DateCreation=Data de Criação
@@ -608,6 +612,7 @@ TotalMan=Total
 NeverReceived=Nunca Recebido
 Canceled=Cancelado
 YouCanChangeValuesForThisListFromDictionarySetup=Pode alterar estes valores no menu configuração->dicionários
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Cor
 Documents=Documentos
 DocumentsNb=arquivos vinculados (%s)
@@ -695,6 +700,7 @@ Test=Teste
 Element=Elemento
 NoPhotoYet=Sem imagem disponível ainda
 HomeDashboard=Sumário Início
+Dashboard=Dashboard
 Deductible=Dedutível
 from=Emissor
 toward=relativamente a
diff --git a/htdocs/langs/pt_PT/margins.lang b/htdocs/langs/pt_PT/margins.lang
index 708c44c7b9109660a94196316104d516a2d27010..7732f79d2b46f782b57657e0bc43d1143050f111 100644
--- a/htdocs/langs/pt_PT/margins.lang
+++ b/htdocs/langs/pt_PT/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Escolher produto ou serviço
 StartDate=Data de Início
 EndDate=Data Fim
 Launch=Iniciar
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=Como um produto
 UseDiscountAsService=Como um serviço
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Preço de custo
 BuyingCost=Preço de custo
 UnitCharges=Custos unitários
diff --git a/htdocs/langs/pt_PT/oauth.lang b/htdocs/langs/pt_PT/oauth.lang
index 0e4171c1ffb5962ac8cffb9aa1a21415809b302c..26dfcdfcdbee804c20d6d7382611659a043333bc 100644
--- a/htdocs/langs/pt_PT/oauth.lang
+++ b/htdocs/langs/pt_PT/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/pt_PT/orders.lang b/htdocs/langs/pt_PT/orders.lang
index 00f53328590a4a32aa3d91a762e28534d04cbe3e..52defe754c1fe4c992d63d5f44e8eaed94982559 100644
--- a/htdocs/langs/pt_PT/orders.lang
+++ b/htdocs/langs/pt_PT/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Encomendas para processar
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=No draft orders
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Outros Pedidos
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/pt_PT/other.lang b/htdocs/langs/pt_PT/other.lang
index 5c12c0b5ae2c0fda8cf2845c3b4bfe60e551761e..4cc04238b6b811368ec85833d75651981d5293a3 100644
--- a/htdocs/langs/pt_PT/other.lang
+++ b/htdocs/langs/pt_PT/other.lang
@@ -238,3 +238,8 @@ ToExport=Exportar
 NewExport=Nova Exportação
 ##### External sites #####
 ExternalSites=Sites externos
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/pt_PT/paypal.lang b/htdocs/langs/pt_PT/paypal.lang
index 207125d5407628a35a9cb8fba7568e6074dcbdc5..bf11400c6b1650a319c520c224db0b737c5973d5 100644
--- a/htdocs/langs/pt_PT/paypal.lang
+++ b/htdocs/langs/pt_PT/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Modo de teste / sandbox
 PAYPAL_API_USER=Nome de utilizador API
 PAYPAL_API_PASSWORD=Senha API
 PAYPAL_API_SIGNATURE=Assinatura API
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Oferta de pagamento "integral" (Cartão de Crédito + Paypal) ou apenas "Paypal"
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=Apenas Paypal
diff --git a/htdocs/langs/pt_PT/products.lang b/htdocs/langs/pt_PT/products.lang
index 588eade507eb3c33bc2ea804a61e19ed84feb622..01ebb41329c0efdb00e94e41134f98a8f7ffc24b 100644
--- a/htdocs/langs/pt_PT/products.lang
+++ b/htdocs/langs/pt_PT/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Produção concluída
-ProductsMultiPrice=Produto multi-preço
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Selecionar ficheiros PDF
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/pt_PT/projects.lang b/htdocs/langs/pt_PT/projects.lang
index d9428141e229ec6cbba2a36b14a52bc1be05550e..c7fdc8dc933a2bc9c5d8164e5b1ee82bb84be2c6 100644
--- a/htdocs/langs/pt_PT/projects.lang
+++ b/htdocs/langs/pt_PT/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=Esta visualização apresenta todos os projetos (as suas permissões de utilizador concedem-lhe a permissão para ver tudo).
 MyTasksDesc=Esta visualização está limitada aos projetos ou tarefas em que é um contacto para (seja qual for o tipo).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Esta visualização apresenta todos os projetos e tarefas que está autorizado a ler.
 TasksDesc=Esta visualização apresenta todos os projetos e tarefas (as suas permissões de utilizador concedem-lhe permissão para ver tudo).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Responsável pelo Projeto
 LastProjects=Últimos %s projetos
 AllProjects=Todos os Projetos
 OpenedProjects=Projetos abertos
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Lista de Projetos
 ShowProject=Mostrar Projeto
 SetProject=Definir Projeto
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=%s tarefas modificadas
 TaskDeletedInDolibarr=%s tarefas apagadas
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projetos com este utilizador como contacto
 TasksWithThisUserAsContact=Tarefas atribuídas a este utilizador
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Atribuir 
 ProjectOverview=Resumo
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/pt_PT/propal.lang b/htdocs/langs/pt_PT/propal.lang
index 40afe89b71fde50465cc30a43d87ff53cf48f441..0f60ed1368c9989b40b22a034125a7e3ad7cf22e 100644
--- a/htdocs/langs/pt_PT/propal.lang
+++ b/htdocs/langs/pt_PT/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Última %s propostas alteradas
 AllPropals=Todos Os Orçamentos
 LastProposals=Ultimos Orçamentos
 SearchAProposal=Procurar um Orçamento
+NoProposal=No proposal
 ProposalsStatistics=Estatísticas de Orçamentos
 NumberOfProposalsByMonth=Número por Mês
 AmountOfProposalsByMonthHT=Montante por Mês (sem IVA)
@@ -62,7 +63,8 @@ DatePropal=Data da proposta
 DateEndPropal=Válido até
 DateEndPropalShort=Data Fim
 ValidityDuration=Duração da Validade
-CloseAs=Fechar Estatuto
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Classificar Facturado
 BuildBill=Criar Factura
 ErrorPropalNotFound=Orçamento %s Inexistente
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Criação do modelo padrão
 DefaultModelPropalToBill=Modelo padrão ao fechar uma proposta de negócio (a facturar)
 DefaultModelPropalClosed=Modelo padrão ao fechar uma proposta de negócio (não faturada)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/pt_PT/salaries.lang b/htdocs/langs/pt_PT/salaries.lang
index 7b757157a3fbfe13943509be44fb3b2f35a09ca2..af8fd7467450653abc83949985e3de76fc0cf4fb 100644
--- a/htdocs/langs/pt_PT/salaries.lang
+++ b/htdocs/langs/pt_PT/salaries.lang
@@ -3,7 +3,6 @@ SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Código da contabilidade para pagamentos de
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Código da contabilidade para movimentos financeiros
 Salary=Salário
 Salaries=Salários
-Employee=Empregado
 NewSalaryPayment=Novo Pagamento de Salário
 SalaryPayment=Pagamento de Salário
 SalariesPayments=Pagamentos de Salários
diff --git a/htdocs/langs/pt_PT/sendings.lang b/htdocs/langs/pt_PT/sendings.lang
index d89b9b1ce5cd31ee879b3260b60634a5e8c831b1..b9a3ba0cb08f857acf210451f69d61658667453b 100644
--- a/htdocs/langs/pt_PT/sendings.lang
+++ b/htdocs/langs/pt_PT/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=Todos os Despachos
 Shipment=Envio
 Shipments=Envios
 ShowSending=Mostrar Despachos
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Área de Envios
 ListOfSendings=Lista de Envios
 SendingMethod=Método de Envio
diff --git a/htdocs/langs/pt_PT/sms.lang b/htdocs/langs/pt_PT/sms.lang
index 7a68c2c4a95ad1db19f01ee1e32983b517be4a02..29c0420f472320a00ff55a6f9a9d91689bcfa7e0 100644
--- a/htdocs/langs/pt_PT/sms.lang
+++ b/htdocs/langs/pt_PT/sms.lang
@@ -49,5 +49,6 @@ SendSms=Enviar SMS
 SmsInfoCharRemain=N º de caracteres restantes
 SmsInfoNumero= (Formato internacional exemplo: +33899701761)
 DelayBeforeSending=Atraso antes de enviar (minutos)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Nenhum alvo disponível. Verifique a configuração do seu provedor de SMS.
 
diff --git a/htdocs/langs/pt_PT/supplier_proposal.lang b/htdocs/langs/pt_PT/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/pt_PT/supplier_proposal.lang
+++ b/htdocs/langs/pt_PT/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/pt_PT/trips.lang b/htdocs/langs/pt_PT/trips.lang
index 64cea7209d9dbd47490be587034876f7b9782295..1cb670d46f2f3254748a1de49b74aba1aadf6d39 100644
--- a/htdocs/langs/pt_PT/trips.lang
+++ b/htdocs/langs/pt_PT/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Linha do relatório de despesas
 TF_OTHER=Outro
-TF_TRANSPORTATION=Meio de Transporte
+TF_TRIP=Transportation
 TF_LUNCH=Alimentação
 TF_METRO=Metro
 TF_TRAIN=Comboio
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=nenhum relatório de despesas para exportar para este período.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/pt_PT/users.lang b/htdocs/langs/pt_PT/users.lang
index 35a48e998c08dffa6dbb42fd4ab4fcc9d97c24c2..c562eb19d1a3dcb797a42ba59a6f303c2212f496 100644
--- a/htdocs/langs/pt_PT/users.lang
+++ b/htdocs/langs/pt_PT/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=URL de OpenID
 LoginUsingOpenID=Utilizar OpenID para iniciar a sessão
 WeeklyHours=Horas semanais
 ColorUser=Cor do utilizador
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/ro_RO/accountancy.lang b/htdocs/langs/ro_RO/accountancy.lang
index ad2faab3edf455b646653411deb3a13942f9e111..2a8dc162b9649c9589382e142a250ad6679e8fb6 100644
--- a/htdocs/langs/ro_RO/accountancy.lang
+++ b/htdocs/langs/ro_RO/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Selectează un model de export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export către CEGID Expert
 BackToChartofaccounts=Înapi la plan de conturi
-Back=Return
 
 Definechartofaccounts=Defineşte un plan de conturi
 Selectchartofaccounts=Selectează un plan de conturi
@@ -109,10 +108,6 @@ DelBookKeeping=Şterge înregistrări din Cartea Mare
 
 DescSellsJournal=Jurnal Vânzări
 DescPurchasesJournal=Jurnal Cumpărări
-BankJournal=Jurnal Bancă
-DescBankJournal=Jurnal Banca inclusiv toate tipurile plaţilor altele decat numerar
-CashJournal=Jurnal Casă
-DescCashJournal=Jurnal Cash inclusiv tipul plaţii numerar
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,22 +147,28 @@ DescVentilDoneSupplier=Consultati aici lista liniilor de facturi furnizor și co
 ValidateHistory=Validează automat
 
 ErrorAccountancyCodeIsAlreadyUse=Eroare, nu puteți șterge acest cont contabil, deoarece este folosit
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Fişă Ventilare
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
 ##Export Journal Feature
-ExportFormat=Format of Export
-Prefixname=Prefix of export File
-Separate=Export separator
+ExportFormat=Formatul de export
+Prefixname=Prefixul  fișierului export
+Separate=Separator Export 
 Textframe=Frame of text value
 Headercol=Colname in header of file
-Fieldname=Name of Field
-Headername=Name in header
-Type=Type of fields
-Param=Additionnal parameters
-EnabledProduct=In Product
-EnabledTiers=In Tiers
-EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+Fieldname=Denumire câmp
+Headername=Nume în antet
+Type=Tip campuri
+Param=Parametrii suplimentari
+EnabledProduct=În produse
+EnabledTiers=In third party
+EnabledVat=In TVA-
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/ro_RO/admin.lang b/htdocs/langs/ro_RO/admin.lang
index aab5922cd4d09c77b9cf3e121008402f837e9d53..a0ae12d6f2d8ad376da135ba9fa908b46425ad5b 100644
--- a/htdocs/langs/ro_RO/admin.lang
+++ b/htdocs/langs/ro_RO/admin.lang
@@ -281,8 +281,8 @@ ModuleSetup=Configurare Modul
 ModulesSetup=Configurare Module
 ModuleFamilyBase=Sistem
 ModuleFamilyCrm=Clientul Ressource Management (CRM)
-ModuleFamilyProducts=Products Management (PM)
-ModuleFamilyHr=Human Resource Management (HR)
+ModuleFamilyProducts=Managementul Produselor (PM)
+ModuleFamilyHr=Management Resurse Umane (HR)
 ModuleFamilyProjects=Proiecte
 ModuleFamilyOther=Altele
 ModuleFamilyTechnic=Instrumente Multi-module
@@ -304,7 +304,7 @@ SetupIsReadyForUse=Instalarea este terminat şi Dolibarr este gata pentru a fi u
 NotExistsDirect=Nu este  definit directorroot  alternativ.<br>
 InfDirAlt=Începând cu versiunea 3, este posibil să se definească un director radacina alternativ.Director rădăcină vă permite să stocați, în același loc, plug-in-uri și template-uri personalizate. <br> Doar creaţi un director de la rădăcină Dolibarr (de exemplu: custom). <br>
 InfDirExample=<br> Apoi, declaraţi l  fișierul în conf.php <br> $dolibarr_main_url_root_alt='http://myserver/custom'<br>$dolibarr_main_document_root_alt='/path/of/dolibarr/htdocs/custom'<br * Aceste linii sunt comentate cu "#", pentru a decomenta doar elimina caracterul.
-YouCanSubmitFile=For this step, you can send package using this tool: Select module file
+YouCanSubmitFile=La acest pas, puteți trimite pachetul utilizand acest instrument: Selectați modulul fișier 
 CurrentVersion=Dolibarr versiunea curentă
 CallUpdatePage=Du-te la pagina care se actualizează datele şi structura bazei de date %s.
 LastStableVersion=Ultima versiune stabilă
@@ -329,7 +329,7 @@ UMaskExplanation=Acest parametru permite să se definească permissions stabilit
 SeeWikiForAllTeam=Aruncati o privire la pagina de wiki pentru lista completă a tuturor actorilor şi organizarea lor
 UseACacheDelay= Întârziere pentru caching de export de răspuns în câteva secunde (0 sau gol pentru nici un cache)
 DisableLinkToHelpCenter=Ascundere link-ul <b>"Aveţi nevoie de ajutor sau sprijin"</b> de la pagina de login
-DisableLinkToHelp=Hide link to online help "<b>%s</b>"
+DisableLinkToHelp=Ascunde link-ul Ajutor Online "<b>%s</b>"
 AddCRIfTooLong=Nu exista un ambalaj, aşa că, dacă este linia de documente pe pagină, pentru că prea mult timp, trebuie să adăugaţi-vă revine transportului în textarea.
 ModuleDisabled=Modulul dezactivat
 ModuleDisabledSoNoEvent=Modul de persoane atât de eveniment nu a creat
@@ -352,7 +352,7 @@ ThemeDir=Director Teme
 ConnectionTimeout=Conexiune timeout
 ResponseTimeout=Răspuns timeout
 SmsTestMessage=Mesaj de test de la PHONEFROM__ __ la __ PHONETO__
-ModuleMustBeEnabledFirst=Module <b>%s</b> must be enabled first if you need this feature.
+ModuleMustBeEnabledFirst=Modulul <b> %s</b> trebuie să fie activat daca aveti nevoie de aceasta functie
 SecurityToken=Cheia pentru URL-uri sigure
 NoSmsEngine=Nu expeditor SMS Manager disponibile. SMS expeditor manager nu sunt instalate implicit cu distribuţia (deoarece depinde de un furnizor extern), dar puteţi găsi unele pe http://www.dolistore.com
 PDF=PDF
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Ascunde toate informaţiile referitoare la TVA-ul pe
 HideDescOnPDF=Ascunde descrierea produselor pe PDF ul generat
 HideRefOnPDF=Ascunde ref. produs pe PDF ul generat
 HideDetailsOnPDF=Ascunde detaliile liniilor produselor pe PDF ul generat
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Bibliotecă
 UrlGenerationParameters=Parametrii pentru a asigura URL-uri
 SecurityTokenIsUnique=Utilizaţi un unic parametru securekey pentru fiecare URL
@@ -389,7 +389,7 @@ ExtrafieldSeparator=Separator
 ExtrafieldCheckBox=Checkbox
 ExtrafieldRadio=Radio buton
 ExtrafieldCheckBoxFromList= Checkbox din tabel
-ExtrafieldLink=Link to an object
+ExtrafieldLink=Link către un obiect
 ExtrafieldParamHelpselect=Lista de parametri trebuie să fie ca cheie, valoare <br><br> pentru exemplul: <br> 1, valoare1 <br> 2, valoare2 <br> 3, value3 <br> ... <br><br> Pentru a avea listă în funcție de o alta:<br>1,value1|parent_list_code:parent_key<br>2,value2|parent_list_code:parent_key
 ExtrafieldParamHelpcheckbox=Lista de parametri trebuie să fie de tip cheie, valoare <br><br> pentru exemplul: <br> 1, valoare1 <br> 2, valoare2 <br> 3, value3 <br> ...
 ExtrafieldParamHelpradio=Lista de parametri trebuie să fie de tip  cheie, valoare <br><br> pentru exemplul: <br> 1, valoare1 <br> 2, valoare2 <br> 3, value3 <br> ...
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Sunteți sigur că doriți să ștergeți toate va
 AllBarcodeReset=Toate valorile codurilor de bare au fost eliminate
 NoBarcodeNumberingTemplateDefined=Niciun model numeric de cod de bare disponibil in configurarea modulului cod de bare
 NoRecordWithoutBarcodeDefined=Nicio înregistrare fără cod de bare definit
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Utilizatori & grupuri
@@ -492,19 +493,19 @@ Module400Name=Proiecte / Oportunitati  / Prospecți
 Module400Desc=Managementul de proiecte, oportunități sau potențiali. Puteți, apoi, atribui apoi orice element (factură, comandă, ofertă, intervenție, ...), la un proiect și a obține o vedere transversală din punctul de vedere al proiectului.
 Module410Name=Webcalendar
 Module410Desc=Webcalendar integrare
-Module500Name=Special expenses
+Module500Name=Cheltuieli speciale
 Module500Desc=Management of special expenses (taxes, social or fiscal taxes, dividends)
 Module510Name=Salarii
 Module510Desc=Managementul salariilor angajatilor si a plaţiilor
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Notificări
-Module600Desc=Trimite notificări prin email la unele evenimente de afaceri Dolibarr la contactele terților (configurare definită pe fiecare terţ)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Donatii
 Module700Desc=MAnagementul Donaţiilor
-Module770Name=Expense reports
-Module770Desc=Management and claim expense reports (transportation, meal, ...)
-Module1120Name=Supplier commercial proposal
+Module770Name=Rapoarte Cheltuieli
+Module770Desc=Managementul rapoartelor de cheltuieli (transport, masă, ...)
+Module1120Name=Ofertă Comercială Furnizor
 Module1120Desc=Request supplier commercial proposal and prices
 Module1200Name=Mantis
 Module1200Desc=Mantis integrare
@@ -512,7 +513,7 @@ Module1400Name=Contabilitate
 Module1400Desc=Management Contabilitate de gestiune (partidă dublă)
 Module1520Name=Generare Document 
 Module1520Desc=Mass mail document generation
-Module1780Name=Tags/Categories
+Module1780Name=Tag-uri / Categorii
 Module1780Desc=Create tags/category (products, customers, suppliers, contacts or members)
 Module2000Name=Fckeditor
 Module2000Desc=WYSIWYG Editor
@@ -545,7 +546,7 @@ Module6000Name=Flux de lucru
 Module6000Desc=Managementul fluxului de lucru
 Module20000Name=Managementul cererilor de concedii
 Module20000Desc=Declară şi urmăreşte cererile de concedii ale angajaţilor
-Module39000Name=Product lot
+Module39000Name=Lot Produs
 Module39000Desc=Lot or serial number, eat-by and sell-by date management on products
 Module50000Name=Paybox
 Module50000Desc=Modul de a oferi o pagina de plata online prin card de credit cu Paybox
@@ -603,10 +604,10 @@ Permission86=Trimite ordinelor clienţilor
 Permission87=Inchide ordinelor clienţilor
 Permission88=Anulare ordinelor clienţilor
 Permission89=Ştergere ordinelor clienţilor
-Permission91=Read social or fiscal taxes and vat
-Permission92=Create/modify social or fiscal taxes and vat
-Permission93=Delete social or fiscal taxes and vat
-Permission94=Export social or fiscal taxes
+Permission91=Citeste taxe sociale sau fiscale și tva
+Permission92=Creare / Modificare taxe sociale sau fiscale si tva
+Permission93=Sterge taxe sociale sau fiscale si tva
+Permission94=Export taxe sociale sau fiscale si tva
 Permission95=Citeşte rapoarte
 Permission101=Citeşte sendings
 Permission102=Creare / Modificare Livrare
@@ -734,12 +735,12 @@ Permission701=Citiţi donaţii
 Permission702=Creare / Modificare donaţii
 Permission703=Ştergere donaţii
 Permission771=Read expense reports (yours and your subordinates)
-Permission772=Create/modify expense reports
-Permission773=Delete expense reports
+Permission772=Creare / Modificare Raport Cheltuieli
+Permission773=Șterge rapoarte de cheltuieli
 Permission774=Read all expense reports (even for user not subordinates)
-Permission775=Approve expense reports
-Permission776=Pay expense reports
-Permission779=Export expense reports
+Permission775=Aproba rapoarte de cheltuieli
+Permission776=Plăste  rapoarte de cheltuieli
+Permission779=Export Rapoarte Cheltuieli
 Permission1001=Citeşte stocuri
 Permission1002=Creare / modificare depozite
 Permission1003=Ștergere depozite
@@ -776,10 +777,10 @@ Permission20003=Delete leave requests
 Permission20004=Read all leave requests (even user not subordinates)
 Permission20005=Create/modify leave requests for everybody
 Permission20006=Admin leave requests (setup and update balance)
-Permission23001=Read Scheduled job
-Permission23002=Create/update Scheduled job
-Permission23003=Delete Scheduled job
-Permission23004=Execute Scheduled job
+Permission23001=Citeste Joburi programate
+Permission23002=Creare/Modificare job programat
+Permission23003=Şterge Joburi programate
+Permission23004=Execută Joburi programate
 Permission2401=Citeşte acţiuni (evenimente sau sarcini) legate de acest cont
 Permission2402=Crea / modifica / delete acţiuni (evenimente sau sarcini) legate de acest cont
 Permission2403=Citeşte acţiuni (evenimente sau sarcini) de alţii
@@ -804,13 +805,13 @@ Permission59003=Citeşte marjele fiecarui utilizator
 DictionaryCompanyType=Tip Terţ
 DictionaryCompanyJuridicalType=Tipuri juridice terţi
 DictionaryProspectLevel=Nivel potenţial Prospect
-DictionaryCanton=State/Province
+DictionaryCanton=Regiune / Judeţ
 DictionaryRegion=Regiuni
 DictionaryCountry=Ţări
 DictionaryCurrency=Monede
 DictionaryCivility=Mod adresare
 DictionaryActions=Tip evenimente agenda
-DictionarySocialContributions=Social or fiscal taxes types
+DictionarySocialContributions=Tipuri Taxe sociale sau fiscale
 DictionaryVAT=Cote TVA sau Cote Taxe Vanzări
 DictionaryRevenueStamp=Valoarea timbrelor fiscale
 DictionaryPaymentConditions=Conditiile de plata
@@ -827,9 +828,9 @@ DictionarySource=Originea ofertei  / comenzi
 DictionaryAccountancyplan=Plan de conturi
 DictionaryAccountancysystem=Model pentru plan de conturi
 DictionaryEMailTemplates=Șabloane e-mailuri 
-DictionaryUnits=Units
+DictionaryUnits=Unităţi
 DictionaryProspectStatus=Prospection status
-DictionaryHolidayTypes=Type of leaves
+DictionaryHolidayTypes=Tipuri concedii
 DictionaryOpportunityStatus=Opportunity status for project/lead
 SetupSaved=Setup salvate
 BackToModuleList=Inapoi la lista de module
@@ -865,11 +866,11 @@ LocalTax2IsNotUsedDescES= În mod implicit propus IRPF este 0. Sfârşitul regul
 LocalTax2IsUsedExampleES= În Spania, liber profesionişti şi specialişti independenţi, care presta servicii şi companiile care au ales sistemul de impozitare de module.
 LocalTax2IsNotUsedExampleES= În Spania nu sunt afaceri care fac obiectul sistemului de impozitare de module.
 CalcLocaltax=Reports on local taxes
-CalcLocaltax1=Sales - Purchases
+CalcLocaltax1=Vânzări - Cumpârări
 CalcLocaltax1Desc=Rapoarte Taxe Locale este calcult ca diferenţă dintre taxele locale de vanzare şi taxele locale de cumparare
-CalcLocaltax2=Purchases
+CalcLocaltax2=Achiziţii
 CalcLocaltax2Desc=Rapoarte Taxe Locale este totalul taxelor locale de cumpărare
-CalcLocaltax3=Sales
+CalcLocaltax3=Vânzări
 CalcLocaltax3Desc=Rapoarte Taxe Locale este totalul taxelor locale de vanzare
 LabelUsedByDefault=Eticheta utilizat în mod implicit în cazul în care nu poate fi găsit de traducere pentru codul
 LabelOnDocuments=Eticheta de pe documente
@@ -954,7 +955,7 @@ DoNotSuggestPaymentMode=Nu sugerează
 NoActiveBankAccountDefined=Niciun cont bancar activ definit
 OwnerOfBankAccount=Titular de cont bancar %s
 BankModuleNotActive=Conturi bancare de module nu a permis
-ShowBugTrackLink=Show link "<strong>%s</strong>"
+ShowBugTrackLink=Arată link-ul "<strong>%s</strong>"
 ShowWorkBoard=Show "de lucru" la pagina de start
 Alerts=Alerte
 Delays=Întârzierile
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Întârzieri înainte de avertisment
 DelaysOfToleranceBeforeWarning=Toleranta întârzieri înainte de avertisment
 DelaysOfToleranceDesc=Acest ecran vă permite să definiţi de tolerat întârzieri înainte de o alertă este raportat de pe ecran cu picto %s târziu, pentru fiecare element.
 Delays_MAIN_DELAY_ACTIONS_TODO=Toleranţă întârziere (în zile) înainte de alertă cu privire la acţiunile planificate care nu au fost încă realizat
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Toleranţă întârziere (în zile) înainte de alertă cu privire la ordinele nu a fost încă realizat
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Toleranţă întârziere (în zile) înainte de alertă privind ordinele de furnizori nu au fost încă prelucrate
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Întârziere toleranță (în zile) înainte de alertă cu privire la propunerile de a închide
@@ -1087,6 +1089,7 @@ PathDirectory=Director
 SendmailOptionMayHurtBuggedMTA=Functionalitate pentru a trimite mesaje utilizând metoda "mail PHP direct" va genera un mesaj e-mail care nu s-ar putea să fie corect interpretat de către unele servere de e-mail . Rezultatul este că unele mail-uri nu pot fi citite de unele persoane . Este cazul unor furnizori de Internet (Ex: Orange în Franţa). Aceasta nu este o problemă în Dolibarr nici în PHP, dar primesc pe serverul de poştă electronică. Puteţi adăuga toate acestea, opţiunea MAIN_FIX_FOR_BUGGED_MTA la 1 în configurare - pentru a modifica alte Dolibarr pentru a evita acest lucru. Cu toate acestea, este posibil să aveţi probleme cu alte servere care sens strict standard SMTP. Altă soluţie (recommanded) este de a utiliza metoda "SMTP socket bibliotecă", care nu are dezavantaje.
 TranslationSetup=Configurarea traducerii
 TranslationDesc=Alegerea limbiilor vizibile pe ecran pot fi modificate: <br> * La nivel global din meniul <strong>Home - Configurare - Afişare</strong> <br> * Pe utilizator numai ,la Tabul  <strong>Afișare utilizator</strong> al fişei de utilizator (click pe login din partea de sus a ecranului).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Numărul total al modulelor funcţionale activate: <b>%s</b>
 YouMustEnableOneModule=Trebuie activat cel puţin 1 modul
 ClassNotFoundIntoPathWarning=Clasa %s negăsită în calea PHP
@@ -1124,7 +1127,7 @@ DisableForgetPasswordLinkOnLogonPage=Nu afişa link-ul "Uită parola" de pe pagi
 UsersSetup=Utilizatorii modul de configurare
 UserMailRequired=EMail necesare pentru a crea un utilizator nou
 ##### HRM setup #####
-HRMSetup=HRM module setup
+HRMSetup=Configurare Modul HRM
 ##### Company setup #####
 CompanySetup=Setări Modul Terţi
 CompanyCodeChecker=Modulul pentru terţi cod de generare şi de verificare (client sau furnizor)
@@ -1585,14 +1588,14 @@ WebServicesDesc=Prin activarea acestui modul, Dolibarr devenit un serviciu de we
 WSDLCanBeDownloadedHere=WSDL Descriptorul de fişier cu condiţia serviceses pot fi download aici
 EndPointIs=SOAP clienţii trebuie să trimită cererile lor la Dolibarr final disponibile la Url
 ##### API ####
-ApiSetup=API module setup
+ApiSetup=Configurare Modul API
 ApiDesc=By enabling this module, Dolibarr become a REST server to provide miscellaneous web services.
 KeyForApiAccess=Key to use API (parameter "api_key")
 ApiProductionMode=Enable production mode (this will activate use of a caches for services management)
 ApiEndPointIs=You can access to the API at url
 ApiExporerIs=You can explore the API at url
 OnlyActiveElementsAreExposed=Only elements from enabled modules are exposed
-ApiKey=Key for API
+ApiKey=Cheie pentru API
 ##### Bank #####
 BankSetupModule=Banca modul de configurare
 FreeLegalTextOnChequeReceipts=Free text pe cec încasări
@@ -1664,12 +1667,13 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
-BackgroundColor=Background color
-TopMenuBackgroundColor=Background color for Top menu
-LeftMenuBackgroundColor=Background color for Left menu
+BackgroundColor=Culoare Background 
+TopMenuBackgroundColor=Culoare Background pentru Top menu
+LeftMenuBackgroundColor=Culoare Background pentru Left menu
 BackgroundTableTitleColor=Background color for Table title line
 BackgroundTableLineOddColor=Background color for odd table lines
 BackgroundTableLineEvenColor=Background color for even table lines
@@ -1687,8 +1691,8 @@ TypeOfTemplate=Type of template
 TemplateIsVisibleByOwnerOnly=Template is visible by owner only
 FixTZ=Fixează TimeZone
 FillFixTZOnlyIfRequired=Example: +2 (fill only if problem experienced)
-ExpectedChecksum=Expected Checksum
-CurrentChecksum=Current Checksum
+ExpectedChecksum=Checksum așteptat
+CurrentChecksum=Checksum curent
 MailToSendProposal=To send customer proposal
 MailToSendOrder=To send customer order
 MailToSendInvoice=To send customer invoice
diff --git a/htdocs/langs/ro_RO/agenda.lang b/htdocs/langs/ro_RO/agenda.lang
index f31abb801d293862cfd4ae8e489d8e39adf4c154..cf8c3696f497e71992b11578aadacc8491851b3e 100644
--- a/htdocs/langs/ro_RO/agenda.lang
+++ b/htdocs/langs/ro_RO/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Toate Ev. / sarcini
 ViewCal=Vedere  lunara
 ViewDay=Vedere  zilnica
 ViewWeek=Vedere  săptămânala
+ViewYear=Year view
 ViewPerUser=Vedere pe utilizator
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Vedere cu filtre predefinite
 AutoActions= Completarea automată
 AgendaAutoActionDesc= Definiți aici evenimentele pentru care doriți ca Dolibarr să  creeze automat un eveniment în agendă. În cazul în care nimic nu este bifat(implicit), doar acțiunile  manuale vor fi incluse în agendă.
@@ -48,9 +50,9 @@ InvoiceValidatedInDolibarrFromPos=Factura %s validată din POS
 InvoiceBackToDraftInDolibarr=Factura %s revenită de statutul schiţă
 InvoiceDeleteDolibarr=Factura %s ştearsă
 OrderValidatedInDolibarr=Comanda %s validată
-OrderDeliveredInDolibarr=Order %s classified delivered
+OrderDeliveredInDolibarr=Comanda livrată %s  clasificată
 OrderCanceledInDolibarr=Comanda  %s anulată
-OrderBilledInDolibarr=Order %s classified billed
+OrderBilledInDolibarr=Comanda livrată %s  facturată
 OrderApprovedInDolibarr=Comanda %s aprobată
 OrderRefusedInDolibarr=Comanda %s refuzată
 OrderBackToDraftInDolibarr=Comanda %s revenită de statutul schiţă
@@ -90,17 +92,17 @@ ExtSiteUrlAgenda=URL-ul pentru a accesa  fişierul . ical
 ExtSiteNoLabel=Nicio descriere
 WorkingTimeRange=Rang timp muncă
 WorkingDaysRange=Rang zile muncă
-VisibleTimeRange=Visible time range
-VisibleDaysRange=Visible days range
+VisibleTimeRange=Interval de timp vizibil
+VisibleDaysRange=Interval zile vizibil
 AddEvent=Creare eveniment
 MyAvailability=Disponibilitatea mea
-ActionType=Event type
-DateActionBegin=Start event date
-CloneAction=Clone event
-ConfirmCloneEvent=Are you sure you want to clone the event <b>%s</b> ?
-RepeatEvent=Repeat event
-EveryWeek=Every week
-EveryMonth=Every month
-DayOfMonth=Day of month
-DayOfWeek=Day of week
-DateStartPlusOne=Date start + 1 hour
+ActionType=Tip Eveniment
+DateActionBegin=Dată începere eveniment
+CloneAction=Clonează eveniment
+ConfirmCloneEvent=Sigur doriţi să clonaţi acest eveniment <b>%s</b> ?
+RepeatEvent=Repeta eveniment
+EveryWeek=Fiecare săptămână
+EveryMonth=Fiecare lună
+DayOfMonth=Zi a lunii
+DayOfWeek=Zi a saptamanii
+DateStartPlusOne=Dată început + 1 ora
diff --git a/htdocs/langs/ro_RO/banks.lang b/htdocs/langs/ro_RO/banks.lang
index 4cee55d6493d33cfd8e33859e4c6a26297e4a0f4..f8798dfe590597cc22f47b41cd244b7929775c0d 100644
--- a/htdocs/langs/ro_RO/banks.lang
+++ b/htdocs/langs/ro_RO/banks.lang
@@ -33,10 +33,10 @@ AllTime=De la inceput
 Reconciliation=Reconciliere
 RIB=Număr Cont Bancă
 IBAN=Cod IBAN
-IbanValid=IBAN is Valid
-IbanNotValid=IBAN is Not Valid
+IbanValid=IBAN este valid
+IbanNotValid=IBAN nu este valid
 BIC=Cod BIC / SWIFT
-SwiftValid=BIC/SWIFT is Valid
+SwiftValid=BIC / SWIFT este valid
 SwiftNotValid=BIC/SWIFT is Not Valid
 StandingOrders=Ordine de plată
 StandingOrder=Ordin plată
@@ -94,7 +94,7 @@ Conciliate=Deconteaza
 Conciliation=Conciliere
 ConciliationForAccount=Deconteaza acest cont
 IncludeClosedAccount=Includeţi conturile închise
-OnlyOpenedAccount=Only open accounts
+OnlyOpenedAccount=Numai conturile deschise 
 AccountToCredit=Cont de credit
 AccountToDebit=Cont de debit
 DisableConciliation=Dezactivaţi reconcilierea pentru acest cont
@@ -113,7 +113,7 @@ CustomerInvoicePayment=Plată Client
 CustomerInvoicePaymentBack=Return Plată client
 SupplierInvoicePayment=Plată Furnizor
 WithdrawalPayment=Retragerea de plată
-SocialContributionPayment=Social/fiscal tax payment
+SocialContributionPayment=Plata taxe sociale sau fiscale și tva
 FinancialAccountJournal=Jurnal Cont Financiar
 BankTransfer=Virament bancar
 BankTransfers=Viramente 
@@ -163,8 +163,8 @@ LabelRIB=Etichetă BAN
 NoBANRecord=Nicio înregistrare BAN
 DeleteARib=Ștergeți înregistrarea BAN
 ConfirmDeleteRib=Sigur doriţi să ştergeţi  această înregistrare BAN ?
-StartDate=Start date
-EndDate=End date
+StartDate=Dată începere
+EndDate=Dată sfîrşit
 RejectCheck=Check returned
 ConfirmRejectCheck=Are you sure you want to mark this check as rejected ?
 RejectCheckDate=Date the check was returned
diff --git a/htdocs/langs/ro_RO/bills.lang b/htdocs/langs/ro_RO/bills.lang
index 9ed3522cc0c5381213f84187680925bc796434ee..7417bc42ba6a927140c0643f8f3760b8569914bd 100644
--- a/htdocs/langs/ro_RO/bills.lang
+++ b/htdocs/langs/ro_RO/bills.lang
@@ -73,7 +73,9 @@ PaymentsAlreadyDone=Plăţi deja efectuate
 PaymentsBackAlreadyDone=Plaţi Return  deja efectuate
 PaymentRule=Mod de Plată
 PaymentMode=Tip de plată
-PaymentModeShort=Payment type
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
+PaymentModeShort=Tip de plată
 PaymentTerm=Conditii de plata
 PaymentConditions=Conditiile de plata
 PaymentConditionsShort=Conditiile de plata
@@ -178,12 +180,13 @@ NumberOfBills=Nr  facturi
 NumberOfBillsByMonth=Nr facturi pe luni
 AmountOfBills=Valoare facturi
 AmountOfBillsByMonthHT=Valoarea facturilor pe luni (fără tva)
-ShowSocialContribution=Show social/fiscal tax
+ShowSocialContribution=Afisează taxa sociala/fiscala
 ShowBill=Afisează  factura
 ShowInvoice=Afisează  factura
 ShowInvoiceReplace=Afisează  factura de înlocuire
 ShowInvoiceAvoir=Afisează  nota de credit
 ShowInvoiceDeposit=Afisează factura de avans
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Afisează plata
 AlreadyPaid=Deja platite
 AlreadyPaidBack=Deja rambursată
@@ -215,12 +218,13 @@ DateEcheance=Data limită
 DateInvoice=Data facturării
 NoInvoice=Nicio  factură
 ClassifyBill=Clasează factura
-SupplierBillsToPay=Unpaid supplier invoices
-CustomerBillsUnpaid=Unpaid customer invoices
+SupplierBillsToPay=Facturi furnizori neplătite
+CustomerBillsUnpaid=Facturi clienţi neîncasate
 NonPercuRecuperable=Nerecuperabilă
 SetConditions=Setează termenii de plata
 SetMode=Setează modul de plată
 Billed=Facturat
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Model factura
 RepeatableInvoices=Modele facturi
 Repeatable=Model
@@ -267,8 +271,9 @@ BillAddress=Adresa de facturare
 HelpEscompte=Această reducere este un discount acordat clientului pentru că plata  a fost făcută înainte de termen.
 HelpAbandonBadCustomer=Această sumă a fost abandonată (client ae declarat  client de rău platnic) şi este considerat ca fiind o pierdere excepţională.
 HelpAbandonOther=Această sumă a fost abandonată, deoarece a fost o eroare (client greșit sau factura înlocuită cu alta, de exemplu)
-IdSocialContribution=Social/fiscal tax payment id
+IdSocialContribution=Id Plata taxa sociala / fiscala 
 PaymentId=ID Plată
+PaymentRef=Payment ref.
 InvoiceId=ID Factură
 InvoiceRef=Ref. Factură
 InvoiceDateCreation=Data crearea factură
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Facturi asociate Furnizor
 LatestRelatedBill=Ultima Factură asociată
 WarningBillExist=Avertisment, una sau mai multe facturi există deja
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Imediat
@@ -327,12 +336,12 @@ PaymentTypeCB=Carte de credit
 PaymentTypeShortCB=Carte de credit
 PaymentTypeCHQ=Cec
 PaymentTypeShortCHQ=Cec
-PaymentTypeTIP=Interbank Payment
-PaymentTypeShortTIP=Interbank Payment
+PaymentTypeTIP=Plata interbancara
+PaymentTypeShortTIP=Plata interbancara
 PaymentTypeVAD=Online
 PaymentTypeShortVAD=Online
-PaymentTypeTRA=Traite
-PaymentTypeShortTRA=Traite
+PaymentTypeTRA=Trata
+PaymentTypeShortTRA=Trata
 PaymentTypeFAC=Factor
 PaymentTypeShortFAC=Factor
 BankDetails=Coordonate Bancă
@@ -349,7 +358,7 @@ ExtraInfos=Informaţii suplimentare
 RegulatedOn=Plătite pe
 ChequeNumber=Cec Nr
 ChequeOrTransferNumber=Cec / Transfer Nr
-ChequeMaker=Check/Transfer transmitter
+ChequeMaker=Verificare / transmițător Transfer
 ChequeBank=Banca Cec
 CheckBank=Verifică
 NetToBePaid=Net de plată
@@ -380,7 +389,7 @@ ChequesReceipts=Borderouri cecuri remise
 ChequesArea=CECURI
 ChequeDeposits=Cecuri remise
 Cheques=Cecuri
-DepositId=Id deposit
+DepositId=Depozit id
 NbCheque=Number of checks
 CreditNoteConvertedIntoDiscount=Această notă de credit a fost convertită în %s
 UsBillingContactAsIncoiveRecipientIfExist=Utilizaţi , adresa  de facturare a contactului  clientului în loc de o adresa terţului  ca adresa a destinatarului pentru facturi
@@ -393,6 +402,7 @@ Reported=Întârziat
 DisabledBecausePayments=Nu este posibil, deoarece există unele plăţi
 CantRemovePaymentWithOneInvoicePaid=Nu se poate elimina plata deoarece există cel puțin o factură clasificată plătită
 ExpectedToPay=Plată prevăzută
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Achitat prin aceasta plată
 ClosePaidInvoicesAutomatically=Clasează "Platită" toate facturile standard, de situatie sau  de înlocuire în întregime platite.
 ClosePaidCreditNotesAutomatically=Clasează "Platită" toate credit notele returnate în întregime
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Notă: Această listă conține numai facturile pen
 RevenueStamp=Timbru fiscal
 YouMustCreateInvoiceFromThird=Această opțiune este disponibilă numai atunci când se creează factura de la tab-ul "client" al terţului
 PDFCrabeDescription=Şablon PDF Factura Crabe . Un șablon factură complet (format recomandat)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Retrimiteţi numărul sub forma %syymm-nnnn pentru facturile standard și %syymm-nnnn pentru notele de credit unde yy este anul, mm este luna și nnnn este o secvenţă fără nici o pauză și fără revenire la 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=O factură începând cu $syymm există deja și nu este compatibilă cu acest model de numerotaţie. Înşăturaţi-o sau redenumiți-o pentru a activa acest modul.
@@ -431,5 +442,13 @@ NotLastInCycle=Aceasta factura ce nu se afla in ultimul ciclu si nu poate fi mod
 DisabledBecauseNotLastInCycle=URmatoarea situatie deja exista
 DisabledBecauseFinal=Aceasta situatie este finala
 CantBeLessThanMinPercent=Progresul nu poate fi mai mic decat valoarea lui in precedenta situatie
-NoSituations=No open situations
+NoSituations=Nicio situatie deschisa
 InvoiceSituationLast=Factura finala si generala
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/ro_RO/boxes.lang b/htdocs/langs/ro_RO/boxes.lang
index 89a598b5a051147f89d1c72ccf36cba280284704..7e0253476aa50e6442950fd0cb5e330585a95557 100644
--- a/htdocs/langs/ro_RO/boxes.lang
+++ b/htdocs/langs/ro_RO/boxes.lang
@@ -19,7 +19,7 @@ BoxLastContracts=Ultimele contracte
 BoxLastContacts=Ultimele contacte / adrese
 BoxLastMembers=Ultimii membri
 BoxFicheInter=Ultimele intervenţii
-BoxCurrentAccounts=Open accounts balance
+BoxCurrentAccounts=Sold conturi deschise
 BoxSalesTurnover=Cifra de afaceri Vânzări 
 BoxTotalUnpaidCustomerBills=Total facturi clienţi neîncasate
 BoxTotalUnpaidSuppliersBills=Total facturi  furnizori neplătite
@@ -47,7 +47,7 @@ BoxTitleLastModifiedMembers=Ultimii  %s membri
 BoxTitleLastFicheInter=Ultimele %s intervenţii modificate
 BoxTitleOldestUnpaidCustomerBills=Cele mai vechi %s  facturi clienţi neîncasate
 BoxTitleOldestUnpaidSupplierBills=Cele mai vechi %s  facturi furnizori neplătite
-BoxTitleCurrentAccounts=Open accounts balances
+BoxTitleCurrentAccounts=Solduri conturi deschise 
 BoxTitleSalesTurnover=Cifra de afaceri vânzări 
 BoxTitleTotalUnpaidCustomerBills=Facturi clienţi neîncasate
 BoxTitleTotalUnpaidSuppliersBills=Facturi furnizori neplătite
@@ -58,7 +58,7 @@ BoxLastExpiredServices=Cele mai vechi %s  contacte cu serviciile active expirate
 BoxTitleLastActionsToDo=Ultimele %s acţiuni de realizat
 BoxTitleLastContracts=Ultimele  %s  contracte
 BoxTitleLastModifiedDonations=Ultimele %s  donaţii modificate 
-BoxTitleLastModifiedExpenses=Last %s modified expense reports
+BoxTitleLastModifiedExpenses=Ultimele %s rapoarte cheltuieli modificare 
 BoxGlobalActivity=Activitate globală ( facturi, oferte, comenzi)
 FailedToRefreshDataInfoNotUpToDate=Eşec la reîmprospătarea fluxului RSS. Ultima reîmprospătare reuşită la data: %s
 LastRefreshDate=Ultima dată reîmprospătare
@@ -95,3 +95,4 @@ ForCustomersInvoices=Facturi clienţi
 ForCustomersOrders=Comenzi clienți
 ForProposals=Oferte comerciale
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/ro_RO/categories.lang b/htdocs/langs/ro_RO/categories.lang
index 91a2c868bee291ad8ce53b31321269af54231cec..6eede06852d996296ec0fbfe39ef07c280af108f 100644
--- a/htdocs/langs/ro_RO/categories.lang
+++ b/htdocs/langs/ro_RO/categories.lang
@@ -10,31 +10,31 @@ modify=modifică
 Classify=Clasează
 CategoriesArea=Tag-uri / Categorii
 ProductsCategoriesArea=Taguri/ Categorii Produse / Servicii
-SuppliersCategoriesArea=Suppliers tags/categories area
-CustomersCategoriesArea=Customers tags/categories area
-ThirdPartyCategoriesArea=Third parties tags/categories area
-MembersCategoriesArea=Members tags/categories area
+SuppliersCategoriesArea=Tag-uri/categorii Furnizori
+CustomersCategoriesArea=Tag-uri / categorii Clienții
+ThirdPartyCategoriesArea=Taguri/ Categorii Terţi
+MembersCategoriesArea=Tag-uri  / categorii Membri
 ContactsCategoriesArea=Contacts tags/categories area
-MainCats=Main tags/categories
+MainCats=Principalele tag-uri / categorii
 SubCats=Subcategorii
 CatStatistics=Statistici
-CatList=List of tags/categories
-AllCats=All tags/categories
-ViewCat=View tag/category
-NewCat=Add tag/category
-NewCategory=New tag/category
-ModifCat=Modify tag/category
-CatCreated=Tag/category created
+CatList=Lista Tag-uri / Categorii
+AllCats=Toate tag-uri / categorii
+ViewCat=Vezi tag / categorie
+NewCat=Adauga Tag / categoria
+NewCategory=Tag / categorie noua
+ModifCat=Modifica Tag / categoria
+CatCreated=Tag / categorie creată
 CreateCat=Creați tag / categorie
 CreateThisCat=Creați acest tag/ categorie
 ValidateFields=Validează  câmpurile
 NoSubCat=Nicio subcategorie.
 SubCatOf=Subcategorie
-FoundCats=Found tags/categories
-FoundCatsForName=Tags/categories found for the name :
-FoundSubCatsIn=Subcategories found in the tag/category
-ErrSameCatSelected=You selected the same tag/category several times
-ErrForgotCat=You forgot to choose the tag/category
+FoundCats=Tag-uri  / categorii gasite
+FoundCatsForName=Tag-uri / categorii găsite pentru numele:
+FoundSubCatsIn=Subcategorii găsite în tag-ul / categoria
+ErrSameCatSelected=Ati selectat același tag/categoria de mai multe ori
+ErrForgotCat=Ai uitat sa alegeti tag-ul / categoria
 ErrForgotField=Ai uitat să completezi un câmp
 ErrCatAlreadyExists=Acest nume este deja folosit
 AddProductToCat=Add this product to a tag/category?
@@ -49,14 +49,14 @@ CompanyIsInCustomersCategories=This third party is linked to following customers
 CompanyIsInSuppliersCategories=This third party is linked to following suppliers tags/categories
 MemberIsInCategories=This member is linked to following members tags/categories
 ContactIsInCategories=This contact is linked to following contacts tags/categories
-ProductHasNoCategory=This product/service is not in any tags/categories
-SupplierHasNoCategory=This supplier is not in any tags/categories
+ProductHasNoCategory=Acest produs / serviciu nu este în niciun tag/ categorie
+SupplierHasNoCategory=Acest furnizor nu este în niciun tag/ categorie
 CompanyHasNoCategory=This thirdparty is not in any tags/categories
 MemberHasNoCategory=This member is not in any tags/categories
 ContactHasNoCategory=This contact is not in any tags/categories
-ClassifyInCategory=Add to tag/category
+ClassifyInCategory=Adauga la  tag / categorie
 NoneCategory=Niciunul
-NotCategorized=Without tag/category
+NotCategorized=Fără tag / categorie
 CategoryExistsAtSameLevel=Această categorie  există deja cu această referinţă
 ReturnInProduct=Inapoi la  Fişa produs / serviciu
 ReturnInSupplier=Inapoi la Fişa furnizor
@@ -64,22 +64,23 @@ ReturnInCompany=Inapoi la  Fişa client / prospect
 ContentsVisibleByAll=Conţinutul va fi vizibil pentru toţi
 ContentsVisibleByAllShort=Conţinut vizibil de către toţi
 ContentsNotVisibleByAllShort=Conţinutul nu va fi vizibil pentru toţi
-CategoriesTree=Tags/categories tree
-DeleteCategory=Delete tag/category
+CategoriesTree=Arborescenta Tag-uri / Categorii
+DeleteCategory=Ştergere tag / categorie
 ConfirmDeleteCategory=Are you sure you want to delete this tag/category ?
 RemoveFromCategory=Remove link with tag/category
 RemoveFromCategoryConfirm=Are you sure you want to unlink the transaction from the tag/category ?
-NoCategoriesDefined=No tag/category defined
-SuppliersCategoryShort=Suppliers tag/category
-CustomersCategoryShort=Customers tag/category
-ProductsCategoryShort=Products tag/category
-MembersCategoryShort=Members tag/category
-SuppliersCategoriesShort=Suppliers tags/categories
-CustomersCategoriesShort=Customers tags/categories
+NoCategoriesDefined=Niciun tag / categorie definită
+SuppliersCategoryShort=Tag  / categorie Furnizori
+CustomersCategoryShort=Tag  / categorie Clienții
+ProductsCategoryShort= Tag / categorie Produse
+MembersCategoryShort=Tag  / categorie Membri
+SuppliersCategoriesShort=Tag-uri/categorii Furnizori
+CustomersCategoriesShort=Tag-uri / categorii Clienții
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Categorii  Clienţi / Prospecte
-ProductsCategoriesShort=Products tags/categories
-MembersCategoriesShort=Members tags/categories
-ContactCategoriesShort=Contacts tags/categories
+ProductsCategoriesShort=Tag-uri / categorii Produse 
+MembersCategoriesShort=Tag-uri  / categorii Membri
+ContactCategoriesShort=Tag-uri / Categorii Contacte
 ThisCategoryHasNoProduct=Această categorie nu conţine nici un produs.
 ThisCategoryHasNoSupplier=Această categorie nu conţine nici un furnizor.
 ThisCategoryHasNoCustomer=Această categorie nu conţine nici un client.
@@ -88,24 +89,24 @@ ThisCategoryHasNoContact=Această categorie nu conţine nici un contact
 AssignedToCustomer=Atribuie la un client
 AssignedToTheCustomer=Atribuit la clientul
 InternalCategory=Categorie internă
-CategoryContents=Tag/category contents
-CategId=Tag/category id
-CatSupList=List of supplier tags/categories
+CategoryContents=Continututi Tag / categoria
+CategId=Id Tag / Categorie
+CatSupList=Lista Tag-uri / Categorii furnizori
 CatCusList=List of customer/prospect tags/categories
-CatProdList=List of products tags/categories
-CatMemberList=List of members tags/categories
-CatContactList=List of contact tags/categories
+CatProdList=Lista Tag-uri / categorii Produse 
+CatMemberList=Lista Tag-uri  / categorii Membri
+CatContactList=Lista Tag-uri / Categorii Contacte
 CatSupLinks=Links between suppliers and tags/categories
 CatCusLinks=Links between customers/prospects and tags/categories
 CatProdLinks=Links between products/services and tags/categories
 CatMemberLinks=Links between members and tags/categories
-DeleteFromCat=Remove from tags/category
+DeleteFromCat=Elimina din tag-uri / categoriii
 DeletePicture=Şterge Foto
 ConfirmDeletePicture=Confirmaţi ştergere foto ?
 ExtraFieldsCategories=Atribute complementare
-CategoriesSetup=Tags/categories setup
+CategoriesSetup=Configurare Tag-uri / categorii
 CategorieRecursiv=Link with parent tag/category automatically
 CategorieRecursivHelp=Dacă este activat, produsul va fi legat către categoria părinte atunci când este adăugat în subcategorie
 AddProductServiceIntoCategory=Add  următoarele produseservicii
 ShowCategory=Arată tag / categorie
-ByDefaultInList=By default in list
+ByDefaultInList=Implicit în listă
diff --git a/htdocs/langs/ro_RO/commercial.lang b/htdocs/langs/ro_RO/commercial.lang
index aa865188dcfc3a751e3f55bc67d3e7c84bb51b2b..a94379e853da4bf6b77782f870b8fae44fc41da4 100644
--- a/htdocs/langs/ro_RO/commercial.lang
+++ b/htdocs/langs/ro_RO/commercial.lang
@@ -7,13 +7,13 @@ Customer=Client
 Customers=Clienţi
 Prospect=Prospect
 Prospects=Prospecte
-DeleteAction=Delete an event
-NewAction=New event
-AddAction=Create event
-AddAnAction=Create an event
+DeleteAction=Şterge  un eveniment
+NewAction=Eveniment nou
+AddAction=Creare eveniment
+AddAnAction=Crează un eveniment
 AddActionRendezVous=Crează un eveniment întălnire
 Rendez-Vous=Întâlnire
-ConfirmDeleteAction=Are you sure you want to delete this event ?
+ConfirmDeleteAction=Sunteţi sigur că doriţi să ştergeţi aceast eveniment?
 CardAction=Fişă Eveniment
 PercentDone=Procentajul realizat
 ActionOnCompany=Eveniment privind  societatea
@@ -94,4 +94,4 @@ StatusProsp=Statut Prospect
 DraftPropals=Oferte Comerciale Schiţă
 SearchPropal=Căutaţi o ofertă comercială
 CommercialDashboard=Sinteza comercială
-NoLimit=No limit
+NoLimit=Nelimitat 
diff --git a/htdocs/langs/ro_RO/companies.lang b/htdocs/langs/ro_RO/companies.lang
index f239838180a2429d540f8292c0cb5e44017957bf..bfcf084e5bb6984244926b31892c30724e1d09fe 100644
--- a/htdocs/langs/ro_RO/companies.lang
+++ b/htdocs/langs/ro_RO/companies.lang
@@ -63,7 +63,7 @@ UserTitle=Titlu
 Surname=Prenume / Poreclă
 Address=Adresă
 State=Regiune / Judeţ
-StateShort=State
+StateShort=Stare
 Region=Regiune
 Country=Ţară
 CountryCode=Cod ţară
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. univ. 1 (RC)
 ProfId2MA=Id prof. univ. 2 (Patente)
 ProfId3MA=Id prof. univ. 3 (IF)
 ProfId4MA=Id prof. univ. 4 (CNSS)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof. Id-ul 1 (RFC).
 ProfId2MX=Prof. Id-ul 2 (R.. P. IMSS)
@@ -306,7 +306,7 @@ ListOfCustomersContacts=Lista contacte clienţi
 ListOfSuppliersContacts=Lista  contacte furnizor
 ListOfCompanies=Lista societăţi
 ListOfThirdParties=Lista  terţi
-ShowCompany=Show thirdparty
+ShowCompany=Arată terţ
 ShowContact=Afişeză contact
 ContactsAllShort=Toate (fără filtru)
 ContactType=Tip Contact
@@ -425,7 +425,7 @@ OutstandingBillReached=Max. atins pentru facturi in suspensie
 MonkeyNumRefModelDesc=Retrimite numărulcu formatul %syymm-nnnn pentru codul de client și %syymm-nnnn pentru codul de furnizor unde YY este anul, mm  este luna și nnnn este o secvență continuă și fără să revină la 0.
 LeopardNumRefModelDesc=Codul este liber fîrî verificare. Acest cod poate fi modificat în orice moment.
 ManagingDirectors=Nume Manager(i) nume (CEO, director, preşedinte...)
-SearchThirdparty=Search third party
+SearchThirdparty=Caută  terţ
 SearchContact=Caută contact
 MergeOriginThirdparty=Duplicate third party (third party you want to delete)
 MergeThirdparties=Merge third parties
diff --git a/htdocs/langs/ro_RO/compta.lang b/htdocs/langs/ro_RO/compta.lang
index 0f056e7537c91a0c54b98c2f82fb310150a26c54..d9f463b8f40a219a8db9add6ccbc4563b75cb42b 100644
--- a/htdocs/langs/ro_RO/compta.lang
+++ b/htdocs/langs/ro_RO/compta.lang
@@ -57,22 +57,22 @@ ToPay=De plată
 ToGet=De rambursat
 SpecialExpensesArea=Plăţi speciale
 TaxAndDividendsArea=Sale taxes, social/fiscal taxes contributions and dividends area
-SocialContribution=Social or fiscal tax
-SocialContributions=Social or fiscal taxes
+SocialContribution=Taxa sociala / fiscala
+SocialContributions=Taxe sociale sau fiscale
 MenuSpecialExpenses=Cheltuieli speciale
 MenuTaxAndDividends=Impozite şi dividende
 MenuSalaries=Salarii
-MenuSocialContributions=Social/fiscal taxes
-MenuNewSocialContribution=New social/fiscal tax
-NewSocialContribution=New social/fiscal tax
-ContributionsToPay=Social/fiscal taxes to pay
+MenuSocialContributions=Taxe sociale / fiscale
+MenuNewSocialContribution=Tax social/fiscal nou
+NewSocialContribution=Taxa sociala/fiscala noua
+ContributionsToPay=Taxe sociale / fiscale de plata
 AccountancyTreasuryArea=Contabilitate / Trezorerie
 AccountancySetup=Setări Contabilitate
 NewPayment=Plată nouă
 Payments=Plăţi
 PaymentCustomerInvoice=Plată factură client
 PaymentSupplierInvoice=Plată factură  furnizor
-PaymentSocialContribution=Social/fiscal tax payment
+PaymentSocialContribution=Plata taxe sociale sau fiscale
 PaymentVat=Plată TVA
 PaymentSalary=Plata salariu
 ListPayment=Listă plăţi
@@ -84,10 +84,10 @@ DateEndPeriod=Dată sfârşit perioadă
 NewVATPayment=Plata nouă TVA
 newLT1Payment=New tax 2 payment
 newLT2Payment=New tax 3 payment
-LT1Payment=Tax 2 payment
-LT1Payments=Tax 2 payments
-LT2Payment=Tax 3 payment
-LT2Payments=Tax 3 payments
+LT1Payment=Plata taxa  2
+LT1Payments=Plati taxa  2
+LT2Payment=Plata taxa 3
+LT2Payments=Plati taxa  3
 newLT1PaymentES=Plată nouă RE
 newLT2PaymentES=Plată nouă IRPF
 LT1PaymentES=RE Plată
@@ -98,7 +98,7 @@ VATPayment=Plată TVA
 VATPayments=Plăţi TVA
 VATRefund=VAT Refund
 Refund=Refund
-SocialContributionsPayments=Social/fiscal taxes payments
+SocialContributionsPayments=Plata taxe sociale sau fiscale
 ShowVatPayment=Arata plata TVA
 TotalToPay=Total de plată
 TotalVATReceived=Total TVA primit
@@ -125,11 +125,11 @@ NewCheckDepositOn=New verifica depozit în contul: %s
 NoWaitingChecks=Niciun cec de depus.
 DateChequeReceived=Data primire Cec
 NbOfCheques=Nr cecuri
-PaySocialContribution=Pay a social/fiscal tax
+PaySocialContribution=Plăteate o taxă socială / fiscala
 ConfirmPaySocialContribution=Are you sure you want to classify this social or fiscal tax as paid?
-DeleteSocialContribution=Delete a social or fiscal tax payment
-ConfirmDeleteSocialContribution=Are you sure you want to delete this social/fiscal tax payment?
-ExportDataset_tax_1=Social and fiscal taxes and payments
+DeleteSocialContribution=Sterge  o plata taxe sociale sau fiscale 
+ConfirmDeleteSocialContribution=Sunteţi sigur că doriţi să ştergeţi această plată taxa sociala/fiscala?
+ExportDataset_tax_1=Taxe sociale și fiscale și plăți 
 CalcModeVATDebt=Mod <b>%s TVA pe baza contabilității de angajament %s</b>.
 CalcModeVATEngagement=Mod <b>%s TVA pe baza venituri-cheltuieli%s.</b>
 CalcModeDebt=Mod <b>%sCreanțe-Datorii%s</b> zisă <b> contabilitatea de angajamente</b>
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Facturile de depozit nu sunt incluse
 DepositsAreIncluded=- Facturile de depozit sunt incluse
 LT2ReportByCustomersInInputOutputModeES=Raport de terţă parte IRPF
 LT1ReportByCustomersInInputOutputModeES=Raport pe terţ RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Raport după TVA client colectat și plătit
 VATReportByCustomersInDueDebtMode=Raport după TVA client colectat și plătit
 VATReportByQuartersInInputOutputMode=Raport după rata TVA colectată și plătită
@@ -211,7 +212,7 @@ ACCOUNTING_VAT_BUY_ACCOUNT=Default accountancy code for recovered VAT (VAT on pu
 ACCOUNTING_VAT_PAY_ACCOUNT=Default accountancy code for paying VAT
 ACCOUNTING_ACCOUNT_CUSTOMER=Cont Contabilitate Predefinit pentru terţi Clienţi
 ACCOUNTING_ACCOUNT_SUPPLIER=Cont Contabilitate Predefinit pentru terţi Furnizori
-CloneTax=Clone a social/fiscal tax
+CloneTax=Cloneaza o taxa sociala / fiscala
 ConfirmCloneTax=Confirm the clone of a social/fiscal tax payment
 CloneTaxForNextMonth=Clonaţi-o pentru luna următoare
 SimpleReport=Simple report
diff --git a/htdocs/langs/ro_RO/contracts.lang b/htdocs/langs/ro_RO/contracts.lang
index 1d269533419e1c39a2f1852f3674f43f65517aa1..457c5132a7b18318b7b3a540c2badba070cac60b 100644
--- a/htdocs/langs/ro_RO/contracts.lang
+++ b/htdocs/langs/ro_RO/contracts.lang
@@ -19,10 +19,10 @@ ServiceStatusLateShort=Expirat
 ServiceStatusClosed=Închis
 ServicesLegend=Legendă Servicii
 Contracts=Contracte
-ContractsSubscriptions=Contracts/Subscriptions
+ContractsSubscriptions=Contracte / Abonamente
 ContractsAndLine=Contracte și linie contracte
 Contract=Contract
-ContractLine=Contract line
+ContractLine=Linie contract
 Closing=Closing
 NoContracts=Niciun contract
 MenuServices=Servicii
@@ -31,7 +31,7 @@ MenuRunningServices=Servicii active
 MenuExpiredServices=Servicii expirate
 MenuClosedServices=Servicii închise
 NewContract=Contract nou
-NewContractSubscription=New contract/subscription
+NewContractSubscription=Contract / Abonament nou
 AddContract=Crează contract
 SearchAContract=Caută contract
 DeleteAContract=Şterge contract
diff --git a/htdocs/langs/ro_RO/cron.lang b/htdocs/langs/ro_RO/cron.lang
index d2134728a3546163befbdefc2d97c34e091c7d60..d672c50f019b228532b1aad00b519bb51769023d 100644
--- a/htdocs/langs/ro_RO/cron.lang
+++ b/htdocs/langs/ro_RO/cron.lang
@@ -4,10 +4,10 @@ About = Despre
 CronAbout = Despre Cron
 CronAboutPage = Despre pagina cron
 # Right
-Permission23101 = Read Scheduled job
-Permission23102 = Create/update Scheduled job
-Permission23103 = Delete Scheduled job
-Permission23104 = Execute Scheduled job
+Permission23101 = Citeste Job programat
+Permission23102 = Creare/Modificare job programat
+Permission23103 = Şterge Job programat
+Permission23104 = Execută Job programat
 # Admin
 CronSetup= Setare Managementul joburilor programate
 URLToLaunchCronJobs=URL-ul pentru a verifica și a lansa joburi cron, dacă este necesar
@@ -18,29 +18,30 @@ CronExplainHowToRunUnix=Pe mediul Unix veţi  utiliza instrumentul crontab pentr
 CronExplainHowToRunWin=Pe mediul Microsoft(tm) Windows puteţi utiliza instrumentul Scheduled task pentru a rula linia de comanda la fiecare 5 minute
 # Menu
 CronJobs=Joburi programate
-CronListActive=Lista  activelor/programatelor joburi
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=Lista joburilor dezactivate
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Ultima rulare
 CronLastOutput=Ieşirea ultimei rulări
 CronLastResult=Codul ultimului rezultat
 CronListOfCronJobs=Lista joburilor programate
 CronCommand=Comandă
-CronList=Scheduled jobs
-CronDelete=Delete scheduled jobs
-CronConfirmDelete=Are you sure you want to delete these scheduled jobs ?
-CronExecute=Launch scheduled jobs
-CronConfirmExecute=Are you sure you want to execute these scheduled jobs now ?
-CronInfo=Scheduled job module allow to execute job that have been planned
-CronWaitingJobs=Waiting jobs
+CronList=Joburi programate
+CronDelete=Şterge Joburi programate
+CronConfirmDelete=Sunteţi sigur că doriţi să ştergeţi aceaste job-uri ?
+CronExecute=Lanseaza joburi programate
+CronConfirmExecute=Sunteţi sigur că doriţi să executati  aceaste job-uri programate  acum ?
+CronInfo=Modul de joburi programate permite să  se execute  job-uri  care au fost planificate
+CronWaitingJobs=Joburi în aşteptare
 CronTask=Job
 CronNone=Niciunul
-CronDtStart=Dată începere
-CronDtEnd=Data de final
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Urmatoarea execuţie
 CronDtLastLaunch=Ultima execuţie
-CronFrequency=Frequency
-CronClass=Class
+CronFrequency=Frecvenţă
+CronClass=Clasa
 CronMethod=Metoda
 CronModule=Modulul
 CronAction=Acţiunea
@@ -51,12 +52,13 @@ CronNoJobs=Niciun job înregistrat
 CronPriority=Prioritate
 CronLabel=Descriere
 CronNbRun=Nr. lansări
+CronMaxRun=Max nb. launch
 CronEach=Fiecare
 JobFinished=Job lansat şi terminat
 #Page card
 CronAdd= Adaugă joburi
-CronHourStart= Start hour and date of job
-CronEvery=Execute job each
+CronHourStart= Data şi Ora de start a jobului
+CronEvery=Executa fiecare job
 CronObject=Instanţă/Obiect de creat
 CronArgs=Parametri
 CronSaveSucess=Salvare realizată
@@ -76,14 +78,14 @@ CronMethodHelp=Metoda obiectului de încărcat. <BR> De exemplu să aducă metod
 CronArgsHelp=Argumentele metodei . <BR> De exemplu să aducă metoda  obiect ului Produs Dolibarr  /htdocs/product/class/product.class.php, valoarea parametrilor pot fi este  <i>0, ProductRef</i>
 CronCommandHelp=Linia de comandă de sistem pentru a executa.
 CronCreateJob=Create new Scheduled Job
-CronFrom=From
+CronFrom=De la
 # Info
 CronInfoPage=Informatie
 # Common
-CronType=Job type
+CronType=Tip job
 CronType_method=Apel metodă a Clasei Dolibarr
 CronType_command=Comandă shell
 CronMenu=Cron
 CronCannotLoadClass=Nu pot încărca clasa %s sau  obiectul %s
 UseMenuModuleToolsToAddCronJobs=Intrați în meniul ''Acasă - Instrumentele modulelor - Lista de job-uri'' pentru a vedea și edita job-urile programate.
-TaskDisabled=Job disabled
+TaskDisabled=Job dezactivat
diff --git a/htdocs/langs/ro_RO/deliveries.lang b/htdocs/langs/ro_RO/deliveries.lang
index 78bf078fb6daa1da4c84fb0042e3b38e2598602e..3c56cb1db752d53ae1bc7babc28f79188eab73de 100644
--- a/htdocs/langs/ro_RO/deliveries.lang
+++ b/htdocs/langs/ro_RO/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Sunteţi sigur că doriţi să ştergeţi recepţia
 DeliveryMethod=Metoda de livrare
 TrackingNumber=Număr de urmărire
 DeliveryNotValidated=Livrare  nevalidată
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Nume şi Semnătura:
 ToAndDate=To___________________________________ pe ____ / _____ / __________
diff --git a/htdocs/langs/ro_RO/donations.lang b/htdocs/langs/ro_RO/donations.lang
index 76fabb73acb27f150095a70275e1d18842d5258c..5cacbfb1988ea97d64be66bab972f62076f6160d 100644
--- a/htdocs/langs/ro_RO/donations.lang
+++ b/htdocs/langs/ro_RO/donations.lang
@@ -6,8 +6,8 @@ Donor=Donator
 Donors=Donatori
 AddDonation=Crează o donaţie
 NewDonation=Donaţie nouă
-DeleteADonation=Delete a donation
-ConfirmDeleteADonation=Are you sure you want to delete this donation ?
+DeleteADonation=Şterge o donaţie
+ConfirmDeleteADonation=Sunteţi sigur că doriţi să ştergeţi această donatie?
 ShowDonation=Afişează donaţia
 DonationPromise=Promisiune Donaţie
 PromisesNotValid=Promisiune nevalidată
@@ -23,8 +23,8 @@ DonationStatusPaid=Donatie plătită
 DonationStatusPromiseNotValidatedShort=Schiţă
 DonationStatusPromiseValidatedShort=Validată
 DonationStatusPaidShort=Plătită
-DonationTitle=Donation receipt
-DonationDatePayment=Payment date
+DonationTitle=Chitanţă donaţie
+DonationDatePayment=Data Plata 
 ValidPromess=Validează promisiune
 DonationReceipt=Chitanţă donaţie
 BuildDonationReceipt=Crează chitanţa
@@ -40,4 +40,4 @@ FrenchOptions=Opțiuni pentru Franța
 DONATION_ART200=Afiseaza articolului 200 din CGI dacă sunteți îngrijorat
 DONATION_ART238=Afiseaza articolului 238 din CGI dacă sunteți îngrijorat
 DONATION_ART885=Afiseaza articol 885 din CGI dacă sunteți îngrijorat
-DonationPayment=Donation payment
+DonationPayment=Plată donaţie
diff --git a/htdocs/langs/ro_RO/ecm.lang b/htdocs/langs/ro_RO/ecm.lang
index 2f16aed45a9ca1a5032bb2e66912af8227aa3842..0414c96353af7b2ae55d49d386326423bc6664ba 100644
--- a/htdocs/langs/ro_RO/ecm.lang
+++ b/htdocs/langs/ro_RO/ecm.lang
@@ -34,7 +34,7 @@ ECMSearchByEntity=Caută după obiect
 ECMSectionOfDocuments=Directoare  documente
 ECMTypeManual=Manual
 ECMTypeAuto=Automat
-ECMDocsBySocialContributions=Documents linked to social or fiscal taxes
+ECMDocsBySocialContributions=Documente legate de taxe sociale sau fiscale
 ECMDocsByThirdParties=Documente legate de terţi
 ECMDocsByProposals=Documente legate de oferte
 ECMDocsByOrders=Documente legate de comenzi  clienţi
diff --git a/htdocs/langs/ro_RO/exports.lang b/htdocs/langs/ro_RO/exports.lang
index 224b6a5d8bb06bd06c7609454a3dc15467e221a3..178c770b431c0bde4e91a47565378140ea5bd378 100644
--- a/htdocs/langs/ro_RO/exports.lang
+++ b/htdocs/langs/ro_RO/exports.lang
@@ -48,7 +48,7 @@ NoImportableData=Nu importable de date (nu cu modul de definiţii, pentru a perm
 FileSuccessfullyBuilt=Export fişier generat
 SQLUsedForExport=Cerere SQL folosite pentru a construi export fişier
 LineId=Id-ul de linie
-LineLabel=Label of line
+LineLabel=Eticheta linie
 LineDescription=Descriere de linie
 LineUnitPrice=Preţul unitar de linie
 LineVATRate=TVA de linie
@@ -130,7 +130,7 @@ ExportDateFilter=YYYY, YYYYMM, YYYYMMDD : filtrează după un an/lună/zi<br>YYY
 ExportNumericFilter='NNNNN' filtrează după o valoare<br>'NNNNN+NNNNN' filtrează peste un rang de valori<br>'&gt;NNNNN' filtrează după valori mai mici<br>'&gt;NNNNN' filtrează după valori mai mari
 ## filters
 SelectFilterFields=Dacă doriți să filtrați pe anumite valori, doar introduceţi valorile aici.
-FilterableFields=Filterable Fields
+FilterableFields=Campuri filtrabile
 FilteredFields=Câmpuri filtrate
 FilteredFieldsValues=Valoare pentru filtru
 FormatControlRule=Format control rule
diff --git a/htdocs/langs/ro_RO/ftp.lang b/htdocs/langs/ro_RO/ftp.lang
index a6309f77c2a3d2091f63c8c9e5875f4ca3c32aa6..0b1690590648879dcfc2530eeb73a04a687e66b2 100644
--- a/htdocs/langs/ro_RO/ftp.lang
+++ b/htdocs/langs/ro_RO/ftp.lang
@@ -10,5 +10,5 @@ FailedToConnectToFTPServerWithCredentials=Autentificarea la serverul FTP a eșua
 FTPFailedToRemoveFile=Fișierul <b>%s</b> nu poate fi șters.
 FTPFailedToRemoveDir=Directorul <b>%s</b> nu poate fi șters (Verificaţi permisiunile şi faptul că directorul este gol).
 FTPPassiveMode=Mod pasiv
-ChooseAFTPEntryIntoMenu=Choose a FTP entry into menu...
-FailedToGetFile=Failed to get files %s
+ChooseAFTPEntryIntoMenu=Alegeți o intrare FTP în meniul ...
+FailedToGetFile=Nu se pot da fișierele %s
diff --git a/htdocs/langs/ro_RO/holiday.lang b/htdocs/langs/ro_RO/holiday.lang
index ae70852ec69e1713abb4853414fe26c151f22a42..25e8d4535563c4d025889f2dcac66b331572534b 100644
--- a/htdocs/langs/ro_RO/holiday.lang
+++ b/htdocs/langs/ro_RO/holiday.lang
@@ -3,12 +3,11 @@ HRM=HRM
 Holidays=Concedii
 CPTitreMenu=Concedii
 MenuReportMonth=Situaţia lunară
-MenuAddCP=New leave request
+MenuAddCP=Cerere de concediu noua
 NotActiveModCP=Trebuie să activaţi modulul de concedii pentru a vedea această pagină.
 NotConfigModCP=Trebuie să configuraţi modulul Concedii pentru a vedea această pagină.Pentru aceasta , <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> clic aici </ a>.
 NoCPforUser=Nu mai aveţi nici o zi disponibilă
 AddCP=Crează o cerere de concediu
-Employe=Angajat
 DateDebCP=Dată început
 DateFinCP=Dată sfărşit
 DateCreateCP=Dată creare
@@ -23,7 +22,7 @@ ReviewedByCP=Va fi aprobat de
 DescCP=Descriere
 SendRequestCP=Crează o cerere de concediu
 DelayToRequestCP=Cererile pentru concediu trebuiesc făcute cu cel puţin <b>%s zi(le)</b> înainte.
-MenuConfCP=Editează soldul concediilor
+MenuConfCP=Balance of leaves
 UpdateAllCP=Actualizează concediile
 SoldeCPUser=Soldul concediilor este de <b>%s</b> zile.
 ErrorEndDateCP=Trebuie să selectaţi data de sfârşit mai mare decât data de început.
@@ -71,7 +70,7 @@ MotifCP=Motiv
 UserCP=Utilizator
 ErrorAddEventToUserCP=O eroare a survenit in timpul adaugarii de concediu exceptional.
 AddEventToUserOkCP=Adaugarea de concediu exceptional a fost efectuat
-MenuLogCP=View change logs
+MenuLogCP=Vezi modificari cereri
 LogCP=Loguri al actualizărilor zilelor de concediu
 ActionByCP=Realizat de
 UserUpdateCP=Pentru utilizatorul
@@ -79,9 +78,9 @@ PrevSoldeCP=Soldul precedent
 NewSoldeCP=Soldul nou
 alreadyCPexist=O cerere de concediu a fost deja făcută pe această perioadă.
 UserName=Nume
-Employee=Angajat
 FirstDayOfHoliday=Prima zi a concediului
 LastDayOfHoliday=Ultima zi a concediului
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Actualizare lunară
 ManualUpdate=Actualizare manuală
 HolidaysCancelation=Anulare cerere concediu
@@ -93,7 +92,7 @@ ValueOptionCP=Valoare
 GroupToValidateCP=Grup cu drepturi de  aprobare a concediilor
 ConfirmConfigCP=Validare configuraţie
 LastUpdateCP=Ultima actualizare automată a concediilor
-MonthOfLastMonthlyUpdate=Month of last automatic update of leaves allocation
+MonthOfLastMonthlyUpdate=Luna ultimei actualizari automate a concediilor
 UpdateConfCPOK=Actualizare realizată.
 ErrorUpdateConfCP=O eroare a apărut în timpul actualizării,  încercaţi din nou.
 AddCPforUsers=Adaugaţi soldul concediului alocat utilizatorului la <a href="../define_holiday.php" style="font-weight: normal; color: red; text-decoration: underline;">clic aici</a>.
@@ -128,7 +127,7 @@ ErrorMailNotSend=O eroare a intervenit la trimiterea mailului :
 NoCPforMonth=Niciun concediu această lună.
 nbJours=Număr zile
 TitleAdminCP=Configurarea modulului concedii
-NoticePeriod=Notice period
+NoticePeriod=Perioadă notita
 #Messages
 HolidaysToValidate=Validează cereri concedii
 HolidaysToValidateBody=Mai jos este o cerere de concediu de validat
@@ -140,5 +139,8 @@ HolidaysRefused=Cerere respinsă
 HolidaysRefusedBody=Cererea dvs pentru concediu  pentru %s la %s a fost respinsă pentru următoul motiv:
 HolidaysCanceled=Cereri Concedii anulate
 HolidaysCanceledBody=Cererea dvs pentru concediu  pentru %s la %s a fost anulată.
-NewByMonth=Added per month
-GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
+NewByMonth=Adaudate pe luna
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
+GoIntoDictionaryHolidayTypes=Du-te  la <strong>Home -Setup - Dictionare -Tip Concedii </strong> pentru a configura diferite tipuri de concediu.
diff --git a/htdocs/langs/ro_RO/hrm.lang b/htdocs/langs/ro_RO/hrm.lang
index 36c24d8e6f850fed46ca8afdff8056d3da89a8bc..1a1eb78f9d02216259b471f7bf77f7eae8cf4c1d 100644
--- a/htdocs/langs/ro_RO/hrm.lang
+++ b/htdocs/langs/ro_RO/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Lista Functiuni
 ListOfEmployees=Lista angajati
 Employees=Angajati
 Employee=Angajat
+Employe=Employe
 NewEmployee=Angajat nou
 EmployeeCard=Fisa Angajat
diff --git a/htdocs/langs/ro_RO/incoterm.lang b/htdocs/langs/ro_RO/incoterm.lang
index 2a6053ff1602f82bc786cc33be26713f71642988..9c173d8456c76143f56d63ed0bc85df58d284cc3 100644
--- a/htdocs/langs/ro_RO/incoterm.lang
+++ b/htdocs/langs/ro_RO/incoterm.lang
@@ -1,5 +1,5 @@
 Module62000Name=Incoterm
-Module62000Desc=Add features to manage Incoterm
+Module62000Desc=Adaugă functionalitati  pentru  gestionarea  Incoterm
 IncotermLabel=Incoterm
 IncotermSetupTitle1=Functionalitate
 IncotermSetupTitle2=Status
diff --git a/htdocs/langs/ro_RO/install.lang b/htdocs/langs/ro_RO/install.lang
index 4427e0031bdccf45345e8c41fdd8ba7f7b1386fe..3f9f6a8b26e5e4eaa6215c3b7c800c8c63a259c8 100644
--- a/htdocs/langs/ro_RO/install.lang
+++ b/htdocs/langs/ro_RO/install.lang
@@ -148,8 +148,8 @@ MigrationFinished=Migraţia terminată
 LastStepDesc=<strong>Ultimul pas:</strong> Definirea aici nume de utilizator şi parola pe care intenţionaţi să îl utilizaţi pentru conectarea la software-ul. Nu pierde aceasta ca este cont pentru a administra toate celelalte.
 ActivateModule=Activaţi modul %s
 ShowEditTechnicalParameters=Click aici pentru a vedea / edita  parametrii avansaţi (mod expert)
-WarningUpgrade=Warning:\nDid your run a database backup first ?\nThis is highly recommanded: for example, due to some bugs into databases systems (for example mysql version 5.5.40/41/42/43), some data or tables may be lost during this process, so it is highly recommanded to have a complete dump of your database before starting migration.\n\nClick OK to start migration process...
-ErrorDatabaseVersionForbiddenForMigration=Your database version is %s. It has a critical bug making data loss if you make structure change on your database, like it is required by the migration process. For his reason, migration will not be allowed until you upgrade your database to a higher fixed version (list of known bugged version: %s)
+WarningUpgrade=Avertisment: \nAti facut o copie de rezervă a bazei de date mai întâi? \nAcest lucru este foarte recomandat: de exemplu, din cauza unor bug-uri în sistemele de baze de date (de exemplu, mysql versiune 5.5.40/41/42/43), unele date sau tabele pot fi pierdute în timpul acestui proces, de aceea este foarte recomandat să aveți o copie completa a bazei de date înaintea pornirii migrariii. \n\nFaceți clic pe OK pentru a începe procesul de migrare ...
+ErrorDatabaseVersionForbiddenForMigration=Versiunea dvs. de baze de date este %s. Un bug va poate face sa pierdeti  date critice dacă faceti o schimbare a structurii pe baza de date,asa cum este impusă de procesul de migrare. De  aceea, migrare nu va fi permisa până când faceți upgrade la  baza de date la o versiune mai mare  (lista bug-urilor  cunoscute versiunea : %s)
 
 #########
 # upgrade
@@ -202,6 +202,6 @@ MigrationActioncommElement=Actualizare date pe acţiuni
 MigrationPaymentMode=Migrare de date pentru modul de plată
 MigrationCategorieAssociation=Migrarea categoriilor
 MigrationEvents=Migrația evenimentelor pentru a adăuga proprietarului evenimentul în tabelul de atribuire
-MigrationReloadModule=Reload module %s
+MigrationReloadModule=Reîncarcă modul %s
 ShowNotAvailableOptions=Afişează opţiunile nedisponibile
 HideNotAvailableOptions=Acunde opţiunile nedisponibile
diff --git a/htdocs/langs/ro_RO/interventions.lang b/htdocs/langs/ro_RO/interventions.lang
index 421d01f185490db799385948a328c5d6094e7687..e375a27e7776e2c4e0d39eb16fe1056d4b144014 100644
--- a/htdocs/langs/ro_RO/interventions.lang
+++ b/htdocs/langs/ro_RO/interventions.lang
@@ -39,9 +39,9 @@ InterventionClassifiedUnbilledInDolibarr=Intervenţia %s setată ca nefacturată
 InterventionSentByEMail=Intervenţia %s trimisă pe Email
 InterventionDeletedInDolibarr=Intervenţia %s ştearsă
 SearchAnIntervention=Caută o intervenţie
-InterventionsArea=Interventions area
-DraftFichinter=Draft interventions
-LastModifiedInterventions=Last %s modified interventions
+InterventionsArea=Intervenţii
+DraftFichinter=Intervenții schita
+LastModifiedInterventions=Ultimele %s intervenţii modificate
 ##### Types de contacts #####
 TypeContact_fichinter_internal_INTERREPFOLL=Reprezentant urmărire  intervenţie
 TypeContact_fichinter_internal_INTERVENING=Realizator intervenţie
@@ -53,15 +53,18 @@ ArcticNumRefModelError=Activare nereuşită
 PacificNumRefModelDesc1=Numărul retrimis sub forma%syymm-nnnn unde yy este anul, mm este luna şi NNNN este o secvenţă continuă  şi niciodată  0
 PacificNumRefModelError=O fişă de intervenţie începând cu $syymm există deja şi nu este compatibilă cu acest model al succesiunii. Eliminaţi-o sau redenumiţi-o pentru a activa acest modul.
 PrintProductsOnFichinter=Printează produsele pe fişa intervenţiei
-PrintProductsOnFichinterDetails=interventions generated from orders
+PrintProductsOnFichinterDetails=intervenții generate din comenzi
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
-InterId=Intervention id
-InterRef=Intervention ref.
-InterDateCreation=Date creation intervention
-InterDuration=Duration intervention
-InterStatus=Status intervention
-InterNote=Note intervention
-InterLineId=Line id intervention
-InterLineDate=Line date intervention
-InterLineDuration=Line duration intervention
-InterLineDesc=Line description intervention
+InterId=Id Intervenţie
+InterRef=Ref. Intervenţie
+InterDateCreation=Data crearea Intervenție
+InterDuration=Durată Intervenție
+InterStatus=Status Intervenție 
+InterNote=Nota interventie
+InterLineId=Id linie Intervenţie
+InterLineDate=Data linie interventie
+InterLineDuration=Durată linie  Intervenție
+InterLineDesc=Descriere linie Intervenţie
diff --git a/htdocs/langs/ro_RO/languages.lang b/htdocs/langs/ro_RO/languages.lang
index 1b2d435734092c12209deb6aaae9541f351fad80..73df3adba18725b212e8bfca9af2a68d6c5b4723 100644
--- a/htdocs/langs/ro_RO/languages.lang
+++ b/htdocs/langs/ro_RO/languages.lang
@@ -2,7 +2,7 @@
 
 Language_ar_AR=Arabă
 Language_ar_SA=Arabă (Arabia Saudită)
-Language_bn_BD=Bengali
+Language_bn_BD=Bengaleza
 Language_bg_BG=Bulgară
 Language_bs_BA=Bosniac
 Language_ca_ES=Catalană
@@ -23,9 +23,9 @@ Language_en_US=Engleză (Statele Unite)
 Language_en_ZA=Engleză (Africa de Sud)
 Language_es_ES=Spaniolă
 Language_es_AR=Spaniolă (Argentina)
-Language_es_BO=Spanish (Bolivia)
+Language_es_BO=Spaniolă (Bolivia)
 Language_es_CL=Spaniolă (Chile)
-Language_es_CO=Spanish (Colombia)
+Language_es_CO=Spaniolă (Columbia)
 Language_es_DO=Spaniolă (Republica Dominicană)
 Language_es_HN=Spaniolă (Honduras)
 Language_es_MX=Spaniolă (Mexic)
@@ -35,13 +35,13 @@ Language_es_PR=Spaniolă (Puerto Rico)
 Language_et_EE=Estoniană
 Language_eu_ES=Basc
 Language_fa_IR=Persană
-Language_fi_FI=Finnish
+Language_fi_FI=Finlandeză
 Language_fr_BE=Franceză (Belgia)
 Language_fr_CA=Franceză (Canada)
 Language_fr_CH=Franceză (Elveţia)
 Language_fr_FR=Franceză
 Language_fr_NC=Franceză (Noua Caledonie)
-Language_fy_NL=Frisian
+Language_fy_NL=Finlandeza
 Language_he_IL=Ebraică
 Language_hr_HR=Croat
 Language_hu_HU=Maghiară
@@ -49,10 +49,10 @@ Language_id_ID=Indoneziană
 Language_is_IS=Islandeză
 Language_it_IT=Italiană
 Language_ja_JP=Japoneză
-Language_ka_GE=Georgian
+Language_ka_GE=Georgiana
 Language_kn_IN=Kannada
 Language_ko_KR=Coreeană
-Language_lo_LA=Lao
+Language_lo_LA=Laoţiană
 Language_lt_LT=Lituanian
 Language_lv_LV=Letonă
 Language_mk_MK=Macedonean
@@ -71,8 +71,8 @@ Language_sv_SV=Suedeză
 Language_sv_SE=Suedeză
 Language_sq_AL=Albaneză
 Language_sk_SK=Slovacă
-Language_sr_RS=Serbian
-Language_sw_SW=Kiswahili
+Language_sr_RS=Sarba
+Language_sw_SW=Swahili
 Language_th_TH=Tailandez
 Language_uk_UA=Ucrainean
 Language_uz_UZ=Uzbecă
diff --git a/htdocs/langs/ro_RO/link.lang b/htdocs/langs/ro_RO/link.lang
index 57c46dd29410fa6c32e3fe4b201188e1d0986598..d47194e82b84429ade465a7cdffe1a7fd040e655 100644
--- a/htdocs/langs/ro_RO/link.lang
+++ b/htdocs/langs/ro_RO/link.lang
@@ -6,4 +6,4 @@ ErrorFileNotLinked=Fişierul nu a putut fi ataşat
 LinkRemoved=Linkul %s a fost înlăturat
 ErrorFailedToDeleteLink= Eşec la înlăturarea  linkului '<b>%s</b>'
 ErrorFailedToUpdateLink= Eşec la modificarea linkului '<b>%s</b>'
-URLToLink=URL to link
+URLToLink=URL la link
diff --git a/htdocs/langs/ro_RO/loan.lang b/htdocs/langs/ro_RO/loan.lang
index 979bd2a0d7b402e920514c06fb4308dbd6a7a600..2ee8b6230d2d417b340e220e9b02e282f1385ca8 100644
--- a/htdocs/langs/ro_RO/loan.lang
+++ b/htdocs/langs/ro_RO/loan.lang
@@ -8,7 +8,7 @@ ShowLoanPayment=Show Loan Payment
 Capital=Capital
 Insurance=Asigurari
 Interest=Interest
-Nbterms=Number of terms
+Nbterms=Numarul termenelor
 LoanAccountancyCapitalCode=Accountancy code capital
 LoanAccountancyInsuranceCode=Accountancy code insurance
 LoanAccountancyInterestCode=Accountancy code interest
@@ -23,7 +23,7 @@ ErrorLoanInterest=Annual interest has to be numeric and greater than zero.
 # Calc
 LoanCalc=Bank Loans Calculator
 PurchaseFinanceInfo=Purchase & Financing Information
-SalePriceOfAsset=Sale Price of Asset
+SalePriceOfAsset=Pret vanzare al Activului
 PercentageDown=Percentage Down
 LengthOfMortgage=Length of Mortgage
 AnnualInterestRate=Annual Interest Rate
@@ -40,7 +40,7 @@ MonthlyPaymentDesc=The montly payment is figured out using the following formula
 AmortizationPaymentDesc=The <a href="#amortization">amortization</a> breaks down how much of your monthly payment goes towards the bank's interest, and how much goes into paying off the principal of your loan.
 AmountFinanced=Amount Financed
 AmortizationMonthlyPaymentOverYears=Amortization For Monthly Payment: <b>%s</b> over %s years
-Totalsforyear=Totals for year
+Totalsforyear=Totaluri pe an
 MonthlyPayment=Monthly Payment
 LoanCalcDesc=This <b>mortgage calculator</b> can be used to figure out monthly payments of a home mortgage loan, based on the home's sale price, the term of the loan desired, buyer's down payment percentage, and the loan's interest rate.<br> This calculator factors in PMI (Private Mortgage Insurance) for loans where less than 20% is put as a down payment. Also taken into consideration are the town property taxes, and their effect on the total monthly mortgage payment.<br>
 GoToInterest=%s will go towards INTEREST
diff --git a/htdocs/langs/ro_RO/mails.lang b/htdocs/langs/ro_RO/mails.lang
index 95c8086262225395f4cb6a66db1c4ab379418c6b..588d7f37b34d50dd8139133cdc62e5aad105e68f 100644
--- a/htdocs/langs/ro_RO/mails.lang
+++ b/htdocs/langs/ro_RO/mails.lang
@@ -81,15 +81,16 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail trimis la %s destinatari.
 XTargetsAdded=<b>%s</b> destinatari adăugaţi în lista target
 EachInvoiceWillBeAttachedToEmail=Un document folosind modelul implicit al documentului va fi creat și atașat la fiecare e-mail.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Memento la factura %s (%s)
 SendRemind=Trimite memento prin e-mailuri
 RemindSent=%s Memento(ri) trimise
 AllRecipientSelected=All thirdparties selected and if an email is set.
 NoRemindSent=Niciun email de relansare trimis
 ResultOfMailSending=Result of mass EMail sending
-NbSelected=Nb selected
-NbIgnored=Nb ignored
-NbSent=Nb sent
+NbSelected=Nr selectat
+NbIgnored=Nr  ignorat
+NbSent=Nr trimis
 
 # Libelle des modules de liste de destinataires mailing
 MailingModuleDescContactCompanies=De contact ale tuturor părţilor terţe (client, perspectiva, furnizor, ...)
diff --git a/htdocs/langs/ro_RO/main.lang b/htdocs/langs/ro_RO/main.lang
index d41271d5698175a10528421283531f1a8ab43951..576b6c13d45ee76607d20add367cd895ac5da7ea 100644
--- a/htdocs/langs/ro_RO/main.lang
+++ b/htdocs/langs/ro_RO/main.lang
@@ -24,11 +24,12 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%d %b %Y %H:%M
 FormatDateHourText=%d %B %Y %H:%M
 DatabaseConnection=Conexiunea la baza de date
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Fără traducere
 NoRecordFound=Nicio înregistrare  gasită
 NoError=Nicio eroare
 Error=Eroare
-Errors=Errors
+Errors=Erori
 ErrorFieldRequired=Câmpul " %s" este obligatoriu
 ErrorFieldFormat=Câmpul  " %s" are o valoare incorectă
 ErrorFileDoesNotExists=Fișierul % s nu există
@@ -105,13 +106,14 @@ NotePrivate=Notă (privată)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr a fost de configurat  pentru o limita de precizie pentru prețuri unitare  la<b>% s</b> zecimale.
 DoTest=Test
 ToFilter=Filtru
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Atenție, aveți cel puțin un element care a depășit întârzierea tolerată.
 yes=da
 Yes=Da
 no=nu
 No=Nu
 All=Toţi
-Alls=All
+Alls=Toate
 Home=Acasă
 Help=Ajutor
 OnlineHelp=Ajutor online
@@ -131,7 +133,7 @@ Disable=Dezactivează
 Disabled=Dezactivat
 Add=Adaugă
 AddLink=Adaugă link
-RemoveLink=Remove link
+RemoveLink=Eliminaţi link
 Update=Modifică
 AddActionToDo=Adaugă eveniment  de făcut
 AddActionDone=Adaugă eveniment realizat
@@ -146,7 +148,7 @@ Cancel=Anulează
 Modify=Modifică
 Edit=Editează
 Validate=Validează
-ValidateAndApprove=Validate and Approve
+ValidateAndApprove=Validareaza si aproba
 ToValidate=De validat
 Save=Salvează
 SaveAs=Salvează ca
@@ -164,7 +166,7 @@ Search=Caută
 SearchOf=Căutare
 Valid=Validează
 Approve=Aprobaţi
-Disapprove=Disapprove
+Disapprove=Dezaproba
 ReOpen=Redeaschide
 Upload=Trimite fişier
 ToLink=Link
@@ -225,9 +227,11 @@ Next=Următor
 Cards=Fişe
 Card=Fişă
 Now=Acum
-HourStart=Start hour
+HourStart=Ora Start 
 Date=Dată
-DateAndHour=Date and hour
+DateAndHour=Data şi ora
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Dată început
 DateEnd=Dată sfârşit
 DateCreation=Dată creare
@@ -249,8 +253,8 @@ DatePlanShort=Dată planificată
 DateRealShort=Dată reală
 DateBuild=Dată generare raport
 DatePayment=Data plății
-DateApprove=Approving date
-DateApprove2=Approving date (second approval)
+DateApprove=Data Aprobare
+DateApprove2=Data aprobare (a doua aprobare)
 DurationYear=an
 DurationMonth=lună
 DurationWeek=săptămână
@@ -406,8 +410,8 @@ Available=Disponibil
 NotYetAvailable=Nedisponibil încă
 NotAvailable=Nedisponibil
 Popularity=Popularitate
-Categories=Tags/categories
-Category=Tag/category
+Categories=Tag-uri / categorii
+Category=Tag / categorie
 By=Pe
 From=De la
 to=la
@@ -419,9 +423,9 @@ OtherInformations=Alte informatii
 Quantity=Cantitate
 Qty=Cant
 ChangedBy=Modificat de
-ApprovedBy=Approved by
-ApprovedBy2=Approved by (second approval)
-Approved=Approved
+ApprovedBy=Aprobat de
+ApprovedBy2=Aprobat de (a doua aprobare)
+Approved=Aprobat
 Refused=Refuzat
 ReCalculate=Recalculează
 ResultOk=Succes
@@ -439,7 +443,7 @@ General=General
 Size=Dimensiune
 Received=Primit
 Paid=Platit
-Topic=Subject
+Topic=Subiect
 ByCompanies=Pe terți
 ByUsers=Pe utilizatori
 Links=Link-uri
@@ -541,7 +545,7 @@ DateFromTo=De la %s la %s
 DateFrom=Începând cu %s
 DateUntil=Până în %s
 Check=Verifică
-Uncheck=Uncheck
+Uncheck=Debifați
 Internal=Intern
 External=Extern
 Internals=Interne
@@ -608,6 +612,7 @@ TotalMan=Total
 NeverReceived=Niciodată primit
 Canceled=Anulată
 YouCanChangeValuesForThisListFromDictionarySetup=Se pot schimba valorile pentru această listă din meniul setări - dicționar
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Culoare
 Documents=Fişiere ataşate
 DocumentsNb=Fişiere ataşate (%s)
@@ -672,7 +677,7 @@ NewAttribute=Atribut nou
 AttributeCode=Cod Atribut
 OptionalFieldsSetup=Setări  atribute suplimentare
 URLPhoto=Url către foto/logo
-SetLinkToAnotherThirdParty=Link to another third party
+SetLinkToAnotherThirdParty=Link către un alt terţ
 CreateDraft=Creareză schiţă
 SetToDraft=Inapoi la schiţă
 ClickToEdit=Clic pentru a edita
@@ -689,17 +694,18 @@ LinkedToSpecificUsers=Link către un contact utilizator particular
 DeleteAFile=Şterge  fişier
 ConfirmDeleteAFile=Sigur  doriţi să ştergeţi fişierul
 NoResults=Niciun Rezultat
-SystemTools=System tools
+SystemTools=Instrumente Sistem
 ModulesSystemTools=Module Instrumente
 Test=Test
 Element=Element
 NoPhotoYet=Nicio imagine disponibilă
 HomeDashboard=Home
+Dashboard=Dashboard
 Deductible=Deductibile
 from=de la
 toward=spre
 Access=Acces
-SelectAction=Select action
+SelectAction=Selectați acțiune
 HelpCopyToClipboard=Utilizați Ctrl + C pentru a copia în clipboard
 SaveUploadedFileWithMask=Salvați fișierul pe server cu numele "<strong>%s</strong>" (altfel"%s")
 OriginFileName=Nume fişier original
@@ -714,17 +720,17 @@ SelectElementAndClickRefresh=Selectează un element şi click Refresh
 PrintFile=Printeaza Fisierul %s
 ShowTransaction=Show transaction on bank account
 GoIntoSetupToChangeLogo=Go into Home - Setup - Company to change logo or go into Home - Setup - Display to hide.
-Deny=Deny
-Denied=Denied
-ListOfTemplates=List of templates
-Gender=Gender
-Genderman=Man
-Genderwoman=Woman
+Deny=Respinge
+Denied=Respins
+ListOfTemplates=Listă  template-uri
+Gender=Gen
+Genderman=Barbat
+Genderwoman=Femeie
 ViewList=List view
 Mandatory=Mandatory
-Hello=Hello
-Sincerely=Sincerely
-DeleteLine=Delete line
+Hello=Salut
+Sincerely=Cu sinceritate
+DeleteLine=Şterge linie
 ConfirmDeleteLine=Are you sure you want to delete this line ?
 
 # Week day
@@ -756,26 +762,26 @@ ShortThursday=J
 ShortFriday=V
 ShortSaturday=S
 ShortSunday=D
-SelectMailModel=Select email template
+SelectMailModel=Selectați șablon de e-mail
 SetRef=Set ref
 Select2ResultFoundUseArrows=
 Select2NotFound=No result found
-Select2Enter=Enter
+Select2Enter=Introduce
 Select2MoreCharacters=or more characters
 Select2LoadingMoreResults=Loading more results...
 Select2SearchInProgress=Search in progress...
-SearchIntoThirdparties=Thirdparties
-SearchIntoContacts=Contacts
-SearchIntoMembers=Members
-SearchIntoUsers=Users
-SearchIntoProductsOrServices=Products or services
-SearchIntoProjects=Projects
-SearchIntoCustomerInvoices=Customer invoices
-SearchIntoSupplierInvoices=Supplier invoices
-SearchIntoCustomerOrders=Customer orders
-SearchIntoSupplierOrders=Supplier orders
-SearchIntoCustomerProposals=Customer proposals
+SearchIntoThirdparties=Terţi
+SearchIntoContacts=Contacte
+SearchIntoMembers=Membri
+SearchIntoUsers=Utilizatori
+SearchIntoProductsOrServices=Produse sau servicii
+SearchIntoProjects=Proiecte
+SearchIntoCustomerInvoices=Facturi Clienţi
+SearchIntoSupplierInvoices=Facturi Furnizori
+SearchIntoCustomerOrders=Comenzi client
+SearchIntoSupplierOrders=Comenzi Furnizori 
+SearchIntoCustomerProposals=Oferte Clienti
 SearchIntoSupplierProposals=Oferte Furnizori
-SearchIntoInterventions=Interventions
-SearchIntoContracts=Contracts
-SearchIntoExpenseReports=Expense reports
+SearchIntoInterventions=Intervenţii
+SearchIntoContracts=Contracte
+SearchIntoExpenseReports=Rapoarte Cheltuieli
diff --git a/htdocs/langs/ro_RO/margins.lang b/htdocs/langs/ro_RO/margins.lang
index 6218c0ec8f05f2a24475f1afe12625db52f8c2ac..fa1514143f46a20adc66eb034363843dac62184d 100644
--- a/htdocs/langs/ro_RO/margins.lang
+++ b/htdocs/langs/ro_RO/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Alege produs sau serviciu
 StartDate=Dată început
 EndDate=Dată sfîrşit
 Launch=Start
-ForceBuyingPriceIfNull=Forţează preţul de cumpărare dacă e null
-ForceBuyingPriceIfNullDetails=daca "ON", marja va fi zero pe linie (pret cumparare= pret vanzare), altfel("OFF"), marja va fi egala cu pretul de vanzare pentru aceasta linie (pret cumparare = 0).
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Metoda marje pentru discounturi globale
 UseDiscountAsProduct=Ca produs
 UseDiscountAsService=Ca serviciu
@@ -35,8 +35,9 @@ MargeBrute=Marja brută
 MargeNette=Marja netă
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Marja brută: Preţ vânzare - Preţ cumpărare<br/> Marja netă : Preţ vânzare - Cost de preţ
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Preţ de cost
 BuyingCost=Preţ de cost
 UnitCharges=Cheluieli unitare
diff --git a/htdocs/langs/ro_RO/oauth.lang b/htdocs/langs/ro_RO/oauth.lang
index 558980fd50e9e4578510d7f82a71e867246f920e..09cbdcd8727c5f68704541adcfed88cb3182857c 100644
--- a/htdocs/langs/ro_RO/oauth.lang
+++ b/htdocs/langs/ro_RO/oauth.lang
@@ -3,12 +3,12 @@ ConfigOAuth=Configurare Autentificare
 NoAccessToken=Nicun token de acces salvat în baza de date locală
 HasAccessToken=Un token a fost generat și salvat în baza de date locală
 NewTokenStored=Token primit si salvat
-ToCheckDeleteTokenOnProvider=To check/delete authorization saved by %s OAuth provider
+ToCheckDeleteTokenOnProvider=Pentru a verifica / șterge autorizarile salvate de furnizorul Aut %s
 TokenDeleted=Token sters
-RequestAccess=Click here to request/renew access and receive a new token to save
+RequestAccess=Faceți clic aici pentru a solicita / reînnoi accesul și a primi un nou token pentru salvare
 DeleteAccess=Click aici pentru a șterge token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/ro_RO/orders.lang b/htdocs/langs/ro_RO/orders.lang
index 1bc7d6dbacea5df3f63b4c6791309c7b2afa21db..028a4e5937144081b1ff6aeb1e38831301be2489 100644
--- a/htdocs/langs/ro_RO/orders.lang
+++ b/htdocs/langs/ro_RO/orders.lang
@@ -16,14 +16,14 @@ SupplierOrder=Comandă Furnizor
 SuppliersOrders=Comenzi Furnizori
 SuppliersOrdersRunning=Comenzi Furnizori în curs
 CustomerOrder=Comandă client
-CustomersOrders=Customer orders
-CustomersOrdersRunning=Current customer orders
-CustomersOrdersAndOrdersLines=Customer orders and order lines
-OrdersToValid=Customer orders to validate
-OrdersToBill=Customer orders delivered
-OrdersInProcess=Customer orders in process
-OrdersToProcess=Customer orders to process
-SuppliersOrdersToProcess=Supplier orders to process
+CustomersOrders=Comenzi client
+CustomersOrdersRunning=Comenzi client curent
+CustomersOrdersAndOrdersLines=Comenzi clienti si lini comenzi
+OrdersToValid=Comenzi client de validat
+OrdersToBill=Comenzi client livrate
+OrdersInProcess=Comenzi Clienţi in procesare
+OrdersToProcess=Comenzi Clienţi de procesat
+SuppliersOrdersToProcess=Comenzi Furnizori de procesat
 StatusOrderCanceledShort=Anulata
 StatusOrderDraftShort=Schiţă
 StatusOrderValidatedShort=Validat
@@ -31,7 +31,7 @@ StatusOrderSentShort=În curs de procesare
 StatusOrderSent=Livrare în curs
 StatusOrderOnProcessShort=Comandat
 StatusOrderProcessedShort=Procesate
-StatusOrderDelivered=Delivered
+StatusOrderDelivered=Livrate
 StatusOrderToBillShort=Livrate
 StatusOrderToBill2Short=De facturat
 StatusOrderApprovedShort=Aprobată
@@ -78,16 +78,16 @@ AddToMyOrders=Adaugă la comenzile mele
 AddToOtherOrders=Adauga la alte comenzi
 AddToDraftOrders=Adaugă la comanda schiţă
 ShowOrder=Afişează comanda
-OrdersOpened=Orders to process
-NoOpenedOrders=No open orders
-NoOtherOpenedOrders=No other open orders
+OrdersOpened=Comenzi de procesat
+NoOpenedOrders=Nu sunt  comenzi deschise
+NoOtherOpenedOrders=Nu sunt alte comenzi deschise
 NoDraftOrders=Nicio comandă  schiţă
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Alte comenzi
-LastOrders=Last %s customer orders
-LastCustomerOrders=Last %s customer orders
-LastSupplierOrders=Last %s supplier orders
+LastOrders=Ultimele %s comenzi clienți
+LastCustomerOrders=Ultimele %s comenzi clienți
+LastSupplierOrders=Ultimele %s comenzi furnizori
 LastModifiedOrders=Ultimele %s comenzi modificate
 LastClosedOrders=Ultimele %s comenzi închise
 AllOrders=Toate comenzile
diff --git a/htdocs/langs/ro_RO/other.lang b/htdocs/langs/ro_RO/other.lang
index 35acd88de7daf82d69131f01ec22ed3b92667ee0..558c3fed87230be1a2aeb5a5658427783a94a760 100644
--- a/htdocs/langs/ro_RO/other.lang
+++ b/htdocs/langs/ro_RO/other.lang
@@ -13,7 +13,7 @@ Notify_FICHINTER_SENTBYMAIL=Intervenţie trimisă prin mail
 Notify_ORDER_VALIDATE=Comandă client validată
 Notify_ORDER_SENTBYMAIL=Comanda clientului trimise prin poştă
 Notify_ORDER_SUPPLIER_SENTBYMAIL=Pentru furnizorul trimis prin e-mail
-Notify_ORDER_SUPPLIER_VALIDATE=Supplier order recorded
+Notify_ORDER_SUPPLIER_VALIDATE=Comandă Furnizor inregistrata
 Notify_ORDER_SUPPLIER_APPROVE=Furnizor pentru a aprobat
 Notify_ORDER_SUPPLIER_REFUSE=Furnizor pentru a refuzat
 Notify_PROPAL_VALIDATE=Ofertă client validată
@@ -47,14 +47,14 @@ Notify_PROJECT_CREATE=Creare proiect
 Notify_TASK_CREATE=Task creat
 Notify_TASK_MODIFY=Task modificat
 Notify_TASK_DELETE=Task sters
-SeeModuleSetup=See setup of module %s
+SeeModuleSetup=Vezi setare modul %s
 NbOfAttachedFiles=Numărul de ataşat fişiere / documente
 TotalSizeOfAttachedFiles=Total marimea ataşat fişiere / documente
 MaxSize=Mărimea maximă a
 AttachANewFile=Ataşaţi un fişier nou / document
 LinkedObject=Legate de obiectul
 Miscellaneous=Diverse
-NbOfActiveNotifications=Number of notifications (nb of recipient emails)
+NbOfActiveNotifications=Numărul de notificări (Nr de e-mailuri beneficiare)
 PredefinedMailTest=Acesta este un e-mail de test. \\ NMesajul două linii sunt separate printr-un retur de car.
 PredefinedMailTestHtml=Acesta este un e-mail <b>de testare</b> (test de cuvânt trebuie să fie în aldine). <br> Cele două linii sunt separate printr-un retur de car.
 PredefinedMailContentSendInvoice=__CONTACTCIVNAME__\n\nYou will find here the invoice __REF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=Export nou
 ##### External sites #####
 ExternalSites=Site-uri externe
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/ro_RO/paypal.lang b/htdocs/langs/ro_RO/paypal.lang
index 1f5531c7a7e2c2fe8acf5c2c6de6429185002ebf..a4c49aa92c2c814d61e970a16aaa093301b7f5e3 100644
--- a/htdocs/langs/ro_RO/paypal.lang
+++ b/htdocs/langs/ro_RO/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Mod de încercare / sandbox
 PAYPAL_API_USER=API numele de utilizator
 PAYPAL_API_PASSWORD=API parola
 PAYPAL_API_SIGNATURE=API semnătura
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Oferta de plată integral (carte de credit + Paypal) sau Paypal numai
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=Numai PayPal
@@ -23,9 +24,9 @@ PAYPAL_PAYONLINE_SENDEMAIL=E-mail pentru avertizare după o plată (realizată s
 ReturnURLAfterPayment=URL-ul return după plată
 ValidationOfPaypalPaymentFailed=Validarea Paypal plată eşuată
 PaypalConfirmPaymentPageWasCalledButFailed=Pagina confirmare plata pentru Paypal a aplelată de Paypal dar confirmarea a eşuat
-SetExpressCheckoutAPICallFailed=SetExpressCheckout API call failed.
-DoExpressCheckoutPaymentAPICallFailed=DoExpressCheckoutPayment API call failed.
-DetailedErrorMessage=Detailed Error Message
-ShortErrorMessage=Short Error Message
-ErrorCode=Error Code
-ErrorSeverityCode=Error Severity Code
+SetExpressCheckoutAPICallFailed=Apel API SetExpressCheckout eșuat..
+DoExpressCheckoutPaymentAPICallFailed=Apel API DoExpressCheckoutPayment  eșuat.
+DetailedErrorMessage=Mesaj  eroare detaliat
+ShortErrorMessage=Mesaj eroare scurt
+ErrorCode=Cod de eroare
+ErrorSeverityCode=Cod Severitate eroare
diff --git a/htdocs/langs/ro_RO/printing.lang b/htdocs/langs/ro_RO/printing.lang
index d4488b70d577272e0fd19b761a35040f5f957142..0fcc57592aca2296f2e64af814e3c96ef28eca7d 100644
--- a/htdocs/langs/ro_RO/printing.lang
+++ b/htdocs/langs/ro_RO/printing.lang
@@ -1,10 +1,10 @@
 # Dolibarr language file - Source file is en_US - printing
-Module64000Name=Direct Printing
-Module64000Desc=Enable Direct Printing System
+Module64000Name=Imprimare directa
+Module64000Desc=Activeaza Sistemul  Imprimare directa\n\n 
 PrintingSetup=Configurarea Sistemuluii Imprimare directă
 PrintingDesc=Acest modul adauga un buton de imprimare pentru a trimite documentele direct la o imprimantă ( fara deschiderea documentului in aplicatie) cu diferite module.
-MenuDirectPrinting=Direct Printing
-DirectPrint=Direct print
+MenuDirectPrinting=Direct Printing jobs
+DirectPrint=Imprimare directă
 ModuleDriverSetup=Configurare Modul Driver
 PrintingDriverDesc=Configurare variabile pentru driverul de imprimanta
 ListDrivers=Lista  driverelor
@@ -18,6 +18,13 @@ TestDriver=Test
 TargetedPrinter=Imprimantă implicită
 UserConf=Configurare pe utilizator
 PRINTGCP=Google Cloud Print
+PRINTGCP_INFO=Google OAuth API setup
+PRINTGCP_AUTHLINK=Autentificare
+PRINTGCP_TOKEN_ACCESS=Google Cloud Print OAuth Token
+PRINTGCP_TOKEN_REFRESH=Token Refresh Present
+PRINTGCP_TOKEN_EXPIRED=Token Expired
+PRINTGCP_TOKEN_EXPIRE_AT=Token expire at
+PRINTGCP_DELETE_TOKEN=Delete saved token
 PrintGCPDesc=Acest driver permite trimiterea documentelor direct la imprimanta cu Google Cloud Print.
 PrintingDriverDescprintgcp=Configurare variabile pentru driverul imprimanta Google Cloud Print.
 PrintTestDescprintgcp=Lista imprimantelor pentru Google Cloud Print
@@ -74,3 +81,6 @@ STATE_IPP_none=Niciunul
 MEDIA_IPP_stationery=Stationar
 MEDIA_IPP_thermal=Termala
 IPP_COLOR_print-black=Imprimanta BW
+DirectPrintingJobsDesc=This page lists printing jobs found for available printers.
+GoogleAuthNotConfigured=Google OAuth setup not done. Enable module OAuth and set a Google ID/Secret.
+GoogleAuthConfigured=Google OAuth credentials found into setup of module OAuth.
diff --git a/htdocs/langs/ro_RO/productbatch.lang b/htdocs/langs/ro_RO/productbatch.lang
index f7f2aa42beb0ed5821b566394fdf511e44024df5..fd67199af3c86f794f15c32f4fba2945b621cf2f 100644
--- a/htdocs/langs/ro_RO/productbatch.lang
+++ b/htdocs/langs/ro_RO/productbatch.lang
@@ -1,22 +1,22 @@
 # ProductBATCH language file - en_US - ProductBATCH
-ManageLotSerial=Use lot/serial number
-ProductStatusOnBatch=Yes (lot/serial required)
-ProductStatusNotOnBatch=No (lot/serial not used)
+ManageLotSerial=Foloseşte lot / număr de serie
+ProductStatusOnBatch=Da (Lot / Număr de serie cerut)
+ProductStatusNotOnBatch=Nu (Lot / Număr de serie nefolosit)
 ProductStatusOnBatchShort=Da
 ProductStatusNotOnBatchShort=Nu
-Batch=Lot/Serial
-atleast1batchfield=Eat-by date or Sell-by date or Lot/Serial number
-batch_number=Lot/Serial number
-BatchNumberShort=Lot/Serial
+Batch=Lot / Serie
+atleast1batchfield=Data expirare sau data de vânzare sau numărul de lot
+batch_number=Număr Lot / serie
+BatchNumberShort=Lot / Serie
 l_eatby=Data expirare
 l_sellby=Data vânzare
-DetailBatchNumber=Lot/Serial details
-DetailBatchFormat=Lot/Serial: %s - Eat by: %s - Sell by: %s (Qty : %d)
-printBatch=Lot/Serial: %s
+DetailBatchNumber=Detalii Lot / Serie
+DetailBatchFormat=Lot/Serie: %s - Expira la: %s - Vindut la: %s (Cant : %d)
+printBatch=Lot/Serie: %s
 printEatby=Expiră : %s
 printSellby=Vanzare: %s
 printQty=Cant: %d
 AddDispatchBatchLine=Adauga o linie pentru Perioada de valabilitate expediere
 BatchDefaultNumber=Nedefinit
-WhenProductBatchModuleOnOptionAreForced=When module Lot/Serial is on, increase/decrease stock mode is forced to last choice and can't be edited. Other options can be defined as you want.
-ProductDoesNotUseBatchSerial=This product does not use lot/serial number
+WhenProductBatchModuleOnOptionAreForced=Când modulul de lot / serial este pornit, modul de creștere / scădere a stocului este fortat la ultima alegere și nu poate fi editat. Alte opțiuni pot fi definite după cum doriți.
+ProductDoesNotUseBatchSerial=Acest produs nu foloseste numarul de lot / serie
diff --git a/htdocs/langs/ro_RO/products.lang b/htdocs/langs/ro_RO/products.lang
index 31af4963f7ba0834def980e2132ee4176bfbf5b7..8fa4a6916c7af480e20a27f5991df3b3ae8923d4 100644
--- a/htdocs/langs/ro_RO/products.lang
+++ b/htdocs/langs/ro_RO/products.lang
@@ -29,11 +29,11 @@ ProductsAndServicesOnSell=Produse si Servicii supuse vânzării sau cumpărării
 ProductsAndServicesNotOnSell=Products and Services not for sale
 ProductsAndServicesStatistics=Statistici Produse si Servicii
 ProductsStatistics=Statistici Produse
-ProductsOnSell=Product for sale or for purchase
-ProductsNotOnSell=Product not for sale and not for purchase
+ProductsOnSell=Produs supus vânzării sau cumpărării
+ProductsNotOnSell=Produse nesupuse vânzării sau cumpărării
 ProductsOnSellAndOnBuy=Produse supuse vânzării sau cumpărării
 ServicesOnSell=Servicii supuse vânzării sau cumpărării
-ServicesNotOnSell=Services not for sale
+ServicesNotOnSell=Servicii inactive
 ServicesOnSellAndOnBuy=Servicii supuse vânzării sau cumpărării
 InternalRef=Referinţă internă
 LastRecorded=Ultimele produse / servicii disponibile înregistrate
@@ -47,7 +47,7 @@ CardProduct1=Fişă  Serviciul
 CardContract=Fişă  Contract
 Warehouse=Depozit
 Warehouses=Depozite
-WarehouseOpened=Warehouse open
+WarehouseOpened=Depozit deschis
 WarehouseClosed=Depozit închis
 Stock=Stoc
 Stocks=Stocuri
@@ -67,7 +67,7 @@ ProductStatusNotOnBuy=Nu pentru achiziţionare
 ProductStatusOnBuyShort=Pentru achiziţionare
 ProductStatusNotOnBuyShort=Nu pentru achiziţionare
 UpdatePrice=Schimbă  preţul
-UpdateVAT=Update vat
+UpdateVAT=Actualizeaza  tva
 UpdateDefaultPrice=Update default price
 UpdateLevelPrices=Update prices for each level
 AppliedPricesFrom=Preţ de vânzare practicat de la
@@ -79,9 +79,9 @@ CurrentPrice=Preţ curent
 CostPriceDescription=This price (net of tax) can be used to store the average amount this product cost to your company. It may be any price you calculate yourself, for example from the average buying price plus average production and distribution cost.
 CostPriceUsage=In a future version, this value could be used for margin calculation.
 NewPrice=Preţ nou
-MinPrice=Min. selling price
-MinPriceHT=Min. selling price (net of tax)
-MinPriceTTC=Min. selling price (inc. tax)
+MinPrice=Preţ minim vânzare
+MinPriceHT=Preţ minim vânzare (net)
+MinPriceTTC=Preţ minim vânzare (incl. taxe)
 CantBeLessThanMinPrice=Prețul de vânzare nu poate fi mai mic decât minimul permis pentru acest produs (%s fără tva). Acest mesaj poate apărea, de asemenea, dacă tastați o reducere prea important.
 ContractStatus=Status Contract
 ContractStatusClosed=Închis
@@ -190,31 +190,31 @@ ClonePricesProduct=Clone principalele informatii si preturi
 CloneCompositionProduct=Clone packaged product/service
 ProductIsUsed=Acest produs este utilizat
 NewRefForClone=Ref. de produs / serviciu nou
-SellingPrices=Selling prices
+SellingPrices=Preţuri vânzare
 BuyingPrices=Buying prices
-CustomerPrices=Customer prices
-SuppliersPrices=Supplier prices
+CustomerPrices=Preţuri Client
+SuppliersPrices=Preţuri furnizor
 SuppliersPricesOfProductsOrServices=Supplier prices (of products or services)
 CustomCode=Codul vamal
 CountryOrigin=Ţara de origine
 HiddenIntoCombo=Ascuns în liste selectaţi
 Nature=Natura
-ShortLabel=Short label
+ShortLabel=Etichetă scurta
 Unit=Unit
 p=u.
 set=set
 se=set
-second=second
+second=secundă
 s=s
-hour=hour
+hour=oră
 h=h
-day=day
+day=zi
 d=d
 kilogram=kilogram
 kg=Kg
 gram=gram
 g=g
-meter=meter
+meter=metru
 m=m
 linearmeter=linear meter
 lm=lm
@@ -222,7 +222,7 @@ squaremeter=square meter
 m2=m²
 cubicmeter=cubic meter
 m3=m³
-liter=liter
+liter=litru
 l=L
 ProductCodeModel=Model ref Produs
 ServiceCodeModel=Model ref Serviciu 
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Autoconsum de producție
 ProductBuilded=Producţie completată
-ProductsMultiPrice=Produse preţ multiplu
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -276,7 +276,7 @@ ResetBarcodeForAllRecords=Defineşte valoare coduri de bare pentru toate înregi
 PriceByCustomer=Preţuri diferite pentru fiecare client
 PriceCatalogue=Preţ unic pe produs/serviciu
 PricingRule=Reguli pentru preţuri clienţi
-AddCustomerPrice=Add price by customer
+AddCustomerPrice=Add Preţ pe client
 ForceUpdateChildPriceSoc=Setează acelasi preţ pe subsidiarele clientuli
 PriceByCustomerLog=Log of previous customer prices
 MinimumPriceLimit=Minimum price can't be lower then %s
@@ -293,7 +293,7 @@ PriceNumeric=Număr
 DefaultPrice=Preț Implicit
 ComposedProductIncDecStock=Mărește/micșorează stoc pe schimbări sintetice
 ComposedProduct=Sub-produs
-MinSupplierPrice=Minimum supplier price
+MinSupplierPrice=Preţ minim furnizor
 DynamicPriceConfiguration=Dynamic price configuration
 GlobalVariables=Global variables
 GlobalVariableUpdaters=Global variable updaters
@@ -307,8 +307,9 @@ UpdateInterval=Update interval (minutes)
 LastUpdated=Last updated
 CorrectlyUpdated=Correctly updated
 PropalMergePdfProductActualFile=Files use to add into PDF Azur are/is
-PropalMergePdfProductChooseFile=Select PDF files
+PropalMergePdfProductChooseFile=Selectați fișiere PDF
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/ro_RO/projects.lang b/htdocs/langs/ro_RO/projects.lang
index cbb6379e6a7f8e7fd948d5b8114b47d44e7bd2f1..44fa8b02221b1c4b05522297a3fe5fc2caf921c0 100644
--- a/htdocs/langs/ro_RO/projects.lang
+++ b/htdocs/langs/ro_RO/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=Această vedere prezintă toate proiectele şi activită
 ProjectsDesc=Această vedere prezintă toate proiectele  (permisiuni de utilizator va acorda permisiunea de a vizualiza totul).
 MyTasksDesc=Această vedere  este limitată la proiecte sau sarcini  pentru care sunteţi contact(indiferent de tip).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Această vedere prezintă toate proiectele şi activităţile  care sunt permise să le  citiţi.
 TasksDesc=Această vedere prezintă toate proiectele şi sarcinile (permisiuni de utilizator va acorda permisiunea de a vizualiza totul).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Responsabil de proiect
 LastProjects=Ultimele %s proiecte
 AllProjects=Toate proiectele
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Lista  proiecte
 ShowProject=Afişează proiect
 SetProject=Setare proiect
@@ -104,7 +107,7 @@ DeleteATimeSpent=Ştergeţi timpul  consumat
 ConfirmDeleteATimeSpent=Ssigur doriţi să ştergeţi acest timp consumat?
 DoNotShowMyTasksOnly=Afişează, de asemenea, şi taskurile ce nu sunt atribuite mie
 ShowMyTasksOnly=Vezi numai taskurile atribuite mie
-TaskRessourceLinks=Resources
+TaskRessourceLinks=Resurse
 ProjectsDedicatedToThisThirdParty=Proiecte dedicate acestui terţ
 NoTasks=Nr sarcini pentru acest proiect
 LinkedToAnotherCompany=Legat de terţe părţi, alta
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modificat
 TaskDeletedInDolibarr=Task %s sters
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -156,13 +161,14 @@ ProjectMustBeValidatedFirst=Proiectul trebuie validat mai întâi
 ProjectDraft=Proiecte schiţă
 FirstAddRessourceToAllocateTime=Associate a resource to allocate time
 InputPerDay=Intrare pe zi
-InputPerWeek=Input per week
-InputPerAction=Input per action
+InputPerWeek=Intrare pe saptamana
+InputPerAction=Intrare pe actiune
 TimeAlreadyRecorded=Timpul consumat deja înregistrat pentru această sarcină / zi și utilizator %s
 ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,11 +185,11 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
-OppStatusPROSP=Prospection
-OppStatusQUAL=Qualification
-OppStatusPROPO=Proposal
-OppStatusNEGO=Negociation
-OppStatusPENDING=Pending
-OppStatusWIN=Won
-OppStatusLOST=Lost
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
+OppStatusPROSP=Prospect
+OppStatusQUAL=Calificare
+OppStatusPROPO=Ofertă 
+OppStatusNEGO=Negociere
+OppStatusPENDING=In asteptarea
+OppStatusWIN=Castigat
+OppStatusLOST=Pierdut
diff --git a/htdocs/langs/ro_RO/propal.lang b/htdocs/langs/ro_RO/propal.lang
index b88a010af7277edd4bf08afbd00285d59ff9d761..7f3d5687f464dd2ab8f5a988cd50a0ee8de448dc 100644
--- a/htdocs/langs/ro_RO/propal.lang
+++ b/htdocs/langs/ro_RO/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Ultimele %s propuneri comerciale modificate
 AllPropals=Toate ofertele
 LastProposals=Ultimele oferte
 SearchAProposal=Caută o ofertă
+NoProposal=No proposal
 ProposalsStatistics=Statistici oferte comerciale
 NumberOfProposalsByMonth=Număr pe luni
 AmountOfProposalsByMonthHT=Valoarea pe luni (netă)
@@ -62,7 +63,8 @@ DatePropal=Dată  ofertă
 DateEndPropal=Data valabilităţii
 DateEndPropalShort=Data de sfârşit
 ValidityDuration=Durata de valabilitate
-CloseAs=Închide cu status
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Clasează facturat
 BuildBill=Crează factură
 ErrorPropalNotFound=Propunearea %s nu a fost găsită
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Crează model implicit
 DefaultModelPropalToBill=Model implicit la închiderea unei oferte comerciale (de facturat)
 DefaultModelPropalClosed=Model implicit la închiderea unei oferte comerciale (nefacturat)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/ro_RO/receiptprinter.lang b/htdocs/langs/ro_RO/receiptprinter.lang
index 28b63d7de792c0b34ddb98af50936450fd611f11..985ac4fd6dcc7a893fee4cf5ec187b5350fa63aa 100644
--- a/htdocs/langs/ro_RO/receiptprinter.lang
+++ b/htdocs/langs/ro_RO/receiptprinter.lang
@@ -1,90 +1,90 @@
 # Dolibarr language file - Source file is en_US - receiptprinter
-PrinterAdded=Printer %s added
-PrinterUpdated=Printer %s updated
-PrinterDeleted=Printer %s deleted
-TestSentToPrinter=Test Sent To Printer %s
+PrinterAdded=Imprimanta %s adaugata
+PrinterUpdated=Imprimanta %s actualizata
+PrinterDeleted=Imprimanta %s ştearsă
+TestSentToPrinter=Test trimis la  Imprimanta %s
 ReceiptPrinterDesc=Setup of printers
 ReceiptPrinterTemplateDesc=Setup of Templates
 ReceiptPrinterTypeDesc=Description of Receipt Printer's type
 ReceiptPrinterProfileDesc=Description of Receipt Printer's Profile
-ListPrinters=List of Printers
-SetupReceiptTemplate=Template Setup
+ListPrinters=Lista  imprimantelor
+SetupReceiptTemplate=Configurare Model
 CONNECTOR_DUMMY=Dummy Printer
-CONNECTOR_NETWORK_PRINT=Network Printer
-CONNECTOR_FILE_PRINT=Local Printer
-CONNECTOR_WINDOWS_PRINT=Local Windows Printer
+CONNECTOR_NETWORK_PRINT=Imprimanta Retea
+CONNECTOR_FILE_PRINT=Imprimanta locala
+CONNECTOR_WINDOWS_PRINT=Imprimanta locala Windows
 CONNECTOR_DUMMY_HELP=Fake Printer for test, does nothing
 CONNECTOR_NETWORK_PRINT_HELP=10.x.x.x:9100
 CONNECTOR_FILE_PRINT_HELP=/dev/usb/lp0, /dev/usb/lp1
 CONNECTOR_WINDOWS_PRINT_HELP=LPT1, COM1, smb://FooUser:secret@computername/workgroup/Receipt Printer
-PROFILE_DEFAULT=Default Profile
-PROFILE_SIMPLE=Simple Profile
-PROFILE_EPOSTEP=Epos Tep Profile
-PROFILE_P822D=P822D Profile
-PROFILE_STAR=Star Profile
+PROFILE_DEFAULT=Default Profil
+PROFILE_SIMPLE=Simplu Profil
+PROFILE_EPOSTEP=Epos Tep Profil
+PROFILE_P822D=P822D Profil
+PROFILE_STAR=Star Profil
 PROFILE_DEFAULT_HELP=Default Profile suitable for Epson printers
 PROFILE_SIMPLE_HELP=Simple Profile No Graphics
 PROFILE_EPOSTEP_HELP=Epos Tep Profile Help
-PROFILE_P822D_HELP=P822D Profile No Graphics
-PROFILE_STAR_HELP=Star Profile
-DOL_ALIGN_LEFT=Left align text
-DOL_ALIGN_CENTER=Center text
-DOL_ALIGN_RIGHT=Right align text
-DOL_USE_FONT_A=Use font A of printer
-DOL_USE_FONT_B=Use font B of printer
-DOL_USE_FONT_C=Use font C of printer
+PROFILE_P822D_HELP=P822D Profil No Graphics
+PROFILE_STAR_HELP=Star Profil
+DOL_ALIGN_LEFT=Aliniaza stanga text
+DOL_ALIGN_CENTER=Centreaza text
+DOL_ALIGN_RIGHT=Aliniaza dreapta text
+DOL_USE_FONT_A=Utilizeaza font A  a imprimantei
+DOL_USE_FONT_B=Utilizeaza font B  a imprimantei
+DOL_USE_FONT_C=Utilizeaza font C  a imprimantei
 DOL_BOLD=Text Bold
-/DOL_BOLD=End of Text Bold
+/DOL_BOLD=Sfârşit Text Bold
 DOL_DOUBLE_HEIGHT=Text double height
 /DOL_DOUBLE_HEIGHT=End of Text double height
-DOL_DOUBLE_WIDTH=Text double width
-/DOL_DOUBLE_WIDTH=End of Text double width
+DOL_DOUBLE_WIDTH=Text width dublu 
+/DOL_DOUBLE_WIDTH=Sfârşit Text width dublu 
 DOL_UNDERLINE=Underline text
-/DOL_UNDERLINE=End of Underline text
+/DOL_UNDERLINE=Sfârşit Underline text
 DOL_UNDERLINE_2DOTS=Underline with double line
 /DOL_UNDERLINE_2DOTS=End of Underline with double line
-DOL_EMPHASIZED=Emphasized text
-/DOL_EMPHASIZED=End of Emphasized text
-DOL_SWITCH_COLORS=Print in white on black
-/DOL_SWITCH_COLORS=End of Print in white on black
-DOL_PRINT_BARCODE=Print barcode
-DOL_PRINT_BARCODE_CUSTOMER_ID=Print barcode customer id
-DOL_SET_PRINT_WIDTH_57=Ticket print width of 57mm
-DOL_CUT_PAPER_FULL=Cut ticket completely
-DOL_CUT_PAPER_PARTIAL=Cut ticket partially
+DOL_EMPHASIZED=Text Emphasized
+/DOL_EMPHASIZED=Sfârşit  text Emphasized 
+DOL_SWITCH_COLORS=Printeaza in alb pe negru
+/DOL_SWITCH_COLORS=Sfarsit Printare in alb pe negru
+DOL_PRINT_BARCODE=Printeaza cod de bare 
+DOL_PRINT_BARCODE_CUSTOMER_ID=Printeaza cod de bare  id client
+DOL_SET_PRINT_WIDTH_57=Ticket printat width de 57mm
+DOL_CUT_PAPER_FULL=Taie tichet complet
+DOL_CUT_PAPER_PARTIAL=Taie tichet partial
 DOL_OPEN_DRAWER=Open cash drawer
-DOL_ACTIVATE_BUZZER=Activate buzzer
-DOL_PRINT_QRCODE=Print QR Code
-DOL_PRINT_DATE=Print date AAAA-MM-DD
-DOL_PRINT_DATE_TIME=Print date and time AAAA-MM-DD HH:MM:SS
-DOL_PRINT_YEAR=Print Year
-DOL_PRINT_MONTH_LETTERS=Print month in letters (example : november)
-DOL_PRINT_MONTH=Print month number
-DOL_PRINT_DAY=Print day number
-DOL_PRINT_DAY_LETTERS=Print day number
+DOL_ACTIVATE_BUZZER=Activează buzzer
+DOL_PRINT_QRCODE=Printeaza cod QR 
+DOL_PRINT_DATE=Printeaza data  AAAA-MM-DD
+DOL_PRINT_DATE_TIME=Printeaza data si timpul   AAAA-MM-DD HH:MM:SS
+DOL_PRINT_YEAR=Printeaza An
+DOL_PRINT_MONTH_LETTERS=Printeaza luna in litere (examplu : noiembrie)
+DOL_PRINT_MONTH=Printeaza luna numar
+DOL_PRINT_DAY=Printeaza zi numar
+DOL_PRINT_DAY_LETTERS=Printeaza zi numar
 DOL_PRINT_TABLE=Print table number (for restaurant, bar...)
 DOL_PRINT_CUTLERY=Print number of cutlery (for restaurant)
-DOL_PRINT_PAYMENT=Print payment method
+DOL_PRINT_PAYMENT=Printeaza metoda plata
 DOL_PRINT_LOGO=Print logo stored on printer. Example : 32|32
 DOL_PRINT_LOGO_OLD=Print logo stored on printer. Must be followed by logo code. For old printers.
-DOL_PRINT_ORDER_LINES=Print order lines
-DOL_PRINT_ORDER_TAX=Print order total tax
-DOL_PRINT_ORDER_LOCAL_TAX=Print order local tax
-DOL_PRINT_ORDER_TOTAL=Print order total
+DOL_PRINT_ORDER_LINES=Printeaza Linii Comandă
+DOL_PRINT_ORDER_TAX=Printeaza total taxe comanda
+DOL_PRINT_ORDER_LOCAL_TAX=Printeaza taxe  locale comanda
+DOL_PRINT_ORDER_TOTAL=Printeaza total comanda
 DOL_PRINT_ORDER_NUMBER=Print order number
 DOL_PRINT_ORDER_NUMBER_UNIQUE=Print order number after validation
 DOL_PRINT_CUSTOMER_FIRSTNAME=Print customer firstname
-DOL_PRINT_CUSTOMER_LASTNAME=Print customer name
-DOL_PRINT_CUSTOMER_MAIL=Print customer mail
-DOL_PRINT_CUSTOMER_PHONE=Print customer phone
-DOL_PRINT_CUSTOMER_MOBILE=Print customer mobile
-DOL_PRINT_CUSTOMER_SKYPE=Print customer skype
-DOL_PRINT_CUSTOMER_TAX_NUMBER=Print customer VAT number
+DOL_PRINT_CUSTOMER_LASTNAME=Printeaza nume client
+DOL_PRINT_CUSTOMER_MAIL=Printeaza email client
+DOL_PRINT_CUSTOMER_PHONE=Printeaza telefon client
+DOL_PRINT_CUSTOMER_MOBILE=Printeaza mobil client
+DOL_PRINT_CUSTOMER_SKYPE=Printeaza skype client
+DOL_PRINT_CUSTOMER_TAX_NUMBER=Printeaza numar TVA client
 DOL_PRINT_CUSTOMER_ACCOUNT_BALANCE=Print customer account balance
-DOL_PRINT_VENDOR_LASTNAME=Print vendor name
-DOL_PRINT_VENDOR_FIRSTNAME=Print vendor firstname
-DOL_PRINT_VENDOR_MAIL=Print vendor mail
-DOL_PRINT_CUSTOMER_POINTS=Print customer points
+DOL_PRINT_VENDOR_LASTNAME=Printeaza nume vanzator
+DOL_PRINT_VENDOR_FIRSTNAME=Printeaza prenume vanzator
+DOL_PRINT_VENDOR_MAIL=Printeaza mail vanzator
+DOL_PRINT_CUSTOMER_POINTS=Printeaza puncte client
 DOL_PRINT_ORDER_POINTS=Print number of points for this order
 DOL_PRINT_IF_CUSTOMER=Print the line IF a customer is affected to the order
 DOL_PRINT_IF_VENDOR=Print the line IF a vendor is affected to the order
diff --git a/htdocs/langs/ro_RO/resource.lang b/htdocs/langs/ro_RO/resource.lang
index 22901a4462ceaf64010bb9a0fddb03109cc61a32..da8a0c8bf0cfb251b3849c1296d4ee5fd53bb715 100644
--- a/htdocs/langs/ro_RO/resource.lang
+++ b/htdocs/langs/ro_RO/resource.lang
@@ -17,7 +17,7 @@ ResourceFormLabel_description=Descriere resursă
 
 ResourcesLinkedToElement=Resurse legate de elementul
 
-ShowResource=Show resource
+ShowResource=Arata Resursă
 ShowResourcePlanning=Arată planificare resursă
 GotoDate=Mergi la data
 
diff --git a/htdocs/langs/ro_RO/salaries.lang b/htdocs/langs/ro_RO/salaries.lang
index 9433321ad9324a3260d3d05122685553a730e42e..cecb82bae2ab1f6b02fe7271c88e4765d4b3d74e 100644
--- a/htdocs/langs/ro_RO/salaries.lang
+++ b/htdocs/langs/ro_RO/salaries.lang
@@ -3,7 +3,6 @@ SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Cont  contabil pentru plata salariilor
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Cont contabil pentru cheltuieli financiare
 Salary=Salariu
 Salaries=Salarii
-Employee=Angajat
 NewSalaryPayment=Plata noua salariu
 SalaryPayment=Plata salariu
 SalariesPayments=Plati salarii
diff --git a/htdocs/langs/ro_RO/sendings.lang b/htdocs/langs/ro_RO/sendings.lang
index 30c256c0bb20b4ac713887d3866ee7eee1f83644..06645302e08222e68595f8cfb9c56e510760f7f4 100644
--- a/htdocs/langs/ro_RO/sendings.lang
+++ b/htdocs/langs/ro_RO/sendings.lang
@@ -5,8 +5,8 @@ Sendings=Livrari
 AllSendings=All Shipments
 Shipment=Livrare
 Shipments=Livrari
-ShowSending=Show Shipments
-Receivings=Receptii
+ShowSending=Arata Livrări
+Receivings=Delivery Receipts
 SendingsArea=Livrari
 ListOfSendings=Lista Livrari
 SendingMethod=Metodă Livrare
@@ -26,8 +26,8 @@ QtyToShip=Cant.  de livrat
 QtyReceived=Cant.  primită
 KeepToShip=Remain to ship
 OtherSendingsForSameOrder=Alte livrări pentru această comandă
-DateSending=Shipping date
-DateSendingShort=Shipping date
+DateSending=Dată Livrare
+DateSendingShort=Dată Livrare
 SendingsForSameOrder=Livrări pentru această comandă
 SendingsAndReceivingForSameOrder=Livrările şi recepţiile pentru această comandă
 SendingsToValidate=Livrări de validat
@@ -53,7 +53,7 @@ DocumentModelSimple=Model simplu
 DocumentModelMerou=Model Merou A5
 WarningNoQtyLeftToSend=Atenţie,  nu sunt produse care aşteaptă să fie expediate.
 StatsOnShipmentsOnlyValidated=Statisticil ectuate privind numai livrările validate. Data folosită este data validării livrării (data de livrare planificată nu este întotdeauna cunoscută).
-DateDeliveryPlanned=Planned date of delivery
+DateDeliveryPlanned=Data planificată a livrarii
 DateReceived=Data de livrare reală
 SendShippingByEMail=Trimite dispoziţia de livrare prin e-mail
 SendShippingRef=Transmitere livrare %s
diff --git a/htdocs/langs/ro_RO/sms.lang b/htdocs/langs/ro_RO/sms.lang
index c0865411c46de0c9de5ac20f81494c893f49951c..296e78142d2e66f3486a662497e63dbffd460410 100644
--- a/htdocs/langs/ro_RO/sms.lang
+++ b/htdocs/langs/ro_RO/sms.lang
@@ -49,5 +49,6 @@ SendSms=Trimite SMS
 SmsInfoCharRemain=NB de caractere rămase
 SmsInfoNumero= (Format internaţional şi anume: 33899701761)
 DelayBeforeSending=Întârziere înainte de a trimite (minute)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Nu este disponibilă nicio ţintă. Verificaţi configurarea de furnizorul de SMS-uri.
 
diff --git a/htdocs/langs/ro_RO/stocks.lang b/htdocs/langs/ro_RO/stocks.lang
index 6a82bbde091f34eff4e1bb1d4ce10927cb580422..02586da4f68722ee53aa3a7db0d1358c8e266110 100644
--- a/htdocs/langs/ro_RO/stocks.lang
+++ b/htdocs/langs/ro_RO/stocks.lang
@@ -5,7 +5,7 @@ Warehouses=Depozite
 NewWarehouse=Depozit / Stoc  Nou 
 WarehouseEdit=Modifică depozit
 MenuNewWarehouse=Depozit nou
-WarehouseOpened=Warehouse open
+WarehouseOpened=Depozit deschis
 WarehouseClosed=Depozit închis
 WarehouseSource=Depozit Sursa
 WarehouseSourceNotDefined=Niciun depozit definit,
@@ -16,7 +16,7 @@ CancelSending=Anulează expediere
 DeleteSending=Şterge expediere
 Stock=Stoc
 Stocks=Stocuri
-StocksByLotSerial=Stock by lot/serial
+StocksByLotSerial=Stocks by lot/serial
 Movement=Mişcare
 Movements=Mişcări
 ErrorWarehouseRefRequired=Referința  Depozit este obligatorie
@@ -34,9 +34,9 @@ LastMovements=Ultimele mişcări
 Units=Unităţi
 Unit=Unitate
 StockCorrection=Corectează stoc
-StockTransfer=Transfer  stoc
-StockMovement=Transferă
-StockMovements=Transferuri  stoc
+StockTransfer=Transfer stoc
+StockMovement=Transfer stoc
+StockMovements=Transferuri stoc
 LabelMovement=Etichetă transfer
 NumberOfUnit=Număr  unităţi
 UnitPurchaseValue=Preţ unitar cumpărare
@@ -53,11 +53,11 @@ QtyDispatched=Cantitate dipecerizată
 QtyDispatchedShort=Cant Expediate
 QtyToDispatchShort=Cant de expediat
 OrderDispatch=Dispecerizare Stoc
-RuleForStockManagementDecrease=Regulă de gestionare a scăderilor de stoc
-RuleForStockManagementIncrease=Regulă de gestionare a creşterilor de stoc
+RuleForStockManagementDecrease=Rule for automatic stock management decrease (manual decrease is always possible, even if an automatic decrease rule is activated)
+RuleForStockManagementIncrease=Rule for automatic stock management increase (manual increase is always possible, even if an automatic increase rule is activated)
 DeStockOnBill=Descreşterea stocului fizic bazată pe validarea facturilor / note de credit
 DeStockOnValidateOrder=Descreşterea stocului fizic  bazată pe validarea comenzilor client
-DeStockOnShipment=Decrease real stocks on shipping validation
+DeStockOnShipment=Descreşte stocul fizic bazat pe validarea livrarilor
 ReStockOnBill=Creşterea stocului fizic  bazată pe validarea facturilor / note de credit
 ReStockOnValidateOrder=Creşterea stocului fizic  bazată pe aprobarea comenzilor furnizor
 ReStockOnDispatchOrder=Creşterea stocului fizic  bazată pe dispecerizarea manuală , dupa recepţia comenzii
@@ -95,7 +95,7 @@ SelectWarehouseForStockDecrease=Alege depozitul  pentru scăderea stocului
 SelectWarehouseForStockIncrease=Alege depozitul  pentru creşterea stocului
 NoStockAction=Nicio actiune pe stoc
 LastWaitingSupplierOrders=Comenzi nereceptionate
-DesiredStock=Desired minimum stock
+DesiredStock=Stoc min dorit
 DesiredMaxStock=Desired maximum stock
 StockToBuy=De  comandat
 Replenishment=Reaprovizionare
@@ -104,7 +104,7 @@ VirtualDiffersFromPhysical=According to increase/decrease stock options, physica
 UseVirtualStockByDefault=Utilizați stoc virtual implicit, în loc de stoc fizic, pentru facilitatea de reaprovizionare
 UseVirtualStock=Utilizeaza Stoc Virtual 
 UsePhysicalStock=Utilizeaza Stoc Fizic
-CurentSelectionMode=Current selection mode
+CurentSelectionMode=Mod selectie curent
 CurentlyUsingVirtualStock=Stoc Virtual 
 CurentlyUsingPhysicalStock=Stoc  Fizic
 RuleForStockReplenishment=Reguli pentru reaprovizionarea stocului
@@ -113,7 +113,7 @@ AlertOnly= Numai Alerte
 WarehouseForStockDecrease=Depozitul <b>%s</b> va fi utilizat pentru scăderea stocului
 WarehouseForStockIncrease=Depozitul <b>%s</b> va fi utilizat pentru creşterea stocului
 ForThisWarehouse=Pentru acest depozit
-ReplenishmentStatusDesc=This is a list of all products with a stock lower than desired stock (or lower than alert value if checkbox "alert only" is checked), and suggest you to create supplier orders to fill the difference.
+ReplenishmentStatusDesc=This is a list of all products with a stock lower than desired stock (or lower than alert value if checkbox "alert only" is checked). Using the checkbox, you can create supplier orders to fill the difference.
 ReplenishmentOrdersDesc=This is a list of all opened supplier orders including predefined products. Only opened orders with predefined products, so orders that may affect stocks, are visible here.
 Replenishments=Reaprovizionări
 NbOfProductBeforePeriod=Cantitatea de produs %s în stoc înainte de perioada selectată  (< %s)
diff --git a/htdocs/langs/ro_RO/supplier_proposal.lang b/htdocs/langs/ro_RO/supplier_proposal.lang
index f3662dfcf5ebe5b88b36ca6bdc8f5e5cde0be2af..6264cfa7775b7d978f76adf53a7fcf99fe977c75 100644
--- a/htdocs/langs/ro_RO/supplier_proposal.lang
+++ b/htdocs/langs/ro_RO/supplier_proposal.lang
@@ -1,24 +1,23 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
-SupplierProposal=Supplier commercial proposals
+SupplierProposal=Oferte Comercială Furnizor
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Oferte Furnizori
-supplier_proposalMENU_LEFT_TITLE_NEW=Cerere noua
-supplier_proposalMENU_LEFT_TITLE_LIST=Lista
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Cerere Preţ 
 CommRequests=Cereri Preţ 
 SearchRequest=Cauta o cerere
 DraftRequests=Cereri schiţă
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
-SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalArea=Oferte Furnizori
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Oferte Furnizori
 NewAskPrice=New price request
 NewAsk=Cerere noua
 ShowSupplierProposal=Show price request
 AddSupplierProposal=Create a price request
-SupplierProposalRefFourn=Supplier ref
-SupplierProposalDate=Delivery date
+SupplierProposalRefFourn=Ref Furnizor 
+SupplierProposalDate=Data de livrare
 SupplierProposalRefFournNotice=Before closing to "Accepted", think to grasp suppliers references.
 RelatedSupplierProposal=Related price requests suppliers
 ConfirmValidateAsk=Are you sure you want to validate this price request under name <b>%s</b> ?
@@ -26,7 +25,7 @@ DateAsk=Data cererii
 DeleteAsk=Şterge cerere
 ValidateAsk=Validează cererre
 AddAsk=Crează o cerere
-SupplierProposalDraft=Drafts
+SupplierProposalDraft=Schiţe
 SupplierProposalOpened=Deschis
 SupplierProposalStatusDraft=Draft (needs to be validated)
 SupplierProposalStatusValidated=Validated (request is open)
@@ -35,8 +34,8 @@ SupplierProposalStatusClosed=Închis
 SupplierProposalStatusSigned=Acceptat
 SupplierProposalStatusNotSigned=Refuzat
 SupplierProposalStatusBilled=Facturat
-SupplierProposalStatusDraftShort=Draft
-SupplierProposalStatusValidatedShort=Validated
+SupplierProposalStatusDraftShort=Schiţă
+SupplierProposalStatusValidatedShort=Validată
 SupplierProposalStatusOpenedShort=Deschis
 SupplierProposalStatusClosedShort=Închis
 SupplierProposalStatusSignedShort=Acceptat
diff --git a/htdocs/langs/ro_RO/suppliers.lang b/htdocs/langs/ro_RO/suppliers.lang
index 1e16ac33378a5b72af8f0e0283c4ba62e5b51476..dd86989ec6fd4c1fe340cd4c61612527ad6c1ec1 100644
--- a/htdocs/langs/ro_RO/suppliers.lang
+++ b/htdocs/langs/ro_RO/suppliers.lang
@@ -3,6 +3,7 @@ Suppliers=Furnizori
 AddSupplier=Crează un furnizor
 SupplierRemoved=Furnizor şters
 SuppliersInvoice=Factură furnizor
+ShowSupplierInvoice=Show Supplier Invoice
 NewSupplier=Furnizor nou
 History=Istoric
 ListOfSuppliers=Lista  furnizori
@@ -29,7 +30,7 @@ ExportDataset_fournisseur_2=Facturi Furnizor  şi plăţi
 ExportDataset_fournisseur_3=Comenzi furnizori si lini comenzi
 ApproveThisOrder=Aprobă  această comandă
 ConfirmApproveThisOrder=Sigur doriţi să aprobaţi această comandă   <b>%s</b>?
-DenyingThisOrder=Deny this order
+DenyingThisOrder=Refuză aceasta comanda
 ConfirmDenyingThisOrder=Sigur doriţi să refuzaţi această comandă   <b>%s</b>?
 ConfirmCancelThisOrder=Sigur doriţi să anulaţi această comandă   <b>%s</b>?
 AddCustomerOrder=Crează comandă client
diff --git a/htdocs/langs/ro_RO/trips.lang b/htdocs/langs/ro_RO/trips.lang
index 5f725f4a144b8ef576af484753b93e6ba72da46a..352a41c77e7a244ad29729607e1bf19f148f2e29 100644
--- a/htdocs/langs/ro_RO/trips.lang
+++ b/htdocs/langs/ro_RO/trips.lang
@@ -7,7 +7,7 @@ TripsAndExpenses=Rapoarte Cheltuieli
 TripsAndExpensesStatistics=Statistici Rapoarte Cheltuieli
 TripCard=Fisa Raport Cheltuieli
 AddTrip=Creare Raport Cheltuieli
-ListOfTrips=List of expense reports
+ListOfTrips=Listă rapoarte de cheltuieli
 ListOfFees=Lista note cheltuieli
 ShowTrip=Show expense report
 NewTrip= Raport de cheltuieli nou
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Line raport de cheltuieli
 TF_OTHER=Altele
-TF_TRANSPORTATION=Transport
+TF_TRIP=Transportation
 TF_LUNCH=Prânz
 TF_METRO=Metrou
 TF_TRAIN=Tren
@@ -55,9 +55,9 @@ ModePaiement=Mod plata
 VALIDATOR=User responsible for approval
 VALIDOR=Aprobat de
 AUTHOR=Înregistrat de
-AUTHORPAIEMENT=Paid by
+AUTHORPAIEMENT=Plătite de 
 REFUSEUR=Respins de
-CANCEL_USER=Deleted by
+CANCEL_USER=Șters de 
 
 MOTIF_REFUS=Motiv
 MOTIF_CANCEL=Motiv
@@ -97,6 +97,7 @@ SaveTrip=Valideaza raport de cheltuieli
 ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 
 NoTripsToExportCSV=No expense report to export for this period.
-ExpenseReportPayment=Expense report payment
+ExpenseReportPayment=Plata Raport cheltuieli
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/ro_RO/users.lang b/htdocs/langs/ro_RO/users.lang
index de13385e72021edcddae138e6a1e54a096c994c5..97dc9c290d49199d59794b135d8aa27f2ddd9978 100644
--- a/htdocs/langs/ro_RO/users.lang
+++ b/htdocs/langs/ro_RO/users.lang
@@ -57,7 +57,7 @@ RemoveFromGroup=Înlăturaţi din grup
 PasswordChangedAndSentTo=Parola schimbat şi a trimis <b>la %s.</b>
 PasswordChangeRequestSent=Cerere pentru a schimba parola <b>pentru %s %s</b> la trimis.
 MenuUsersAndGroups=Utilizatorii & Grupuri
-MenuMyUserCard=My user card
+MenuMyUserCard=Fişa  mea utilizator 
 LastGroupsCreated=Ultima %s creat grupuri
 LastUsersCreated=Ultima %s utilizatorii creat
 ShowGroup=Arata grup
@@ -121,3 +121,4 @@ OpenIDURL=URL OpenID
 LoginUsingOpenID=Utilizați OpenID pentru login
 WeeklyHours=Ore saptămânale
 ColorUser=Culoarea utilizatorului
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/ru_RU/accountancy.lang b/htdocs/langs/ru_RU/accountancy.lang
index 13abb0b675096538c3b83f303f29d7e822cda160..b78f885091382f4aa1a50ae48849faa6ed256c9a 100644
--- a/htdocs/langs/ru_RU/accountancy.lang
+++ b/htdocs/langs/ru_RU/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Выбрать модель экспорта
 Modelcsv_normal=Классический экспорт
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Назад
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Удалить записи главной книги
 
 DescSellsJournal=Журнал продаж
 DescPurchasesJournal=Журнал покупок
-BankJournal=Банковский журнал
-DescBankJournal=Банковский журнал включает в себя все платежи с типом оплаты отличным от "наличные".
-CashJournal=Журнал наличных средств
-DescCashJournal=Журнал наличных средств включает в себя тип оплаты -  "наличными"
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Подтверждать автоматически
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/ru_RU/admin.lang b/htdocs/langs/ru_RU/admin.lang
index ee817a6fe12404a9d06fb347a79b952c0b6f2ff7..5164fbef73c082ed85cb9089273e31b7342dd610 100644
--- a/htdocs/langs/ru_RU/admin.lang
+++ b/htdocs/langs/ru_RU/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Скрыть все информацию, связа
 HideDescOnPDF=Скрыть описания продуктов в генерируемом PDF
 HideRefOnPDF=Скрывать артикул товара на созданном PDF файле
 HideDetailsOnPDF=Скрывать строки с товарами на созданном PDF файле
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Библиотека
 UrlGenerationParameters=Параметры для обеспечения адресов
 SecurityTokenIsUnique=Используйте уникальный параметр securekey для каждого URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Вы уверены, что хотите стер
 AllBarcodeReset=Все значения штрих-кодов были удалены
 NoBarcodeNumberingTemplateDefined=В модуле формирования штрих-кодов не определен шаблон нумерации
 NoRecordWithoutBarcodeDefined=Нет записей без назначенного штрих-кода
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Пользователи и группы
@@ -499,7 +500,7 @@ Module510Desc=Управление зарплатами сотрудников 
 Module520Name=Ссуда
 Module520Desc=Управление ссудами
 Module600Name=Уведомления
-Module600Desc=Отправлять уведомления контактам контрагентов по электронной почте о некоторых бизнес-событиях системы Dolibarr (настройка задана для каждого контрагента)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Пожертвования
 Module700Desc=Пожертвования управления
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Задержки перед предупреждением
 DelaysOfToleranceBeforeWarning=Терпимость задержки перед предупреждение
 DelaysOfToleranceDesc=Этот экран позволяет вам определить мириться с задержками до готовности сообщения на экране при picto %s в конце каждого элемента.
 Delays_MAIN_DELAY_ACTIONS_TODO=Задержка толерантности (в днях) до предупреждений о планируемых действиях и не понял
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Задержка толерантности (в днях) до готовности при заказах, еще не сделали
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Задержка толерантности (в днях) до предупреждения о поставщиках заказов еще не обработанных
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Задержка толерантности (в днях) до оповещения о предложениях, чтобы закрыть
@@ -1087,6 +1089,7 @@ PathDirectory=Каталог
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Настройка перевода
 TranslationDesc=Выбор языка, видимого на экране, может быть изменен:<br>* Глобально из меню <strong>Главная - Настройка - Display</strong><br>* Только для пользователя <strong>User display</strong> карточки пользователя (нажмите на Логин вверху экрана).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Полное количество активированных функций модулей: <b>%s</b>
 YouMustEnableOneModule=Вы должны включить минимум 1 модуль
 ClassNotFoundIntoPathWarning=Класс %s не найден по PHP пути
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Установка внешних мо
 ConfFileMuseContainCustom=Установка внешнего модуля из приложения сохраняет файлы модуля в папке <strong>%s</strong>. Для использования этой папке в системе  Dolibarr вы должны настроить  <strong>conf/conf.php</strong>  с использованием этой функции<br>-<strong>$dolibarr_main_url_root_alt</strong> со значением <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> со значением <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/ru_RU/agenda.lang b/htdocs/langs/ru_RU/agenda.lang
index 511eded37af97ba1ff870c3fe4dc9bb0a745d8f8..463ecaf7eb09c307e73cda60edbbdb8d1dc6cc96 100644
--- a/htdocs/langs/ru_RU/agenda.lang
+++ b/htdocs/langs/ru_RU/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Все ле действия / задачи
 ViewCal=Просмотр календаря
 ViewDay=Обзор дня
 ViewWeek=Обзор недели
+ViewYear=Year view
 ViewPerUser=Просмотр по пользователям
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Вид с встроенные фильтры
 AutoActions= Автоматическое заполнение дня
 AgendaAutoActionDesc= Определить здесь события, для которого вы хотите Dolibarr создать автоматическое действие в повестку дня. Если ничего не будет проверяться (по умолчанию), только вручную действия, будут включены в повестку дня.
diff --git a/htdocs/langs/ru_RU/bills.lang b/htdocs/langs/ru_RU/bills.lang
index 219049317d908b6c29b71e15ecead580599b09b6..96853f4d5b00279bbbd66a7061996a8788fcbe1e 100644
--- a/htdocs/langs/ru_RU/bills.lang
+++ b/htdocs/langs/ru_RU/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Платежи уже сделаны
 PaymentsBackAlreadyDone=Возврат платежа произведён.
 PaymentRule=Правила оплаты
 PaymentMode=Тип платежа
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Условия платежа
 PaymentConditions=Условия платежа
@@ -184,6 +186,7 @@ ShowInvoice=Показать счет-фактуру
 ShowInvoiceReplace=Показать заменяющий счет-фактуру
 ShowInvoiceAvoir=Показать кредитое авизо
 ShowInvoiceDeposit=Показать счет-фактуру на взнос
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Показать платеж
 AlreadyPaid=Уже оплачен
 AlreadyPaidBack=Already paid back
@@ -221,6 +224,7 @@ NonPercuRecuperable=Не подлежащий взысканию
 SetConditions=Установить условия оплаты
 SetMode=Установить режим оплаты
 Billed=Выставлен
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Шаблоны счёта
 RepeatableInvoices=Шаблоны счетов
 Repeatable=Шаблон
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=От этой суммы отказался Покупа
 HelpAbandonOther=От этой суммы отказались из-за ошибки (например, неправильный клиент или счет-фактура был заменен на другой)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Код платежа
+PaymentRef=Payment ref.
 InvoiceId=Код счета-фактуры
 InvoiceRef=Ref. счета-фактуры
 InvoiceDateCreation=Дата создания счета-фактуры
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Связанные счета поставщика
 LatestRelatedBill=Последний связанный счёт
 WarningBillExist=Предупреждение! Счёт (или счета) уже существуют
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Немедленно
@@ -393,6 +402,7 @@ Reported=Задержан
 DisabledBecausePayments=Невозможно, поскольку есть некоторые платежи
 CantRemovePaymentWithOneInvoicePaid=Не удается удалить оплаты поскольку есть по крайней мере один счет-фактура классифицированный как 'оплачен'
 ExpectedToPay=Ожидаемые платежи
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Оплачен этим платежом
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Примечание: Этот список сод
 RevenueStamp=Штамп о уплате налогов
 YouMustCreateInvoiceFromThird=Эта опция доступна только при создании счёта на вкладке "клиент" из раздела Контрагенты
 PDFCrabeDescription=Шаблон Счета-фактуры Crabe. Полный шаблон (вспомогательные опции НДС, скидки, условия платежей, логотип и т.д. ..)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Функция возвращает номер в формате %syymm-nnnn  для стандартных счетов и %syymm-nnnn для кредитных авизо, где yy год,  mm месяц и nnnn является непрерывной последовательностью и не возвращает 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=Документ, начинающийся с $syymm, уже существует и не совместим с этой моделью последовательности. Удалите или переименуйте его, чтобы активировать этот модуль.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Финальный и основной счёт
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/ru_RU/boxes.lang b/htdocs/langs/ru_RU/boxes.lang
index eb90ed7aa10a1905f7f1921d1de7101457fbae49..d56271c6ef1cce63dacb41f9584403950b030e6a 100644
--- a/htdocs/langs/ru_RU/boxes.lang
+++ b/htdocs/langs/ru_RU/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Счета-фактуры Покупателей
 ForCustomersOrders=Заказы клиентов
 ForProposals=Предложения
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/ru_RU/categories.lang b/htdocs/langs/ru_RU/categories.lang
index 5087e3e670b7b955cb8bf12190d277e50850af88..5697a1fae36e109375e01474ff591c70f4ef4285 100644
--- a/htdocs/langs/ru_RU/categories.lang
+++ b/htdocs/langs/ru_RU/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Теги/категории поставщиков
 CustomersCategoriesShort=Теги/категории клиентов
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Категории Покупателей/Потенц. клиентов
 ProductsCategoriesShort=Теги/категории  товаров
 MembersCategoriesShort=Теги/категории участников
diff --git a/htdocs/langs/ru_RU/companies.lang b/htdocs/langs/ru_RU/companies.lang
index 9867790699a59aea91605478b8ab2032677675e3..b9c03948f715cdb8134bfe45a5112e3ff434ed3c 100644
--- a/htdocs/langs/ru_RU/companies.lang
+++ b/htdocs/langs/ru_RU/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id проф. 1 (RC)
 ProfId2MA=Id проф. 2 (Patente)
 ProfId3MA=Id проф. 3 (IF)
 ProfId4MA=Id проф. 4 (НКСО)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Проф Id 1 (RFC).
 ProfId2MX=Проф Id 2 (R.. P. ИМСС)
diff --git a/htdocs/langs/ru_RU/compta.lang b/htdocs/langs/ru_RU/compta.lang
index 0ef4d2e4911a4c1cbd7ffbb5db594b5a6e6a5bf2..f8064abbbe0571cc8d005e8b54429add531aee8a 100644
--- a/htdocs/langs/ru_RU/compta.lang
+++ b/htdocs/langs/ru_RU/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Депозитные счета-фактуры и не
 DepositsAreIncluded=- Депозитные счета включены
 LT2ReportByCustomersInInputOutputModeES=Доклад третьей стороной IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Отчёт по собранному и оплаченному НДС клиента
 VATReportByCustomersInDueDebtMode=Отчёт по собранному и оплаченному НДС клиента
 VATReportByQuartersInInputOutputMode=Отчёт по собранной и оплаченной ставке НДС 
diff --git a/htdocs/langs/ru_RU/cron.lang b/htdocs/langs/ru_RU/cron.lang
index 54adbe56cf66b0371d47e3acc57d59b077d84bf9..4a27d73f5f55eb2931e3a2106ba75d55d33f7e61 100644
--- a/htdocs/langs/ru_RU/cron.lang
+++ b/htdocs/langs/ru_RU/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=В системах Unix-like вы должны зада
 CronExplainHowToRunWin=В Майкрософт Windows &copy; вы должны использовать Планировщик для запуска команды каждые 5 минут. 
 # Menu
 CronJobs=Запланированные задания
-CronListActive=Список активных/запланированных заданий
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=Список неактивных заданий
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Последний раз выполнено
 CronLastOutput=Последний вывод команды
@@ -35,8 +36,8 @@ CronInfo=Модуль запланированных задач позволяе
 CronWaitingJobs=Ожидающие задачи
 CronTask=Задание
 CronNone=Никакой
-CronDtStart=Начальная дата
-CronDtEnd=Конечная дата
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Следующий запуск
 CronDtLastLaunch=Последний запуск
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=Нет зарегистрированных заданий
 CronPriority=Приоритет
 CronLabel=Описание
 CronNbRun=Кол-во запусков
+CronMaxRun=Max nb. launch
 CronEach=Каждый
 JobFinished=Задание запущено и завершено
 #Page card
diff --git a/htdocs/langs/ru_RU/deliveries.lang b/htdocs/langs/ru_RU/deliveries.lang
index 25e4b7ff16d28d870706022f7155158e17825615..26f9a15e6faaf01263a2adbc923a2dd41950922d 100644
--- a/htdocs/langs/ru_RU/deliveries.lang
+++ b/htdocs/langs/ru_RU/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Вы действительно хотите уда
 DeliveryMethod=Способ доставки
 TrackingNumber=Номер отправления
 DeliveryNotValidated=Доставка не подтверждена
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Имя и подпись:
 ToAndDate=Получатель ___________________________________ доставлено ____ / _____ / __________
diff --git a/htdocs/langs/ru_RU/holiday.lang b/htdocs/langs/ru_RU/holiday.lang
index 07841e56164accd971d2179f0a22c47800e40a62..6dd2e411143d1732e1c8e344bea75be58fe6503f 100644
--- a/htdocs/langs/ru_RU/holiday.lang
+++ b/htdocs/langs/ru_RU/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=Вы должны включить модуль "Отпуска"
 NotConfigModCP=Вы должны настроить модуль "Отпуска" для просмотра этой страницы. Для этого <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;">нажмите здесь </ a>.
 NoCPforUser=У вас нет доступных дней отдыха.
 AddCP=Подать заявление на отпуск
-Employe=Сотрудник
 DateDebCP=Начальная дата
 DateFinCP=Конечная дата
 DateCreateCP=Дата создания
@@ -23,7 +22,7 @@ ReviewedByCP=Проверит
 DescCP=Описание
 SendRequestCP=Создать заявление на отпуск
 DelayToRequestCP=Заявления об отпуске могут создаваться не ранее чем через <b>%s</b> (дней)
-MenuConfCP=Отредактировать график отпусков
+MenuConfCP=Balance of leaves
 UpdateAllCP=Обновить отпуска
 SoldeCPUser=График отпусков  <b>%s</b> дней.
 ErrorEndDateCP=Выберите конечную дату позже чем начальную.
@@ -79,9 +78,9 @@ PrevSoldeCP=Предыдущий баланс
 NewSoldeCP=Новый баланс
 alreadyCPexist=Заявление на отпуск в этот период уже существует.
 UserName=Имя
-Employee=Сотрудник
 FirstDayOfHoliday=Первый день отпуска
 LastDayOfHoliday=Последний день отпуска
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Ежемесячное обновление
 ManualUpdate=Ручное обновление
 HolidaysCancelation=Отмена заявления на отпуск
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Ваше заявление на отпуск с  %s по %s
 HolidaysCanceled=Отменённые заявления на отпуск
 HolidaysCanceledBody=Ваше заявление на отпуск с  %s по %s отменено. 
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/ru_RU/hrm.lang b/htdocs/langs/ru_RU/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/ru_RU/hrm.lang
+++ b/htdocs/langs/ru_RU/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/ru_RU/interventions.lang b/htdocs/langs/ru_RU/interventions.lang
index 610ad6e1a02d228fc83f6c8b242e4f545492279b..37ff67c0ae4ae171dbe5c6e351f8e4e2a7b0a0a7 100644
--- a/htdocs/langs/ru_RU/interventions.lang
+++ b/htdocs/langs/ru_RU/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Вернуться Numero с форматом %syymm-YY,
 PacificNumRefModelError=Вмешательство карточки начиная с $ syymm уже и не совместимы с этой моделью последовательности. Удалить или переименовать его, чтобы активировать этот модуль.
 PrintProductsOnFichinter=Выводить товары на карточки посредничества
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/ru_RU/mails.lang b/htdocs/langs/ru_RU/mails.lang
index 5a422fc018a02dc105c194639afb290f611d63a6..f62ad7407c1e2b936a917479dbae28b174c3331a 100644
--- a/htdocs/langs/ru_RU/mails.lang
+++ b/htdocs/langs/ru_RU/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=Email отправлено %s получателям.
 XTargetsAdded=<b>%s</b> добавлено в список получателей
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Уведомление по счёту %s (%s)
 SendRemind=Отправить напоминание по Email
 RemindSent=%s напоминания(й) отправлено
diff --git a/htdocs/langs/ru_RU/main.lang b/htdocs/langs/ru_RU/main.lang
index 7ddde38c232c164880895e995438f7c19925d5cd..a78159d0e4cdc34a69bde803cbb6e6de692aafde 100644
--- a/htdocs/langs/ru_RU/main.lang
+++ b/htdocs/langs/ru_RU/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%d %b %Y %H:%M
 FormatDateHourText=%d %B %Y %H:%M
 DatabaseConnection=Подключение к базе данных
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Нет перевода
 NoRecordFound=Запись не найдена
 NoError=Нет ошибки
@@ -105,6 +106,7 @@ NotePrivate=Примечание (частное)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr был настроен на ограничение точности цены единицы до <b>%s</b> десятых.
 DoTest=Проверка
 ToFilter=Фильтр
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Внимание, у вас есть по крайней мере один элемент, который превысил допустимую задержку.
 yes=да
 Yes=Да
@@ -228,6 +230,8 @@ Now=Сейчас
 HourStart=Час начала
 Date=Дата
 DateAndHour=Дата и час
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Дата начала
 DateEnd=Дата окончания
 DateCreation=Дата создания
@@ -608,6 +612,7 @@ TotalMan=Всего
 NeverReceived=Никогда не получено
 Canceled=Отменено
 YouCanChangeValuesForThisListFromDictionarySetup=Вы можете изменить значения для этого списка из меню Настройки->Словарь
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Цвет
 Documents=Связанные файлы
 DocumentsNb=Связанные файлы (%s)
@@ -695,6 +700,7 @@ Test=Тест
 Element=Элемент
 NoPhotoYet=Пока недо доступных изображений
 HomeDashboard=Суммарная информация
+Dashboard=Dashboard
 Deductible=Подлежащий вычету
 from=от
 toward=к
diff --git a/htdocs/langs/ru_RU/margins.lang b/htdocs/langs/ru_RU/margins.lang
index 9ea44b98a70d32b752ed5c526237723acaad5361..c16aefada495176ece33ab3f14526ba6529b32ca 100644
--- a/htdocs/langs/ru_RU/margins.lang
+++ b/htdocs/langs/ru_RU/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Выберите продукт или услугу
 StartDate=Начальная дата
 EndDate=Конечная дата
 Launch=Главная
-ForceBuyingPriceIfNull=Форсировать цену покупки если пустое
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=Как товар
 UseDiscountAsService=Как услуга
@@ -35,8 +35,9 @@ MargeBrute=Наценка по строке
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Себестоимость
 BuyingCost=Себестоимость
 UnitCharges=Unit charges
diff --git a/htdocs/langs/ru_RU/oauth.lang b/htdocs/langs/ru_RU/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/ru_RU/oauth.lang
+++ b/htdocs/langs/ru_RU/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/ru_RU/orders.lang b/htdocs/langs/ru_RU/orders.lang
index 0671edf604269f4d8111c3fbb1081adffc626c99..4204553356ede9bd7ee3ff9f45f7ebeb31703ade 100644
--- a/htdocs/langs/ru_RU/orders.lang
+++ b/htdocs/langs/ru_RU/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=Нет проектов заказов
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Другие заказы
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/ru_RU/other.lang b/htdocs/langs/ru_RU/other.lang
index f6d1ab1c07b2415927badbce4d77403e6019c053..709a08c252bddd9aaed24096c981ae71ca082f2f 100644
--- a/htdocs/langs/ru_RU/other.lang
+++ b/htdocs/langs/ru_RU/other.lang
@@ -238,3 +238,8 @@ ToExport=Экспорт
 NewExport=Новый экспорт
 ##### External sites #####
 ExternalSites=Eksterne nettsteder
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/ru_RU/paypal.lang b/htdocs/langs/ru_RU/paypal.lang
index 8a7a9d3ff3e15feb3dd16c03bf0732cbdcbb0b10..10835db6f1e45d0c32c08c1e8685c125ac5c6454 100644
--- a/htdocs/langs/ru_RU/paypal.lang
+++ b/htdocs/langs/ru_RU/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Режим тестирования / песочницы
 PAYPAL_API_USER=API имя пользователя
 PAYPAL_API_PASSWORD=API пароль
 PAYPAL_API_SIGNATURE=API подпись
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Предлагает платеж &quot;Интегральный&quot; (кредитные карты + Paypal) или только &quot;PayPal&quot;
 PaypalModeIntegral=Интегральный
 PaypalModeOnlyPaypal=только PayPal
diff --git a/htdocs/langs/ru_RU/products.lang b/htdocs/langs/ru_RU/products.lang
index 36cc0de3be40fdf0ff0589e7ef8e6b30d1a68cda..102d773a72874c029ca94b4b6ab14c0650c95603 100644
--- a/htdocs/langs/ru_RU/products.lang
+++ b/htdocs/langs/ru_RU/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Производство завершено
-ProductsMultiPrice=Product multi-price
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/ru_RU/projects.lang b/htdocs/langs/ru_RU/projects.lang
index 9c83a9075f6e44d821c58fe2a48d338b0acc2836..41c92af7b5e4e3daf21ff489192ae3dd842a0318 100644
--- a/htdocs/langs/ru_RU/projects.lang
+++ b/htdocs/langs/ru_RU/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=Это представление всех проекто
 ProjectsDesc=Эта точка зрения представляет все проекты (разрешений пользователей предоставить вам разрешение для просмотра всего).
 MyTasksDesc=Эта точка зрения ограничена на проекты или задачи, которые являются для контакта (что бы это тип).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Эта точка зрения представляет всех проектов и задач, которые могут читать.
 TasksDesc=Эта точка зрения представляет всех проектов и задач (разрешений пользователей предоставить вам разрешение для просмотра всего).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Сотрудник по проектам
 LastProjects=Последнее %s проекты
 AllProjects=Все проекты
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Список проектов
 ShowProject=Показать проекта
 SetProject=Комплекс проектов
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Задача %s изменена
 TaskDeletedInDolibarr=Задача %s удалена
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/ru_RU/propal.lang b/htdocs/langs/ru_RU/propal.lang
index 082dd87e9c8307b4a0e126f2bb3045bd2e9cc95c..a342ebf212cfc19a88d105cd99d8bb3d086eabf8 100644
--- a/htdocs/langs/ru_RU/propal.lang
+++ b/htdocs/langs/ru_RU/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Последнее% с измененными предло
 AllPropals=Все предложения
 LastProposals=Последние предложения
 SearchAProposal=Поиск предложений
+NoProposal=No proposal
 ProposalsStatistics=Статистика коммерческих предложений 
 NumberOfProposalsByMonth=Количество в месяц
 AmountOfProposalsByMonthHT=Сумма в месяц (за вычетом налогов)
@@ -62,7 +63,8 @@ DatePropal=Дата предложения
 DateEndPropal=Дата окончания действия
 DateEndPropalShort=Дата окончания
 ValidityDuration=Срок действия
-CloseAs=Закрыть со статусом
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Классифицировать счета
 BuildBill=Создание счета-фактуры
 ErrorPropalNotFound=Пропал% не найдены
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Создание модели по умолчанию
 DefaultModelPropalToBill=Шаблон по умолчанию, когда закрывается коммерческое предложение (для создания счёта)
 DefaultModelPropalClosed=Шаблон по умолчанию, когда закрывается коммерческое предложение (не оплаченное)
 ProposalCustomerSignature=Письменное подтверждение, печать компании, дата и подпись
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/ru_RU/salaries.lang b/htdocs/langs/ru_RU/salaries.lang
index 2498fa011b4608200f7d7096a45c464eba20a668..14228f538de137748b40e505ce44761880b6b082 100644
--- a/htdocs/langs/ru_RU/salaries.lang
+++ b/htdocs/langs/ru_RU/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Бухгалтерский код для выплат зарплаты
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Бухгалтерский код для финансовых выплат
 Salary=Зарплата
 Salaries=Зарплаты
-Employee=Сотрудник
 NewSalaryPayment=Новая выплата зарплаты
 SalaryPayment=Выплата зарплаты
 SalariesPayments=Выплата зарплат
diff --git a/htdocs/langs/ru_RU/sendings.lang b/htdocs/langs/ru_RU/sendings.lang
index ba734c9e8ba4efeeb0e5ce7ad14d747d3d061302..bfc7a7b254bc8f83aaf65cafc28cbbda2d12d5fe 100644
--- a/htdocs/langs/ru_RU/sendings.lang
+++ b/htdocs/langs/ru_RU/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=Все поставки
 Shipment=Поставка
 Shipments=Поставки
 ShowSending=Show Shipments
-Receivings=Получатели
+Receivings=Delivery Receipts
 SendingsArea=Раздел поставок
 ListOfSendings=Список поставок
 SendingMethod=Метод отправки
diff --git a/htdocs/langs/ru_RU/sms.lang b/htdocs/langs/ru_RU/sms.lang
index 7ad32d69bb90c1f29bc53aa185b95b51b376381f..239d22d640cbcab2239f98508706c64351a14adc 100644
--- a/htdocs/langs/ru_RU/sms.lang
+++ b/htdocs/langs/ru_RU/sms.lang
@@ -49,5 +49,6 @@ SendSms=Отправить SMS
 SmsInfoCharRemain=Кол-во оставшихся символов
 SmsInfoNumero= (В международном формате, т.е.: +71234567890)
 DelayBeforeSending=Задержка перед отправкой (в минутах)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Нет доступных получателей. Проверьте настройки вашего провайдера SMS.
 
diff --git a/htdocs/langs/ru_RU/supplier_proposal.lang b/htdocs/langs/ru_RU/supplier_proposal.lang
index 10f415dfae4bc388164038c28fabb912a23ee47f..d1512b930702a98420d283e53b14cdf4616db542 100644
--- a/htdocs/langs/ru_RU/supplier_proposal.lang
+++ b/htdocs/langs/ru_RU/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/ru_RU/trips.lang b/htdocs/langs/ru_RU/trips.lang
index 219bbd3e992bdd63f1a1ec584946a41703ec0723..8986d1bd138fa15bffbbf059d68113cfb8ee3830 100644
--- a/htdocs/langs/ru_RU/trips.lang
+++ b/htdocs/langs/ru_RU/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Информация о отчёте о затратах
 PDFStandardExpenseReports=Шаблон отчёта о затратах для создания документа в формате PDF
 ExpenseReportLine=Строка отчёта о затратах
 TF_OTHER=Другое
-TF_TRANSPORTATION=Транспортировка
+TF_TRIP=Transportation
 TF_LUNCH=Обед
 TF_METRO=Метро
 TF_TRAIN=Поезд
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Вы точно хотите проверить данный о
 NoTripsToExportCSV=Нет отчёта о затратах за этот период.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/ru_RU/users.lang b/htdocs/langs/ru_RU/users.lang
index f3aebfd973d04eab71fa69b670df720aa13c421f..01011db40328a42105c4b37654d16e3a48ed7913 100644
--- a/htdocs/langs/ru_RU/users.lang
+++ b/htdocs/langs/ru_RU/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Использовать OpenID для входа
 WeeklyHours=Часов в неделю
 ColorUser=Цвет пользователя
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/sk_SK/accountancy.lang b/htdocs/langs/sk_SK/accountancy.lang
index daf49f13257d9840aa714707adaedda17b4b272f..2f91614f5caff8ad5f78cbce10b866de151bb386 100644
--- a/htdocs/langs/sk_SK/accountancy.lang
+++ b/htdocs/langs/sk_SK/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Return
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sells journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/sk_SK/admin.lang b/htdocs/langs/sk_SK/admin.lang
index 30053db76d325126657a26994ff7a519e5f51deb..f00d46acd4abe99f441938cfb5df970b2fac6c4e 100644
--- a/htdocs/langs/sk_SK/admin.lang
+++ b/htdocs/langs/sk_SK/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Skryť všetky informácie týkajúce sa DPH na gener
 HideDescOnPDF=Skryť opis výrobkov z vytvoreného PDF
 HideRefOnPDF=Skryť produkty čj. na vytvorené PDF
 HideDetailsOnPDF=Skryť produkty linky podrobnosti o generované PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Knižnica
 UrlGenerationParameters=Parametre na zabezpečenie URL
 SecurityTokenIsUnique=Používame unikátny securekey parameter pre každú adresu URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Používatelia a skupiny
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Upozornenie
-Module600Desc=Poslať e-mailové upozornenie na niektoré Dolibarr firemné udalosti kontaktom tretích strán (nastavenie definované zvlášť pre každú tretiu stranu)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Dary
 Module700Desc=Darovanie riadenie
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Oneskorenie pred varovaním
 DelaysOfToleranceBeforeWarning=Tolerancia oneskorenie pred varovanie
 DelaysOfToleranceDesc=Táto obrazovka umožňuje definovať tolerovať oneskorenie pred upozornenie je hlásený na obrazovke s %s Piktogram pre každý neskoré prvok.
 Delays_MAIN_DELAY_ACTIONS_TODO=Oneskorenie tolerancie (v dňoch) pred záznam o plánovaných akciách doteraz realizovaných
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Oneskorenie tolerancie (v dňoch) pred záznam o obstarávaní doteraz spracovaných
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Oneskorenie tolerancie (v dňoch) pred záznam o dodávateľovi obstarávaní doteraz spracovaných
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Oneskorenie tolerancie (v dňoch) pred záznam o návrhoch zavrite
@@ -1087,6 +1089,7 @@ PathDirectory=Adresár
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Konfigurácia de la traduction
 TranslationDesc=Voľba jazyka viditeľné na obrazovke možno meniť: <br> * Globálne z menu <strong>Domov - Nastavenia - Zobrazenie</strong> <br> * Pre užívateľov iba zo <strong>zobrazenia</strong> na karte <strong>Užívateľské</strong> užívateľského karty (kliknite na prihlásení v hornej časti obrazovky).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Celkový počet aktivovaných funkcií modulov: <b>%s</b>
 YouMustEnableOneModule=Musíte povoliť aspoň jeden modul
 ClassNotFoundIntoPathWarning=Trieda %s nenašli cestu do PHP
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/sk_SK/agenda.lang b/htdocs/langs/sk_SK/agenda.lang
index dd003a72dfdf8e7d404b1f51c55471596542ac75..76029ba6eab082ab1859500b7a42895a45e66f6d 100644
--- a/htdocs/langs/sk_SK/agenda.lang
+++ b/htdocs/langs/sk_SK/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Všetky udalosti / úlohy
 ViewCal=Mesačný pohľad
 ViewDay=Denné zobrazenie
 ViewWeek=Zobraziť týždeň
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Zobraziť s preddefinovanými filtrami
 AutoActions= Automatické plnenie
 AgendaAutoActionDesc= Definujte tu udalosti, na ktoré chcete Dolibarr vytvoriť automaticky udalosť v programe. Pokiaľ nie je označená (v predvolenom nastavení), bude iba manuálne činnosti byť zahrnuté do programu rokovania.
diff --git a/htdocs/langs/sk_SK/bills.lang b/htdocs/langs/sk_SK/bills.lang
index 6040c9468b1622d8362c7775f8b4d94a072e4103..0a2397809f2e3dc95d54f72aa58bc9b399b9aa08 100644
--- a/htdocs/langs/sk_SK/bills.lang
+++ b/htdocs/langs/sk_SK/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Platby neurobili
 PaymentsBackAlreadyDone=Platby späť neurobili
 PaymentRule=Platba pravidlo
 PaymentMode=Typ platby
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=Zobraziť faktúru
 ShowInvoiceReplace=Zobraziť výmene faktúru
 ShowInvoiceAvoir=Zobraziť dobropis
 ShowInvoiceDeposit=Zobraziť zálohovú faktúru
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Zobraziť platbu
 AlreadyPaid=Už zaplatené
 AlreadyPaidBack=Už vráti
@@ -221,6 +224,7 @@ NonPercuRecuperable=Nevratná
 SetConditions=Nastaviť platobné podmienky
 SetMode=Nastaviť platobný režim
 Billed=Účtované
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Táto suma bola opustená (zákazník povedal, aby bol zl
 HelpAbandonOther=Táto suma bola opustená, pretože došlo k chybe (chybný zákazník alebo faktúra nahradený iný napríklad)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Platba id
+PaymentRef=Payment ref.
 InvoiceId=Faktúra id
 InvoiceRef=Faktúra čj.
 InvoiceDateCreation=Faktúra Dátum vytvorenia
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Bezprostredný
@@ -393,6 +402,7 @@ Reported=Oneskorený
 DisabledBecausePayments=Not possible since there are some payments
 CantRemovePaymentWithOneInvoicePaid=Can't remove payment since there is at least one invoice classified paid
 ExpectedToPay=Predpokladaný platba
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Paid by this payment
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Poznámka: Tento zoznam obsahuje iba faktúry pre t
 RevenueStamp=Kolek
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Invoice PDF template Crabe. A complete invoice template (recommended Template)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=Bill počnúc $ syymm už existuje a nie je kompatibilný s týmto modelom sekvencie. Vyberte ju a premenujte ho na aktiváciu tohto modulu.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/sk_SK/boxes.lang b/htdocs/langs/sk_SK/boxes.lang
index 9d85d84eee8a7d0a7fb5fcf6c54dafffabc13e36..5e09b949176f11c3fa42f19b379ae2f5d501d21a 100644
--- a/htdocs/langs/sk_SK/boxes.lang
+++ b/htdocs/langs/sk_SK/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Zákazníci faktúry
 ForCustomersOrders=Zákazníci objednávky
 ForProposals=Návrhy
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/sk_SK/categories.lang b/htdocs/langs/sk_SK/categories.lang
index cb4ebd28e89426da5fe16dbc45594ac27101901b..acd6d5a68df35d09b2378e45914b1c84e4d58f02 100644
--- a/htdocs/langs/sk_SK/categories.lang
+++ b/htdocs/langs/sk_SK/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo. / Prospech. kategórie
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/sk_SK/companies.lang b/htdocs/langs/sk_SK/companies.lang
index 1d243da7cf117a06bebc07a6bfb34cad92775b17..4470ad92aec35f991740b25add57894e751dd54f 100644
--- a/htdocs/langs/sk_SK/companies.lang
+++ b/htdocs/langs/sk_SK/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (RC)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (IF)
 ProfId4MA=Id prof. 4 (CNSS)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (RFC).
 ProfId2MX=Prof Id 2 (R.. P. IMSS)
diff --git a/htdocs/langs/sk_SK/compta.lang b/htdocs/langs/sk_SK/compta.lang
index 2a2ad91113c0bb08047230ebdc2796595395639b..912f864a7ce60a3249daa4de8955031abc676486 100644
--- a/htdocs/langs/sk_SK/compta.lang
+++ b/htdocs/langs/sk_SK/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Kaucia faktúry, ani zahrnuté
 DepositsAreIncluded=- Kaucia faktúry sú zahrnuté
 LT2ReportByCustomersInInputOutputModeES=Správa o treťou stranou IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Správa zákazníka DPH vyzdvihnúť a zaplatiť
 VATReportByCustomersInDueDebtMode=Správa zákazníka DPH vyzdvihnúť a zaplatiť
 VATReportByQuartersInInputOutputMode=Správa sadzby dane z pridanej hodnoty vybranej a odvedenej
diff --git a/htdocs/langs/sk_SK/cron.lang b/htdocs/langs/sk_SK/cron.lang
index 601e4ca72c339aa05a0caa563cd344eec14b5664..a60773c38b47d54c333c357afab0e7709b02d90e 100644
--- a/htdocs/langs/sk_SK/cron.lang
+++ b/htdocs/langs/sk_SK/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Naplánované úlohy
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=Zoznam postihnutých miest
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Posledný beh
 CronLastOutput=Posledný beh výstup
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Práca
 CronNone=Nikto
-CronDtStart=Dátum začatia
-CronDtEnd=Dátum ukončenia
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Ďalšie prevedenie
 CronDtLastLaunch=Posledná poprava
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=Žiadny registrovaný práce
 CronPriority=Priorita
 CronLabel=Popis
 CronNbRun=Nb. začať
+CronMaxRun=Max nb. launch
 CronEach=Každý
 JobFinished=Práca zahájená a dokončená
 #Page card
diff --git a/htdocs/langs/sk_SK/deliveries.lang b/htdocs/langs/sk_SK/deliveries.lang
index 2ef0e74a76c7e252a3b7eef1a02d7d7279a9689f..d93948f7080319d6124ff139c2bc3ffbf21be9e6 100644
--- a/htdocs/langs/sk_SK/deliveries.lang
+++ b/htdocs/langs/sk_SK/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Ste si istí, že chcete zmazať <b>%s</b> potvrden
 DeliveryMethod=Spôsob doručenia
 TrackingNumber=Sledovacie číslo
 DeliveryNotValidated=Dodávka nie je overená
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Meno a podpis:
 ToAndDate=To___________________________________ na ____ / _____ / __________
diff --git a/htdocs/langs/sk_SK/holiday.lang b/htdocs/langs/sk_SK/holiday.lang
index 6669b0d753da5a554a9c6ab64c737ea744d1fe38..4bbbec1be6d0feb932fcaf2cf1e22e4921a1746f 100644
--- a/htdocs/langs/sk_SK/holiday.lang
+++ b/htdocs/langs/sk_SK/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Zamestnanec
 DateDebCP=Dátum začatia
 DateFinCP=Dátum ukončenia
 DateCreateCP=Dátum vytvorenia
@@ -23,7 +22,7 @@ ReviewedByCP=Bude preskúmaná
 DescCP=Popis
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=Musíte vybrať koncový dátum je väčší ako dátum začatia.
@@ -79,9 +78,9 @@ PrevSoldeCP=Predchádzajúci Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Názov
-Employee=Zamestnanec
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Mesačná aktualizácia
 ManualUpdate=Manuálna aktualizácia
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/sk_SK/hrm.lang b/htdocs/langs/sk_SK/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/sk_SK/hrm.lang
+++ b/htdocs/langs/sk_SK/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/sk_SK/interventions.lang b/htdocs/langs/sk_SK/interventions.lang
index 247e5a325f60986b63be1aa0ab142b7ec7300789..5a236668dd64068afc0264d3d8cc6b77a197dd80 100644
--- a/htdocs/langs/sk_SK/interventions.lang
+++ b/htdocs/langs/sk_SK/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Späť numero vo formáte %syymm-nnnn, kde yy je rok, MM
 PacificNumRefModelError=Karta zásahu začínajúci sa s $syymm už existuje a nie je kompatibilný s týmto modelom sekvencie. Odstráňte ju alebo ju premenujte pre aktiváciu tohto modulu.
 PrintProductsOnFichinter=Vytlačiť produkty na kartu zásahu
 PrintProductsOnFichinterDetails=Zásahy vytvorené z objednávok
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/sk_SK/mails.lang b/htdocs/langs/sk_SK/mails.lang
index 7c4e674d130d37e8c19ef45238edf56dc70925fa..4c71385635c5ad4c26f18fcd520c5dd3ef39571e 100644
--- a/htdocs/langs/sk_SK/mails.lang
+++ b/htdocs/langs/sk_SK/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=Email bol odoslaný na %s príjemcom.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/sk_SK/main.lang b/htdocs/langs/sk_SK/main.lang
index ccbc11b5aaf8eb1e398f029fb727880af9ab0c88..d6820ac2df7076df68a76fff335fd8e0b9a00fc8 100644
--- a/htdocs/langs/sk_SK/main.lang
+++ b/htdocs/langs/sk_SK/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=Pripojenie k databáze
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Preklad neexistuje
 NoRecordFound=Nebol nájdený žiadny záznam
 NoError=Žiadna chyba
@@ -105,6 +106,7 @@ NotePrivate=Poznámka (súkromné)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr bolo nastavenie obmedziť presnosť jednotkových cien <b>%s</b> desatinných miest.
 DoTest=Test
 ToFilter=Filter
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Pozor, máte aspoň jeden prvok, ktorý prekročil tolerancie meškanie.
 yes=áno
 Yes=Áno
@@ -228,6 +230,8 @@ Now=Teraz
 HourStart=Start hour
 Date=Dátum
 DateAndHour=Dátum a hodina
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Dátum začiatku
 DateEnd=Dátum ukončenia
 DateCreation=Dátum vytvorenia
@@ -608,6 +612,7 @@ TotalMan=Celkový
 NeverReceived=Nikdy nedostal
 Canceled=Zrušený
 YouCanChangeValuesForThisListFromDictionarySetup=Hodnoty tohto zoznamu môžete zmenit z menu Nastavenie - Slovník
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Farba
 Documents=Pripojené súbory
 DocumentsNb=Pripojené súbory (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Prvok
 NoPhotoYet=Žiadne fotografie zatiaľ k dispozícii
 HomeDashboard=Domov zhrnutie
+Dashboard=Dashboard
 Deductible=Spoluúčasť
 from=z
 toward=k
diff --git a/htdocs/langs/sk_SK/margins.lang b/htdocs/langs/sk_SK/margins.lang
index 3c510718a25ed4a9c76c510d4353f943680ff76c..50bb8ac737ab91590160132df17f39c3477fcc84 100644
--- a/htdocs/langs/sk_SK/margins.lang
+++ b/htdocs/langs/sk_SK/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Vyberte produkt alebo službu
 StartDate=Dátum začatia
 EndDate=Dátum ukončenia
 Launch=Začiatok
-ForceBuyingPriceIfNull=Force nákupu cena, ak null
-ForceBuyingPriceIfNullDetails=ak je &quot;ON&quot;, bude marža rovnať nule na linke (nákupná cena = predajná cena), v opačnom prípade (&quot;OFF&quot;), bude Marge sa rovná predajnej cene (nákupná cena = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Marža metóda pre globálne zľavy
 UseDiscountAsProduct=Ako produkt
 UseDiscountAsService=Ako služba
@@ -35,8 +35,9 @@ MargeBrute=Raw marže
 MargeNette=Čistá marža
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin: Konečná cena - nákupnou cenou <br/> Čistá marža: Predajná cena - obstarávacej ceny,
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Veľkoobchodná cena
 BuyingCost=Veľkoobchodná cena
 UnitCharges=Jednotkové náklady
diff --git a/htdocs/langs/sk_SK/oauth.lang b/htdocs/langs/sk_SK/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/sk_SK/oauth.lang
+++ b/htdocs/langs/sk_SK/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/sk_SK/orders.lang b/htdocs/langs/sk_SK/orders.lang
index 3aac396bfc97938ae3c84d7c6def5d70733d6da0..faf4a8b0f7a2508cce8de58db6c626adfa439a2a 100644
--- a/htdocs/langs/sk_SK/orders.lang
+++ b/htdocs/langs/sk_SK/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=Žiadne návrhy objednávky
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Ostatné objednávky
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/sk_SK/other.lang b/htdocs/langs/sk_SK/other.lang
index e9325436b60d68067a68c35b8174c8af5c1d646e..ff2de455a3d3ae754536e8ff66664ec653ae15f4 100644
--- a/htdocs/langs/sk_SK/other.lang
+++ b/htdocs/langs/sk_SK/other.lang
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=New export
 ##### External sites #####
 ExternalSites=Externé stránky
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/sk_SK/paypal.lang b/htdocs/langs/sk_SK/paypal.lang
index 79e11253957d84c13ee933555ee6cf87d64e01de..a4f30d2c6ee05b7a6b4c4d387e6a941e319d48f0 100644
--- a/htdocs/langs/sk_SK/paypal.lang
+++ b/htdocs/langs/sk_SK/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Režim test / pieskovisko
 PAYPAL_API_USER=API užívateľské meno
 PAYPAL_API_PASSWORD=API heslo
 PAYPAL_API_SIGNATURE=API podpis
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Ponuka platba &quot;integrálne&quot; (Credit card + Paypal) alebo &quot;Paypal&quot; iba
 PaypalModeIntegral=Integrálne
 PaypalModeOnlyPaypal=PayPal iba
diff --git a/htdocs/langs/sk_SK/products.lang b/htdocs/langs/sk_SK/products.lang
index 5bd4e080b5c47d715803ae4af093b1e0aa9576c9..79c986688e7028dfab3b05d9de95a1c6d68e5a2b 100644
--- a/htdocs/langs/sk_SK/products.lang
+++ b/htdocs/langs/sk_SK/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net jednotka VWAP
 CostPmpHT=Čistá hodnota VWAP
 ProductUsedForBuild=Auto spotrebujú pri výrobe
 ProductBuilded=Výroba dokončená
-ProductsMultiPrice=Produkt multi-cena
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/sk_SK/projects.lang b/htdocs/langs/sk_SK/projects.lang
index 018ec37b506df4fcef87128077b2cd5626c2cbc9..c44ca23370e0e7c7f494786fb26f803e9de85a17 100644
--- a/htdocs/langs/sk_SK/projects.lang
+++ b/htdocs/langs/sk_SK/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=Tento názor predstavuje všetky projekty (užívateľského oprávnenia udeliť oprávnenie k nahliadnutiu všetko).
 MyTasksDesc=Tento pohľad je obmedzená na projekty alebo úlohy, ktoré sú pre kontakt (nech je to typ).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Tento názor predstavuje všetky projekty a úlohy, ktoré sú prístupné pre čítanie.
 TasksDesc=Tento názor predstavuje všetky projekty a úlohy (vaše užívateľské oprávnenia udeliť oprávnenie k nahliadnutiu všetko).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Riaditeľ projektu
 LastProjects=Posledný %s projekty
 AllProjects=Všetky projekty
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Zoznam projektov
 ShowProject=Zobraziť projektu
 SetProject=Nastavenie projektu
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/sk_SK/propal.lang b/htdocs/langs/sk_SK/propal.lang
index 3eeec28401a9be3242a9b038f24a282d5fc7a4bd..5058f6ce44671835726c7361526d4b4e865ead30 100644
--- a/htdocs/langs/sk_SK/propal.lang
+++ b/htdocs/langs/sk_SK/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Posledné %s upravené návrhy
 AllPropals=Všetky návrhy
 LastProposals=Posledné návrhy
 SearchAProposal=Hľadať návrh
+NoProposal=No proposal
 ProposalsStatistics=Obchodné Návrh si štatistiky
 NumberOfProposalsByMonth=Číslo podľa mesiaca
 AmountOfProposalsByMonthHT=Suma, o mesiac (bez DPH)
@@ -62,7 +63,8 @@ DatePropal=Dátum návrhu
 DateEndPropal=Platnosť koncový dátum
 DateEndPropalShort=Dátum ukončenia
 ValidityDuration=Platnosť trvania
-CloseAs=Zavrite sa stavom
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Klasifikovať účtované
 BuildBill=Build faktúru
 ErrorPropalNotFound=Prepáli %s nebol nájdený
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Predvolené model, tvorba
 DefaultModelPropalToBill=Predvolená šablóna pri zatváraní obchodnej návrh (bude faktúrovať)
 DefaultModelPropalClosed=Predvolená šablóna pri zatváraní obchodnej návrh (nevyfakturované)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/sk_SK/salaries.lang b/htdocs/langs/sk_SK/salaries.lang
index efa273a5bcf99986313bd39648bb8fcbd556c661..0a5d2ba74faa5e88b574e15029c208231af593a8 100644
--- a/htdocs/langs/sk_SK/salaries.lang
+++ b/htdocs/langs/sk_SK/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Účtovný kód pre výplatu miezd
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Účtovný kód pre zrážky
 Salary=Mzda
 Salaries=Mzdy
-Employee=Zamestnanec
 NewSalaryPayment=Nová výplata mzdy
 SalaryPayment=Výplata mzdy
 SalariesPayments=Výplaty miezd
diff --git a/htdocs/langs/sk_SK/sendings.lang b/htdocs/langs/sk_SK/sendings.lang
index fa5e7b6bfd909148d686f010f46838f5cfd0d0d6..47a26e5f5413e5e2a6145a31bf8955e79cb79548 100644
--- a/htdocs/langs/sk_SK/sendings.lang
+++ b/htdocs/langs/sk_SK/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Náklad
 Shipments=Zásielky
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Zásielky oblasť
 ListOfSendings=Zoznam zásielok
 SendingMethod=Spôsob dopravy
diff --git a/htdocs/langs/sk_SK/sms.lang b/htdocs/langs/sk_SK/sms.lang
index 425ef170a84c6f321ba07cf13b48772ced65f40d..6158f8357d26aaa61eb043d0c23253c73908c2ce 100644
--- a/htdocs/langs/sk_SK/sms.lang
+++ b/htdocs/langs/sk_SK/sms.lang
@@ -49,5 +49,6 @@ SendSms=Pošlite SMS v tvare
 SmsInfoCharRemain=Nb zostávajúcich znakov
 SmsInfoNumero= (Medzinárodným formátu, tj: 33899701761)
 DelayBeforeSending=Oneskorenie pred odoslaním (minúty)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Žiadny cieľ k dispozícii. Skontrolujte nastavenia poskytovateľa služieb SMS.
 
diff --git a/htdocs/langs/sk_SK/supplier_proposal.lang b/htdocs/langs/sk_SK/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/sk_SK/supplier_proposal.lang
+++ b/htdocs/langs/sk_SK/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/sk_SK/trips.lang b/htdocs/langs/sk_SK/trips.lang
index 14f1b71cdd8a76fe8b32631a19cfca6fa0fbaff4..4e0c40e5672d04b7751969a7a8ec82177793b384 100644
--- a/htdocs/langs/sk_SK/trips.lang
+++ b/htdocs/langs/sk_SK/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Ostatné
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Obed
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/sk_SK/users.lang b/htdocs/langs/sk_SK/users.lang
index a4e6bcfb7a63b9821450a422c2353faa1b3ef5a6..24c31fcf295a5d38b6a28cae6e99b6fcb3b3fe78 100644
--- a/htdocs/langs/sk_SK/users.lang
+++ b/htdocs/langs/sk_SK/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Použiť OpenID pre prihlásenie
 WeeklyHours=Počet hodín za týžden
 ColorUser=Farba priradená užívateľovi
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/sl_SI/accountancy.lang b/htdocs/langs/sl_SI/accountancy.lang
index e851b1bc42a3517c1a29ebc187a905ccbdd0279c..b9b6196e1635df2f2dd3dfef36189b75c24bdb2d 100644
--- a/htdocs/langs/sl_SI/accountancy.lang
+++ b/htdocs/langs/sl_SI/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Izberite model izvoza
 Modelcsv_normal=Classic izvoz
 Modelcsv_CEGID=Izvoz v CEGID Expert
 BackToChartofaccounts=Prikaz kontnega plana
-Back=Return
 
 Definechartofaccounts=Določite kontni plan
 Selectchartofaccounts=Izberite kontni plan
@@ -109,10 +108,6 @@ DelBookKeeping=Izbriši zapise v glavno knjigo
 
 DescSellsJournal=Sells revija
 DescPurchasesJournal=Nakupi revija
-BankJournal=Bank revija
-DescBankJournal=Bank revija vključno z vsemi vrstami, razen gotovine plačila
-CashJournal=Cash revija
-DescCashJournal=Cash revija, vključno z načinom plačila gotovine
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Tukaj poglejte seznam vrstic na računih dobaviteljev in
 ValidateHistory=Potrditi Samodejno
 
 ErrorAccountancyCodeIsAlreadyUse=Napaka, ne morete izbrisati to računovodsko račun, ker se uporablja
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Kartica pregleda
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/sl_SI/admin.lang b/htdocs/langs/sl_SI/admin.lang
index 6b7d65b5ae05783389bd9484eeac53a7f2f63700..f8dfa575bda25a055d0a62069ed4ff8b2d1a7acd 100644
--- a/htdocs/langs/sl_SI/admin.lang
+++ b/htdocs/langs/sl_SI/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Skrij vse informacije v zvezi z DDV za nastali PDF
 HideDescOnPDF=Skrij opis proizvoda v ustvarjenem PDF
 HideRefOnPDF=Skrij reference proizvoda v ustvarjenem PDF
 HideDetailsOnPDF=Skrij vrstice s podrobnostmi o proizvodu v ustvarjenem PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Knjižnica
 UrlGenerationParameters=Parametri za zagotovitev URL
 SecurityTokenIsUnique=Uporabite edinstven parameter securekey za vsako URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Ali zares želite izbrisati vse trenutne vrednosti
 AllBarcodeReset=Vse vrednosti črtnih kod so bile odstranjene
 NoBarcodeNumberingTemplateDefined=Nobena številčna predloga črtne kode ni omogočena v mudulu za nastavitev črtnih kod.
 NoRecordWithoutBarcodeDefined=Noben zapis ni definiran brez črtne kode.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Uporabniki & skupine
@@ -499,7 +500,7 @@ Module510Desc=Upravljanje plač in plačil zaposlenim
 Module520Name=Posojilo
 Module520Desc=Upravljanje posojil
 Module600Name=Obvestila
-Module600Desc=Pošiljanje obvestil o nekaterih Dolibarr dogodkih po e-mailu kontaktom pri partnerjih (nastavitev je določena za vsakega partnerja)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Donacije
 Module700Desc=Upravljanje donacij
 Module770Name=Stroškovno poročilo
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Zakasnitve pred opozorilom
 DelaysOfToleranceBeforeWarning=Toleranca zakasnitve pred opozorilom
 DelaysOfToleranceDesc=Ta zaslon omogoča definicijo tolerance zakasnitve preden se opozorilo prikaže na zaslonu v obliki piktograma %s za vsak zakasnjen element.
 Delays_MAIN_DELAY_ACTIONS_TODO=Toleranca zakasnitve (v dnevih) pred opozorilom na še nerealizirano planirano aktivnost
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Toleranca zakasnitve (v dnevih) pred opozorilom na še nedokončana naročila
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Toleranca zakasnitve (v dnevih) pred opozorilom na še nedokončana naročila pri dobaviteljih
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Toleranca zakasnitve (v dnevih) pred opozorilom na ponudbe, ki jih je treba zaključiti
@@ -1087,6 +1089,7 @@ PathDirectory=Mapa
 SendmailOptionMayHurtBuggedMTA=Funkcija za pošiljanje pošte z uporabo metode "PHP mail DIRECT" bo ustvarila poštno sporočilo, ki ga morda nekateri poštni strežniki ne bodo pravilno razčlenili. Posledica tega je, da nekatere pošte ne bodo mogli brati uporabniki, ki gostujejo na takih platformah. To veljalo za nekaj internetnih ponudnikov (npr.: Orange v Franciji). Problem ni v Dolibarr niti v PHP, ampak v sprejemanju poštnega strežnika. Lahko pa v nastavitvah dodate opcijo MAIN_FIX_FOR_BUGGED_MTA kot 1. v setup, da bi se temu izognili brez modifikacije Dolibarr. Vendar pa lahko pride do težav z drugimi strežniki, ki strogo spoštujejo SMTP standard. Druga rešitev (priporočena) je uporaba metode "SMTP socket knjižnice", ki nima teh slabosti.
 TranslationSetup=Konfiguracija prevoda
 TranslationDesc=Izbira na zaslonu vidnega jezika se lahko spremeni:<br>* Globalno preko menija <strong>Domov - Nastavitve - Prikaz</strong><br>* Samo za uporabnike preko zavihka <strong>Nastavitev zaslona uporabnika</strong> (klik na login na vrhu ekrana).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Skupno število aktiviranih modulov za lastnosti: <b>%s</b>
 YouMustEnableOneModule=Omogočiti morate vsaj 1 modul
 ClassNotFoundIntoPathWarning=Ratzred %s ni najedn na poti PHP
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Instalacijo zunanjega modula iz aplika
 ConfFileMuseContainCustom=Instalacija eksternega modula iz aplikacije shrani datoteke modula v mapo <strong>%s</strong>. da bi Dolibarr procesiral to mapo, morate nastaviti vaš <strong>conf/conf.php</strong> tako, da bo opcija<br>- <strong>$dolibarr_main_url_root_alt</strong> omogočena z vrednostjo <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> pa z vrednostjo <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Osvetli vrstice tabele, preko katerih je šla miška
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Po spremembi te vrednosti jo aktivirate s tipko F5 na tipkovnici
 NotSupportedByAllThemes=Delovalo bo s temo eldy, vendar ni podprto v vseh temah
diff --git a/htdocs/langs/sl_SI/agenda.lang b/htdocs/langs/sl_SI/agenda.lang
index 34c26ca7e0e52572ba1e1a5a79d6ff917829bdb6..2ff7900d96e7197c4c12f61040b53e6fee366212 100644
--- a/htdocs/langs/sl_SI/agenda.lang
+++ b/htdocs/langs/sl_SI/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Vse dogodki/naloge
 ViewCal=Mesečni pogled
 ViewDay=Dnevni pogled
 ViewWeek=Tedenski pogled
+ViewYear=Year view
 ViewPerUser=Pogled po uporabniku
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Glej z prednastavljenimi filtri
 AutoActions= Avtomatska izpolnitev
 AgendaAutoActionDesc= Tukaj definirajte dogodke, za katere želite, da Dolibarr avtomatsko kreira aktivnost v urniku. Če ni označeno ničesar (privzeto), bodo v urnik vključene samo ročno vnesene aktivnosti.
diff --git a/htdocs/langs/sl_SI/bills.lang b/htdocs/langs/sl_SI/bills.lang
index d747732c8597a452889e2e4c1e6102f90deed388..bc269b79893e82ff4e2348d465354c0e6f3216e0 100644
--- a/htdocs/langs/sl_SI/bills.lang
+++ b/htdocs/langs/sl_SI/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Izvršena plačila
 PaymentsBackAlreadyDone=Vrnitev plačila že izvršena
 PaymentRule=Pravilo plačila
 PaymentMode=Način plačila
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Način plačila
 PaymentTerm=Rok plačila
 PaymentConditions=Pogoji plačil
@@ -184,6 +186,7 @@ ShowInvoice=Prikaži račun
 ShowInvoiceReplace=Prikaži nadomestni račun
 ShowInvoiceAvoir=Prikaži dobropis
 ShowInvoiceDeposit=Prikaži avansni račun
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Prikaži plačilo
 AlreadyPaid=Že plačano
 AlreadyPaidBack=Že vrnjeno plačilo
@@ -221,6 +224,7 @@ NonPercuRecuperable=Nepovratno
 SetConditions=Nastavitev plačilnih pogojev
 SetMode=Nastavitev načina plačila
 Billed=Zaračunano
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Predloga računa
 RepeatableInvoices=Predloga računov
 Repeatable=Predloga
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Ta znesek je bil opuščen (Kupec je označen kot 'slab k
 HelpAbandonOther=Ta znesek je bil opuščen, ker je prišlo do napake (na primer napačen kupec ali račun, zamenjan z drugim)
 IdSocialContribution=ID za socialni/fiskalni davek
 PaymentId=ID plačila
+PaymentRef=Payment ref.
 InvoiceId=ID računa
 InvoiceRef=Referenca računa
 InvoiceDateCreation=Datum kreiranja računa
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Povezani računi dobavitelja
 LatestRelatedBill=Zadnji povezan račun
 WarningBillExist=Pozor, obstaja že en ali več računov
 MergingPDFTool=Orodje za spajanje PDF
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Takoj
@@ -393,6 +402,7 @@ Reported=Odlog
 DisabledBecausePayments=Ni možno zaradi nekaterih odprtih plačil
 CantRemovePaymentWithOneInvoicePaid=Brisanje plačila ni možno, ker je vsaj en račun označen kot plačan
 ExpectedToPay=Pričakovano plačilo
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Plačano s tem plačilom
 ClosePaidInvoicesAutomatically=Označi s "Plačano" vse standardne, situacijske ali nadomestne račune, ki so bili v celoti plačani.
 ClosePaidCreditNotesAutomatically=Označi s "Plačano" vse dobropise, ki so bili v celoti vrnjeni.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Opomba: Ta seznam vsebuje samo račune za partnerje
 RevenueStamp=Žig prihodka
 YouMustCreateInvoiceFromThird=Ta opcija je na voljo samo, kadar ustvarite račun z zavihka "kupci" na področju Partnerjev
 PDFCrabeDescription=Predloga računa Crabe. Predloga kompletnega računa (Podpora DDV opcije, popusti, pogoji plačila, logo, itd...)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Predlaga številko v formatu %syymm-nnnn za standardne račune in %syymm-nnnn za dobropise kjer je yy leto, mm mesec in nnnn zaporedna številka brez presledkov in večja od 0
 MarsNumRefModelDesc1=Ponudi številko v formatu %syymm-nnnn za standardne račune, %syymm-nnnn za nadomestne račune, %syymm-nnnn za avnsne račune in %syymm-nnnn za dobropise, kjer je yy leto, mm mesec in nnnn brez presledkov in brez vračila na 0
 TerreNumRefModelError=Račun z začetkom $syymm že obstaja in ni kompatibilen s tem modelom zaporedja. Odstranite ga ali ga preimenujte za aktiviranje tega modula.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=Ta situacija je končna.
 CantBeLessThanMinPercent=Napredek ne more biti manjši, kot je vrednost prejšnje situacije
 NoSituations=Nobena situacija ni odprta
 InvoiceSituationLast=Končni in skupni račun
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/sl_SI/boxes.lang b/htdocs/langs/sl_SI/boxes.lang
index 088f85f2074ba58817facc04a93268e24479ec5b..b2c9763ac0f4c560a10f5ca084036833fcff072e 100644
--- a/htdocs/langs/sl_SI/boxes.lang
+++ b/htdocs/langs/sl_SI/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Računi za kupce
 ForCustomersOrders=Naročila kupcev
 ForProposals=Ponudbe
 LastXMonthRolling=Obrat zadnjih %s mesecev
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/sl_SI/categories.lang b/htdocs/langs/sl_SI/categories.lang
index e425a2754fb842be0c17ea3a84fc9b4a1d7cb4df..473c4ac9b43db9f11ae67ae36250fbd293bc2734 100644
--- a/htdocs/langs/sl_SI/categories.lang
+++ b/htdocs/langs/sl_SI/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Proizvodi značka/kategorija
 MembersCategoryShort=Člani značka/kategorija
 SuppliersCategoriesShort=Značke/kategorije dobaviteljev
 CustomersCategoriesShort=Značke/kategorije kupcev
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Kategorije kupcev/možnih strank
 ProductsCategoriesShort=Značke/kategorije proizvodov
 MembersCategoriesShort=Značke/kategorije članov
diff --git a/htdocs/langs/sl_SI/companies.lang b/htdocs/langs/sl_SI/companies.lang
index b14cdbc1c1ff09754be15d271d8ea36f74332004..e939edb40bb7fcb1b64965413d2a4d2c429077fb 100644
--- a/htdocs/langs/sl_SI/companies.lang
+++ b/htdocs/langs/sl_SI/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA==
 ProfId2MA==
 ProfId3MA==
 ProfId4MA==
-ProfId5MA==
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX==
 ProfId2MX==
diff --git a/htdocs/langs/sl_SI/compta.lang b/htdocs/langs/sl_SI/compta.lang
index 4fa62d7d1758ff14190df83642940d3b0768028e..21fca39466649466455fc44486980bf59a1812ab 100644
--- a/htdocs/langs/sl_SI/compta.lang
+++ b/htdocs/langs/sl_SI/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Vlog računi so prav tako vključeni
 DepositsAreIncluded=- Vključena so vlog računi
 LT2ReportByCustomersInInputOutputModeES=Poročilo tretjih oseb IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Poročilo o pobranem in plačanem DDV po kupcih
 VATReportByCustomersInDueDebtMode=Poročilo o pobranem in plačanem DDV po kupcih
 VATReportByQuartersInInputOutputMode=Poročilo o pobranem in plačanem DDV po stopnji DDV
diff --git a/htdocs/langs/sl_SI/cron.lang b/htdocs/langs/sl_SI/cron.lang
index c49253e6c10441cb3066a98fcfedbff87f94f463..a564a315fea1c4c6171a137709fadd48104cd422 100644
--- a/htdocs/langs/sl_SI/cron.lang
+++ b/htdocs/langs/sl_SI/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=Seznam onemogočenih nalog
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Last run
 CronLastOutput=Last run output
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Naloga
 CronNone=Nič
-CronDtStart=Začetni datum
-CronDtEnd=Končni datum
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Next execution
 CronDtLastLaunch=Last execution
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=Nobene naloge niso registrirane
 CronPriority=Prioriteta
 CronLabel=Opis
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
diff --git a/htdocs/langs/sl_SI/deliveries.lang b/htdocs/langs/sl_SI/deliveries.lang
index 3aa1a41cebc104ff7fec5b6008e43b400135d43e..a304c4d7b8d974578b34b78f3fb39cceb63de216 100644
--- a/htdocs/langs/sl_SI/deliveries.lang
+++ b/htdocs/langs/sl_SI/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Ali zares želite zbrisati prejemnico <b>%s</b> ?
 DeliveryMethod=Način dobave
 TrackingNumber=Številka za sledenje
 DeliveryNotValidated=Dobava ni potrjena
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Ime in podpis :
 ToAndDate=Za___________________________________ dne ____/_____/__________
diff --git a/htdocs/langs/sl_SI/holiday.lang b/htdocs/langs/sl_SI/holiday.lang
index 924fbadebe309ad238f979cdad841572e3d7761c..cbb42def7f9ff96adc64398faf1fcce49384a80c 100644
--- a/htdocs/langs/sl_SI/holiday.lang
+++ b/htdocs/langs/sl_SI/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=Za ogled te strani morate aktivirati modul za dopust
 NotConfigModCP=Za ogled te strani morate konfigurirati modul za dopust. To lahko storite s klikom <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> tukaj </ a>.
 NoCPforUser=Nimate več na voljo nobenega dneva.
 AddCP=Izdelaj zahtevek za dopust
-Employe=Zaposleni
 DateDebCP=Začetni datum
 DateFinCP=Končni datum
 DateCreateCP=Datum kreiranja
@@ -23,7 +22,7 @@ ReviewedByCP=Pregledal
 DescCP=Opis
 SendRequestCP=Ustvari zahtevek za dopust
 DelayToRequestCP=Zahtevek za dopust mora biti vložen vsaj <b>%s dan(dni)</b> prej.
-MenuConfCP=Urejanje stanja dopusta
+MenuConfCP=Balance of leaves
 UpdateAllCP=Posodobitev dopustov
 SoldeCPUser=Stanje dopusta je <b>%s</b> dni.
 ErrorEndDateCP=Končni datum mora biti večji od začetnega.
@@ -79,9 +78,9 @@ PrevSoldeCP=Prejšnje stanje
 NewSoldeCP=Novo stanje
 alreadyCPexist=Zahtevek za dopust za to obdobje je bil že vložen.
 UserName=Priimek
-Employee=Zaposleni
 FirstDayOfHoliday=Prvi dan dopusta
 LastDayOfHoliday=Zadnji dan dopusta
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Mesečna posodobitev
 ManualUpdate=Ročna posodobitev
 HolidaysCancelation=Preklic zahtevka za dopust
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Vaš zahtevek za dopust od %s do %s je bil zavrnjen zaradi n
 HolidaysCanceled=Preklican zahtevek za dopust
 HolidaysCanceledBody=Vaš zahtevek za dopust od %s do %s je bil preklican.
 NewByMonth=Dodani na mesec
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Pojdite na <strong>Domov - Nastavitve- Slovarji- Vrste odsotnosti</strong> zanastavitve različnih vrst odsotnosti.
diff --git a/htdocs/langs/sl_SI/hrm.lang b/htdocs/langs/sl_SI/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/sl_SI/hrm.lang
+++ b/htdocs/langs/sl_SI/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/sl_SI/interventions.lang b/htdocs/langs/sl_SI/interventions.lang
index c4db3e67c6605cf9adf26f6ccdefaf0d3e981b3c..33ce3fbcbfb115da6f1401184a1d6d28afd61e74 100644
--- a/htdocs/langs/sl_SI/interventions.lang
+++ b/htdocs/langs/sl_SI/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Predlaga številko v formatu %syymm-nnnn kjer je yy leto
 PacificNumRefModelError=Kartica intervencije, ki se začne z $syymm že obstaja in ni kompatibilna s tem modelom sekvence. Odstranite jo ali jo preimenujte, če želite aktivirati ta modul.
 PrintProductsOnFichinter=Natisni proizvode na intervencijsko kartico
 PrintProductsOnFichinterDetails=intervencije na osnovi naročil
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/sl_SI/mails.lang b/htdocs/langs/sl_SI/mails.lang
index 5e5200b566d33ac34635b89f2ec2edbaa28f0795..8472f3265594576a0157ec0c470ffa985e4d72a3 100644
--- a/htdocs/langs/sl_SI/mails.lang
+++ b/htdocs/langs/sl_SI/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Ključ za enkripcijo URL, ki je uporabljen za funkciji "Bra
 EMailSentToNRecipients=E-pošta poslana %s prejemnikom.
 XTargetsAdded=<b>%s</b> prejemnikov dodanih na ciljni seznam
 EachInvoiceWillBeAttachedToEmail=Ustvarjen bo dokument na osnovi privzete predloge in pripet k vsakemu elektronskemu sporočilu
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Opomin k računu %s (%s)
 SendRemind=Pošlji opomin po E-pošti
 RemindSent=%s poslanih opomin(ov)
diff --git a/htdocs/langs/sl_SI/main.lang b/htdocs/langs/sl_SI/main.lang
index 954ec7e62e47e25615b9dd5cdd50430a671ecf44..abc4c41153d2fa545d3b6384fdcf4dac39df4146 100644
--- a/htdocs/langs/sl_SI/main.lang
+++ b/htdocs/langs/sl_SI/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%d. %b, %Y, %I:%M %p
 FormatDateHourText=%d. %B, %Y, %I:%M %p
 DatabaseConnection=Povezave podatkovnih baz
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Ni prevoda
 NoRecordFound=Ni najden zapis
 NoError=Ni napake
@@ -105,6 +106,7 @@ NotePrivate=Opomba (privatna)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr je nastavljen na omejitev natančnosti cen posameznih enot na <b>%s</b> decimalk.
 DoTest=Test
 ToFilter=Filter
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Pozor, vsaj en element je prekoračil dovoljeno toleranco za zamudo.
 yes=da
 Yes=Da
@@ -228,6 +230,8 @@ Now=Zdaj
 HourStart=Ura začetka
 Date=Datum
 DateAndHour=Datum in ura
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Začetni datum
 DateEnd=Končni datum
 DateCreation=Datum kreiranja
@@ -608,6 +612,7 @@ TotalMan=Skupni
 NeverReceived=Nikoli prejeto
 Canceled=Preklicano
 YouCanChangeValuesForThisListFromDictionarySetup=Vrednosti za ta seznam lahko spremenite na meniju 'Nastavitve – Slovarji'
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Barva
 Documents=Povezane datoteke
 DocumentsNb=Število povezanih datotek (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=Slik še ni na voljo
 HomeDashboard=Povzetek domačega področja
+Dashboard=Dashboard
 Deductible=Odbiten
 from=od
 toward=proti
diff --git a/htdocs/langs/sl_SI/margins.lang b/htdocs/langs/sl_SI/margins.lang
index b8be5e67b15605587ec0cf266a2ae1158d2c271d..b0381d1faa8e2a062846352fa0e84a2c9f70c856 100644
--- a/htdocs/langs/sl_SI/margins.lang
+++ b/htdocs/langs/sl_SI/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Izberi proizvod ali storitev
 StartDate=Začetni datum
 EndDate=Končni datum
 Launch=Start
-ForceBuyingPriceIfNull=Uveljavi nabavno ceno, če je nič
-ForceBuyingPriceIfNullDetails=če je "ON", bo marža 0 (nabavna cena = prodajna cena), drugače ("OFF")  bo marža enaka prodajni ceni (nabavna cena = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Metoda marž pri globalnih popustih
 UseDiscountAsProduct=Kot proizvod
 UseDiscountAsService=Kot storitev
@@ -35,8 +35,9 @@ MargeBrute=Bruto marža
 MargeNette=Neto marža
 MargeType1=Marža na najboljšo nabavno ceno
 MargeType2=Marža na uravnoteženo povprečno ceno (WAP)
-MARGIN_TYPE_DETAILS=Bruto marža : prodajna cena - nabavna cena<br/>Neto marža : prodajna cena - stroškovna cena
-MarginTypeDesc=Marža na najboljšo nabavno ceno : Prodajna cena - Najboljša nabavna cena s kartice proizvoda<br/>Marža na uravnoteženo povprečno ceno (WAP) : Prodajna cena - Uravnotežena povprečna cena proizvoda
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Stroškovna cena
 BuyingCost=Stroškovna cena
 UnitCharges=Stroški po enoti
diff --git a/htdocs/langs/sl_SI/oauth.lang b/htdocs/langs/sl_SI/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/sl_SI/oauth.lang
+++ b/htdocs/langs/sl_SI/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/sl_SI/orders.lang b/htdocs/langs/sl_SI/orders.lang
index 671dd33dba38bedffde853a1aa5886fb834fd64d..d3fbeb5398ad76bfdf465ebe3ea4e0bc665bb9f2 100644
--- a/htdocs/langs/sl_SI/orders.lang
+++ b/htdocs/langs/sl_SI/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Naročila za procesiranje
 NoOpenedOrders=Ni odprtih naročil
 NoOtherOpenedOrders=Ni drugih odprtih naročil
 NoDraftOrders=Ni osnutkov naročil
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Ostala naročila
 LastOrders=Zadnjih %s naročil kupca
diff --git a/htdocs/langs/sl_SI/other.lang b/htdocs/langs/sl_SI/other.lang
index b6b8389b3e7d2abe63935da0bd08fdeb29e1b2bf..24158862c112a0a95e51b5c59f7d82aa6a0d2933 100644
--- a/htdocs/langs/sl_SI/other.lang
+++ b/htdocs/langs/sl_SI/other.lang
@@ -238,3 +238,8 @@ ToExport=Za izvoz
 NewExport=Nov izvoz
 ##### External sites #####
 ExternalSites=Zunanje strani
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/sl_SI/paypal.lang b/htdocs/langs/sl_SI/paypal.lang
index 56cac5c1f5d8d07a8560025d805ddea825e7ef42..46de943fb331cccc3a5808e1187bb27abeef2fec 100644
--- a/htdocs/langs/sl_SI/paypal.lang
+++ b/htdocs/langs/sl_SI/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Način test/sandbox
 PAYPAL_API_USER=API ime uporabnika
 PAYPAL_API_PASSWORD=API geslo
 PAYPAL_API_SIGNATURE=API podpis
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Ponujeno plačilo "integral" (kreditna kartica+Paypal) ali samo "Paypal"
 PaypalModeIntegral=Celovito
 PaypalModeOnlyPaypal=Samo PayPal
diff --git a/htdocs/langs/sl_SI/products.lang b/htdocs/langs/sl_SI/products.lang
index cddb48d7f071b294f42ad58729523b7b80707740..f9b234dd55c64c1f978de17a07b781c0015c28f2 100644
--- a/htdocs/langs/sl_SI/products.lang
+++ b/htdocs/langs/sl_SI/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Neto VWAP na enoto
 CostPmpHT=Neto skupna VWAP
 ProductUsedForBuild=Lastna poraba za proizvodnjo
 ProductBuilded=Zaključena proizvodnja
-ProductsMultiPrice=Večcenovni proizvod
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Cene za kupca (proizvodov ali storitev, večcenovno)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Izberi PDF datoteke
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Privzeta cena, dejanska cena je odvisna od kupca
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/sl_SI/projects.lang b/htdocs/langs/sl_SI/projects.lang
index 3d0e7be9848fd928f77ed6015bc9936ca4f7d0cf..c28a0182cbe07cb8d509960b114ba5f0c5b58d0a 100644
--- a/htdocs/langs/sl_SI/projects.lang
+++ b/htdocs/langs/sl_SI/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=Ta pogled predstavlja vse projekte (vaše uporabniško dovoljenje vam omogoča ogled vseh).
 MyTasksDesc=Ta pogled je omejen na projekte ali naloge, za katere ste kontaktna oseba (ne glede na vrsto).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Ta pogled predstavlja vse projekte in naloge, za katere imate dovoljenje za branje.
 TasksDesc=Ta pogled predstavlja vse projekte in naloge (vaše uporabniško dovoljenje vam omogoča ogled vseh).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Projekt vodje
 LastProjects=Zadnjih %s projektov
 AllProjects=Vsi projekti
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Seznam projektov
 ShowProject=Prikaži projekt
 SetProject=Nastavi projekt
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/sl_SI/propal.lang b/htdocs/langs/sl_SI/propal.lang
index b3e1eec44fd692eef3cd50a2f1c00c16a6dd2f81..96f7da36dd8e5c13bda1997db1ae13acacfe063b 100644
--- a/htdocs/langs/sl_SI/propal.lang
+++ b/htdocs/langs/sl_SI/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Zadnjih %s spremenjenih ponudb
 AllPropals=Vse ponudbe
 LastProposals=Zadnje ponudbe
 SearchAProposal=Išči ponudbo
+NoProposal=No proposal
 ProposalsStatistics=Statistika komercialnih ponudb
 NumberOfProposalsByMonth=Število po mesecih
 AmountOfProposalsByMonthHT=Znesek po mesecih(brez DDV)
@@ -62,7 +63,8 @@ DatePropal=Datum ponudbe
 DateEndPropal=Datum veljavnosti ponudbe
 DateEndPropalShort=Datum veljavnosti
 ValidityDuration=Trajanje veljavnosti
-CloseAs=Zaključi s statusom
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Klasificiraj kot fakturirano
 BuildBill=Izdelaj fakturo
 ErrorPropalNotFound=Ponudbe %s ne najdem
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Ustvarjanje privzetega modela
 DefaultModelPropalToBill=Privzeta predloga za zaključek ponudbe (za fakturiranje)
 DefaultModelPropalClosed=Privzeta predloga za zaključek ponudbe (nefakturirana)
 ProposalCustomerSignature=Pisna potrditev, žig podjetja, datum in podpis
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/sl_SI/salaries.lang b/htdocs/langs/sl_SI/salaries.lang
index c7578f5aa4cecde8b68dd5a90c4b8195355cbb9d..bd5be6bdedbf9252ca7e1f4c2e4b9082eae57cba 100644
--- a/htdocs/langs/sl_SI/salaries.lang
+++ b/htdocs/langs/sl_SI/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Računovodska koda za izplačilo plač
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Računovodska koda za finančno bremenitev
 Salary=Plača
 Salaries=Plače
-Employee=Zaposleni
 NewSalaryPayment=Novo izplačilo plače
 SalaryPayment=Izplačilo plače
 SalariesPayments=Izplačila plač
diff --git a/htdocs/langs/sl_SI/sendings.lang b/htdocs/langs/sl_SI/sendings.lang
index 32ca1a12ee8c8554e7e539e01fa9cdcdf8f5909b..16208e2abdd91f2aa30ee3e057fe4786b8838b08 100644
--- a/htdocs/langs/sl_SI/sendings.lang
+++ b/htdocs/langs/sl_SI/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Odprema
 Shipments=Odpreme
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Področje pošiljk
 ListOfSendings=Seznam pošiljk
 SendingMethod=Način pošiljanja
diff --git a/htdocs/langs/sl_SI/sms.lang b/htdocs/langs/sl_SI/sms.lang
index dbf2a61614fed9a71742fd7b4f0e6e06e763aa65..98ee29be5558c03b295d1247a0bc5ed36f2f66fb 100644
--- a/htdocs/langs/sl_SI/sms.lang
+++ b/htdocs/langs/sl_SI/sms.lang
@@ -49,5 +49,6 @@ SendSms=Pošlji SMS
 SmsInfoCharRemain=Število preostalih znakov
 SmsInfoNumero= (mednarodni format npr : +33899701761)
 DelayBeforeSending=Zakasnitev začetka pošiljanja (minut)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Ni prejemnika. Preverite nastavitve vašega SMS providerja.
 
diff --git a/htdocs/langs/sl_SI/supplier_proposal.lang b/htdocs/langs/sl_SI/supplier_proposal.lang
index b07fa84c7cee47fbacdb731b181560b7661b9ba7..8da85ad79680df0154becf2bf50bdbb2c7ed3a59 100644
--- a/htdocs/langs/sl_SI/supplier_proposal.lang
+++ b/htdocs/langs/sl_SI/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Ponudbe dobavitelja
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Ponudbe dobavitelja
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/sl_SI/trips.lang b/htdocs/langs/sl_SI/trips.lang
index f4f28cc75323bfedea0d50b1cdb38389d85ccd7f..0eb4bdef890c1e284263cfb730c99dc2b0efbdee 100644
--- a/htdocs/langs/sl_SI/trips.lang
+++ b/htdocs/langs/sl_SI/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Ostalo
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Kosilo
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/sl_SI/users.lang b/htdocs/langs/sl_SI/users.lang
index f46e97e9e64fa5f2094af2fd7532d0da8bdd574d..285098aef9559ac9b804f7555c133c1ada8a8831 100644
--- a/htdocs/langs/sl_SI/users.lang
+++ b/htdocs/langs/sl_SI/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=Spletni naslov OpenID
 LoginUsingOpenID=Uporabi OpenID za prijavo
 WeeklyHours=Tedenske ure
 ColorUser=Barve uporabnika
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/sq_AL/accountancy.lang b/htdocs/langs/sq_AL/accountancy.lang
index 5ee7e8de9f54f863782f095d33e3d4f43b2e78d2..87e3200f57c3544cb69c4a4d2a00867fbc5af632 100644
--- a/htdocs/langs/sq_AL/accountancy.lang
+++ b/htdocs/langs/sq_AL/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Return
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sells journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/sq_AL/admin.lang b/htdocs/langs/sq_AL/admin.lang
index c81fe4c28afda6683163ea69aba69202b77179ec..9cff117f74abd2a9b1a059a41efe0b7e74134f95 100644
--- a/htdocs/langs/sq_AL/admin.lang
+++ b/htdocs/langs/sq_AL/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Hide all information related to VAT on generated PDF
 HideDescOnPDF=Hide products description on generated PDF
 HideRefOnPDF=Hide products ref. on generated PDF
 HideDetailsOnPDF=Hide products lines details on generated PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Library
 UrlGenerationParameters=Parameters to secure URLs
 SecurityTokenIsUnique=Use a unique securekey parameter for each URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Users & groups
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Notifications
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Donations
 Module700Desc=Donation management
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Delays before warning
 DelaysOfToleranceBeforeWarning=Tolerance delays before warning
 DelaysOfToleranceDesc=This screen allows you to define the tolerated delays before an alert is reported on screen with picto %s for each late element.
 Delays_MAIN_DELAY_ACTIONS_TODO=Delay tolerance (in days) before alert on planned events not yet realised
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on orders not yet processed
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on suppliers orders not yet processed
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Delay tolerance (in days) before alert on proposals to close
@@ -1087,6 +1089,7 @@ PathDirectory=Directory
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/sq_AL/agenda.lang b/htdocs/langs/sq_AL/agenda.lang
index d8776508edcf523910ab3b06f56e1c9feb947af3..a0ccdfd26ea417d55219526b58c9ec073df47938 100644
--- a/htdocs/langs/sq_AL/agenda.lang
+++ b/htdocs/langs/sq_AL/agenda.lang
@@ -35,7 +35,9 @@ AllActions= All events/tasks
 ViewCal=Month view
 ViewDay=Day view
 ViewWeek=Week view
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= View with predefined filters
 AutoActions= Automatic filling
 AgendaAutoActionDesc= Define here events for which you want Dolibarr to create automatically an event in agenda. If nothing is checked (by default), only manual actions will be included in agenda.
diff --git a/htdocs/langs/sq_AL/bills.lang b/htdocs/langs/sq_AL/bills.lang
index 6a474886ee903714c336a4cec9f301bc999b989d..a4f919a6f49bb096b27addc8ef61adb5ebf42c9a 100644
--- a/htdocs/langs/sq_AL/bills.lang
+++ b/htdocs/langs/sq_AL/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Payments already done
 PaymentsBackAlreadyDone=Payments back already done
 PaymentRule=Payment rule
 PaymentMode=Payment type
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=Show invoice
 ShowInvoiceReplace=Show replacing invoice
 ShowInvoiceAvoir=Show credit note
 ShowInvoiceDeposit=Show deposit invoice
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Show payment
 AlreadyPaid=Already paid
 AlreadyPaidBack=Already paid back
@@ -221,6 +224,7 @@ NonPercuRecuperable=Non-recoverable
 SetConditions=Set payment terms
 SetMode=Set payment mode
 Billed=Billed
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=This amount has been abandoned (customer said to be a bad
 HelpAbandonOther=This amount has been abandoned since it was an error (wrong customer or invoice replaced by an other for example)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Payment id
+PaymentRef=Payment ref.
 InvoiceId=Invoice id
 InvoiceRef=Invoice ref.
 InvoiceDateCreation=Invoice creation date
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Immediate
@@ -393,6 +402,7 @@ Reported=Delayed
 DisabledBecausePayments=Not possible since there are some payments
 CantRemovePaymentWithOneInvoicePaid=Can't remove payment since there is at least one invoice classified paid
 ExpectedToPay=Expected payment
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Paid by this payment
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third pa
 RevenueStamp=Revenue stamp
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Invoice PDF template Crabe. A complete invoice template (recommended Template)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=A bill starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/sq_AL/boxes.lang b/htdocs/langs/sq_AL/boxes.lang
index 634b058f6d40f39c5434322b8c1ee431c6efccfa..8595403dc30264fc25e0890343920207a3b2fcc2 100644
--- a/htdocs/langs/sq_AL/boxes.lang
+++ b/htdocs/langs/sq_AL/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Customers invoices
 ForCustomersOrders=Customers orders
 ForProposals=Proposals
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/sq_AL/categories.lang b/htdocs/langs/sq_AL/categories.lang
index 81c73356c9313f8f6b58ca91fb632a9d894f335b..ccf22bb5003ca9dd4d684ff764aeb69eef7f739b 100644
--- a/htdocs/langs/sq_AL/categories.lang
+++ b/htdocs/langs/sq_AL/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo./Prosp. categories
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/sq_AL/companies.lang b/htdocs/langs/sq_AL/companies.lang
index e31c347605e091b48daeb2403b0c36b513540c0e..292fcafe238315d5e9cb6c07e0574a9f3979f7ba 100644
--- a/htdocs/langs/sq_AL/companies.lang
+++ b/htdocs/langs/sq_AL/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (R.C.)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (R.F.C).
 ProfId2MX=Prof Id 2 (R..P. IMSS)
diff --git a/htdocs/langs/sq_AL/compta.lang b/htdocs/langs/sq_AL/compta.lang
index d73f580cc8b8a84426e53b5a0c38c03dc8511bb6..07b609a17e428435a16e70932ee1763b18a0a7fa 100644
--- a/htdocs/langs/sq_AL/compta.lang
+++ b/htdocs/langs/sq_AL/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Deposit invoices are nor included
 DepositsAreIncluded=- Deposit invoices are included
 LT2ReportByCustomersInInputOutputModeES=Report by third party IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/sq_AL/cron.lang b/htdocs/langs/sq_AL/cron.lang
index bd85715642ec700a51b7365535762b2760ae54e5..21786df66cfcf912dd12c81c03fbb604e2255c26 100644
--- a/htdocs/langs/sq_AL/cron.lang
+++ b/htdocs/langs/sq_AL/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=List of disabled jobs
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Last run
 CronLastOutput=Last run output
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Job
 CronNone=None
-CronDtStart=Start date
-CronDtEnd=End date
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Next execution
 CronDtLastLaunch=Last execution
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=No jobs registered
 CronPriority=Priority
 CronLabel=Description
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
diff --git a/htdocs/langs/sq_AL/deliveries.lang b/htdocs/langs/sq_AL/deliveries.lang
index c513f3e347c28f0df14813efd7136bc833d51445..47e210744704ae9f083d6f1cf6630f7037ad794b 100644
--- a/htdocs/langs/sq_AL/deliveries.lang
+++ b/htdocs/langs/sq_AL/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Are you sure you want to delete delivery receipt <b
 DeliveryMethod=Delivery method
 TrackingNumber=Tracking number
 DeliveryNotValidated=Delivery not validated
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Name and Signature :
 ToAndDate=To___________________________________ on ____/_____/__________
diff --git a/htdocs/langs/sq_AL/holiday.lang b/htdocs/langs/sq_AL/holiday.lang
index 4beedf7021fa5d57420d3598b776c0af633abbed..a15b2d97224d732e1eceb7b84ff0947dd62e1cff 100644
--- a/htdocs/langs/sq_AL/holiday.lang
+++ b/htdocs/langs/sq_AL/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Employee
 DateDebCP=Start date
 DateFinCP=End date
 DateCreateCP=Creation date
@@ -23,7 +22,7 @@ ReviewedByCP=Will be reviewed by
 DescCP=Description
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=You must select an end date greater than the start date.
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Name
-Employee=Employee
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Monthly update
 ManualUpdate=Manual update
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/sq_AL/hrm.lang b/htdocs/langs/sq_AL/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/sq_AL/hrm.lang
+++ b/htdocs/langs/sq_AL/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/sq_AL/interventions.lang b/htdocs/langs/sq_AL/interventions.lang
index 5c08c3063534c07d4eea4a2096402a33cccadd41..cbcba219f1139b397fa8fe54ef5292c2ddf22248 100644
--- a/htdocs/langs/sq_AL/interventions.lang
+++ b/htdocs/langs/sq_AL/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Return numero with format %syymm-nnnn where yy is year,
 PacificNumRefModelError=An intervention card starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
 PrintProductsOnFichinter=Print products on intervention card
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/sq_AL/mails.lang b/htdocs/langs/sq_AL/mails.lang
index 87a1bd3c4d77c148a4c9554f25e94c5ca4becd9e..fbd7a14cd0471869ac1a1a0f1ec364a41ab9a244 100644
--- a/htdocs/langs/sq_AL/mails.lang
+++ b/htdocs/langs/sq_AL/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail sent to %s recipients.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/sq_AL/main.lang b/htdocs/langs/sq_AL/main.lang
index 2b9a0724dafaadb53416e0a7335c7310efd0c94c..7e948280d90e126dfb1980fb8e9d590efc9be890 100644
--- a/htdocs/langs/sq_AL/main.lang
+++ b/htdocs/langs/sq_AL/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=Database connection
+NoTemplateDefined=No template defined for this email type
 NoTranslation=No translation
 NoRecordFound=No record found
 NoError=No error
@@ -105,6 +106,7 @@ NotePrivate=Note (private)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr was setup to limit precision of unit prices to <b>%s</b> decimals.
 DoTest=Test
 ToFilter=Filter
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Warning, you have at least one element that has exceeded the tolerance delay.
 yes=yes
 Yes=Yes
@@ -228,6 +230,8 @@ Now=Now
 HourStart=Start hour
 Date=Date
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Date start
 DateEnd=Date end
 DateCreation=Creation date
@@ -608,6 +612,7 @@ TotalMan=Total
 NeverReceived=Never received
 Canceled=Canceled
 YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Color
 Documents=Linked files
 DocumentsNb=Linked files (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=No pictures available yet
 HomeDashboard=Home summary
+Dashboard=Dashboard
 Deductible=Deductible
 from=from
 toward=toward
diff --git a/htdocs/langs/sq_AL/margins.lang b/htdocs/langs/sq_AL/margins.lang
index 7db5ea4892e47d38f81f47f47b7beb00e1177280..27bb4de9fa34bef827f4501268d659670a983767 100644
--- a/htdocs/langs/sq_AL/margins.lang
+++ b/htdocs/langs/sq_AL/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Choose product or service
 StartDate=Start date
 EndDate=End date
 Launch=Start
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=As a product
 UseDiscountAsService=As a service
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/sq_AL/oauth.lang b/htdocs/langs/sq_AL/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/sq_AL/oauth.lang
+++ b/htdocs/langs/sq_AL/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/sq_AL/orders.lang b/htdocs/langs/sq_AL/orders.lang
index 29c2a0b5e21d6c38fe10363675a1bc04bdd5b309..c0bfc3ccce39be48af6c839b61305244d9261c47 100644
--- a/htdocs/langs/sq_AL/orders.lang
+++ b/htdocs/langs/sq_AL/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=No draft orders
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Other orders
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/sq_AL/other.lang b/htdocs/langs/sq_AL/other.lang
index 5fff107fde9aef8b5b102b11516d063214201ce7..c53f32346fe31f4f3ab22fa18f5933e33d5e97e2 100644
--- a/htdocs/langs/sq_AL/other.lang
+++ b/htdocs/langs/sq_AL/other.lang
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=New export
 ##### External sites #####
 ExternalSites=External sites
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/sq_AL/paypal.lang b/htdocs/langs/sq_AL/paypal.lang
index a4204f919825385332e460f03280067caa62dbb4..c6905f2ecc4299f59205dda7302732f0f7e67666 100644
--- a/htdocs/langs/sq_AL/paypal.lang
+++ b/htdocs/langs/sq_AL/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Mode test/sandbox
 PAYPAL_API_USER=API username
 PAYPAL_API_PASSWORD=API password
 PAYPAL_API_SIGNATURE=API signature
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Offer payment "integral" (Credit card+Paypal) or "Paypal" only
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/sq_AL/products.lang b/htdocs/langs/sq_AL/products.lang
index 0faea3691b0bd0e55ac1001d24cb88993cab4347..3926759fccadd1d5d9a3e2b3caf0d17fda789b7f 100644
--- a/htdocs/langs/sq_AL/products.lang
+++ b/htdocs/langs/sq_AL/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Production completed
-ProductsMultiPrice=Product multi-price
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/sq_AL/projects.lang b/htdocs/langs/sq_AL/projects.lang
index 7c94e3eb257ae07dea71f32084407e741fd94b1b..f6f6dd8ecaf09ead7b9c5d088f9ce307da860db9 100644
--- a/htdocs/langs/sq_AL/projects.lang
+++ b/htdocs/langs/sq_AL/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=This view presents all projects (your user permissions grant you permission to view everything).
 MyTasksDesc=This view is limited to projects or tasks you are a contact for (whatever is the type).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=This view presents all projects and tasks you are allowed to read.
 TasksDesc=This view presents all projects and tasks (your user permissions grant you permission to view everything).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Officer project
 LastProjects=Last %s projects
 AllProjects=All projects
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=List of projects
 ShowProject=Show project
 SetProject=Set project
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/sq_AL/propal.lang b/htdocs/langs/sq_AL/propal.lang
index d12d7595f94d6a48a961cc635329e86ed543a7ea..79ae1f1cd50add8ebf9f9f1275481055ed84ce06 100644
--- a/htdocs/langs/sq_AL/propal.lang
+++ b/htdocs/langs/sq_AL/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Last %s modified proposals
 AllPropals=All proposals
 LastProposals=Last proposals
 SearchAProposal=Search a proposal
+NoProposal=No proposal
 ProposalsStatistics=Commercial proposal's statistics
 NumberOfProposalsByMonth=Number by month
 AmountOfProposalsByMonthHT=Amount by month (net of tax)
@@ -62,7 +63,8 @@ DatePropal=Date of proposal
 DateEndPropal=Validity ending date
 DateEndPropalShort=Date end
 ValidityDuration=Validity duration
-CloseAs=Close with status
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Classify billed
 BuildBill=Build invoice
 ErrorPropalNotFound=Propal %s not found
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Default model creation
 DefaultModelPropalToBill=Default template when closing a business proposal (to be invoiced)
 DefaultModelPropalClosed=Default template when closing a business proposal (unbilled)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/sq_AL/salaries.lang b/htdocs/langs/sq_AL/salaries.lang
index 953a9c7540cbb06d6209140b32aaa0d23261e324..da177410860fb80d4d2d0872ec3b258ed787ba0e 100644
--- a/htdocs/langs/sq_AL/salaries.lang
+++ b/htdocs/langs/sq_AL/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Salary
 Salaries=Salaries
-Employee=Employee
 NewSalaryPayment=New salary payment
 SalaryPayment=Salary payment
 SalariesPayments=Salaries payments
diff --git a/htdocs/langs/sq_AL/sendings.lang b/htdocs/langs/sq_AL/sendings.lang
index fa7da0b00794647c45f8777bbc68fb23a31e1c0e..fb7b9c08868e29621711a9651a94ed955c6b223f 100644
--- a/htdocs/langs/sq_AL/sendings.lang
+++ b/htdocs/langs/sq_AL/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Shipment
 Shipments=Shipments
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Shipments area
 ListOfSendings=List of shipments
 SendingMethod=Shipping method
diff --git a/htdocs/langs/sq_AL/sms.lang b/htdocs/langs/sq_AL/sms.lang
index 4e89bb247308eb692eef9e40892f306dda5dd27b..70066caac96971420d7c55b09879e200888763c2 100644
--- a/htdocs/langs/sq_AL/sms.lang
+++ b/htdocs/langs/sq_AL/sms.lang
@@ -49,5 +49,6 @@ SendSms=Send SMS
 SmsInfoCharRemain=Nb of remaining characters
 SmsInfoNumero= (format international ie : +33899701761)
 DelayBeforeSending=Delay before sending (minutes)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=No target available. Check setup of your SMS provider.
 
diff --git a/htdocs/langs/sq_AL/supplier_proposal.lang b/htdocs/langs/sq_AL/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/sq_AL/supplier_proposal.lang
+++ b/htdocs/langs/sq_AL/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/sq_AL/trips.lang b/htdocs/langs/sq_AL/trips.lang
index ce9f0970e7c331996ee194c7613983060795a647..5ccdf8d0e37dcf680cc33691fdce1fd5644f2d53 100644
--- a/htdocs/langs/sq_AL/trips.lang
+++ b/htdocs/langs/sq_AL/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Other
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Lunch
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/sq_AL/users.lang b/htdocs/langs/sq_AL/users.lang
index 5b85ec80cf7e8a65d24d83c7359f831f9d150669..8a7dfcfe78753c5bda61b8d82208350a9e362652 100644
--- a/htdocs/langs/sq_AL/users.lang
+++ b/htdocs/langs/sq_AL/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Use OpenID to login
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/sr_RS/accountancy.lang b/htdocs/langs/sr_RS/accountancy.lang
index f00423bff48cf01bea49b2605d533e981e001756..f426e9cc9f24e6f994a23762102e515967fa034b 100644
--- a/htdocs/langs/sr_RS/accountancy.lang
+++ b/htdocs/langs/sr_RS/accountancy.lang
@@ -1,13 +1,13 @@
 # Dolibarr language file - en_US - Accounting Expert
-ACCOUNTING_EXPORT_SEPARATORCSV=Column separator for export file
-ACCOUNTING_EXPORT_DATE=Date format for export file
-ACCOUNTING_EXPORT_PIECE=Export the number of piece
-ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Export with global account
-ACCOUNTING_EXPORT_LABEL=Export the label
-ACCOUNTING_EXPORT_AMOUNT=Export the amount
+ACCOUNTING_EXPORT_SEPARATORCSV=Separator kolona datoteke za izvoz
+ACCOUNTING_EXPORT_DATE=Format datuma datoteke za izvoz
+ACCOUNTING_EXPORT_PIECE=Broj delova za izvoz
+ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Izvoz sa globalnim računom
+ACCOUNTING_EXPORT_LABEL=Izvoz oznake
+ACCOUNTING_EXPORT_AMOUNT=Izvezi sumu
 ACCOUNTING_EXPORT_DEVISE=Export the devise
-Selectformat=Select the format for the file
-ACCOUNTING_EXPORT_PREFIX_SPEC=Specify the prefix for the file name
+Selectformat=Odaberi format datoteke
+ACCOUNTING_EXPORT_PREFIX_SPEC=Naznači prefix datoteci
 
 Accounting=Računovodstvo
 Globalparameters=Globalni parametri
@@ -19,20 +19,19 @@ ConfigAccountingExpert=Konfigurisanje eksperta računovodstvenog modula
 Journaux=Izveštaji
 JournalFinancial=Finansijski izveštaji
 Exports=Izvozi
-Export=Export
+Export=Izvoz
 Modelcsv=Model izvoza
-OptionsDeactivatedForThisExportModel=For this export model, options are deactivated
+OptionsDeactivatedForThisExportModel=Za ovaj model izvoza, opcije su deaktivirane
 Selectmodelcsv=Izaberite model izvoza
 Modelcsv_normal=Klasičan izvoz
 Modelcsv_CEGID=Izvoz ka CEGID ekspertu
 BackToChartofaccounts=Vrati tabelu računa
-Back=Vrati
 
 Definechartofaccounts=Definiši tabelu računa
 Selectchartofaccounts=Izaberi tabelu računa
 Addanaccount=Dodaj računovodstveni nalog
 AccountAccounting=Računovodstveni nalog
-AccountAccountingSuggest=Accounting account suggest
+AccountAccountingSuggest=Predlog računovodstvenog naloga
 Ventilation=Presek
 
 CustomersVentilation=Presek kupaca
@@ -42,7 +41,7 @@ Reports=Izveštaji
 ByCustomerInvoice=Po računima kupaca
 NewAccount=Novi knjigovodstveni račun
 Create=Kreiraj
-CreateMvts=Create movement
+CreateMvts=Kreiraj prenos
 UpdateAccount=Izmena računovodstvenog naloga
 UpdateMvts=Izmena prenosa
 WriteBookKeeping=Snimanje računa u glavnoj knjizi
@@ -53,10 +52,10 @@ AccountingVentilation=Računovodstveni presek
 AccountingVentilationSupplier=Presek računa dobavljača
 AccountingVentilationCustomer=Presek računa kupca
 
-CAHTF=Total purchase supplier before tax
+CAHTF=Ukupna nabavka bez PDV-a
 InvoiceLines=Linije računa za kontrolu
 InvoiceLinesDone=Kontrolisane linije računa
-IntoAccount=Ventilate in the accounting account
+IntoAccount=Kontrolisati u knjižnom nalogu
 
 Ventilate=Kontrola
 VentilationAuto=Automatski presek
@@ -69,27 +68,27 @@ Lineofinvoice=Linija računa
 VentilatedinAccount=Kontrola uspešna u obračunskom računu
 NotVentilatedinAccount=Nije kontrolisano u obračunskom računu
 
-ACCOUNTING_SEPARATORCSV=Column separator in export file
+ACCOUNTING_SEPARATORCSV=Separator kolona u datoteci za izvoz
 
-ACCOUNTING_LIMIT_LIST_VENTILATION=Number of elements to be breakdown shown by page (maximum recommended : 50)
-ACCOUNTING_LIST_SORT_VENTILATION_TODO=Begin the sorting of the breakdown pages "Has to breakdown" by the most recent elements
-ACCOUNTING_LIST_SORT_VENTILATION_DONE=Begin the sorting of the breakdown pages "Breakdown" by the most recent elements
+ACCOUNTING_LIMIT_LIST_VENTILATION=Broj elemenata predviđeni za presek po strani (maksimalno preporučeno: 50)
+ACCOUNTING_LIST_SORT_VENTILATION_TODO=Započni sortiranje stranica za presek "Predvidjeno za presek" na osnovu najnovijih elemenata
+ACCOUNTING_LIST_SORT_VENTILATION_DONE=Započni sortiranje stranica za presek "Presek" na osnovu najnovijih elemenata
 
 AccountLength=Dužina obračunskih računa prikazanih u Dolibarru
 AccountLengthDesc=Funkcija omogućava pretvaranje dužine obračunskog računa zamenom razmaka nultim znakom . Ova funkcija utiče samo na prikaz, ne modifikuje obračunske račune registrovane u Dolibaru . Za izvoz , ova funkcija je potrebno da bude kompatibilna sa određenim softverom .
-ACCOUNTING_LENGTH_DESCRIPTION=Length for displaying product & services description in listings (Best = 50)
-ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=Length for displaying product & services account description form in listings (Best = 50)
+ACCOUNTING_LENGTH_DESCRIPTION=Dužina prikaza opisa proizvoda i usluga na spisku (Najbolje = 50)
+ACCOUNTING_LENGTH_DESCRIPTION_ACCOUNT=Dužina prikaza forme opisa proizvoda i usluga na spisku (Najbolje = 50)
 ACCOUNTING_LENGTH_GACCOUNT=Length of the general accounts
 ACCOUNTING_LENGTH_AACCOUNT=Length of the third party accounts
 
-ACCOUNTING_SELL_JOURNAL=Sell journal
-ACCOUNTING_PURCHASE_JOURNAL=Purchase journal
-ACCOUNTING_MISCELLANEOUS_JOURNAL=Miscellaneous journal
-ACCOUNTING_EXPENSEREPORT_JOURNAL=Expense report journal
-ACCOUNTING_SOCIAL_JOURNAL=Social journal
+ACCOUNTING_SELL_JOURNAL=Izveštaj prodaje
+ACCOUNTING_PURCHASE_JOURNAL=Izveštaj nabavke
+ACCOUNTING_MISCELLANEOUS_JOURNAL=Ostali izveštaji
+ACCOUNTING_EXPENSEREPORT_JOURNAL=Izveštaj troškova
+ACCOUNTING_SOCIAL_JOURNAL=Izveštaj društvenih aktivnosti
 
-ACCOUNTING_ACCOUNT_TRANSFER_CASH=Account of transfer
-ACCOUNTING_ACCOUNT_SUSPENSE=Account of wait
+ACCOUNTING_ACCOUNT_TRANSFER_CASH=Račun prometa
+ACCOUNTING_ACCOUNT_SUSPENSE=Račun čekanja
 
 ACCOUNTING_PRODUCT_BUY_ACCOUNT=Accounting account by default for bought products (if not defined in the product sheet)
 ACCOUNTING_PRODUCT_SOLD_ACCOUNT=Accounting account by default for the sold products (if not defined in the product sheet)
@@ -109,11 +108,7 @@ DelBookKeeping=Brisanje evidencije glavne knjige
 
 DescSellsJournal=Izveštaj prodaje
 DescPurchasesJournal=Izveštaj nabavke
-BankJournal=Izvod banke
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
-FinanceJournal=Finance journal
+FinanceJournal=Finansijski izveštaji
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
 CashPayment=Cash Payment
@@ -152,22 +147,28 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Transakcija nema dobar balans. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
 ##Export Journal Feature
-ExportFormat=Format of Export
-Prefixname=Prefix of export File
-Separate=Export separator
-Textframe=Frame of text value
-Headercol=Colname in header of file
-Fieldname=Name of Field
-Headername=Name in header
-Type=Type of fields
-Param=Additionnal parameters
-EnabledProduct=In Product
-EnabledTiers=In Tiers
-EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+ExportFormat=Format eksport
+Prefixname=Prefit eksportovanog fajla
+Separate=Separator za eksport
+Textframe=Okvir tekstualne vrednosti
+Headercol=Imena kolona u začelju
+Fieldname=Ime polja
+Headername=Ime u začelju
+Type=Tip polja
+Param=Dodatni parametri
+EnabledProduct=U Proizvodima
+EnabledTiers=In third party
+EnabledVat=U PDV
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/sr_RS/admin.lang b/htdocs/langs/sr_RS/admin.lang
index c81fe4c28afda6683163ea69aba69202b77179ec..b5e0e0115537371744a030832c4a2afb0cae6bcf 100644
--- a/htdocs/langs/sr_RS/admin.lang
+++ b/htdocs/langs/sr_RS/admin.lang
@@ -1,19 +1,19 @@
 # Dolibarr language file - Source file is en_US - admin
-Foundation=Foundation
-Version=Version
-VersionProgram=Version program
-VersionLastInstall=Version initial install
-VersionLastUpgrade=Version last upgrade
-VersionExperimental=Experimental
-VersionDevelopment=Development
-VersionUnknown=Unknown
-VersionRecommanded=Recommended
+Foundation=Osnova
+Version=Verzija
+VersionProgram=Verzija programa
+VersionLastInstall=Verzija početne instalacije
+VersionLastUpgrade=Verzija poslednje nadgradnje
+VersionExperimental=Eksperimentalno
+VersionDevelopment=Razvoj
+VersionUnknown=Nepoznato
+VersionRecommanded=Preporučeno
 FileCheck=Files Integrity
 FilesMissing=Missing Files
 FilesUpdated=Updated Files
 FileCheckDolibarr=Check Dolibarr Files Integrity
 XmlNotFound=Xml File of Dolibarr Integrity Not Found
-SessionId=Session ID
+SessionId=Sesija ID
 SessionSaveHandler=Handler to save sessions
 SessionSavePath=Storage session localization
 PurgeSessions=Purge of sessions
@@ -237,7 +237,7 @@ DolibarrProjectLeader=Project leader
 Developpers=Developers/contributors
 OtherDeveloppers=Other developers/contributors
 OfficialWebSite=Dolibarr international official web site
-OfficialWebSiteLocal=Local web site (%s)
+OfficialWebSiteLocal=Lokalni web sajt (%s)
 OfficialWiki=Dolibarr documentation on Wiki
 OfficialDemo=Dolibarr online demo
 OfficialMarketPlace=Official market place for external modules/addons
@@ -275,8 +275,8 @@ MAIN_DISABLE_ALL_SMS=Disable all SMS sendings (for test purposes or demos)
 MAIN_SMS_SENDMODE=Method to use to send SMS
 MAIN_MAIL_SMS_FROM=Default sender phone number for Sms sending
 FeatureNotAvailableOnLinux=Feature not available on Unix like systems. Test your sendmail program locally.
-SubmitTranslationENUS=If translation for this language is not complete or you find errors, you can correct this by editing files into directory <b>langs/%s</b> and submit modified files on dolibarr.org/forum or for developers on github.com/Dolibarr/dolibarr.
-SubmitTranslation=If translation for this language is not complete or you find errors, you can correct this by editing files into directory <b>langs/%s</b> and submit your change to www.transifex.com/dolibarr-association/dolibarr/
+SubmitTranslationENUS=Ukoliko prevod ovog jezika nije kompletan ili ukoliko pronađete greške, možete ih ispraviti editom fajlova u folderu <b>langs/%s</b> i proslediti izmene na dolibarr.org/forum ili na github.com/Dolibarr/dolibarr.
+SubmitTranslation=Ukoliko prevod za ovaj jezik nije kompletan ili ukoliko pronađete greške, možete ga ispraviti izmenom fajlova u folderu <b>langs/%s</b> i da prosledite promene na www.transifex.com/dolibarr-association/dolibarr/
 ModuleSetup=Module setup
 ModulesSetup=Modules setup
 ModuleFamilyBase=System
@@ -289,8 +289,8 @@ ModuleFamilyTechnic=Multi-modules tools
 ModuleFamilyExperimental=Experimental modules
 ModuleFamilyFinancial=Financial Modules (Accounting/Treasury)
 ModuleFamilyECM=Electronic Content Management (ECM)
-ModuleFamilyPortal=Web sites and other frontal application
-ModuleFamilyInterface=Interfaces with external systems
+ModuleFamilyPortal=Web sajtovi i druge front aplikacije
+ModuleFamilyInterface=Interfejsi sa eksternim sistemima
 MenuHandlers=Menu handlers
 MenuAdmin=Menu editor
 DoNotUseInProduction=Do not use in production
@@ -329,7 +329,7 @@ UMaskExplanation=This parameter allow you to define permissions set by default o
 SeeWikiForAllTeam=Take a look at the wiki page for full list of all actors and their organisation
 UseACacheDelay= Delay for caching export response in seconds (0 or empty for no cache)
 DisableLinkToHelpCenter=Hide link "<b>Need help or support</b>" on login page
-DisableLinkToHelp=Hide link to online help "<b>%s</b>"
+DisableLinkToHelp=Sakrijte link za online help "<b>%s</b>"
 AddCRIfTooLong=There is no automatic wrapping, so if line is out of page on documents because too long, you must add yourself carriage returns in the textarea.
 ModuleDisabled=Module disabled
 ModuleDisabledSoNoEvent=Module disabled so event never created
@@ -338,7 +338,7 @@ MinLength=Minimum length
 LanguageFilesCachedIntoShmopSharedMemory=Files .lang loaded in shared memory
 ExamplesWithCurrentSetup=Examples with current running setup
 ListOfDirectories=List of OpenDocument templates directories
-ListOfDirectoriesForModelGenODT=List of directories containing templates files with OpenDocument format.<br><br>Put here full path of directories.<br>Add a carriage return between eah directory.<br>To add a directory of the GED module, add here <b>DOL_DATA_ROOT/ecm/yourdirectoryname</b>.<br><br>Files in those directories must end with <b>.odt</b> or <b>.ods</b>.
+ListOfDirectoriesForModelGenODT=Lista foldera sa templejtima u OpenDocument formatu.<br><br>Staviti apsolutnu putanju foldera.<br>Svaki folder u listi mora biti na novoj liniji.<br>Da biste dodali folder GED modulu, ubacite ga ovde <b>DOL_DATA_ROOT/ecm/ime_vaseg_foldera</b>.<br><br>Fajlovi u tim folderima moraju imati ekstenziju <b>.odt</b> ili <b>.ods</b>.
 NumberOfModelFilesFound=Number of ODT/ODS templates files found in those directories
 ExampleOfDirectoriesForModelGen=Examples of syntax:<br>c:\\mydir<br>/home/mydir<br>DOL_DATA_ROOT/ecm/ecmdir
 FollowingSubstitutionKeysCanBeUsed=<br>To know how to create your odt document templates, before storing them in those directories, read wiki documentation:
@@ -352,7 +352,7 @@ ThemeDir=Skins directory
 ConnectionTimeout=Connexion timeout
 ResponseTimeout=Response timeout
 SmsTestMessage=Test message from __PHONEFROM__ to __PHONETO__
-ModuleMustBeEnabledFirst=Module <b>%s</b> must be enabled first if you need this feature.
+ModuleMustBeEnabledFirst=Modul <b>%s</b> mora biti aktiviran da biste koristili ovu funkcionalnost.
 SecurityToken=Key to secure URLs
 NoSmsEngine=No SMS sender manager available. SMS sender manager are not installed with default distribution (because they depends on an external supplier) but you can find some on %s
 PDF=PDF
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Hide all information related to VAT on generated PDF
 HideDescOnPDF=Hide products description on generated PDF
 HideRefOnPDF=Hide products ref. on generated PDF
 HideDetailsOnPDF=Hide products lines details on generated PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Library
 UrlGenerationParameters=Parameters to secure URLs
 SecurityTokenIsUnique=Use a unique securekey parameter for each URL
@@ -393,9 +393,9 @@ ExtrafieldLink=Link to an object
 ExtrafieldParamHelpselect=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...<br><br>In order to have the list depending on another :<br>1,value1|parent_list_code:parent_key<br>2,value2|parent_list_code:parent_key
 ExtrafieldParamHelpcheckbox=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
 ExtrafieldParamHelpradio=Parameters list have to be like key,value<br><br> for example : <br>1,value1<br>2,value2<br>3,value3<br>...
-ExtrafieldParamHelpsellist=Parameters list comes from a table<br>Syntax : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntaxt  extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
-ExtrafieldParamHelpchkbxlst=Parameters list comes from a table<br>Syntax : table_name:label_field:id_field::filter<br>Example : c_typent:libelle:id::filter<br><br>filter can be a simple test (eg active=1) to display only active value<br>You can also use $ID$ in filter witch is the current id of current object<br>To do a SELECT in filter use $SEL$<br>if you want to filter on extrafields use syntaxt  extra.fieldcode=... (where field code is the code of extrafield)<br><br>In order to have the list depending on another :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
-ExtrafieldParamHelplink=Parameters must be ObjectName:Classpath<br>Syntax : ObjectName:Classpath<br>Example : Societe:societe/class/societe.class.php
+ExtrafieldParamHelpsellist=Lista parametara dolazi iz tabele<br>Sintaksa : table_name:label_field:id_field::filter<br>Primer : c_typent:libelle:id::filter<br><br>filter može biti običan test (npr active=1) da bi se prikazala samo aktivna vrednost<br>Takođe možete koristiti $ID$ u filteru za ID aktivnog objekta<br>Za SELECT u filteru, koristite $SEL$<br>ako želite da filtrirate na extrafields koristite sintaksu extra.fieldcode=... (gde je field code extrafield kod)<br><br>Kako biste dobili listu koja zavisi od druge :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
+ExtrafieldParamHelpchkbxlst=Lista parametara dolazi iz tabele<br>Sintaksa : table_name:label_field:id_field::filter<br>Primer : c_typent:libelle:id::filter<br><br>filter može biti običan test (npr active=1) da bi se prikazala samo aktivna vrednost<br>Takođe možete koristiti $ID$ u filteru za ID aktivnog objekta<br>Za SELECT u filteru, koristite $SEL$<br>ako želite da filtrirate na extrafields koristite sintaksu extra.fieldcode=... (gde je field code extrafield kod)<br><br>Kako biste dobili listu koja zavisi od druge :<br>c_typent:libelle:id:parent_list_code|parent_column:filter
+ExtrafieldParamHelplink=Parametri moraju biti ObjectName:Classpath<br>Sintaksa : ObjectName:Classpath<br>Primer : Societe:societe/class/societe.class.php
 LibraryToBuildPDF=Library used to build PDF
 WarningUsingFPDF=Warning: Your <b>conf.php</b> contains directive <b>dolibarr_pdf_force_fpdf=1</b>. This means you use the FPDF library to generate PDF files. This library is old and does not support a lot of features (Unicode, image transparency, cyrillic, arab and asiatic languages, ...), so you may experience errors during PDF generation.<br>To solve this and have a full support of PDF generation, please download <a href="http://www.tcpdf.org/" target="_blank">TCPDF library</a>, then comment or remove the line <b>$dolibarr_pdf_force_fpdf=1</b>, and add instead <b>$dolibarr_lib_TCPDF_PATH='path_to_TCPDF_dir'</b>
 LocalTaxDesc=Some countries apply 2 or 3 taxes on each invoice line. If this is the case, choose type for second and third tax and its rate. Possible type are:<br>1 : local tax apply on products and services without vat (localtax is calculated on amount without tax)<br>2 : local tax apply on products and services including vat (localtax is calculated on amount + main tax)<br>3 : local tax apply on products without vat (localtax is calculated on amount without tax)<br>4 : local tax apply on products including vat (localtax is calculated on amount + main vat)<br>5 : local tax apply on services without vat (localtax is calculated on amount without tax)<br>6 : local tax apply on services including vat (localtax is calculated on amount + tax)
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Users & groups
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Notifications
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Donations
 Module700Desc=Donation management
 Module770Name=Expense reports
@@ -528,15 +529,15 @@ Module2600Name=API/Web services (SOAP server)
 Module2600Desc=Enable the Dolibarr SOAP server providing API services
 Module2610Name=API/Web services (REST server)
 Module2610Desc=Enable the Dolibarr REST server providing API services
-Module2660Name=Call WebServices (SOAP client)
-Module2660Desc=Enable the Dolibarr web services client (Can be used to push data/requests to external servers. Supplier orders supported only for the moment)
+Module2660Name=Poziv WebServices (SOAP client)
+Module2660Desc=Aktiviraj Dolibarr webservice klijent (može se koristiti da bi se podaci/zahtevi slali ka eksternim serverima. Za sada su podržane samo porudžbine dobavljača)
 Module2700Name=Gravatar
 Module2700Desc=Use online Gravatar service (www.gravatar.com) to show photo of users/members (found with their emails). Need an internet access
 Module2800Desc=FTP Client
 Module2900Name=GeoIPMaxmind
 Module2900Desc=GeoIP Maxmind conversions capabilities
 Module3100Name=Skype
-Module3100Desc=Add a Skype button into card of users / third parties / contacts / members
+Module3100Desc=Dodaj Skype dugme na karticu korisnika / subjekat / kontakta / članova
 Module4000Name=HRM
 Module4000Desc=Human resources management
 Module5000Name=Multi-company
@@ -557,8 +558,8 @@ Module50400Name=Accounting (advanced)
 Module50400Desc=Accounting management (double parties)
 Module54000Name=PrintIPP
 Module54000Desc=Direct print (without opening the documents) using Cups IPP interface (Printer must be visible from server, and CUPS must be installe on server).
-Module55000Name=Poll, Survey or Vote
-Module55000Desc=Module to make online polls, surveys or votes (like Doodle, Studs, Rdvz, ...)
+Module55000Name=Anketa ili Glasanje
+Module55000Desc=Modul za online ankete ili glasanja (kao Doodle, Studs, Rdvz, ...)
 Module59000Name=Margins
 Module59000Desc=Module to manage margins
 Module60000Name=Commissions
@@ -638,7 +639,7 @@ Permission162=Create/modify contracts/subscriptions
 Permission163=Activate a service/subscription of a contract
 Permission164=Disable a service/subscription of a contract
 Permission165=Delete contracts/subscriptions
-Permission171=Read trips and expenses (yours and your subordinates)
+Permission171=Pogledaj putovanja i troškove (Vaše i Vašeg tima)
 Permission172=Create/modify trips and expenses
 Permission173=Delete trips and expenses
 Permission174=Read all trips and expenses
@@ -733,7 +734,7 @@ Permission538=Export services
 Permission701=Read donations
 Permission702=Create/modify donations
 Permission703=Delete donations
-Permission771=Read expense reports (yours and your subordinates)
+Permission771=Pročitaj troškove (Vaše i Vašeg tima)
 Permission772=Create/modify expense reports
 Permission773=Delete expense reports
 Permission774=Read all expense reports (even for user not subordinates)
@@ -770,12 +771,12 @@ Permission1237=Export supplier orders and their details
 Permission1251=Run mass imports of external data into database (data load)
 Permission1321=Export customer invoices, attributes and payments
 Permission1421=Export customer orders and attributes
-Permission20001=Read leave requests (yours and your subordinates)
-Permission20002=Create/modify your leave requests
-Permission20003=Delete leave requests
-Permission20004=Read all leave requests (even user not subordinates)
-Permission20005=Create/modify leave requests for everybody
-Permission20006=Admin leave requests (setup and update balance)
+Permission20001=Pročitaj zahteve za odsustvo (Vaše i Vašeg tima)
+Permission20002=Kreiraj/izmeni svoje zahteve za odsustvo
+Permission20003=Obriši zahteve za odsustvo
+Permission20004=Pročitaj sve zahteve za odsustvo
+Permission20005=Kreiraj/izmeni zahteve za odsustvo za sve korisnike
+Permission20006=Podešavanja zahteva za odsustvo (podešavanja i ažuriranje stanja)
 Permission23001=Read Scheduled job
 Permission23002=Create/update Scheduled job
 Permission23003=Delete Scheduled job
@@ -804,7 +805,7 @@ Permission59003=Read every user margin
 DictionaryCompanyType=Thirdparties type
 DictionaryCompanyJuridicalType=Juridical kinds of thirdparties
 DictionaryProspectLevel=Prospect potential level
-DictionaryCanton=State/Province
+DictionaryCanton=Država/Provincija
 DictionaryRegion=Regions
 DictionaryCountry=Countries
 DictionaryCurrency=Currencies
@@ -930,8 +931,8 @@ DefaultMenuSmartphoneManager=Smartphone menu manager
 Skin=Skin theme
 DefaultSkin=Default skin theme
 MaxSizeList=Max length for list
-DefaultMaxSizeList=Default max length for lists
-DefaultMaxSizeShortList=Default max length for short lists (ie in customer card)
+DefaultMaxSizeList=Default max dužina za liste
+DefaultMaxSizeShortList=Default max dužina kratkih lista (npr u kartici klijenta)
 MessageOfDay=Message of the day
 MessageLogin=Login page message
 PermanentLeftSearchForm=Permanent search form on left menu
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Delays before warning
 DelaysOfToleranceBeforeWarning=Tolerance delays before warning
 DelaysOfToleranceDesc=This screen allows you to define the tolerated delays before an alert is reported on screen with picto %s for each late element.
 Delays_MAIN_DELAY_ACTIONS_TODO=Delay tolerance (in days) before alert on planned events not yet realised
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on orders not yet processed
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on suppliers orders not yet processed
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Delay tolerance (in days) before alert on proposals to close
@@ -974,7 +976,7 @@ Delays_MAIN_DELAY_CUSTOMER_BILLS_UNPAYED=Tolerence delay (in days) before alert
 Delays_MAIN_DELAY_TRANSACTIONS_TO_CONCILIATE=Tolerance delay (in days) before alert on pending bank reconciliation
 Delays_MAIN_DELAY_MEMBERS=Tolerance delay (in days) before alert on delayed membership fee
 Delays_MAIN_DELAY_CHEQUES_TO_DEPOSIT=Tolerance delay (in days) before alert for cheques deposit to do
-Delays_MAIN_DELAY_EXPENSEREPORTS=Tolerance delay (in days) before alert for expense reports to approve
+Delays_MAIN_DELAY_EXPENSEREPORTS=Prag tolerancije (u danima) pre pojavljivanja upozorenja za odobrenje troškova
 SetupDescription1=All parameters available in the setup area allow you to setup Dolibarr before starting using it.
 SetupDescription2=The 2 most important setup steps are the 2 first ones in the left setup menu, this means Company/foundation setup page and Modules setup page:
 SetupDescription3=Parameters in menu <a href="%s">Setup -> Company/foundation</a> are required because input information is used on Dolibarr displays and to modify Dolibarr behaviour (for example for features related to your country).
@@ -1002,7 +1004,7 @@ SystemAreaForAdminOnly=This area is available for administrator users only. None
 CompanyFundationDesc=Edit on this page all known information of the company or foundation you need to manage (For this, click on "Modify" button at bottom of page)
 DisplayDesc=You can choose each parameter related to the Dolibarr look and feel here
 AvailableModules=Available modules
-DeprecatedModules=Deprecated modules
+DeprecatedModules=Zastareli moduli
 ToActivateModule=To activate modules, go on setup Area (Home->Setup->Modules).
 SessionTimeOut=Time out for session
 SessionExplanation=This number guarantee that session will never expire before this delay, if the session cleaner is done by Internal PHP session cleaner (and nothing else). Internal PHP session cleaner does not guaranty that session will expire just after this delay. It will expire, after this delay, and when the session cleaner is ran, so every <b>%s/%s</b> access, but only during access made by other sessions.<br>Note: on some servers with an external session cleaning mechanism (cron under debian, ubuntu ...), the sessions can be destroyed after a period defined by the default <strong>session.gc_maxlifetime</strong>, no matter what the value entered here.
@@ -1031,7 +1033,7 @@ NoEventOrNoAuditSetup=No security event has been recorded yet. This can be norma
 NoEventFoundWithCriteria=No security event has been found for such search criterias.
 SeeLocalSendMailSetup=See your local sendmail setup
 BackupDesc=To make a complete backup of Dolibarr, you must:
-BackupDesc2=Save content of documents directory (<b>%s</b>) that contains all uploaded and generated files (So it includes all dump files generated at step 1).
+BackupDesc2=Sačuvaj sadržaj foldera (<b>%s</b>) koji sadrži sve uploadovane i generisane fajlove (tako da sadrži sve dump fajlove generisane u koraku 1).
 BackupDesc3=Save content of your database (<b>%s</b>) into a dump file. For this, you can use following assistant.
 BackupDescX=Archived directory should be stored in a secure place.
 BackupDescY=The generated dump file should be stored in a secure place.
@@ -1087,6 +1089,7 @@ PathDirectory=Directory
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1110,10 +1113,10 @@ GetBarCode=Get barcode
 EmptyNumRefModelDesc=The code is free. This code can be modified at any time.
 ##### Module password generation
 PasswordGenerationStandard=Return a password generated according to internal Dolibarr algorithm: 8 characters containing shared numbers and characters in lowercase.
-PasswordGenerationNone=Do not suggest any generated password. Password must be typed in manually.
-PasswordGenerationPerso=Return a password according to your personally defined configuration.
-SetupPerso=According to your configuration
-PasswordPatternDesc=Password pattern description
+PasswordGenerationNone=Ne predlaži generisanje lozinki. Lozinke moraju biti unete ručno.
+PasswordGenerationPerso=Povrati lozinku po konfiguraciji koju ste definisali.
+SetupPerso=Prema Vašoj konfiguraciji
+PasswordPatternDesc=Opis patterna lozinke
 ##### Users setup #####
 UserGroupSetup=Users and groups module setup
 GeneratePassword=Suggest a generated password
@@ -1124,7 +1127,7 @@ DisableForgetPasswordLinkOnLogonPage=Do not show the link "Forget password" on l
 UsersSetup=Users module setup
 UserMailRequired=EMail required to create a new user
 ##### HRM setup #####
-HRMSetup=HRM module setup
+HRMSetup=Podešavanja HRM modula
 ##### Company setup #####
 CompanySetup=Companies module setup
 CompanyCodeChecker=Module for third parties code generation and checking (customer or supplier)
@@ -1177,7 +1180,7 @@ CreditNotePDFModules=Credit note document models
 CreditNote=Credit note
 CreditNotes=Credit notes
 ForceInvoiceDate=Force invoice date to validation date
-AllowCreditNoteWithoutRelatedInvoice=Allow to create credit note without a related invoice
+AllowCreditNoteWithoutRelatedInvoice=Dozvoli kreiranje kreditne note bez odgovarajuće fakture
 DisableRepeatable=Disable repeatable invoices
 SuggestedPaymentModesIfNotDefinedInInvoice=Suggested payments mode on invoice by default if not defined for invoice
 EnableEditDeleteValidInvoice=Enable the possibility to edit/delete valid invoice with no payment
@@ -1185,7 +1188,7 @@ SuggestPaymentByRIBOnAccount=Suggest payment by withdraw on account
 SuggestPaymentByChequeToAddress=Suggest payment by cheque to
 FreeLegalTextOnInvoices=Free text on invoices
 WatermarkOnDraftInvoices=Watermark on draft invoices (none if empty)
-PaymentsNumberingModule=Payments numbering model
+PaymentsNumberingModule=Model numerisanja uplata
 ##### Proposals #####
 PropalSetup=Commercial proposals module setup
 CreateForm=Create forms
@@ -1201,13 +1204,13 @@ FreeLegalTextOnProposal=Free text on commercial proposals
 WatermarkOnDraftProposal=Watermark on draft commercial proposals (none if empty)
 BANK_ASK_PAYMENT_BANK_DURING_PROPOSAL=Ask for bank account destination of proposal
 ##### SupplierProposal #####
-SupplierProposalSetup=Price requests suppliers module setup
-SupplierProposalNumberingModules=Price requests suppliers numbering models
-SupplierProposalPDFModules=Price requests suppliers documents models
-FreeLegalTextOnSupplierProposal=Free text on price requests suppliers
-WatermarkOnDraftSupplierProposal=Watermark on draft price requests suppliers (none if empty)
-BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_PROPOSAL=Ask for bank account destination of price request
-WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER=Ask for Warehouse Source for order
+SupplierProposalSetup=Podešavanja modula zahteva za cene doavljača
+SupplierProposalNumberingModules=Modeli numerisanja zahteva za cene dobavljača
+SupplierProposalPDFModules=Modeli dokumenata zahteva za cene dobavljača
+FreeLegalTextOnSupplierProposal=Slobodan tekst za zahteve za cene dobavljača
+WatermarkOnDraftSupplierProposal=Vodeni žig na draft verziji zahteva za cene dobavljača (bez oznake ako je prazno)
+BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_PROPOSAL=Pitaj bankovni račun destinacije zahteva za cene
+WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER=Pitaj za izvorni magacin za narudžbinu
 ##### Orders #####
 OrdersSetup=Order management setup
 OrdersNumberingModules=Orders numbering models
@@ -1235,7 +1238,7 @@ ContractsNumberingModules=Contracts numbering modules
 TemplatePDFContracts=Contracts documents models
 FreeLegalTextOnContracts=Free text on contracts
 WatermarkOnDraftContractCards=Watermark on draft contracts (none if empty)
-ContractsAndServices=List of contracts and services
+ContractsAndServices=Lista ugovora i usluga
 ##### Members #####
 MembersSetup=Members module setup
 MemberMainOptions=Main options
@@ -1408,16 +1411,16 @@ ModifyProductDescAbility=Personalization of product descriptions in forms
 ViewProductDescInFormAbility=Visualization of product descriptions in the forms (otherwise as popup tooltip)
 MergePropalProductCard=Activate in product/service Attached Files tab an option to merge product PDF document to proposal PDF azur if product/service is in the proposal
 ViewProductDescInThirdpartyLanguageAbility=Visualization of products descriptions in the thirdparty language
-UseMaskOnClone=Use product next ref when we clone a product%s (available if mask configured)
+UseMaskOnClone=Koristi narednu referencu proizvoda prilikom dupliranja proizvoda %s (dostupna ukoliko je konfigurisan mask)
 UseSearchToSelectProductTooltip=Also if you have a large number of product (> 100 000), you can increase speed by setting constant PRODUCT_DONOTSEARCH_ANYWHERE to 1 in Setup->Other. Search will then be limited to start of string.
 UseSearchToSelectProduct=Use a search form to choose a product (rather than a drop-down list).
 UseEcoTaxeAbility=Support Eco-Taxe (WEEE)
 SetDefaultBarcodeTypeProducts=Default barcode type to use for products
 SetDefaultBarcodeTypeThirdParties=Default barcode type to use for third parties
-UseUnits=Define a unit of measure for Quantity during order, proposal or invoice lines edition
+UseUnits=Definiši jedinicu merenja za Količinu prilikom generisanja porudžbina, ponuda ili faktura
 ProductCodeChecker= Module for product code generation and checking (product or service)
 ProductOtherConf= Product / Service configuration
-IsNotADir=is not a directory!
+IsNotADir=Nije folder!
 ##### Syslog #####
 SyslogSetup=Logs module setup
 SyslogOutput=Logs outputs
@@ -1430,7 +1433,7 @@ YouCanUseDOL_DATA_ROOT=You can use DOL_DATA_ROOT/dolibarr.log for a log file in
 ErrorUnknownSyslogConstant=Constant %s is not a known Syslog constant
 OnlyWindowsLOG_USER=Windows only supports LOG_USER
 SyslogSentryDSN=Sentry DSN
-SyslogSentryFromProject=DSN from your Sentry project
+SyslogSentryFromProject=DSN iz Vašeg Sentry projekta
 ##### Donations #####
 DonationsSetup=Donation module setup
 DonationsReceiptModel=Template of donation receipt
@@ -1474,7 +1477,7 @@ FixedEmailTarget=Fixed email target
 SendingsSetup=Sending module setup
 SendingsReceiptModel=Sending receipt model
 SendingsNumberingModules=Sendings numbering modules
-SendingsAbility=Support shipping sheets for customer deliveries
+SendingsAbility=Podrška za listove isporuke za isporuke klijentima.
 NoNeedForDeliveryReceipts=In most cases, sendings receipts are used both as sheets for customer deliveries (list of products to send) and sheets that is recevied and signed by customer. So product deliveries receipts is a duplicated feature and is rarely activated.
 FreeLegalTextOnShippings=Free text on shipments
 ##### Deliveries #####
@@ -1529,7 +1532,7 @@ DetailLevel=Level (-1:top menu, 0:header menu, >0 menu and sub menu)
 ModifMenu=Menu change
 DeleteMenu=Delete menu entry
 ConfirmDeleteMenu=Are you sure you want to delete menu entry <b>%s</b> ?
-FailedToInitializeMenu=Failed to initialize menu
+FailedToInitializeMenu=Greška prilikom inicijalizacije menija
 ##### Tax #####
 TaxSetup=Taxes, social or fiscal taxes and dividends module setup
 OptionVatMode=VAT due
@@ -1555,14 +1558,14 @@ AgendaSetup=Events and agenda module setup
 PasswordTogetVCalExport=Key to authorize export link
 PastDelayVCalExport=Do not export event older than
 AGENDA_USE_EVENT_TYPE=Use events types (managed into menu Setup -> Dictionary -> Type of agenda events)
-AGENDA_USE_EVENT_TYPE_DEFAULT=Set automatically this default value for type of event into event create form
+AGENDA_USE_EVENT_TYPE_DEFAULT=Automatski podesi ovu default vrednost za tip događaja prilikom kreiranja događaja
 AGENDA_DEFAULT_FILTER_TYPE=Set automatically this type of event into search filter of agenda view
 AGENDA_DEFAULT_FILTER_STATUS=Set automatically this status for events into search filter of agenda view
 AGENDA_DEFAULT_VIEW=Which tab do you want to open by default when selecting menu Agenda
 ##### ClickToDial #####
-ClickToDialDesc=This module allows to make phone numbers clickable. A click on this icon will call make your phone to call the phone number. This can be used to call a call center system from Dolibarr that can call the phone number on a SIP system for example.
-ClickToDialUseTelLink=Use just a link "tel:" on phone numbers
-ClickToDialUseTelLinkDesc=Use this method if your users have a softphone or a software interface installed on same computer than the browser, and called when you click on a link in your browser that start with "tel:". If you need a full server solution (no need of local software installation), you must set this to "No" and fill next field.
+ClickToDialDesc=Ovaj modul omogućava klik na brojeve telefona. Klik na ovu ikonu će izvršiti poziv sa Vašeg telefona na odgovarajući broj. Ova funkcionalnost se može koristiti ukoliko se Dolibarr poveže sa call center sistemom koji može pozvati telefonski broj sa SIP sistema.
+ClickToDialUseTelLink=Samo koristi link "tel:" na telefonskim brojevima
+ClickToDialUseTelLinkDesc=Koristi ovu metodu ako korisnici imaju softphone ili softverski interfejs instaliran na istom računaru gde je i browser - biće pozvana kada kliknete na link u browseru koji počinje sa "tel:". Ukoliko Vam je potrebno celokupno server rešenje (bez instalacije softvera), ovde ostavie "Ne" i popunite sledeće polje.
 ##### Point Of Sales (CashDesk) #####
 CashDesk=Point of sales
 CashDeskSetup=Point of sales module setup
@@ -1588,7 +1591,7 @@ EndPointIs=SOAP clients must send their requests to the Dolibarr endpoint availa
 ApiSetup=API module setup
 ApiDesc=By enabling this module, Dolibarr become a REST server to provide miscellaneous web services.
 KeyForApiAccess=Key to use API (parameter "api_key")
-ApiProductionMode=Enable production mode (this will activate use of a caches for services management)
+ApiProductionMode=Aktiviraj mod produkcije (ovo će aktivirati cache za servis management)
 ApiEndPointIs=You can access to the API at url
 ApiExporerIs=You can explore the API at url
 OnlyActiveElementsAreExposed=Only elements from enabled modules are exposed
@@ -1625,7 +1628,7 @@ TaskModelModule=Tasks reports document model
 UseSearchToSelectProject=Use autocompletion fields to choose project (instead of using a list box)
 ##### ECM (GED) #####
 ECMSetup = GED Setup
-ECMAutoTree = Show also the automatic tree folder and document
+ECMAutoTree = Prikaži i automatsku strukturu foldera i dokumenata
 ##### Fiscal Year #####
 FiscalYears=Fiscal years
 FiscalYear=Fiscal year
@@ -1663,14 +1666,15 @@ SomethingMakeInstallFromWebNotPossible2=For this reason, process to upgrade desc
 InstallModuleFromWebHasBeenDisabledByFile=Install of external module from application has been disabled by your administrator. You must ask him to remove the file <strong>%s</strong> to allow this feature.
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
-HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
-LinkColor=Color of links
+HighlightLinesColor=Boja kojom će linija biti označena kada se mišem pređe preko nje (ostavite prazno kako linija ne bi bila označena)
+TextTitleColor=Color of page title
+LinkColor=Boja linkova
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
 BackgroundColor=Background color
 TopMenuBackgroundColor=Background color for Top menu
 LeftMenuBackgroundColor=Background color for Left menu
-BackgroundTableTitleColor=Background color for Table title line
+BackgroundTableTitleColor=Pozadinska boja za naslovnu liniju tabela
 BackgroundTableLineOddColor=Background color for odd table lines
 BackgroundTableLineEvenColor=Background color for even table lines
 MinimumNoticePeriod=Minimum notice period (Your leave request must be done before this delay)
@@ -1680,15 +1684,15 @@ UnicodeCurrency=Enter here between braces, list of byte number that represent th
 PositionIntoComboList=Position of line into combo lists
 SellTaxRate=Sale tax rate
 RecuperableOnly=Yes for VAT "Non Perçue Récupérable" dedicated for some state in France. Keep value to "No" in all other cases.
-UrlTrackingDesc=If the provider or transport service offer a page or web site to check status of your shipping, you can enter it here. You can use the key {TRACKID} into URL parameters so the system will replace it with value of tracking number user entered into shipment card.
+UrlTrackingDesc=Ukoliko transporter nudi web stranu za konsultovanje statusa isporuke, možete je uneti ovde. Možete koristiti reč {TRACKID} u parametrima URL-a kako bi ga sistem zamenio vrednošću broja isporuke koji će korisnik uneti u karticu isporuke.
 OpportunityPercent=When you create an opportunity, you will defined an estimated amount of project/lead. According to status of opportunity, this amount may be multiplicated by this rate to evaluate global amount all your opportunities may generate. Value is percent (between 0 and 100).
 TemplateForElement=This template record is dedicated to which element
 TypeOfTemplate=Type of template
 TemplateIsVisibleByOwnerOnly=Template is visible by owner only
 FixTZ=TimeZone fix
-FillFixTZOnlyIfRequired=Example: +2 (fill only if problem experienced)
-ExpectedChecksum=Expected Checksum
-CurrentChecksum=Current Checksum
+FillFixTZOnlyIfRequired=Primer: +2 (uneti samo u slučaju problema)
+ExpectedChecksum=Očekivani checksum
+CurrentChecksum=Trenutni checksum
 MailToSendProposal=To send customer proposal
 MailToSendOrder=To send customer order
 MailToSendInvoice=To send customer invoice
@@ -1698,10 +1702,10 @@ MailToSendSupplierRequestForQuotation=To send quotation request to supplier
 MailToSendSupplierOrder=To send supplier order
 MailToSendSupplierInvoice=To send supplier invoice
 MailToThirdparty=To send email from thirdparty page
-ByDefaultInList=Show by default on list view
-YouUseLastStableVersion=You use the last stable version
-TitleExampleForMajorRelease=Example of message you can use to announce this major release (feel free to use it on your web sites)
-TitleExampleForMaintenanceRelease=Example of message you can use to announce this maintenance release (feel free to use it on your web sites)
-ExampleOfNewsMessageForMajorRelease=Dolibarr ERP & CRM %s is available. Version %s is a major release with a lot of new features for both users and developers. You can download it from the download area of http://www.dolibarr.org portal (subdirectory Stable versions). You can read <a href="https://github.com/Dolibarr/dolibarr/blob/develop/ChangeLog">ChangeLog</a> for complete list of changes.
-ExampleOfNewsMessageForMaintenanceRelease=Dolibarr ERP & CRM %s is available. Version %s is a maintenance version, so it contains only fixes of bugs. We recommend everybody using an older version to upgrade to this one. As any maintenance release, no new features, nor data structure change is present into this version. You can download it from the download area of http://www.dolibarr.org portal (subdirectory Stable versions). You can read <a href="https://github.com/Dolibarr/dolibarr/blob/develop/ChangeLog">ChangeLog</a> for complete list of changes.
-MultiPriceRuleDesc=When option "Several level of prices per product/service" is on, you can define different prices (one per price level) for each product. To save you time, you can enter here rule to have price for each level autocalculated according to price of first level, so you will have to enter only price for first level on each product. This page is here to save you time and can be usefull only if your prices for each leve are relative to first level. You can ignore this page in most cases.
+ByDefaultInList=Prikaži po defaultu na prikazu liste
+YouUseLastStableVersion=Koristite poslednju stabilnu verziju
+TitleExampleForMajorRelease=Primer poruke koju možete koristiti da biste najavili novu verziju (možete je koristiti na Vašim sajtovima)
+TitleExampleForMaintenanceRelease=Primer poruke koju možete koristiti da biste najavili novu ispravku (možete je koristiti na Vašim sajtovima)
+ExampleOfNewsMessageForMajorRelease=Dolibarr ERP & CRM %s je dostupan. Verzija %s je major verzija sa novim funkcionalnostima za korisnike i programere. Možete je preuzeti iz download sekcije na http://www.dolibarr.org portalu (folder Stable versions). Možete pročitati <a href="https://github.com/Dolibarr/dolibarr/blob/develop/ChangeLog">ChangeLog</a> za kompletu listu izmena.
+ExampleOfNewsMessageForMaintenanceRelease=Dolibarr ERP & CRM %s je dostupan. Verzija %s je maintenance verzija i sadrži samo ispravke bugova. Svakome ko koristi stariju verziju preporučujemo da je ažurira. Kao i svaka maintenance verzija, ona ne sadrži nove funkcionalnosti, niti izmene struktura podataka. Možete je preuzeti iz download sekcije na http://www.dolibarr.org portalu (folder Stable versions). Možete pročitati <a href="https://github.com/Dolibarr/dolibarr/blob/develop/ChangeLog">ChangeLog</a> za kompletu listu izmena.
+MultiPriceRuleDesc=Kada je uključena opcija "Više nivoa cene za proizvod/uslugu", možete definisati različite cene za svaki proizvod (po jednu za svaki nivo cene). Da biste uštedeli vreme, ovde možete uneti pravilo za automatsko računanje cene na svim nivoima na osnovu cene koju unesete za prvi nivo. Ova strana ima za cilj da uštedi Vaše vreme i može biti korisna samo ukoliko su cene za svaki od nivoa u funkciji s prvim nivoom cene. U većini slučajeva možete ignorisati ovu stranu.
diff --git a/htdocs/langs/sr_RS/agenda.lang b/htdocs/langs/sr_RS/agenda.lang
index d8776508edcf523910ab3b06f56e1c9feb947af3..4d12755fb6b1b7795d9f231c84d277b9d439b839 100644
--- a/htdocs/langs/sr_RS/agenda.lang
+++ b/htdocs/langs/sr_RS/agenda.lang
@@ -1,74 +1,76 @@
 # Dolibarr language file - Source file is en_US - agenda
 IdAgenda=ID event
-Actions=Events
-ActionsArea=Events area (Actions and tasks)
+Actions=Događaji
+ActionsArea=Opseg događaja (akcije i zadaci)
 Agenda=Agenda
-Agendas=Agendas
-Calendar=Calendar
-Calendars=Calendars
-LocalAgenda=Internal calendar
+Agendas=Agende
+Calendar=Kalendar
+Calendars=Kalendari
+LocalAgenda=Interni kalendar
 ActionsOwnedBy=Event owned by
-AffectedTo=Assigned to
-DoneBy=Done by
+AffectedTo=Dodeljeno
+DoneBy=Urađeno
 Event=Event
-Events=Events
-EventsNb=Number of events
-MyEvents=My events
-OtherEvents=Other events
-ListOfActions=List of events
-Location=Location
+Events=Događaj
+EventsNb=Broj događaja
+MyEvents=Moji događaji
+OtherEvents=Drugi događaji
+ListOfActions=Lista događaja
+Location=Lokacija
 EventOnFullDay=Event on all day(s)
-SearchAnAction= Search an event/task
-MenuToDoActions=All incomplete events
-MenuDoneActions=All terminated events
-MenuToDoMyActions=My incomplete events
-MenuDoneMyActions=My terminated events
-ListOfEvents=List of events (internal calendar)
-ActionsAskedBy=Events reported by
-ActionsToDoBy=Events assigned to
-ActionsDoneBy=Events done by
+SearchAnAction= Potraži događaj/zadatak
+MenuToDoActions=Svi nezavršeni događaji
+MenuDoneActions=Svi završeni događaji
+MenuToDoMyActions=Moji nezavršeni događaji
+MenuDoneMyActions=Moji završeni događaji
+ListOfEvents=Lista događaja (interni kalendar)
+ActionsAskedBy=Događaje prijavio
+ActionsToDoBy=Događaji dodeljeni
+ActionsDoneBy=Događaje završio
 ActionsForUser=Events for user
 ActionsForUsersGroup=Events for all users of group
 ActionAssignedTo=Event assigned to
-AllMyActions= All my events/tasks
-AllActions= All events/tasks
-ViewCal=Month view
-ViewDay=Day view
-ViewWeek=Week view
+AllMyActions= Svi moji događaji/zadaci
+AllActions= Svi događaji/zadaci
+ViewCal=Mesečni pregled
+ViewDay=Dnevni pregled
+ViewWeek=Nedeljni pregled
+ViewYear=Year view
 ViewPerUser=Per user view
-ViewWithPredefinedFilters= View with predefined filters
-AutoActions= Automatic filling
-AgendaAutoActionDesc= Define here events for which you want Dolibarr to create automatically an event in agenda. If nothing is checked (by default), only manual actions will be included in agenda.
-AgendaSetupOtherDesc= This page provides options to allow export of your Dolibarr events into an external calendar (thunderbird, google calendar, ...)
+ViewPerType=Per type view
+ViewWithPredefinedFilters= Pogledaj po unpred zadatim filterima
+AutoActions= Automatsko popunjavanje
+AgendaAutoActionDesc= Definiši ovde događaje za koje želiš da Dolibarr automatski kreira događaj u agendi. Ukoliko ništa nije označeno (), samo manuelne akcije će biti uključene u agendi.
+AgendaSetupOtherDesc= Ova stranica omogućava izvoz vaših Dolibarr događaja u eksterni kalendar (thunderbird, google kalendar, ...)
 AgendaExtSitesDesc=This page allows to declare external sources of calendars to see their events into Dolibarr agenda.
 ActionsEvents=Events for which Dolibarr will create an action in agenda automatically
-PropalValidatedInDolibarr=Proposal %s validated
-InvoiceValidatedInDolibarr=Invoice %s validated
+PropalValidatedInDolibarr=Ponuda %s je potvrđena
+InvoiceValidatedInDolibarr=Faktura %s je potvrđena
 InvoiceValidatedInDolibarrFromPos=Invoice %s validated from POS
-InvoiceBackToDraftInDolibarr=Invoice %s go back to draft status
-InvoiceDeleteDolibarr=Invoice %s deleted
-OrderValidatedInDolibarr=Order %s validated
+InvoiceBackToDraftInDolibarr=Faktura %s je vraćena na nacrt
+InvoiceDeleteDolibarr=Faktura %s je obrisana
+OrderValidatedInDolibarr=Račun %s je potvrđen
 OrderDeliveredInDolibarr=Order %s classified delivered
-OrderCanceledInDolibarr=Order %s canceled
+OrderCanceledInDolibarr=Račun %s je otkazan
 OrderBilledInDolibarr=Order %s classified billed
-OrderApprovedInDolibarr=Order %s approved
+OrderApprovedInDolibarr=Račun %s je odobren
 OrderRefusedInDolibarr=Order %s refused
-OrderBackToDraftInDolibarr=Order %s go back to draft status
-ProposalSentByEMail=Commercial proposal %s sent by EMail
-OrderSentByEMail=Customer order %s sent by EMail
-InvoiceSentByEMail=Customer invoice %s sent by EMail
-SupplierOrderSentByEMail=Supplier order %s sent by EMail
-SupplierInvoiceSentByEMail=Supplier invoice %s sent by EMail
-ShippingSentByEMail=Shipment %s sent by EMail
+OrderBackToDraftInDolibarr=Račun %s je vraćen na nacrt
+ProposalSentByEMail=Komercijalna ponuda %s  poslata mejlom
+OrderSentByEMail=Račun klijenta %s poslat mejlom
+InvoiceSentByEMail=Faktura klijenta %s poslata mejlom
+SupplierOrderSentByEMail=Račun dobavljača %s poslat mejlom
+SupplierInvoiceSentByEMail=Faktura dobavljača %s poslata mejlom
+ShippingSentByEMail=Isporuka %s poslata mejlom
 ShippingValidated= Shipment %s validated
 InterventionSentByEMail=Intervention %s sent by EMail
-NewCompanyToDolibarr= Third party created
-DateActionPlannedStart= Planned start date
-DateActionPlannedEnd= Planned end date
-DateActionDoneStart= Real start date
-DateActionDoneEnd= Real end date
-DateActionStart= Start date
-DateActionEnd= End date
+NewCompanyToDolibarr= Subjekt kreiran
+DateActionPlannedStart= Planirani početak
+DateActionPlannedEnd= Planirani kraj
+DateActionDoneStart= Stvarni početak
+DateActionDoneEnd= Stvarni kraj
+DateActionStart= Početak
+DateActionEnd= Kraj
 AgendaUrlOptions1=You can also add following parameters to filter output:
 AgendaUrlOptions2=<b>login=%s</b> to restrict output to actions created by or assigned to user <b>%s</b>.
 AgendaUrlOptions3=<b>logina=%s</b> to restrict output to actions owned by a user <b>%s</b>.
@@ -90,8 +92,8 @@ ExtSiteUrlAgenda=URL to access .ical file
 ExtSiteNoLabel=No Description
 WorkingTimeRange=Working time range
 WorkingDaysRange=Working days range
-VisibleTimeRange=Visible time range
-VisibleDaysRange=Visible days range
+VisibleTimeRange=Vidljiv vremenski period
+VisibleDaysRange=Vidljiv vremenski period
 AddEvent=Create event
 MyAvailability=My availability
 ActionType=Event type
diff --git a/htdocs/langs/sr_RS/banks.lang b/htdocs/langs/sr_RS/banks.lang
index a1e05481be9cdc0c637c012b140f1378ea0a652e..f464b2757fa9ee2d0fccedf417476072c9be6191 100644
--- a/htdocs/langs/sr_RS/banks.lang
+++ b/htdocs/langs/sr_RS/banks.lang
@@ -165,8 +165,8 @@ DeleteARib=Delete BAN record
 ConfirmDeleteRib=Are you sure you want to delete this BAN record ?
 StartDate=Start date
 EndDate=End date
-RejectCheck=Check returned
+RejectCheck=Vraćen ček
 ConfirmRejectCheck=Are you sure you want to mark this check as rejected ?
-RejectCheckDate=Date the check was returned
-CheckRejected=Check returned
-CheckRejectedAndInvoicesReopened=Check returned and invoices reopened
+RejectCheckDate=Datum vraćanja čeka
+CheckRejected=Vraćen ček
+CheckRejectedAndInvoicesReopened=Ček vraćen i faktura ponovo otvorena
diff --git a/htdocs/langs/sr_RS/bills.lang b/htdocs/langs/sr_RS/bills.lang
index 49a197da00469297d78f2e31b0b5dd2d6d618835..203830a62c9f7a86b56db24d399d8a50fe720c70 100644
--- a/htdocs/langs/sr_RS/bills.lang
+++ b/htdocs/langs/sr_RS/bills.lang
@@ -73,7 +73,9 @@ PaymentsAlreadyDone=Plaćanje već izvršeno
 PaymentsBackAlreadyDone=Izvršene refundacije
 PaymentRule=Pravilo za plaćanje
 PaymentMode=Tip plaćanja
-PaymentModeShort=Payment type
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
+PaymentModeShort=Tip uplate
 PaymentTerm=Payment term
 PaymentConditions=Uslovi plaćanja
 PaymentConditionsShort=Uslovi plaćanja
@@ -88,7 +90,7 @@ ClassifyCanceled=Klasifikuj "napušteno"
 ClassifyClosed=Klasifikuj "zatvoreno"
 ClassifyUnBilled=Classify 'Unbilled'
 CreateBill=Novi račun
-CreateCreditNote=Create credit note
+CreateCreditNote=Kreiraj kreditnu notu
 AddBill=Novi račun ili knjižno odobrenje
 AddToDraftInvoices=Add to draft invoice
 DeleteBill=Obriši račun
@@ -184,6 +186,7 @@ ShowInvoice=Show invoice
 ShowInvoiceReplace=Show replacing invoice
 ShowInvoiceAvoir=Show credit note
 ShowInvoiceDeposit=Show deposit invoice
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Show payment
 AlreadyPaid=Already paid
 AlreadyPaidBack=Already paid back
@@ -215,12 +218,13 @@ DateEcheance=Due date limit
 DateInvoice=Invoice date
 NoInvoice=No invoice
 ClassifyBill=Classify invoice
-SupplierBillsToPay=Unpaid supplier invoices
-CustomerBillsUnpaid=Unpaid customer invoices
+SupplierBillsToPay=Neplaćene fakture dobavljača
+CustomerBillsUnpaid=Neplaćene fakture klijenata
 NonPercuRecuperable=Non-recoverable
 SetConditions=Set payment terms
 SetMode=Set payment mode
 Billed=Billed
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=This amount has been abandoned (customer said to be a bad
 HelpAbandonOther=This amount has been abandoned since it was an error (wrong customer or invoice replaced by an other for example)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Payment id
+PaymentRef=Payment ref.
 InvoiceId=Invoice id
 InvoiceRef=Invoice ref.
 InvoiceDateCreation=Invoice creation date
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Immediate
@@ -327,14 +336,14 @@ PaymentTypeCB=Credit card
 PaymentTypeShortCB=Credit card
 PaymentTypeCHQ=Check
 PaymentTypeShortCHQ=Check
-PaymentTypeTIP=Interbank Payment
-PaymentTypeShortTIP=Interbank Payment
+PaymentTypeTIP=Interbank uplata
+PaymentTypeShortTIP=Interbank uplata
 PaymentTypeVAD=On line payment
 PaymentTypeShortVAD=On line payment
-PaymentTypeTRA=Traite
-PaymentTypeShortTRA=Traite
-PaymentTypeFAC=Factor
-PaymentTypeShortFAC=Factor
+PaymentTypeTRA=Obrađeno
+PaymentTypeShortTRA=Obrađeno
+PaymentTypeFAC=Faktor
+PaymentTypeShortFAC=Faktor
 BankDetails=Bank details
 BankCode=Bank code
 DeskCode=Desk code
@@ -349,7 +358,7 @@ ExtraInfos=Extra infos
 RegulatedOn=Regulated on
 ChequeNumber=Check N°
 ChequeOrTransferNumber=Check/Transfer N°
-ChequeMaker=Check/Transfer transmitter
+ChequeMaker=Izdavač čeka/transfera
 ChequeBank=Bank of Check
 CheckBank=Check
 NetToBePaid=Net to be paid
@@ -380,8 +389,8 @@ ChequesReceipts=Checks receipts
 ChequesArea=Checks deposits area
 ChequeDeposits=Checks deposits
 Cheques=Checks
-DepositId=Id deposit
-NbCheque=Number of checks
+DepositId=ID depozita
+NbCheque=Broj čekova
 CreditNoteConvertedIntoDiscount=This credit note or deposit invoice has been converted into %s
 UsBillingContactAsIncoiveRecipientIfExist=Use customer billing contact address instead of third party address as recipient for invoices
 ShowUnpaidAll=Show all unpaid invoices
@@ -393,6 +402,7 @@ Reported=Delayed
 DisabledBecausePayments=Not possible since there are some payments
 CantRemovePaymentWithOneInvoicePaid=Can't remove payment since there is at least one invoice classified paid
 ExpectedToPay=Expected payment
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Paid by this payment
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,8 +414,9 @@ NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third pa
 RevenueStamp=Revenue stamp
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Invoice PDF template Crabe. A complete invoice template (recommended Template)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
-MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
+MarsNumRefModelDesc1=Vraća broj u formatu %syymm-nnnn za standardne fakture, %syymm-nnnn za fakture zamene, %syymm-nnnn za fakture depozita i %syymm-nnnn za kreditne note, gde je yy godina, mm mesec i nnnn broj u nizu bez vraćanja na 0
 TerreNumRefModelError=A bill starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
 ##### Types de contacts #####
 TypeContact_facture_internal_SALESREPFOLL=Representative following-up customer invoice
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/sr_RS/boxes.lang b/htdocs/langs/sr_RS/boxes.lang
index b61cf77019f18c8d1a92c03a83a86fc123afd09c..8cdcccf6f7f7d7a6e6bea9f683f866de8fdead15 100644
--- a/htdocs/langs/sr_RS/boxes.lang
+++ b/htdocs/langs/sr_RS/boxes.lang
@@ -58,7 +58,7 @@ BoxLastExpiredServices=Last %s oldest contacts with active expired services
 BoxTitleLastActionsToDo=Last %s actions to do
 BoxTitleLastContracts=Last %s contracts
 BoxTitleLastModifiedDonations=Last %s modified donations
-BoxTitleLastModifiedExpenses=Last %s modified expenses
+BoxTitleLastModifiedExpenses=Poslednjih %s izmenjenih izveštaja troškova
 BoxGlobalActivity=Global activity (invoices, proposals, orders)
 FailedToRefreshDataInfoNotUpToDate=Failed to refresh RSS flux. Last successfull refresh date: %s
 LastRefreshDate=Last refresh date
@@ -95,3 +95,4 @@ ForCustomersInvoices=Customers invoices
 ForCustomersOrders=Customers orders
 ForProposals=Proposals
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/sr_RS/cashdesk.lang b/htdocs/langs/sr_RS/cashdesk.lang
index d3dcfb68e6432bc3a7d9b556c200553f76044206..c65b29c848cd8e8b31aacae2214c1273cf5eb939 100644
--- a/htdocs/langs/sr_RS/cashdesk.lang
+++ b/htdocs/langs/sr_RS/cashdesk.lang
@@ -38,3 +38,4 @@ ShowStock=Show warehouse
 DeleteArticle=Click to remove this article
 FilterRefOrLabelOrBC=Search (Ref/Label)
 UserNeedPermissionToEditStockToUsePos=You ask to decrease stock on invoice creation, so user that use POS need to have permission to edit stock.
+DolibarrReceiptPrinter=Dolibarr štampač računa
diff --git a/htdocs/langs/sr_RS/categories.lang b/htdocs/langs/sr_RS/categories.lang
index 81c73356c9313f8f6b58ca91fb632a9d894f335b..ccf22bb5003ca9dd4d684ff764aeb69eef7f739b 100644
--- a/htdocs/langs/sr_RS/categories.lang
+++ b/htdocs/langs/sr_RS/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo./Prosp. categories
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/sr_RS/commercial.lang b/htdocs/langs/sr_RS/commercial.lang
index c170caa9820ab81d3163e158bfdf890bcff7a7b6..e419f4a51ebffe21b2512d904b948b0ad99b0d67 100644
--- a/htdocs/langs/sr_RS/commercial.lang
+++ b/htdocs/langs/sr_RS/commercial.lang
@@ -7,13 +7,13 @@ Customer=Customer
 Customers=Customers
 Prospect=Prospect
 Prospects=Prospects
-DeleteAction=Delete an event
-NewAction=New event
-AddAction=Create event
-AddAnAction=Create an event
+DeleteAction=Obriši događaj
+NewAction=Novi događaj
+AddAction=Kreiraj događaj
+AddAnAction=Kreiraj događaj
 AddActionRendezVous=Create a Rendez-vous event
 Rendez-Vous=Rendezvous
-ConfirmDeleteAction=Are you sure you want to delete this event ?
+ConfirmDeleteAction=Da li ste sigurni da želite da obrišete ovaj događaj?
 CardAction=Event card
 PercentDone=Percentage complete
 ActionOnCompany=Task about company
@@ -94,4 +94,4 @@ StatusProsp=Prospect status
 DraftPropals=Draft commercial proposals
 SearchPropal=Search a commercial proposal
 CommercialDashboard=Commercial summary
-NoLimit=No limit
+NoLimit=Bez limita
diff --git a/htdocs/langs/sr_RS/companies.lang b/htdocs/langs/sr_RS/companies.lang
index 0d7fdd383d03822f745424462cfa80fd6ed1af6b..5f562808806e44afa1ef088acbb730885a4e2261 100644
--- a/htdocs/langs/sr_RS/companies.lang
+++ b/htdocs/langs/sr_RS/companies.lang
@@ -63,7 +63,7 @@ UserTitle=Title
 Surname=Nadimak/Pseudonim
 Address=Adresa
 State=Država/Provincija
-StateShort=State
+StateShort=Stanje
 Region=Regija
 Country=Zemlja
 CountryCode=Kod zemlje
@@ -88,10 +88,10 @@ VATIsNotUsed=Van PDV-a
 CopyAddressFromSoc=Ispuni adresu adresom subjekta
 NoEmailDefined=Email nije definisan
 ##### Local Taxes #####
-LocalTax1IsUsed=Use second tax
+LocalTax1IsUsed=Koristi drugu taksu
 LocalTax1IsUsedES= RE is used
 LocalTax1IsNotUsedES= RE is not used
-LocalTax2IsUsed=Use third tax
+LocalTax2IsUsed=Koristi treću taksu
 LocalTax2IsUsedES= IRPF is used
 LocalTax2IsNotUsedES= IRPF is not used
 LocalTax1ES=RE
@@ -111,7 +111,7 @@ ProfId2Short=Prof. id 2
 ProfId3Short=Prof. id 3
 ProfId4Short=Prof. id 4
 ProfId5Short=Prof. id 5
-ProfId6Short=Prof. id 6
+ProfId6Short=Prof. Id 6
 ProfId1=Profesionalni ID 1
 ProfId2=Profesionalni ID 2
 ProfId3=Profesionalni ID 3
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (R.C.)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (R.F.C).
 ProfId2MX=Prof Id 2 (R..P. IMSS)
@@ -286,8 +286,8 @@ PersonalInformations=Lični podaci
 AccountancyCode=Računovodstveni kod
 CustomerCode=Kod klijenta
 SupplierCode=Kod dobavljača
-CustomerCodeShort=Customer code
-SupplierCodeShort=Supplier code
+CustomerCodeShort=Kod klijenta
+SupplierCodeShort=Kod dobavljača
 CustomerAccount=Nalog klijenta
 SupplierAccount=Nalog dobavljača
 CustomerCodeDesc=Kod klijenta, jedinstven za sve klijente
@@ -306,7 +306,7 @@ ListOfCustomersContacts=Lista kontakta klijenta
 ListOfSuppliersContacts=Lista kontakta dobavljača
 ListOfCompanies=Lista kompanija
 ListOfThirdParties=Lista subjekata
-ShowCompany=Show thirdparty
+ShowCompany=Prikaži subjekt
 ShowContact=Prikaži kontakt
 ContactsAllShort=Sve (Bez filtera)
 ContactType=Tip kontakta
@@ -342,7 +342,7 @@ ProspectLevel=Potencijal kandidata
 ContactPrivate=Privatno
 ContactPublic=Podeljeno
 ContactVisibility=Vidljivost
-ContactOthers=Other
+ContactOthers=Ostalo
 OthersNotLinkedToThirdParty=Ostali, nevezani za subjekt
 ProspectStatus=Status kandidata
 PL_NONE=Nema
@@ -386,7 +386,7 @@ ExportDataset_company_2=Kontakti i podešavanja
 ImportDataset_company_1=Subjekti (Kompanije/fondacije/fizička lica) i podešavanja
 ImportDataset_company_2=Kontakti/Adrese (subjekata i drugi) i atributi
 ImportDataset_company_3=Detalji banke
-ImportDataset_company_4=Third parties/Sales representatives (Affect sales representatives users to companies)
+ImportDataset_company_4=Subjekti/agenti prodaje (dodela agenata prodaje kompanijama)
 PriceLevel=Nivo cene
 DeliveriesAddress=Adrese dostave
 DeliveryAddress=Adresa dostave
@@ -418,7 +418,7 @@ UniqueThirdParties=Ukupno jedinstvenih subjekata
 InActivity=Otvoreno
 ActivityCeased=Zatvoreno
 ActivityStateFilter=Status aktivnosti
-ProductsIntoElements=List of products/services into %s
+ProductsIntoElements=Lista proizvoda/usluga u %s
 CurrentOutstandingBill=Current outstanding bill
 OutstandingBill=Max. for outstanding bill
 OutstandingBillReached=Reached max. for outstanding bill
diff --git a/htdocs/langs/sr_RS/compta.lang b/htdocs/langs/sr_RS/compta.lang
index d38631d713dc7af5bf9d738ab5e25c201e1cc962..07e660642983abb0a11faa5c6ee294459df5e314 100644
--- a/htdocs/langs/sr_RS/compta.lang
+++ b/htdocs/langs/sr_RS/compta.lang
@@ -82,12 +82,12 @@ ListOfSupplierPayments=Lista uplata dobavljača
 DateStartPeriod=Početak perioda
 DateEndPeriod=Kraj perioda
 NewVATPayment=Nova PDV uplata
-newLT1Payment=New tax 2 payment
-newLT2Payment=New tax 3 payment
-LT1Payment=Tax 2 payment
-LT1Payments=Tax 2 payments
-LT2Payment=Tax 3 payment
-LT2Payments=Tax 3 payments
+newLT1Payment=Nova uplata takse 2
+newLT2Payment=Nova uplata takse 3
+LT1Payment=Uplata takse 2
+LT1Payments=Uplate takse 2
+LT2Payment=Uplata takse 3
+LT2Payments=Uplate takse 3
 newLT1PaymentES=Nova RE uplata
 newLT2PaymentES=Nova IRPF uplata
 LT1PaymentES=RE uplata
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Računi depozita nisu uključeni
 DepositsAreIncluded=- Računi depozita su uključeni
 LT2ReportByCustomersInInputOutputModeES=Izveštaj po subjektu IRPF
 LT1ReportByCustomersInInputOutputModeES=Izveštaj po RE subjektima
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Izveštaj po prihodovanom i isplaćenom PDV-u po subjektu 
 VATReportByCustomersInDueDebtMode=Izveštaj po prihodovanom i isplaćenom PDV-u po subjektu
 VATReportByQuartersInInputOutputMode=Izveštaj po nivou prihodovanog i isplaćenog PDV-u po subjektu 
@@ -197,13 +198,13 @@ InvoiceDispatched=Otpremljene fakture
 AccountancyDashboard=Rezime računovodstva
 ByProductsAndServices=Po proizvodima i uslugama
 RefExt=Eksterna ref.
-ToCreateAPredefinedInvoice=To create a predefined invoice, create a standard invoice then, without validating it, click onto button "Convert to predefined invoice".
+ToCreateAPredefinedInvoice=Da biste kreirali predefinisanu fakturu, kreirajte standardnu fakturu a zatim, bez potvrđivanja, kliknite na dugme "Konvertuj u predefinisanu fakturu"
 LinkedOrder=Link ka narudžbini
 Mode1=Metoda 1
 Mode2=Metoda 2
-CalculationRuleDesc=To calculate total VAT, there is two methods:<br>Method 1 is rounding vat on each line, then summing them.<br>Method 2 is summing all vat on each line, then rounding result.<br>Final result may differs from few cents. Default mode is mode <b>%s</b>.
-CalculationRuleDescSupplier=According to supplier, choose appropriate method to apply same calculation rule and get same result expected by your supplier.
-TurnoverPerProductInCommitmentAccountingNotRelevant=Turnover report per product, when using a <b>cash accountancy</b> mode is not relevant. This report is only available when using <b>engagement accountancy</b> mode (see setup of accountancy module).
+CalculationRuleDesc=Da biste izračunali ukupan PDV, postoje 2 metode:<br>Metoda 1 je zaokruživanje PDV-a na svakoj liniji i zatim sumiranje svih PDV vrednosti.<br>Metoda 2 je sumiranje svih PDV vrednosti i zatim zaokruživanje rezultata.<br>Krajnji rezultat se može razlikovati za nekoliko centi. Default metoda je <b>%s</b>.
+CalculationRuleDescSupplier=Izaberite odgovarajuću metodu kako biste koristili ista pravila računanja koja koristi i dobavljač.
+TurnoverPerProductInCommitmentAccountingNotRelevant=Izveštaj obrta po proizvodu nije bitan kada se koristi <b>gotovinsko računovodstvo</b>. Ovaj izveštaj je samo dostupan kada se koristi <b>obavezujuće računovodstvo</b> (pogledajte podešavanja modula računovodstvo).
 CalculationMode=Naćin obračuna
 AccountancyJournal=Računovodstveni kodovi
 ACCOUNTING_VAT_SOLD_ACCOUNT=Default računovodstveni kod za naplatu PDV-a (PDV iz prodaje)
diff --git a/htdocs/langs/sr_RS/contracts.lang b/htdocs/langs/sr_RS/contracts.lang
index 029c923c8ce516c5fda683d8c40ae5126a7c80b1..e13926c909610a36c7f6b4077cc7517eca35f0f2 100644
--- a/htdocs/langs/sr_RS/contracts.lang
+++ b/htdocs/langs/sr_RS/contracts.lang
@@ -1,7 +1,7 @@
 # Dolibarr language file - Source file is en_US - contracts
 ContractsArea=Oblast ugovora
 ListOfContracts=Lista ugovora
-LastModifiedContracts=Last %s modified contracts
+LastModifiedContracts=Poslednjih %s izmenjenih ugovora
 AllContracts=Svi ugovori
 ContractCard=Kartica ugovora
 ContractStatus=Status ugovora
@@ -19,7 +19,7 @@ ServiceStatusLateShort=Istekao
 ServiceStatusClosed=Zatvoren
 ServicesLegend=Legenda usluga
 Contracts=Ugovori
-ContractsSubscriptions=Contracts/Subscriptions
+ContractsSubscriptions=Ugovori/Pretplate
 ContractsAndLine=Ugovori i linije ugovora
 Contract=Ugovor
 ContractLine=Linija ugovora
@@ -31,18 +31,18 @@ MenuRunningServices=Aktivne usluge
 MenuExpiredServices=Istekle usluge
 MenuClosedServices=Zatvorene usluge
 NewContract=Novi ugovor
-NewContractSubscription=New contract/subscription
+NewContractSubscription=Novi ugovor/pretplata
 AddContract=Kreiraj ugovor
 SearchAContract=Potraži ugovor
 DeleteAContract=Obriši ugovor
 CloseAContract=Zatvori ugovor
-ConfirmDeleteAContract=Are you sure you want to delete this contract and all its services ?
-ConfirmValidateContract=Are you sure you want to validate this contract under name <b>%s</b> ?
-ConfirmCloseContract=This will close all services (active or not). Are you sure you want to close this contract ?
-ConfirmCloseService=Are you sure you want to close this service with date <b>%s</b> ?
+ConfirmDeleteAContract=Da li ste sigurni da želite da obrišete ovaj ugovor i sve povezane usluge ?
+ConfirmValidateContract=Da li ste sigurni da želite da potvrdite ovaj ugovor pod imenom <b>%s</b> ?
+ConfirmCloseContract=Ova akcije će zatvoriti sve usluge (aktivne i neaktivne). Da li ste sigurni da želite da zatvorite ovaj ugovor ?
+ConfirmCloseService=Da li ste sigurni da želite da zatvorite ovu uslugu sa datumom <b>%s</b> ?
 ValidateAContract=Odobri ugovor
 ActivateService=Aktiviraj uslugu
-ConfirmActivateService=Are you sure you want to activate this service with date <b>%s</b> ?
+ConfirmActivateService=Da li ste sigurni da želite da aktivirate ovu uslugu sa datumom <b>%s</b> ?
 RefContract=Referenca ugovora
 DateContract=Datum ugovora
 DateServiceActivate=Datum aktivacije usluge
@@ -79,13 +79,13 @@ RunningServices=Aktivne usluge
 BoardRunningServices=Istekle aktivne usluge
 ServiceStatus=Status usluge
 DraftContracts=Draft ugovori
-CloseRefusedBecauseOneServiceActive=Contract can't be closed as ther is at least one open service on it
+CloseRefusedBecauseOneServiceActive=Ugovor ne može biti zatvoren jer postoje otvorene usluge na njemu
 CloseAllContracts=Zatvori sve linije ugovora
 DeleteContractLine=Obriši liniju ugovora
 ConfirmDeleteContractLine=Da li ste sigurni da želite da obrišete liniju ugovora ?
 MoveToAnotherContract=Premesti uslugu u drugi ugovor.
-ConfirmMoveToAnotherContract=I choosed new target contract and confirm I want to move this service into this contract.
-ConfirmMoveToAnotherContractQuestion=Choose in which existing contract (of same third party), you want to move this service to ?
+ConfirmMoveToAnotherContract=Izabran je novi ugovor i ova usluga treba biti prebačena na novi ugovor.
+ConfirmMoveToAnotherContractQuestion=Izaberite u koji postojeći ugovor (istog subjekta) želite da prebacite ovu uslugu.
 PaymentRenewContractId=Obnovi liniju ugovora (broj %s)
 ExpiredSince=Datum isticanja
 RelatedContracts=Povezani ugovori
@@ -93,9 +93,9 @@ NoExpiredServices=Nema isteklih aktivnih usluga
 ListOfServicesToExpireWithDuration=Liste usluga koje ističu za %s dana
 ListOfServicesToExpireWithDurationNeg=Lista usluga isteklih pre više od %s dana
 ListOfServicesToExpire=Lista usluga koje ističu
-NoteListOfYourExpiredServices=This list contains only services of contracts for third parties you are linked to as a sale representative.
+NoteListOfYourExpiredServices=Ova lista sadrži samo usluge ugovora subjekata za koje ste vi agent prodaje.
 StandardContractsTemplate=Standardni template ugovora
-ContactNameAndSignature=For %s, name and signature:
+ContactNameAndSignature=Za %s, ime i potpis:
 OnlyLinesWithTypeServiceAreUsed=Samo linije sa tipom "Usluga" će biti duplirane
 
 ##### Types de contacts #####
diff --git a/htdocs/langs/sr_RS/cron.lang b/htdocs/langs/sr_RS/cron.lang
index cf71512ed79be5549ff0d73f3825e017d6d24b7d..9f8596b8054c9fa3d8ff860f0743bdea07bc049a 100644
--- a/htdocs/langs/sr_RS/cron.lang
+++ b/htdocs/langs/sr_RS/cron.lang
@@ -1,89 +1,91 @@
 # Dolibarr language file - Source file is en_US - cron
 # About page
-About = About
-CronAbout = About Cron
-CronAboutPage = Cron about page
+About = O
+CronAbout = O Cron-u
+CronAboutPage = Stranica O Cron-u
 # Right
-Permission23101 = Read Scheduled job
-Permission23102 = Create/update Scheduled job
-Permission23103 = Delete Scheduled job
-Permission23104 = Execute Scheduled job
+Permission23101 = Pročitaj planiranu operaciju
+Permission23102 = Kreiraj/ažuriraj planiranu operaciju
+Permission23103 = Obriši planiranu operaciju
+Permission23104 = Izvrši planiranu operaciju
 # Admin
-CronSetup= Scheduled job management setup
-URLToLaunchCronJobs=URL to check and launch cron jobs if required
-OrToLaunchASpecificJob=Or to check and launch a specific job
-KeyForCronAccess=Security key for URL to launch cron jobs
-FileToLaunchCronJobs=Command line to launch cron jobs
-CronExplainHowToRunUnix=On Unix environment you should use the following crontab entry to run the command line each 5 minutes
-CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
+CronSetup= Podešavanja planiranih operacija
+URLToLaunchCronJobs=URL za proveru i izvršenje Cron operacija, ukoiko je potreban
+OrToLaunchASpecificJob=Ili za proveru i izvršenje određene operacije
+KeyForCronAccess=Security key za URL za izvršenje cron operacija
+FileToLaunchCronJobs=Komandna linija za izvršenje cron operacija
+CronExplainHowToRunUnix=U Unix okruženju možete koristiti crontab za izvršenje komandne linije svakih 5 minuta
+CronExplainHowToRunWin=U Windows okruženju možete koristiti Scheduled task tools za izvršenje komandne linije svakih 5 minuta
 # Menu
-CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
-CronListInactive=List of disabled jobs
+CronJobs=Planirane operacije
+CronListActive=List of enabled/scheduled jobs
+CronListInactive=Lista deaktiviranih operacija
+EnabledAndDisabled=Enabled and disabled
 # Page list
-CronDateLastRun=Last run
-CronLastOutput=Last run output
-CronLastResult=Last result code
-CronListOfCronJobs=List of scheduled jobs
-CronCommand=Command
-CronList=Scheduled jobs
-CronDelete=Delete scheduled jobs
-CronConfirmDelete=Are you sure you want to delete these scheduled jobs ?
-CronExecute=Launch scheduled jobs
-CronConfirmExecute=Are you sure you want to execute these scheduled jobs now ?
-CronInfo=Scheduled job module allow to execute job that have been planned
-CronWaitingJobs=Waiting jobs
-CronTask=Job
-CronNone=None
-CronDtStart=Početak
-CronDtEnd=Kraj
-CronDtNextLaunch=Next execution
-CronDtLastLaunch=Last execution
-CronFrequency=Frequency
-CronClass=Class
-CronMethod=Method
-CronModule=Module
-CronAction=Action
+CronDateLastRun=Poslednje izvršenje
+CronLastOutput=Output poslednjeg izvršenja
+CronLastResult=Poslednji povratni kod
+CronListOfCronJobs=Lista planiranih operacija
+CronCommand=Komanda
+CronList=Planirane operacije
+CronDelete=Obriši planirane operacije
+CronConfirmDelete=Da li ste sigurni da želite da obrišete ove planirane operacije ?
+CronExecute=Izvrši planirane operacije
+CronConfirmExecute=Da li ste sigurni da želite da sada izvršite planirane operacije ?
+CronInfo=Modul planiranih aktivnosti omogućava izvršenje planirane aktivnosti
+CronWaitingJobs=Operacije na čekanju
+CronTask=Operacija
+CronNone=Nema
+CronDtStart=Not before
+CronDtEnd=Not after
+CronDtNextLaunch=Sledeće izvršenje
+CronDtLastLaunch=Prethdno izvršenje
+CronFrequency=Frekvencija
+CronClass=Klasa
+CronMethod=Metoda
+CronModule=Modul
+CronAction=Akcija
 CronStatus=Status
-CronStatusActive=Enabled
-CronStatusInactive=Disabled
-CronNoJobs=No jobs registered
-CronPriority=Priority
+CronStatusActive=Aktivan
+CronStatusInactive=Neaktivan
+CronNoJobs=Nema prijavljenih operacija
+CronPriority=Prioritet
 CronLabel=Opis
-CronNbRun=Nb. launch
-CronEach=Every
-JobFinished=Job launched and finished
+CronNbRun=Br. izvršenja
+CronMaxRun=Max nb. launch
+CronEach=Svakih
+JobFinished=Operacija je izvršena
 #Page card
-CronAdd= Add jobs
-CronHourStart= Start hour and date of job
-CronEvery=Execute job each
-CronObject=Instance/Object to create
-CronArgs=Parameters
-CronSaveSucess=Save succesfully
-CronNote=Comment
-CronFieldMandatory=Fields %s is mandatory
-CronErrEndDateStartDt=End date cannot be before start date
-CronStatusActiveBtn=Enable
-CronStatusInactiveBtn=Disable
-CronTaskInactive=This job is disabled
-CronDtLastResult=Last result date
+CronAdd= Dodaj operacije
+CronHourStart= Vreme početka operacije
+CronEvery=Izvrši operaciju svakih
+CronObject=Instanca/Objekat za kreiranje
+CronArgs=Parametri
+CronSaveSucess=Uspešno sačuvano
+CronNote=Komentar
+CronFieldMandatory=Polje %s je obavezno
+CronErrEndDateStartDt=Kraj ne može biti pre početka
+CronStatusActiveBtn=Aktiviraj
+CronStatusInactiveBtn=Deaktiviraj
+CronTaskInactive=Operacije je deaktivirana
+CronDtLastResult=Datum poslednjeg rezultata
 CronId=Id
-CronClassFile=Classes (filename.class.php)
-CronModuleHelp=Name of Dolibarr module directory (also work with external Dolibarr module). <BR> For exemple to fetch method of Dolibarr Product object /htdocs/<u>product</u>/class/product.class.php, the value of module is <i>product</i>
-CronClassFileHelp=The file name to load. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/<u>product.class.php</u>, the value of class file name is <i>product.class.php</i>
-CronObjectHelp=The object name to load. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of class file name is <i>Product</i>
-CronMethodHelp=The object method to launch. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of method is  is <i>fecth</i>
-CronArgsHelp=The method arguments. <BR> For exemple to fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value of paramters can be <i>0, ProductRef</i>
-CronCommandHelp=The system command line to execute.
-CronCreateJob=Create new Scheduled Job
-CronFrom=From
+CronClassFile=Klase (filename.class.php)
+CronModuleHelp=Naziv Dolibarr modul foldera (radi i sa eksternim Dolibarr modulima). <BR> Na primer za fetch metodu Dolibarr Product objekta /htdocs/<u>product</u>/class/product.class.php, vrednost modula je <i>product</i>
+CronClassFileHelp=Naziv fajla za učitavanje. <BR> Na primer za fetch metodu Dolibarr Product objekta /htdocs/product/class/<u>product.class.php</u>, naziv fajla za učitavanje je <i>product.class.php</i>
+CronObjectHelp=Naziv objekta za učitavanje. <BR> Na primer za fetch metodu Dolibarr Product objekta /htdocs/product/class/<u>product.class.php</u>, naziv objekta za učitavanje je <i>Product</i>
+CronMethodHelp=Naziv metode za učitavanje. <BR> Na primer za fetch metodu Dolibarr Product objekta /htdocs/product/class/<u>product.class.php</u>, naziv metode je <i>fetch</i>
+CronArgsHelp=Argumenti metode. <BR> Na primer za fetch metodu Dolibarr Product objekta /htdocs/product/class/<u>product.class.php</u>, parametri mogu biti <i>0, ProductRef</i>
+CronCommandHelp=Komandna linija za izvršenje
+CronCreateJob=Kreiraj novu planiranu operaciju
+CronFrom=Od
 # Info
-CronInfoPage=Information
+CronInfoPage=Informacija
 # Common
-CronType=Job type
-CronType_method=Call method of a Dolibarr Class
-CronType_command=Shell command
+CronType=Tip operacije
+CronType_method=Metoda poziva Dolibarr klase
+CronType_command=Komandna linija
 CronMenu=Cron
-CronCannotLoadClass=Cannot load class %s or object %s
-UseMenuModuleToolsToAddCronJobs=Go into menu "Home - Modules tools - Job list" to see and edit scheduled jobs.
-TaskDisabled=Job disabled
+CronCannotLoadClass=Nemoguće učitati klasu %s ili objekat %s
+UseMenuModuleToolsToAddCronJobs=Otvorite "Home - Alati modula - Lista aktivnosti" da biste videli i izmenili listu planiranih aktivnosti.
+TaskDisabled=Operacija deaktivirana
diff --git a/htdocs/langs/sr_RS/deliveries.lang b/htdocs/langs/sr_RS/deliveries.lang
index 4a0e5ce1c41d5e52153fbe5ee15e444e7ccce3a8..1f43891068a53172af3a7fd10c6774566f8dc94b 100644
--- a/htdocs/langs/sr_RS/deliveries.lang
+++ b/htdocs/langs/sr_RS/deliveries.lang
@@ -7,23 +7,26 @@ DeliveryOrders=Narudžbenice isporuke
 DeliveryDate=Datum isporuke
 DeliveryDateShort=Dat. ispor.
 CreateDeliveryOrder=Generiši narudžbenicu isporuke
-DeliveryStateSaved=Delivery state saved
+DeliveryStateSaved=Status isporuke sačuvan
 QtyDelivered=Kol. isporučeno
 SetDeliveryDate=Zadaj datum isporuke
 ValidateDeliveryReceipt=Odobri prijemnicu isporuke
 ValidateDeliveryReceiptConfirm=Da li ste sigurni da želite da odobrite prijemnicu isporuke ?
 DeleteDeliveryReceipt=Obriši prijemnicu isporuke
-DeleteDeliveryReceiptConfirm=Are you sure you want to delete delivery receipt <b>%s</b> ?
+DeleteDeliveryReceiptConfirm=Da li ste sigurni da želite da obrišete prijemnicu isporuke <b>%s</b> ?
 DeliveryMethod=Način isporuke
 TrackingNumber=Referenca isporuke
 DeliveryNotValidated=Isporuka nije odobrena
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Ime i potpis:
 ToAndDate=Za___________________________________ dana ____/_____/__________
-GoodStatusDeclaration=Have received the goods above in good condition,
+GoodStatusDeclaration=Roba navedena iznad je primljena u dobrom stanju,
 Deliverer=Isporučio:
 Sender=Pošiljalac
 Recipient=Primalac
-ErrorStockIsNotEnough=There's not enough stock
+ErrorStockIsNotEnough=Nema dovoljno zaliha
 Shippable=Isporučivo
 NonShippable=Nije isporučivo
diff --git a/htdocs/langs/sr_RS/dict.lang b/htdocs/langs/sr_RS/dict.lang
index ba638b6d3c6adb4d57700276f250387ae1ca4bc7..fdcdb7c43bb5507f71cf1028c6290c5b7ed1707e 100644
--- a/htdocs/langs/sr_RS/dict.lang
+++ b/htdocs/langs/sr_RS/dict.lang
@@ -72,7 +72,7 @@ CountryCC=Cocos (Keeling) Islands
 CountryCO=Colombia
 CountryKM=Comoros
 CountryCG=Congo
-CountryCD=Congo, The Democratic Republic of the
+CountryCD=Kongo
 CountryCK=Cook Islands
 CountryCR=Costa Rica
 CountryHR=Hrvatska
@@ -80,9 +80,9 @@ CountryCU=Kuba
 CountryCY=Kipar
 CountryCZ=Češka Republika
 CountryDK=Danska
-CountryDJ=Djibouti
+CountryDJ=Džibuti
 CountryDM=Dominica
-CountryDO=Dominican Republic
+CountryDO=Dominikanska Republika
 CountryEC=Ecuador
 CountryEG=Egipat
 CountrySV=El Salvador
@@ -183,7 +183,7 @@ CountryPY=Paraguay
 CountryPE=Peru
 CountryPH=Philippines
 CountryPN=Pitcairn Islands
-CountryPL=Poland
+CountryPL=Poljska
 CountryPR=Puerto Rico
 CountryQA=Qatar
 CountryRE=Reunion
diff --git a/htdocs/langs/sr_RS/donations.lang b/htdocs/langs/sr_RS/donations.lang
index 78a50a92803ecc1c28983a53e435cdca389320d7..f8d12a15598cb0a69e3235f5a4602b30565733e1 100644
--- a/htdocs/langs/sr_RS/donations.lang
+++ b/htdocs/langs/sr_RS/donations.lang
@@ -33,11 +33,11 @@ LastModifiedDonations=Poslednjih %s izmenjenih donacija
 SearchADonation=Potraži donaciju
 DonationRecipient=Primalac donacije
 ThankYou=Hvala
-IConfirmDonationReception=The recipient declare reception, as a donation, of the following amount
+IConfirmDonationReception=Primalac potvrđuje prijem sledećeg iznosa kao donacije
 MinimumAmount=Minimalni iznos je %s
 FreeTextOnDonations=Slobodni tekst (biće prikazan u dnu strane)
 FrenchOptions=Opcije za Francusku
-DONATION_ART200=Show article 200 from CGI if you are concerned
-DONATION_ART238=Show article 238 from CGI if you are concerned
-DONATION_ART885=Show article 885 from CGI if you are concerned
+DONATION_ART200=Prikaži član 200 iz CGI ukoliko je neophodno
+DONATION_ART238=Prikaži član 238 iz CGI ukoliko je neophodno
+DONATION_ART885=Prikaži član 885 iz CGI ukoliko je neophodno
 DonationPayment=Uplata donacije
diff --git a/htdocs/langs/sr_RS/ecm.lang b/htdocs/langs/sr_RS/ecm.lang
index 7c3678931de22a3f73e35b6d2e38ee0e2d4bed89..78883dbfc53b752ab3ef44e8528a0d2030fd5bf9 100644
--- a/htdocs/langs/sr_RS/ecm.lang
+++ b/htdocs/langs/sr_RS/ecm.lang
@@ -26,7 +26,7 @@ ECMNbOfFilesInSubDir=Broj fajlova u pod-folderima
 ECMCreationUser=Kreirao
 ECMArea=Oblast EDM
 ECMAreaDesc=Oblast EDM (Electronic Document Managemnt) Vam omogućava da sačuvate, podelite i brzo pretražite sve vrste dokumenata u Dolibarr-u
-ECMAreaDesc2=* Automatic directories are filled automatically when adding documents from card of an element.<br>* Manual directories can be used to save documents not linked to a particular element.
+ECMAreaDesc2=* Automatski folderi su automatski popunjeni prilikom dodavanja dokumenata iz kartice nekog objekta.<br>* Ručni folderi se mogu koristiti za čuvanje dokumenata koji nisu vezani za neki određen objekat.
 ECMSectionWasRemoved=Folder <b>%s</b> je obrisan.
 ECMDocumentsSection=Dokument ili folder
 ECMSearchByKeywords=Potraži po ključnoj reči
@@ -34,7 +34,7 @@ ECMSearchByEntity=Potraži po objektu
 ECMSectionOfDocuments=Folderi dokumenata
 ECMTypeManual=Ručno
 ECMTypeAuto=Automatski
-ECMDocsBySocialContributions=Documents linked to social or fiscal taxes
+ECMDocsBySocialContributions=Dokumenti vezani za poreze i doprinose.
 ECMDocsByThirdParties=Dokumenti vezani za subjekte
 ECMDocsByProposals=Dokumenti vezani za ponude
 ECMDocsByOrders=Dokumenti vezani za narudžbine klijenata
@@ -52,5 +52,5 @@ ECMDirectoryForFiles=Relativni folder za fajlove
 CannotRemoveDirectoryContainsFiles=Brisanje je nemoguće jer folder sadrži fajlove
 ECMFileManager=File manager
 ECMSelectASection=Izaberite folder u strukturi levo...
-DirNotSynchronizedSyncFirst=This directory seems to be created or modified outside ECM module. You must click on "Refresh" button first to synchronize disk and database to get content of this directory.
+DirNotSynchronizedSyncFirst=Ovaj direktorijum je kreiran ili izmenjen van ECM modula. Morate kliknuti na dugme "Refresh" da biste sinhronizovali disk i bazu i videli sadržaj ovog foldera.
 
diff --git a/htdocs/langs/sr_RS/errors.lang b/htdocs/langs/sr_RS/errors.lang
index d95380c3a46569274f51e44f9484c2f0095ff6fa..d1758837c5bdfeb3994fe215348b41f76772b60f 100644
--- a/htdocs/langs/sr_RS/errors.lang
+++ b/htdocs/langs/sr_RS/errors.lang
@@ -23,7 +23,7 @@ ErrorFromToAccountsMustDiffers=Izvorni i ciljani bankovni račun moraju biti raz
 ErrorBadThirdPartyName=Pogrešna vrednost za ime subjekta
 ErrorProdIdIsMandatory=%s je obavezno
 ErrorBadCustomerCodeSyntax=Pogrešna sintaksa koda klijenta
-ErrorBadBarCodeSyntax=Bad syntax for bar code. May be you set a bad barcode type or you defined a barcode mask for numbering that does not match value scanned.
+ErrorBadBarCodeSyntax=Pogrešna sintaksa za bar kod. Možda ste podesili pogrešan tip bar koda ili ste definisani masku numerisanja koja se ne podudara sa skeniranom vrednošću.
 ErrorCustomerCodeRequired=Kod klijenta je obavezan
 ErrorBarCodeRequired=Barcode je obavezan
 ErrorCustomerCodeAlreadyUsed=Kod klijenta je već u upotrebi
@@ -49,7 +49,7 @@ ErrorTopMenuMustHaveAParentWithId0=Meni tipa "Top" ne može imati parent meni. S
 ErrorLeftMenuMustHaveAParentId=Meni tipa "Levi" mora imati parent ID.
 ErrorFileNotFound=Fajl <b>%s</b> nije pronađen (pogrešna putanja, nedovoljna prava, ili je pristup sprečen PHP openbasedir ili safe_mode parametrima)
 ErrorDirNotFound=Folder <b>%s</b> nije pronađen (pogrešna putanja, nedovoljna prava, ili je pristup sprečen PHP openbasedir ili safe_mode parametrima)
-ErrorFunctionNotAvailableInPHP=Function <b>%s</b> is required for this feature but is not available in this version/setup of PHP.
+ErrorFunctionNotAvailableInPHP=Funkcija <b>%s</b> je neophodna za ovu funkcionalnost, ali nije dostupna u ovoj verziji/konfiguraciji PHP-a.
 ErrorDirAlreadyExists=Folder sa ovim imenom već postoji.
 ErrorFileAlreadyExists=Fajl sa ovim imenom već postoji.
 ErrorPartialFile=Fajl nije u celosti primljen na server.
@@ -61,31 +61,31 @@ ErrorSizeTooLongForVarcharType=Predugačka vrednost za string tip (%s karaktera
 ErrorNoValueForSelectType=Molimo izaberite vrednost u select listi
 ErrorNoValueForCheckBoxType=Molimo izaberite vrednost u checkbox listi
 ErrorNoValueForRadioType=Molimo izaberite vrednost u radio listi
-ErrorBadFormatValueList=The list value cannot have more than one comma: <u>%s</u>, but need at least one: key,value
-ErrorFieldCanNotContainSpecialCharacters=Field <b>%s</b> must not contains special characters.
-ErrorFieldCanNotContainSpecialNorUpperCharacters=Field <b>%s</b> must not contain special characters, nor upper case characters and cannot contain only numbers.
+ErrorBadFormatValueList=Vrednost u listi ne može imati više od jednog zareza: <u>%s</u>, ali je potreban makar jedan: ključ,vrednost
+ErrorFieldCanNotContainSpecialCharacters=Polje <b>%s</b> ne sme sadržati specijalne karaktere.
+ErrorFieldCanNotContainSpecialNorUpperCharacters=Polje <b>%s</b> ne sme sadržati specijalne karaktere, velika slova i ne sme se sastojati samo od brojeva.
 ErrorNoAccountancyModuleLoaded=Modul računovodstvo nije aktiviran
 ErrorExportDuplicateProfil=Ovo ime profila već postoji za ovaj export set.
 ErrorLDAPSetupNotComplete=Dolibarr-LDAP matching nije završen.
-ErrorLDAPMakeManualTest=A .ldif file has been generated in directory %s. Try to load it manually from command line to have more information on errors.
-ErrorCantSaveADoneUserWithZeroPercentage=Can't save an action with "statut not started" if field "done by" is also filled.
+ErrorLDAPMakeManualTest=.ldif fajl je generisan u folderu %s. Pokušajte da ga učitate ručno iz komandne linije da biste imali više informacija o greškama.
+ErrorCantSaveADoneUserWithZeroPercentage=Nemoguće saluvati akciju sa statusom "nije započet" ukoliko je polje "izvršio" popunjeno.
 ErrorRefAlreadyExists=Ref korišćena za kreaciju već postoji.
-ErrorPleaseTypeBankTransactionReportName=Please type bank receipt name where transaction is reported (Format YYYYMM or YYYYMMDD)
+ErrorPleaseTypeBankTransactionReportName=Molimo unesite bankarsku priznanicu o izvršenoj transakciji (format YYYYMM ili YYYYMMDD)
 ErrorRecordHasChildren=Greška prilikom brisanja: postoje povezane linije
 ErrorRecordIsUsedCantDelete=Nemoguće obrisati liniju jer je već u upotrebi ili korišćena u drugom objektu.
-ErrorModuleRequireJavascript=Javascript must not be disabled to have this feature working. To enable/disable Javascript, go to menu Home->Setup->Display.
+ErrorModuleRequireJavascript=Da bi ova funkcionalnost bila dostupna, Javascript mora biti aktiviran. Da biste uključili/isključili javascript, otvorite Home->Podešavanja->Prikaz.
 ErrorPasswordsMustMatch=Unete lozinke se moraju podudarati
-ErrorContactEMail=A technical error occured. Please, contact administrator to following email <b>%s</b> en provide the error code <b>%s</b> in your message, or even better by adding a screen copy of this page.
-ErrorWrongValueForField=Wrong value for field number <b>%s</b> (value '<b>%s</b>' does not match regex rule <b>%s</b>)
-ErrorFieldValueNotIn=Wrong value for field number <b>%s</b> (value '<b>%s</b>' is not a value available into field <b>%s</b> of table <b>%s</b>)
-ErrorFieldRefNotIn=Wrong value for field number <b>%s</b> (value '<b>%s</b>' is not a <b>%s</b> existing ref)
-ErrorsOnXLines=Errors on <b>%s</b> source record(s)
-ErrorFileIsInfectedWithAVirus=The antivirus program was not able to validate the file (file might be infected by a virus)
-ErrorSpecialCharNotAllowedForField=Special characters are not allowed for field "%s"
-ErrorDatabaseParameterWrong=Database setup parameter '<b>%s</b>' has a value not compatible to use Dolibarr (must have value '<b>%s</b>').
-ErrorNumRefModel=A reference exists into database (%s) and is not compatible with this numbering rule. Remove record or renamed reference to activate this module.
-ErrorQtyTooLowForThisSupplier=Quantity too low for this supplier or no price defined on this product for this supplier
-ErrorModuleSetupNotComplete=Setup of module looks to be uncomplete. Go on Setup - Modules to complete.
+ErrorContactEMail=Došlo je do tehničke greške. Molimo kontaktirajte administratora mailom <b>%s</b> i navedite grešku <b>%s</b> u poruci, ili pošaljite screenshot ove strane.
+ErrorWrongValueForField=Pogrešna vrednost za polje broj <b>%s</b> (vrednost "<b>%s</b>" ne odgovara regex pravilu <b>%s</b>)
+ErrorFieldValueNotIn=Pogrešna vrednost za polje broj <b>%s</b> (vrednost "<b>%s</b>" nije dostupna za polje <b>%s</b> u tabeli <b>%s</b>)
+ErrorFieldRefNotIn=Pogrešna vrednost za polje broj <b>%s</b> (vrednost "<b>%s</b>" nije <b>%s</b> postoječi ref.)
+ErrorsOnXLines=Greške na <b>%s</b> izvornih linija.
+ErrorFileIsInfectedWithAVirus=Antivirus nije mogao da potvrdi fajl (moguće je da postoji virus)
+ErrorSpecialCharNotAllowedForField=Specijalni karakteri nisu dozvoljeni u polju "%s"
+ErrorDatabaseParameterWrong=Parametar podešavanja baze "<b>%s</b>" ima vrednost koja nije kompatibilna sa Dolibarr-om (mora imati vrednost "<b>%s</b>")
+ErrorNumRefModel=U bazi postoji referenca (%s) koja nije kompatibilna sa ovim pravilom. Uklonite taj red ili preimenujte referencu kako biste aktivirali ovaj modul.
+ErrorQtyTooLowForThisSupplier=Količina previše mala za ovog dobavljača ili nema definisane cen za ovaj proizvod kod ovog dobavljača
+ErrorModuleSetupNotComplete=Podešavanje modula deluje nekompletno. Idite na Podešavanja - Moduli da biste ga kompletirali.
 ErrorBadMask=Greška za masku
 ErrorBadMaskFailedToLocatePosOfSequence=Greška, maska bez broja sekvence
 ErrorBadMaskBadRazMonth=Greška, pogrešna reset vrednost
@@ -93,51 +93,51 @@ ErrorMaxNumberReachForThisMask=Maksimalan broj dostignut za ovu masku
 ErrorCounterMustHaveMoreThan3Digits=Brojač mora imati više od 3 cifre
 ErrorSelectAtLeastOne=Greška. Izaberite bar jednu vrednost.
 ErrorProductWithRefNotExist=Proizvod sa referencom '<i>%s</i>' ne postoji
-ErrorDeleteNotPossibleLineIsConsolidated=Delete not possible because record is linked to a bank transation that is conciliated
+ErrorDeleteNotPossibleLineIsConsolidated=Brisanje je nemoguće jer je red vezan za proknjiženu bankarsku transakciju.
 ErrorProdIdAlreadyExist=%s je dodeljena drugom subjektu
 ErrorFailedToSendPassword=Greška prilikom slanja lozinke
-ErrorFailedToLoadRSSFile=Fails to get RSS feed. Try to add constant MAIN_SIMPLEXMLLOAD_DEBUG if error messages does not provide enough information.
+ErrorFailedToLoadRSSFile=Greška prilikom čitanja RSS-a. Pokušajte da dodate konstantu MAIN_SIMPLEXMLLOAD_DEBUG ukoliko nemate dovoljno podataka za analizu greške.
 ErrorPasswordDiffers=Lozinke su različite, molimo pokušajte ponovo.
-ErrorForbidden=Access denied.<br>You try to access to a page, area or feature of a disabled module or without being in an authenticated session or that is not allowed to your user.
-ErrorForbidden2=Permission for this login can be defined by your Dolibarr administrator from menu %s->%s.
-ErrorForbidden3=It seems that Dolibarr is not used through an authenticated session. Take a look at Dolibarr setup documentation to know how to manage authentications (htaccess, mod_auth or other...).
-ErrorNoImagickReadimage=Class Imagick is not found in this PHP. No preview can be available. Administrators can disable this tab from menu Setup - Display.
+ErrorForbidden=Zabranjen pristup.<br>Pokušali ste da pristupite sadržaju deaktiviranog modula ili Vaš korisnik nema potrebna prava za pristup.
+ErrorForbidden2=Prava za ovog korisnik mogu biti definisana od strane administratora u meniju %s->%s.
+ErrorForbidden3=Izgleda da niste pristupili Dolibarr-u preko autentifikovane sesije. Proverite dokumentaciju podešavanja da biste videli kako se podešavaju autentifikacije (htaccess, mod_auth i dr.).
+ErrorNoImagickReadimage=Klasa Imagick nije nađena u PHP-u. Prikaz nije dostupan. Administratori mogu da deaktiviraju ovaj tab iz Podešavanja - Prikaz.
 ErrorRecordAlreadyExists=Linija već postoji
 ErrorCantReadFile=Greška u čitanju fajla "%s"
 ErrorCantReadDir=Greška u čitanju foldera "%s"
 ErrorFailedToFindEntity=Greška u čitanju okruženja "%s"
 ErrorBadLoginPassword=Pogrešna vrednost za login ili lozinku
 ErrorLoginDisabled=Vaš nalog je deaktiviran
-ErrorFailedToRunExternalCommand=Failed to run external command. Check it is available and runnable by your PHP server. If PHP <b>Safe Mode</b> is enabled, check that command is inside a directory defined by parameter <b>safe_mode_exec_dir</b>.
+ErrorFailedToRunExternalCommand=Greška prilikom pokretanja eksterne komande. Proverite da li je ova funkcionalnost moguća na PHP serveru. Ukoliko je aktivan PHP <b>Safe Mode</b>, proverite da je komanda u filderu definisanom u <b>safe_mode_exec_dir</b>.
 ErrorFailedToChangePassword=Greška prilikom promene lozinke
-ErrorLoginDoesNotExists=User with login <b>%s</b> could not be found.
+ErrorLoginDoesNotExists=Korisnik <b>%s</b> nije pronađen.
 ErrorLoginHasNoEmail=Korisnik nema mail adresu. Operacija otkazana.
 ErrorBadValueForCode=Pogrešna vrednost za sigurnosni kod. Pokušajte ponovo sa novom vrednošću...
 ErrorBothFieldCantBeNegative=Oba polja ne mogu oba biti negativna: %s i %s
-ErrorQtyForCustomerInvoiceCantBeNegative=Quantity for line into customer invoices can't be negative
-ErrorWebServerUserHasNotPermission=User account <b>%s</b> used to execute web server has no permission for that
+ErrorQtyForCustomerInvoiceCantBeNegative=Količina za liniju na fakturi klijenta ne može biti negativna.
+ErrorWebServerUserHasNotPermission=Korisnik <b>%s</b> nema prava za izvršavanje na web serveru
 ErrorNoActivatedBarcode=Barcode tip nije aktiviran
 ErrUnzipFails=Greška prilikom dekompresije %s
 ErrNoZipEngine=PHP ne podržava dekompresiju za fajl %s
 ErrorFileMustBeADolibarrPackage=Fajl %s mora biti Dolibarr zip paket
 ErrorFileRequired=Uzima Dolibarr paket
 ErrorPhpCurlNotInstalled=PHP CURL nije instaliran, ovo je neophodno za Paypal
-ErrorFailedToAddToMailmanList=Failed to add record %s to Mailman list %s or SPIP base
-ErrorFailedToRemoveToMailmanList=Failed to remove record %s to Mailman list %s or SPIP base
+ErrorFailedToAddToMailmanList=Greška prilikom dodavanja linije %s Mailman listi %s ili SPIP bazi
+ErrorFailedToRemoveToMailmanList=Greška prilikom uklanjanja linije %s iz Mailman liste %s ili SPIP baze
 ErrorNewValueCantMatchOldValue=Nova vrednost ne može biti jednaka staroj
-ErrorFailedToValidatePasswordReset=Failed to reinit password. May be the reinit was already done (this link can be used only one time). If not, try to restart the reinit process.
-ErrorToConnectToMysqlCheckInstance=Connect to database fails. Check Mysql server is running (in most cases, you can launch it from command line with 'sudo /etc/init.d/mysql start').
-ErrorFailedToAddContact=Failed to add contact
-ErrorDateMustBeBeforeToday=The date can not be greater than today
-ErrorPaymentModeDefinedToWithoutSetup=A payment mode was set to type %s but setup of module Invoice was not completed to define information to show for this payment mode.
-ErrorPHPNeedModule=Error, your PHP must have module <b>%s</b> installed to use this feature.
-ErrorOpenIDSetupNotComplete=You setup Dolibarr config file to allow OpenID authentication, but URL of OpenID service is not defined into constant %s
+ErrorFailedToValidatePasswordReset=Greška prilikom promene lozinke. Možda je promena već izvršena (ovaj link se može iskoristiti samo jednom). Ukoliko nije, pokušajte ponovo.
+ErrorToConnectToMysqlCheckInstance=Greška prilikom konekcije sa bazom. Proverite da li je Mysql server aktivan (u većini slučajeva, možete ga pokrenuti iz komandne linije sa "sudo /etc/init.d/mysql start").
+ErrorFailedToAddContact=Greška prilikom dodavanja kontakta
+ErrorDateMustBeBeforeToday=Datum ne može biti veći od današnjeg
+ErrorPaymentModeDefinedToWithoutSetup=Način plaćanja je podešen na %s, ali podešavanja modula Fakture nisu završena i ne definišu koje se informacije prikazuju za ovaj način plaćanja.
+ErrorPHPNeedModule=Greška, PHP mora imati modul <b>%s</b> da biste koristili ovu funkcionalnost.
+ErrorOpenIDSetupNotComplete=Podesili ste konfiguracioni fajl da odobrava OpenID autentifikaciju, ali URL OpenID servisa nije definisan u konstanti %s
 ErrorWarehouseMustDiffers=Izvorni i ciljani magacini moraju biti različiti
 ErrorBadFormat=Pogrešan format!
-ErrorMemberNotLinkedToAThirpartyLinkOrCreateFirst=Error, this member is not yet linked to any thirdparty. Link member to an existing third party or create a new thirdparty before creating subscription with invoice.
-ErrorThereIsSomeDeliveries=Error, there is some deliveries linked to this shipment. Deletion refused.
-ErrorCantDeletePaymentReconciliated=Can't delete a payment that had generated a bank transaction that was conciliated
-ErrorCantDeletePaymentSharedWithPayedInvoice=Can't delete a payment shared by at least one invoice with status Payed
+ErrorMemberNotLinkedToAThirpartyLinkOrCreateFirst=Greška, ovaj član još nije povezan ni sa jednim subjektom. Povežite člana sa postojećim subjektom ili napravite nov subjekat pre kreiranja pretplate sa fakturom.
+ErrorThereIsSomeDeliveries=Greška, postoje objekti vezani za ovu isporuku. Brisanje je odbijeno.
+ErrorCantDeletePaymentReconciliated=Nemoguće obrisati uplatu koja je generisala bankovnu transakciju koja je već proknjižena
+ErrorCantDeletePaymentSharedWithPayedInvoice=Nemoguće obrisati uplatu koja je vezana za bar jednu fakturu sa statusom Plaćeno
 ErrorPriceExpression1=Nemoguće dodeliti konstanti "%s"
 ErrorPriceExpression2=Nemoguće redefinisati built-in funkciju "%s"
 ErrorPriceExpression3=Nedefinisana promenljiva "%s" u definiciji funkcije
@@ -157,40 +157,40 @@ ErrorPriceExpression22=Negativan rezultat "%s"
 ErrorPriceExpressionInternal=Interna greška "%s"
 ErrorPriceExpressionUnknown=Nepoznata greška "%s"
 ErrorSrcAndTargetWarehouseMustDiffers=Izvorni i ciljani magacini moraju biti različiti
-ErrorTryToMakeMoveOnProductRequiringBatchData=Error, trying to make a stock movement without lot/serial information, on a product requiring lot/serial information
-ErrorCantSetReceptionToTotalDoneWithReceptionToApprove=All recorded receptions must first be verified (approved or denied) before being allowed to do this action
-ErrorCantSetReceptionToTotalDoneWithReceptionDenied=All recorded receptions must first be verified (approved) before being allowed to do this action
+ErrorTryToMakeMoveOnProductRequiringBatchData=Greška, pokušavate da kreirate kretanje zaliha bez informacija o seriji za proizvod koji te informacije zahteva.
+ErrorCantSetReceptionToTotalDoneWithReceptionToApprove=Svi sačuvani prijemi moraju biti provereni (odobreni ili odbijeni) pre nego što ćete moći da obavite ovu akciju
+ErrorCantSetReceptionToTotalDoneWithReceptionDenied=Svi sačuvani prijemi moraju biti provereni (odobreni) pre nego što ćete moći da obavite ovu akciju
 ErrorGlobalVariableUpdater0=Greška u HTTP zahtevu : "%s" 
 ErrorGlobalVariableUpdater1=Pogrešan JSON format "%s"
 ErrorGlobalVariableUpdater2=Nepostojeći parametar "%s"
 ErrorGlobalVariableUpdater3=Traženi podaci nisu pronađeni u rezultatu
 ErrorGlobalVariableUpdater4=Greška u SOAP klijentu "%s"
 ErrorGlobalVariableUpdater5=Nema selektovane globalne promenljive
-ErrorFieldMustBeANumeric=Field <b>%s</b> must be a numeric value
-ErrorFieldMustBeAnInteger=Field <b>%s</b> must be an integer
+ErrorFieldMustBeANumeric=Polje <b>%s</b> mora biti numeričko
+ErrorFieldMustBeAnInteger=Polje <b>%s</b> mora biti ceo broj
 ErrorMandatoryParametersNotProvided=Obavezni parametar(i) nije dat
-ErrorOppStatusRequiredIfAmount=You set an estimated amount for this opportunity/lead. So you must also enter its status
-ErrorBadDefinitionOfMenuArrayInModuleDescriptor=Bad Definition Of Menu Array In Module Descriptor (bad value for key fk_menu)
-ErrorSavingChanges=An error has ocurred when saving the changes
+ErrorOppStatusRequiredIfAmount=Podesili ste procenjeni iznos za ovu priliku, tako da morate uneti i status.
+ErrorBadDefinitionOfMenuArrayInModuleDescriptor=Pogrešna definicija Menu Array u Module Descriptoru (pogrešna vrednost za fk_menu)
+ErrorSavingChanges=Došlo je do greške prilikom čuvanja promena.
 
 # Warnings
-WarningPasswordSetWithNoAccount=A password was set for this member. However, no user account was created. So this password is stored but can't be used to login to Dolibarr. It may be used by an external module/interface but if you don't need to define any login nor password for a member, you can disable option "Manage a login for each member" from Member module setup. If you need to manage a login but don't need any password, you can keep this field empty to avoid this warning. Note: Email can also be used as a login if the member is linked to a user.
-WarningMandatorySetupNotComplete=Mandatory setup parameters are not yet defined
-WarningSafeModeOnCheckExecDir=Warning, PHP option <b>safe_mode</b> is on so command must be stored inside a directory declared by php parameter <b>safe_mode_exec_dir</b>.
-WarningAllowUrlFopenMustBeOn=Parameter <b>allow_url_fopen</b> must be set to <b>on</b> in filer <b>php.ini</b> for having this module working completely. You must modify this file manually.
-WarningBuildScriptNotRunned=Script <b>%s</b> was not yet ran to build graphics, or there is no data to show.
-WarningBookmarkAlreadyExists=A bookmark with this title or this target (URL) already exists.
-WarningPassIsEmpty=Warning, database password is empty. This is a security hole. You should add a password to your database and change your conf.php file to reflect this.
-WarningConfFileMustBeReadOnly=Warning, your config file (<b>htdocs/conf/conf.php</b>) can be overwritten by the web server. This is a serious security hole. Modify permissions on file to be in read only mode for operating system user used by Web server. If you use Windows and FAT format for your disk, you must know that this file system does not allow to add permissions on file, so can't be completely safe.
-WarningsOnXLines=Warnings on <b>%s</b> source record(s)
-WarningNoDocumentModelActivated=No model, for document generation, has been activated. A model will be choosed by default until you check your module setup.
-WarningLockFileDoesNotExists=Warning, once setup is finished, you must disable install/migrate tools by adding a file <b>install.lock</b> into directory <b>%s</b>. Missing this file is a security hole.
-WarningUntilDirRemoved=All security warnings (visible by admin users only) will remain active as long as the vulnerability is present (or that constant MAIN_REMOVE_INSTALL_WARNING is added in Setup->Other setup).
-WarningCloseAlways=Warning, closing is done even if amount differs between source and target elements. Enable this feature with caution.
-WarningUsingThisBoxSlowDown=Warning, using this box slow down seriously all pages showing the box.
-WarningClickToDialUserSetupNotComplete=Setup of ClickToDial information for your user are not complete (see tab ClickToDial onto your user card).
-WarningNotRelevant=Irrelevant operation for this dataset
-WarningFeatureDisabledWithDisplayOptimizedForBlindNoJs=Feature disabled when display setup is optimized for blind person or text browsers.
-WarningPaymentDateLowerThanInvoiceDate=Payment date (%s) is earlier than invoice date (%s) for invoice %s.
-WarningTooManyDataPleaseUseMoreFilters=Too many data (more than %s lines). Please use more filters or set the constant %s to a higher limit.
-WarningSomeLinesWithNullHourlyRate=Some times were recorded by users when their hourly rate was not defined. A value of 0 was used but this may result in wrong valuation of time spent.
+WarningPasswordSetWithNoAccount=Lozinka je podešena za ovog člana, ali korisnik nije kreiran. To znači da je lozinka sačuvana, ali se član ne može ulogovati na Dolibarr. Informaciju može koristiti neka eksterna komponenta, ali ako nemate potrebe da definišete korisnika/lozinku za članove, možete deaktivirati opciju "Upravljanje lozinkama za svakog člana" u podešavanjima modula Članovi. Ukoliko morate da kreirate login, ali Vam nije potrebna lozinka, ostavite ovo polje prazno da se ovo upozorenje ne bi prikazivalo. Napomena: email može biti korišćen kao login ako je član povezan sa korisnikom.
+WarningMandatorySetupNotComplete=Obavezna podešavanja još nisu obavljena.
+WarningSafeModeOnCheckExecDir=Upozorenje PHP opcija <b>safe_mode</b> je aktivna, tako da komanda mora biti u folderu definisanom u PHP parametru <b>safe_mode_exec_dir</b>.
+WarningAllowUrlFopenMustBeOn=Parametar <b>allow_url_fopen</b> mora biti <b>on</b> u fajlu <b>php.ini</b> da bi ovaj modul mogao da funkcioniše. Morate ručno izmeniti ovaj fajl.
+WarningBuildScriptNotRunned=Skripta za generisanje grafika <b>%s</b> još nije izvršena, ili nema podataka za prikaz.
+WarningBookmarkAlreadyExists=Oznaka sa ovim naslovom ili ovim URL-om već postoji.
+WarningPassIsEmpty=Upozorenje, lozinka baze je prazna. Ovo je sigurnosni propust. Trebalo bi da dodate lozinku Vašoj bazi i da izmenite fajl config.php u skladu s tim.
+WarningConfFileMustBeReadOnly=Upozorenje, Vaš konfiguracioni fajl <b>htdocs/conf/conf.php</b> može biti izmenjen od strane web servera. Ovo je ozbiljan sigurnosni propust. Izmenite prava na ovom fajlu kako bi web server mogao samo da ga čita. Ukoliko koristite Windows i FAT format za Vaš disk, morate znati da ovaj sistem ne podržava upravljanje pravima i ne može biti pouzdan.
+WarningsOnXLines=Upozorenja na <b>%s</b> izvornih linija.
+WarningNoDocumentModelActivated=Nema aktivnog modela za generisanje dokumenata. Možete izabrati model po defaultu dok ne izmenite podešavanja modula.
+WarningLockFileDoesNotExists=Upozorenje, kada je podešavanje završeno, morate deaktivirati alate za instalaciju/migraciju tako što ćete dodati fajl <b>install.lock</b> u folder <b>%s</b>. Nedostatak ovog fajla je sigurnosni propust.
+WarningUntilDirRemoved=Sva sigurnosna upozorenja (vidljiva samo od strane administratora) će ostati aktivna sve dok postoji problem (ili ukoliko postavite konstantu MAIN_REMOVE_INSTALL_WARNING u meniju Podešavanja->Druga podešavanja).
+WarningCloseAlways=Upozorenje, zatvaranje će biti izvršeno čak i kada se iznos izvornih i ciljnih elemenata razlikuje. Budite pažljivi ako aktivirate ovu opciju.
+WarningUsingThisBoxSlowDown=Upozorenje, aktiviranje ove opcije će značajno usporiti prikaz svih strana koje prikazuju informaciju.
+WarningClickToDialUserSetupNotComplete=Podešavanja ClickToDial informacija za Vašeg korisnika nisu završena (pogledajte tab ClickToDial na kartici korisnika)
+WarningNotRelevant=Nebitna operacija za ove podatke
+WarningFeatureDisabledWithDisplayOptimizedForBlindNoJs=Funkcionalnost je deaktivirana kada su podešavanja prikaza optimizovana za slepe osobe ili za tekstualne browsere.
+WarningPaymentDateLowerThanInvoiceDate=Datum uplate (%s) je pre datuma fakture (%s) za faktru %s.
+WarningTooManyDataPleaseUseMoreFilters=Previše podataka (preko %s linija). Molimo koristite filtere ili podesite konstantu %s na veći limit.
+WarningSomeLinesWithNullHourlyRate=Neka utrošena vremena su sačuvana za korisnike za koje nije definisana satnica. Korišćena je satnica od 0 po defaultu, ali to može prouzrokovati pogrešnu evaluaciju.
diff --git a/htdocs/langs/sr_RS/exports.lang b/htdocs/langs/sr_RS/exports.lang
index df42de0632f75038fd7574394d3810595d1f2eaf..974d86827d321d3f6d3b94451824ec6b7b729175 100644
--- a/htdocs/langs/sr_RS/exports.lang
+++ b/htdocs/langs/sr_RS/exports.lang
@@ -8,129 +8,129 @@ ImportableDatas=Podaci koji se mogu importovati
 SelectExportDataSet=Izaberte podatke za export...
 SelectImportDataSet=Izaberite podatke za import...
 SelectExportFields=Izaberi polja za export ili selektiraj predefinisani format
-SelectImportFields=Choose source file fields you want to import and their target field in database by moving them up and down with anchor %s, or select a predefined import profile:
-NotImportedFields=Fields of source file not imported
-SaveExportModel=Save this export profile if you plan to reuse it later...
-SaveImportModel=Save this import profile if you plan to reuse it later...
-ExportModelName=Export profile name
-ExportModelSaved=Export profile saved under name <b>%s</b>.
-ExportableFields=Exportable fields
-ExportedFields=Exported fields
-ImportModelName=Import profile name
-ImportModelSaved=Import profile saved under name <b>%s</b>.
-ImportableFields=Importable fields
-ImportedFields=Imported fields
-DatasetToExport=Dataset to export
-DatasetToImport=Import file into dataset
-NoDiscardedFields=No fields in source file are discarded
-Dataset=Dataset
-ChooseFieldsOrdersAndTitle=Choose fields order...
-FieldsOrder=Fields order
-FieldsTitle=Fields title
-FieldOrder=Field order
-FieldTitle=Field title
-ChooseExportFormat=Choose export format
-NowClickToGenerateToBuildExportFile=Now, select file format in combo box and click on "Generate" to build export file...
-AvailableFormats=Available formats
-LibraryShort=Library
-LibraryUsed=Library used
-LibraryVersion=Version
-Step=Step
-FormatedImport=Import assistant
-FormatedImportDesc1=This area allows to import personalized data, using an assistant to help you in process without technical knowledge.
-FormatedImportDesc2=First step is to choose a king of data you want to load, then file to load, then to choose which fields you want to load.
-FormatedExport=Export assistant
-FormatedExportDesc1=This area allows to export personalized data, using an assistant to help you in process without technical knowledge.
-FormatedExportDesc2=First step is to choose a predefined dataset, then to choose which fields you want in your result files, and which order.
-FormatedExportDesc3=When data to export are selected, you can define output file format you want to export your data to.
-Sheet=Sheet
-NoImportableData=No importable data (no module with definitions to allow data imports)
-FileSuccessfullyBuilt=Export file generated
-SQLUsedForExport=SQL Request used to build export file
-LineId=Id of line
-LineLabel=Label of line
-LineDescription=Description of line
-LineUnitPrice=Unit price of line
-LineVATRate=VAT Rate of line
-LineQty=Quantity for line
-LineTotalHT=Amount net of tax for line
-LineTotalTTC=Amount with tax for line
-LineTotalVAT=Amount of VAT for line
-TypeOfLineServiceOrProduct=Type of line (0=product, 1=service)
-FileWithDataToImport=File with data to import
-FileToImport=Source file to import
-FileMustHaveOneOfFollowingFormat=File to import must have one of following format
-DownloadEmptyExample=Download example of empty source file
-ChooseFormatOfFileToImport=Choose file format to use as import file format by clicking on picto %s to select it...
-ChooseFileToImport=Upload file then click on picto %s to select file as source import file...
-SourceFileFormat=Source file format
-FieldsInSourceFile=Fields in source file
-FieldsInTargetDatabase=Target fields in Dolibarr database (bold=mandatory)
-Field=Field
-NoFields=No fields
-MoveField=Move field column number %s
+SelectImportFields=Izaberite polja izvornog fajla koja želite da importujete i odgovarajuća polja u bazi tako što ćete ih pomerati gore ili dole putem %s, ili selektirajte predefinisani import fajl:
+NotImportedFields=Polja source fajla nisu importovana
+SaveExportModel=Sačuvajte ovaj profil exporta ako želite da ga ponovo koristite...
+SaveImportModel=Sačuvajte ovaj profil importa ako želite da ga ponovo koristite...
+ExportModelName=Naziv export profila
+ExportModelSaved=Export profil sačuvan pod imenom <b>%s</b>.
+ExportableFields=Polja koja se mogu exportovati
+ExportedFields=Exportovana polja
+ImportModelName=Naziv import profila
+ImportModelSaved=Import profil je sačuvan pod imenom <b>%s</b>.
+ImportableFields=Polja koja se mogu importovati
+ImportedFields=Importovana polja
+DatasetToExport=Podaci za export
+DatasetToImport=Importuj fajl u podatke
+NoDiscardedFields=Nema ignorisanih polja u izvornom fajlu
+Dataset=Podaci
+ChooseFieldsOrdersAndTitle=Izaberite redosled polja...
+FieldsOrder=Redosled polja
+FieldsTitle=Naziv polja
+FieldOrder=Redosled polja
+FieldTitle=Naziv polja
+ChooseExportFormat=Izaberite export format
+NowClickToGenerateToBuildExportFile=Sada selektirajte format fajla u listi i kliknite na "Generiši" kako biste napravili eksport fajl...
+AvailableFormats=Dostupni formati
+LibraryShort=Biblioteka
+LibraryUsed=Korišćena biblioteka
+LibraryVersion=Verzija
+Step=Korak
+FormatedImport=Asistent importa
+FormatedImportDesc1=Ovde možete importovati personalizovane podake, koristeći asistenta koji će Vam pomoći u tom procesu i bez tehničkog znanja.
+FormatedImportDesc2=Prvi korak je da izaberete tip podataka koji želite da učitate, zatim fajl koji želite da učitate i na kraju polja koja želite da učitate.
+FormatedExport=Asistent exporta
+FormatedExportDesc1=Ovde možete eksportovati personalizovane podatke, uz pomoć asistenta i bez tehničkog znanja.
+FormatedExportDesc2=Prvi korak je definisanje podataka, zatim izbor polja koja želite da eksportujete i njihovog redosleda.
+FormatedExportDesc3=Kada su podaci za eksport selektovani, možete definisati format fajla koji želite da napravite.
+Sheet=Strana
+NoImportableData=Nema podataka za import (nema modula sa definicijama koje omogućavaju import podataka)
+FileSuccessfullyBuilt=Export fajl je generisan
+SQLUsedForExport=SQL upit korišćen za kreiranje eksport fajla
+LineId=ID linije
+LineLabel=Naziv linije
+LineDescription=Opis linije
+LineUnitPrice=Jedinična cena linije
+LineVATRate=PDV linije
+LineQty=Količina za liniju
+LineTotalHT=Neto svota za liniju
+LineTotalTTC=Bruto svota za liniju
+LineTotalVAT=PDV svota za liniju
+TypeOfLineServiceOrProduct=Tip linije (0=proizvod, 1=usluga)
+FileWithDataToImport=Fajl sa podacima za import
+FileToImport=Izvorni fajl za import
+FileMustHaveOneOfFollowingFormat=Fajl za import mora da ima jedan od sledećih formata
+DownloadEmptyExample=Download primera praznog izvornog fajla
+ChooseFormatOfFileToImport=Izaberite format fajla za importovanje klikom na ikonu %s...
+ChooseFileToImport=Uploadujte fajl i kliknite na ikonu %s da biste ga izabrali kao izvorni fajl za import...
+SourceFileFormat=Format izvornog fajla
+FieldsInSourceFile=Polja u izvornom fajlu
+FieldsInTargetDatabase=Ciljana polja u Dolibarr bazi (bold=obavezna)
+Field=Polje
+NoFields=Nema polja
+MoveField=Pomeri polje broj %s
 ExampleOfImportFile=Example_of_import_file
-SaveImportProfile=Save this import profile
-ErrorImportDuplicateProfil=Failed to save this import profile with this name. An existing profile already exists with this name.
-ImportSummary=Import setup summary
-TablesTarget=Targeted tables
-FieldsTarget=Targeted fields
-TableTarget=Targeted table
-FieldTarget=Targeted field
-FieldSource=Source field
-DoNotImportFirstLine=Do not import first line of source file
-NbOfSourceLines=Number of lines in source file
-NowClickToTestTheImport=Check import parameters you have defined. If they are correct, click on button "<b>%s</b>" to launch a simulation of import process (no data will be changed in your database, it's only a simulation for the moment)...
-RunSimulateImportFile=Launch the import simulation
-FieldNeedSource=This field requires data from the source file
-SomeMandatoryFieldHaveNoSource=Some mandatory fields have no source from data file
-InformationOnSourceFile=Information on source file
-InformationOnTargetTables=Information on target fields
-SelectAtLeastOneField=Switch at least one source field in the column of fields to export
-SelectFormat=Choose this import file format
-RunImportFile=Launch import file
-NowClickToRunTheImport=Check result of import simulation. If everything is ok, launch the definitive import.
-DataLoadedWithId=All data will be loaded with the following import id: <b>%s</b>
-ErrorMissingMandatoryValue=Mandatory data is empty in source file for field <b>%s</b>.
-TooMuchErrors=There is still <b>%s</b> other source lines with errors but output has been limited.
-TooMuchWarnings=There is still <b>%s</b> other source lines with warnings but output has been limited.
-EmptyLine=Empty line (will be discarded)
-CorrectErrorBeforeRunningImport=You must first correct all errors before running definitive import.
-FileWasImported=File was imported with number <b>%s</b>.
-YouCanUseImportIdToFindRecord=You can find all imported records in your database by filtering on field <b>import_key='%s'</b>.
-NbOfLinesOK=Number of lines with no errors and no warnings: <b>%s</b>.
-NbOfLinesImported=Number of lines successfully imported: <b>%s</b>.
-DataComeFromNoWhere=Value to insert comes from nowhere in source file.
-DataComeFromFileFieldNb=Value to insert comes from field number <b>%s</b> in source file.
-DataComeFromIdFoundFromRef=Value that comes from field number <b>%s</b> of source file will be used to find id of parent object to use (So the objet <b>%s</b> that has the ref. from source file must exists into Dolibarr).
-DataComeFromIdFoundFromCodeId=Code that comes from field number <b>%s</b> of source file will be used to find id of parent object to use (So the code from source file must exists into dictionary <b>%s</b>). Note that if you know id, you can also use it into source file instead of code. Import should work in both cases.
-DataIsInsertedInto=Data coming from source file will be inserted into the following field:
-DataIDSourceIsInsertedInto=The id of parent object found using the data in source file, will be inserted into the following field:
-DataCodeIDSourceIsInsertedInto=The id of parent line found from code, will be inserted into following field:
-SourceRequired=Data value is mandatory
-SourceExample=Example of possible data value
-ExampleAnyRefFoundIntoElement=Any ref found for element <b>%s</b>
-ExampleAnyCodeOrIdFoundIntoDictionary=Any code (or id) found into dictionary <b>%s</b>
-CSVFormatDesc=<b>Comma Separated Value</b> file format (.csv).<br>This is a text file format where fields are separated by separator [ %s ]. If separator is found inside a field content, field is rounded by round character [ %s ]. Escape character to escape round character is [ %s ].
-Excel95FormatDesc=<b>Excel</b> file format (.xls)<br>This is native Excel 95 format (BIFF5).
-Excel2007FormatDesc=<b>Excel</b> file format (.xlsx)<br>This is native Excel 2007 format (SpreadsheetML).
-TsvFormatDesc=<b>Tab Separated Value</b> file format (.tsv)<br>This is a text file format where fields are separated by a tabulator [tab].
-ExportFieldAutomaticallyAdded=Field <b>%s</b> was automatically added. It will avoid you to have similar lines to be treated as duplicate records (with this field added, all lines will own their own id and will differ).
-CsvOptions=Csv Options
+SaveImportProfile=Sačivaj ovaj import profil
+ErrorImportDuplicateProfil=Greška prilikom čuvanja profila importa sa ovim imenom. Već postoji profil sa istim imenom.
+ImportSummary=Rezime import podešavanja
+TablesTarget=Ciljane tabele
+FieldsTarget=Ciljana polja
+TableTarget=Ciljana tabela
+FieldTarget=Ciljano polje
+FieldSource=Izvorno polje
+DoNotImportFirstLine=Nemoj importovati prvu liniju izvornog fajla
+NbOfSourceLines=Broj linija u izvornom fajlu
+NowClickToTestTheImport=Proverite parametre za import koje ste definisali. Ukoliko su ispravni, kliknite na dugme "<b>%s</b>" kako biste simulirali import (u toj fazi se ništa od podataka ne menja u bazi, radi se samo o simulaciji).
+RunSimulateImportFile=Pokreni simulaciju importa
+FieldNeedSource=Ovo polje zahteva podatke iz izvornog fajla
+SomeMandatoryFieldHaveNoSource=Neka obavezna polja nisu prisutna u izvornom fajlu
+InformationOnSourceFile=Informacije o izvornom fajlu
+InformationOnTargetTables=Informacije o ciljanim poljima
+SelectAtLeastOneField=Uključite makar jedno izvorno polje u koloni polja za eksport
+SelectFormat=Izaberi ovaj format import fajla
+RunImportFile=Importuj fajl
+NowClickToRunTheImport=Proverite rezultat simulacije importa. Ukliko je sve ok, pokrenite definitivni import.
+DataLoadedWithId=Svi podaci će biti učitani sa sledećim import ID-em: <b>%s</b>
+ErrorMissingMandatoryValue=Obavezni podaci su odsutni u izvornom fajlu za polje <b>%s</b>.
+TooMuchErrors=Postoji još <b>%s</b> izvornih linija sa greškama, ali je njihov prikaz ograničen.
+TooMuchWarnings=Postoji još <b>%s</b> izvornih linija sa upozorenjima, ali je njihov prikaz ograničen.
+EmptyLine=Prazna linija (biće preskočena)
+CorrectErrorBeforeRunningImport=Prvo morate ispraviti sve greške pre nego što pokrenete definitivni import.
+FileWasImported=Fajl je importovan sa brojem <b>%s</b>.
+YouCanUseImportIdToFindRecord=Možete pronaći sve importovane podatke u bazi filtrirajući po polju <b>import_key='%s'</b>.
+NbOfLinesOK=Broj linija bez grešaka i upozorenja: <b>%s</b>.
+NbOfLinesImported=Broj uspešno importovanih linija: <b>%s</b>.
+DataComeFromNoWhere=Vrednost ne dolazi iz izvornog fajla.
+DataComeFromFileFieldNb=Vrednost dolazi iz polja broj <b>%s</b> u izvornom fajlu.
+DataComeFromIdFoundFromRef=Vrednost koja je u polju broj <b>%s</b> u izvornom fajlu će biti korišćena za pronalaženje matičnog objekta (tako da objekat <b>%s</b> koji je naznačen u tom polju mora već postojati u Dolibarr-u)
+DataComeFromIdFoundFromCodeId=Kod koji dolazi iz polja broj <b>%s</b> u izvornom fajlu će biti korišćen za pronalaženje matičnog objekta (tako da taj kod mora postojati u rečniku <b>%s</b>). Ukoliko znate Id matičnog objekta, možete ga koristiti umesto koda. Import funkcioniše u oba slučaja.
+DataIsInsertedInto=Data iz izvornog fajla će biti sačuvana u sledećem polju:
+DataIDSourceIsInsertedInto=Id matičnog objekta iz izvornog fajla će biti sačuvan u sledeće polje:
+DataCodeIDSourceIsInsertedInto=Id matičnog objekta pronađenog na snovu koda, će biti sačuvan u sledeće polje:
+SourceRequired=Vrednost je obavezna
+SourceExample=Primer mogućih vrednosti
+ExampleAnyRefFoundIntoElement=Ref. nađena za element <b>%s</b>
+ExampleAnyCodeOrIdFoundIntoDictionary=Kod (ili Id) je pronađen u rečniku <b>%s</b>
+CSVFormatDesc=<b>Comma Separated Value</b> format (.csv)<br>Ovo je tekst fajl gde su sva polja razdvojena separatorom [ %s ]. Ukoliko je separator pronađen u samom polju, polje mora biti odvojeno karakterom [ %s ]. Karakter [ %s ] se koristi da bi se poništila specijalna funkcija karaktera za odvajanje.
+Excel95FormatDesc=<b>Excel</b> format (.xls)<br>Ovo je osnovni Excel 95 format (BIFF5)
+Excel2007FormatDesc=<b>Excel</b> format (.xslx)<br>Ovo je osnovni Excel 2007 format (SpreadsheetML).
+TsvFormatDesc=<b>Tab Separated Value</b> format (.tsv)<br>Ovo je tekstualni format gde su polja razdvojena tabom.
+ExportFieldAutomaticallyAdded=Polje <b>%s</b> je automatski dodato. Ovo će sprečiti da slične linije budu tretirane kao duplikati (sa ovim dodatnim poljem, svaka linija će imati svoj sopstveni id i biće različite).
+CsvOptions=Csv opcije
 Separator=Separator
 Enclosure=Enclosure
-SuppliersProducts=Suppliers Products
-BankCode=Bank code
-DeskCode=Desk code
-BankAccountNumber=Account number
+SuppliersProducts=Proizvodi dobavljača
+BankCode=Kod banke
+DeskCode=Kod šaltera
+BankAccountNumber=Računovodstveni broj
 BankAccountNumberKey=Key
-SpecialCode=Special code
-ExportStringFilter=%% allows replacing one or more characters in the text
-ExportDateFilter=YYYY, YYYYMM, YYYYMMDD : filters by one year/month/day<br>YYYY+YYYY, YYYYMM+YYYYMM, YYYYMMDD+YYYYMMDD : filters over a range of years/months/days<br> > YYYY, > YYYYMM, > YYYYMMDD : filters on all following years/months/days<br> < YYYY, < YYYYMM, < YYYYMMDD : filters on all previous years/months/days
-ExportNumericFilter='NNNNN' filters by one value<br>'NNNNN+NNNNN' filters over a range of values<br>'&gt;NNNNN' filters by lower values<br>'&gt;NNNNN' filters by higher values
+SpecialCode=Posebni kod
+ExportStringFilter=%% omogućava zamenu jednog ili više karaktera u tekstu
+ExportDateFilter=YYYY, YYYYMM, YYYYMMDD : filtrira po godini/mesecu/danu<br>YYYY+YYYY, YYYYMM+YYYYMM, YYYYMMDD+YYYYMMDD : filtrira po periodugodina/meseci/dana<br> > YYYY, > YYYYMM, > YYYYMMDD : filtrira po svim narednim godinama/msecima/danima<br> < YYYY, < YYYYMM, < YYYYMMDD : filtrira po svim prethodnim godinama/mesecima/danima
+ExportNumericFilter='NNNNN' filtrira po jednoj vrednosti<br>'NNNNN+NNNNN' filtrira po rasponu vrednosti<br>'&gt;NNNNN' filtrira po nižim vrednostima<br>'&gt;NNNNN' filtrira po višim vrednostima
 ## filters
-SelectFilterFields=If you want to filter on some values, just input values here.
-FilterableFields=Filterable Fields
-FilteredFields=Filtered fields
-FilteredFieldsValues=Value for filter
-FormatControlRule=Format control rule
+SelectFilterFields=Ukoliko želite da filtrirate po nekim vrednostima unesite ih ovde.
+FilterableFields=Polja koj se mogu filtrirati
+FilteredFields=Filtrirana polja
+FilteredFieldsValues=Vrednost za filtriranje
+FormatControlRule=Pravilo za kontrolu formata
diff --git a/htdocs/langs/sr_RS/ftp.lang b/htdocs/langs/sr_RS/ftp.lang
index 01e1b8eace50439a0ed2f9ff0cacd4fabe4207d5..15cb044156dffe07efcb86596c3dd5827be92976 100644
--- a/htdocs/langs/sr_RS/ftp.lang
+++ b/htdocs/langs/sr_RS/ftp.lang
@@ -10,5 +10,5 @@ FailedToConnectToFTPServerWithCredentials=Pogrešan login/password za konekciju
 FTPFailedToRemoveFile=Greška prilikom brisanja fajla <b>%s</b>.
 FTPFailedToRemoveDir=Greška prilkom brisanja foldera  <b>%s</b> (proverite prava i da li je flder pazan).
 FTPPassiveMode=Passive mode
-ChooseAFTPEntryIntoMenu=Choose a FTP entry into menu...
-FailedToGetFile=Failed to get files %s
+ChooseAFTPEntryIntoMenu=Izaberite FTP stavku u meniju...
+FailedToGetFile=Greška prilikom preuzimanja fajlova %s
diff --git a/htdocs/langs/sr_RS/holiday.lang b/htdocs/langs/sr_RS/holiday.lang
index 800fdb22f9c42b0494d5827b8652e390e1b49b32..d73ce6a5d056b7991c12b026238d4813c7af9ac0 100644
--- a/htdocs/langs/sr_RS/holiday.lang
+++ b/htdocs/langs/sr_RS/holiday.lang
@@ -5,10 +5,9 @@ CPTitreMenu=Odsustva
 MenuReportMonth=Mesečna promena
 MenuAddCP=Novi zahtev za odsustvo
 NotActiveModCP=Morate aktivirati modul Odsustva da biste videli ovu stranu.
-NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
+NotConfigModCP=Morate konfigurisati modul odsustva da biste videli ovu stranu. Da biste ga konfigurisali, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> kliknite ovde </ a>.
 NoCPforUser=Nemate slobodnih dana.
 AddCP=Zatraži odsustvo
-Employe=Zaposleni
 DateDebCP=Početak
 DateFinCP=Kraj
 DateCreateCP=Datum kreiranja
@@ -22,10 +21,10 @@ ListeCP=Lista odsustva
 ReviewedByCP=Revidiraće
 DescCP=Opis
 SendRequestCP=Kreiraj zahtev za odsustvo
-DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Izmeni stanje odsustva
+DelayToRequestCP=Zahtevi za odsustvo moraju biti kreirani makar <b>%s dan(a)</b> pre odsustva.
+MenuConfCP=Balance of leaves
 UpdateAllCP=Ažuriraj odsustva
-SoldeCPUser=Leaves balance is <b>%s</b> days.
+SoldeCPUser=Broj slobodnih dana je <b>%s</b>.
 ErrorEndDateCP=Morate selektovati kraj posle početka.
 ErrorSQLCreateCP=Došlo je do SQL greške prilikom kreacije:
 ErrorIDFicheCP=Došlo je do greške, zahtev za odsustvo ne postoji.
@@ -33,9 +32,9 @@ ReturnCP=Povratak na prethodnu stranu
 ErrorUserViewCP=Nemate prava da vidite ovaj zahtev za odsustvo.
 InfosCP=Informacije zahteva za odsustvo
 InfosWorkflowCP=Tok informacija
-RequestByCP=Requested by
+RequestByCP=Zatražio
 TitreRequestCP=Zahtev za odsustvo
-NbUseDaysCP=Number of days of vacation consumed
+NbUseDaysCP=Broj potrošenih dana od odmora
 EditCP=Izmeni
 DeleteCP=Obriši
 ActionValidCP=Odobri
@@ -65,54 +64,54 @@ ConfirmCancelCP=Da li ste sigurni da želite da otkažete zahtev za odsustvo ?
 DetailRefusCP=Razlog odbijanja
 DateRefusCP=Datum odbijanja
 DateCancelCP=Datum otkazivanja
-DefineEventUserCP=Assign an exceptional leave for a user
+DefineEventUserCP=Dodeli vanredno odsustvo za korisnika
 addEventToUserCP=Dodeli odsustvo
 MotifCP=Razlog
 UserCP=Korisnik
-ErrorAddEventToUserCP=An error occurred while adding the exceptional leave.
-AddEventToUserOkCP=The addition of the exceptional leave has been completed.
-MenuLogCP=View change logs
-LogCP=Log of updates of available vacation days
-ActionByCP=Performed by
+ErrorAddEventToUserCP=Greška prilikom kreiranja vanrednog odsustva.
+AddEventToUserOkCP=Kreiranje vanrednog odsustva je završeno.
+MenuLogCP=Prikaži log izmena
+LogCP=Log izmena preostalih dana od odmora
+ActionByCP=Izvršio
 UserUpdateCP=Za korisnika
 PrevSoldeCP=Prethodno stanje
 NewSoldeCP=Novo stanje
-alreadyCPexist=A leave request has already been done on this period.
+alreadyCPexist=Zahtev za odsustvo već postoji za ovaj period.
 UserName=Ime
-Employee=Zaposeni
 FirstDayOfHoliday=Prvi dan odmora
 LastDayOfHoliday=Poslednji dan odmora
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Mesečno ažuriranje
 ManualUpdate=Ručno ažuriranje
 HolidaysCancelation=Napusti otkazivanje zahteva
 
 ## Configuration du Module ##
-ConfCP=Configuration of leave request module
+ConfCP=Konfiguracija modula zahteva za odsustvo.
 DescOptionCP=Opis opcije
 ValueOptionCP=Vrednost
-GroupToValidateCP=Group with the ability to approve leave requests
+GroupToValidateCP=Grupa sa pravima odobrenja zahteva za odsustvo
 ConfirmConfigCP=Potvrdi konfiguraciju
-LastUpdateCP=Last automatic update of leaves allocation
-MonthOfLastMonthlyUpdate=Month of last automatic update of leaves allocation
+LastUpdateCP=Poslednja automatska izmena odsustva
+MonthOfLastMonthlyUpdate=Mesec poslednjeg automatskog ažuriranja broja slobodnih dana.
 UpdateConfCPOK=Uspešno ažurirano
-ErrorUpdateConfCP=An error occurred during the update, please try again.
-AddCPforUsers=Please add the balance of leaves allocation of users by <a href="../define_holiday.php" style="font-weight: normal; color: red; text-decoration: underline;">clicking here</a>.
+ErrorUpdateConfCP=Greška prilikom izmene, pokušajte ponovo.
+AddCPforUsers=Molimo dodajte slobodne dane korisnika preko <a href="../define_holiday.php" style="font-weight: normal; color: red; text-decoration: underline;">ovog linka</a>.
 DelayForSubmitCP=Krajnji rok za kreiranje zahteva za odsustvo
-AlertapprobatortorDelayCP=Prevent the approbator if the leave request does not match the deadline
-AlertValidatorDelayCP=Préevent the approbator if the leave request exceed delay
-AlertValidorSoldeCP=Prevent the approbator if the leave request exceed the balance
-nbUserCP=Number of users supported in the module Leaves
-nbHolidayDeductedCP=Number of leave days to be deducted per day of vacation taken
-nbHolidayEveryMonthCP=Number of leave days added every month
+AlertapprobatortorDelayCP=Spreči odobrenje ukoliko zahtev nije obavljen na vreme
+AlertValidatorDelayCP=Spreči odobrenje ukoliko zahtev prekoračuje termin
+AlertValidorSoldeCP=Spreči odobrenje ukoliko zahtev prekoračuje broj dostupnih dana
+nbUserCP=Broj pordžanih korisnika u modulu odsustva
+nbHolidayDeductedCP=Broj dana koji se skida sa stanja za svaki dan odmora
+nbHolidayEveryMonthCP=Broj dana dodatih svakog meseca
 Module27130Name= Upravljanje zahtevima za odsustvo
 Module27130Desc= Upravljanje zahtevima za odsustvo
 TitleOptionMainCP=Gravna podešavanja zahteva za odsustvo
 TitleOptionEventCP=Podešavanja zahteva za odsustvo zbog događaja
 ValidEventCP=Potvrdi
-UpdateEventCP=Update events
+UpdateEventCP=Događaji izmena
 CreateEventCP=Kreiraj
 NameEventCP=Ime događaja
-OkCreateEventCP=The addition of the event went well.
+OkCreateEventCP=Dodavanje događaja uspešno.
 ErrorCreateEventCP=Greška prilikom kreiranja događaja.
 UpdateEventOkCP=Događaj je uspešno ažuriran.
 ErrorUpdateEventCP=Greška prilikom ažuriranja događaja.
@@ -131,14 +130,17 @@ TitleAdminCP=Podešavnja odsustva
 NoticePeriod=Rok za obaveštenje
 #Messages
 HolidaysToValidate=Odobri zahteve za odsustva
-HolidaysToValidateBody=Below is a leave request to validate
-HolidaysToValidateDelay=This leave request will take place within a period of less than %s days.
-HolidaysToValidateAlertSolde=The user who made this leave reques do not have enough available days.
+HolidaysToValidateBody=Ispod je zahtev za odobrenje
+HolidaysToValidateDelay=Ovaj zahtev se odnosi na period manji od %s dana
+HolidaysToValidateAlertSolde=Korisnik koji je napravio zahtev nema dovoljno slobodnih dana.
 HolidaysValidated=Odobreni zahtevi za odsustva
-HolidaysValidatedBody=Your leave request for %s to %s has been validated.
+HolidaysValidatedBody=Vaš zahtev za odsustvo %s do %s je potvrđen.
 HolidaysRefused=Zahtev odbijen
-HolidaysRefusedBody=Your leave request for %s to %s has been denied for the following reason :
+HolidaysRefusedBody=Vaš zahtev za odsustvo %s do %s je odbijen sa sledećim obrazloženjem :
 HolidaysCanceled=Otkazan zahtev za odsustvo
-HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
+HolidaysCanceledBody=Vaš zahtev za odsustvo %s do %s je otkazan.
 NewByMonth=Mesečno dodato
-GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
+GoIntoDictionaryHolidayTypes=Idite na <strong>Home - Podešavanja - Rečnik - Tip odsustva</strong> da biste podesili različite tipove odsustva.
diff --git a/htdocs/langs/sr_RS/install.lang b/htdocs/langs/sr_RS/install.lang
index 249716c79d2edfaf708a364b019b70635d68987a..80e1038aebd58d7b4892b12ac782f65fcee95801 100644
--- a/htdocs/langs/sr_RS/install.lang
+++ b/htdocs/langs/sr_RS/install.lang
@@ -58,7 +58,7 @@ AdminPassword=Password za vlasnika Dolibarr baze.
 CreateDatabase=Kreiraj bazu
 CreateUser=Kreiraj vlasnika
 DatabaseSuperUserAccess=Server baze - superuser access
-CheckToCreateDatabase=Check box if database does not exist and must be created.<br>In this case, you must fill the login/password for superuser account at the bottom of this page.
+CheckToCreateDatabase=Selektirajte ovu opciju ukoliko baza ne postoji i mora biti kreirana.<br> U ovom slučaju, morate ispuniti login/lozinku superuser-a na dnu ove strane.
 CheckToCreateUser=Check box if database owner does not exist and must be created.<br>In this case, you must choose its login and password and also fill the login/password for the superuser account at the bottom of this page. If this box is unchecked, owner database and its passwords must exists.
 DatabaseRootLoginDescription=Login of the user allowed to create new databases or new users, mandatory if your database or its owner does not already exists.
 KeepEmptyIfNoPassword=Ostavite prazno ako user nema password (izbegavajte ovo)
diff --git a/htdocs/langs/sr_RS/interventions.lang b/htdocs/langs/sr_RS/interventions.lang
index a2e011c45a7088aa988875bd0ae7cc84c383feab..78f3756baff6f2314ded880b7c0213e3b19279c1 100644
--- a/htdocs/langs/sr_RS/interventions.lang
+++ b/htdocs/langs/sr_RS/interventions.lang
@@ -25,7 +25,7 @@ NameAndSignatureOfExternalContact=Ime i potpis klijenta :
 DocumentModelStandard=Standardni model dokumenta za intervencije
 InterventionCardsAndInterventionLines=Intervencije i linije intervencija
 InterventionClassifyBilled=Označi "Naplaćeno"
-InterventionClassifyUnBilled=Classify "Unbilled"
+InterventionClassifyUnBilled=Postavi kao "Nenaplaćeno"
 StatusInterInvoiced=Naplaćeno
 RelatedInterventions=Povezane intervencije
 ShowIntervention=Prikaži intervenciju
@@ -35,13 +35,13 @@ InterventionCreatedInDolibarr=Intervencija %s je kreirana
 InterventionValidatedInDolibarr=Intervencija %s je odobrena
 InterventionModifiedInDolibarr=Intervencija %s je izmenjena
 InterventionClassifiedBilledInDolibarr=Intervencija %s je označena kao plaćena
-InterventionClassifiedUnbilledInDolibarr=Intervention %s set as unbilled
+InterventionClassifiedUnbilledInDolibarr=Intervencija %s je postavljena kao nenaplaćena
 InterventionSentByEMail=Intervencija %s je poslata mailom
 InterventionDeletedInDolibarr=Intervencija %s je obrisana
 SearchAnIntervention=Potraži intervenciju
-InterventionsArea=Interventions area
-DraftFichinter=Draft interventions
-LastModifiedInterventions=Last %s modified interventions
+InterventionsArea=Intervencije
+DraftFichinter=Draft intervencije
+LastModifiedInterventions=Poslednjih %s izmenjenih intervencija
 ##### Types de contacts #####
 TypeContact_fichinter_internal_INTERREPFOLL=Osoba koja prati intervenciju
 TypeContact_fichinter_internal_INTERVENING=Osoba koja interveniše
@@ -50,18 +50,21 @@ TypeContact_fichinter_external_CUSTOMER=Kontakt klijenta koji prat intervenciju
 # Modele numérotation
 ArcticNumRefModelDesc1=Model generičkog broja
 ArcticNumRefModelError=Neuspela aktivacija
-PacificNumRefModelDesc1=Return numero with format %syymm-nnnn where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
-PacificNumRefModelError=An intervention card starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
+PacificNumRefModelDesc1=Vraća broj u formatu %syymm-nnnn gde je yy godina, mm mesec, a nnnn numerička sekvenca bez vraćanja na 0
+PacificNumRefModelError=Kartica intervencije sa početkom $syymm već postoji i nije kompatibina sa ovim modelom sekvence. Uklonite je ili je preimenujte da biste aktivirali ovaj modul.
 PrintProductsOnFichinter=Štampaj proizvode sa kartice intervencije
 PrintProductsOnFichinterDetails=Intervencije generisane iz narudžbina
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
-InterId=Intervention id
-InterRef=Intervention ref.
-InterDateCreation=Date creation intervention
-InterDuration=Duration intervention
-InterStatus=Status intervention
-InterNote=Note intervention
-InterLineId=Line id intervention
-InterLineDate=Line date intervention
-InterLineDuration=Line duration intervention
-InterLineDesc=Line description intervention
+InterId=Id intervencije
+InterRef=Ref. intervencije
+InterDateCreation=Datum kreiranja intervencije
+InterDuration=Trajanje intervencije
+InterStatus=Status intervencije
+InterNote=Napomena intervencije
+InterLineId=Id linije intervencije
+InterLineDate=Datum linije intervencije
+InterLineDuration=Trajanje linije intervencije
+InterLineDesc=Opis linije intervencije
diff --git a/htdocs/langs/sr_RS/link.lang b/htdocs/langs/sr_RS/link.lang
index 3979ddc510a8566a976bd6e09354312e86f526d3..99510dc709b118c1bc9e11eadbef62dea1849475 100644
--- a/htdocs/langs/sr_RS/link.lang
+++ b/htdocs/langs/sr_RS/link.lang
@@ -6,4 +6,4 @@ ErrorFileNotLinked=Fajl nije mogao biti linkovan
 LinkRemoved=Link %s je uklonjen
 ErrorFailedToDeleteLink= Greška prilikom uklanjanja linka '<b>%s</b>'
 ErrorFailedToUpdateLink= Greška prilikom ažuriranja linka '<b>%s</b>'
-URLToLink=URL to link
+URLToLink=URL za link
diff --git a/htdocs/langs/sr_RS/mails.lang b/htdocs/langs/sr_RS/mails.lang
index dc5a4fcd42cfc09d9530a2064f938b5e1a0dcd9a..053c24d80abc6b75116de00f94a018f2012219a6 100644
--- a/htdocs/langs/sr_RS/mails.lang
+++ b/htdocs/langs/sr_RS/mails.lang
@@ -50,7 +50,7 @@ MailingStatusNotContact=Ne kontaktirati više
 ErrorMailRecipientIsEmpty=Primalac nije unet
 WarningNoEMailsAdded=Nema novih mail-ova za dodavanje listi primalaca
 ConfirmValidMailing=Da li ste sigurni da želite da odobrite ovaj emailing ?
-ConfirmResetMailing=Warning, by reinitializing emailing <b>%s</b>, you allow to make a mass sending of this email another time. Are you sure you this is what you want to do ?
+ConfirmResetMailing=Upozorenje, ako reinicijalizujete emailing <b>%s</b>, omogućićete ponovno masovno slanje ovog maila. Da li ste sigurni da to želite da uradite ?
 ConfirmDeleteMailing=Da li ste sigurni da želite da obrišete ovaj emailing ?
 NbOfRecipients=Broj primalaca
 NbOfUniqueEMails=Br. jedinstvenih emailova
@@ -60,8 +60,8 @@ NoTargetYet=Još nema definisanih primalaca (idite na tab Primaoci)
 AddRecipients=Dodaj primaoce
 RemoveRecipient=Ukloni primaoca
 CommonSubstitutions=Opšte zamene
-YouCanAddYourOwnPredefindedListHere=To create your email selector module, see htdocs/core/modules/mailings/README.
-EMailTestSubstitutionReplacedByGenericValues=When using test mode, substitutions variables are replaced by generic values
+YouCanAddYourOwnPredefindedListHere=Da biste kreirali Vaš modul mail selektor, pogledajte htdocs/core/modules/mailings/README.
+EMailTestSubstitutionReplacedByGenericValues=Kada koristite test mod, promenljive su inicijalizovane generičkim vrednostima
 MailingAddFile=Dodaj ovaj fajl
 NoAttachedFiles=Nema priloženih fajlova
 BadEMail=Pogrešna vrednost za email
@@ -74,33 +74,34 @@ DateSending=Datum slanja
 SentTo=Poslato za <b>%s</b>
 MailingStatusRead=Pročitaj
 CheckRead=Pročitaj prijemnicu
-YourMailUnsubcribeOK=The email <b>%s</b>  is correctly unsubcribe from mailing list
+YourMailUnsubcribeOK=Email <b>%s</b> je uspešno uklonjen iz liste.
 MailtoEMail=Link ka mailu
 ActivateCheckRead=Omogući korišćenje "Unsubscribe" linka
-ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubcribe" feature
+ActivateCheckReadKey=Ključ za enkripciju URL-a u funkcionalnostima "Pregled Računa" i "Ukloni sa liste"
 EMailSentToNRecipients=Mail poslat %s primalaca.
-XTargetsAdded=<b>%s</b> recipients added into target list
-EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+XTargetsAdded=<b>%s</b> primalaca su dodati na listu
+EachInvoiceWillBeAttachedToEmail=Dokument sa default fakturom će biti kreiran i priložen svakom mailu.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Podsetnik za račun %s (%s)
 SendRemind=Pošalji podsetnik emailom
 RemindSent=%s podsetnik(a) poslato
-AllRecipientSelected=All thirdparties selected and if an email is set.
+AllRecipientSelected=Svi subjekti su selektirani ukoliko imaju email.
 NoRemindSent=Nema poslatih podsetnika
-ResultOfMailSending=Result of mass EMail sending
-NbSelected=Nb selected
-NbIgnored=Nb ignored
-NbSent=Nb sent
+ResultOfMailSending=Rezultat masovnog mailinga
+NbSelected=Br selektiranih
+NbIgnored= Br ignorisanih
+NbSent=Br poslatih
 
 # Libelle des modules de liste de destinataires mailing
-MailingModuleDescContactCompanies=Contacts/addresses of all third parties (customer, prospect, supplier, ...)
+MailingModuleDescContactCompanies=Kontaktišadrese svih subjekata (klijenti, kandidati, dobavljači, ...)
 MailingModuleDescDolibarrUsers=Dolibarr korisnici
 MailingModuleDescFundationMembers=Članovi fondacije sa mailovima
-MailingModuleDescEmailsFromFile=EMails from a text file (email;lastname;firstname;other)
-MailingModuleDescEmailsFromUser=EMails from user input (email;lastname;firstname;other)
+MailingModuleDescEmailsFromFile=Email-ovi iz tekst fajla (email;prezime;ime;ostalo)
+MailingModuleDescEmailsFromUser=Email-ovi koje je uneo korisnik (email;prezime;ime;ostalo)
 MailingModuleDescContactsCategories=Subjekti (po kategoriji)
 MailingModuleDescDolibarrContractsLinesExpired=Subjekti sa isteklim linijama ugovora
 MailingModuleDescContactsByCompanyCategory=Kontakti/adrese subjekata (po kategoriji subjekta)
-MailingModuleDescContactsByCategory=Contacts/addresses of third parties (by category)
+MailingModuleDescContactsByCategory=Kontakti/adrese subjekata (po kategoriji)
 MailingModuleDescMembersCategories=Članovi fondacije (po kategorijama)
 MailingModuleDescContactsByFunction=Kontakti/adrese subjekata (po poziciji/funkciji)
 LineInFile=Linija %s u fajlu
@@ -115,10 +116,10 @@ SearchAMailing=Pretraži emailing
 SendMailing=Pošalji emailing
 SendMail=Pošalji email
 SentBy=Poslao
-MailingNeedCommand=For security reason, sending an emailing is better when performed from command line. If you have one, ask your server administrator to launch the following command to send the emailing to all recipients:
-MailingNeedCommand2=You can however send them online by adding parameter MAILING_LIMIT_SENDBYWEB with value of max number of emails you want to send by session. For this, go on Home - Setup - Other.
-ConfirmSendingEmailing=If you can't or prefer sending them with your www browser, please confirm you are sure you want to send emailing now from your browser ?
-LimitSendingEmailing=Note: Sending of emailings from web interface is done in several times for security and timeout reasons, <b>%s</b> recipients at a time for each sending session.
+MailingNeedCommand=Iz sigurnosnih razloga, slanje maila je bolje ukoliko se obavlja iz komandne linije. Ukoliko je moguće, obratite se administratoru kako bi putem sledeće komande posla mail svim primaocima:
+MailingNeedCommand2=Možete ih poslati i online, dodavanjem parametra MAILING_LIMIT_SENDBYWEB sa vrednošću maksimalnog broja mailova koje želite da pošaljete u jednoj sesiji. Pogledajte Home - Podešavanja - Ostalo.
+ConfirmSendingEmailing=Ukoliko ne možete, ili preferirate slanje putem browsera, molimo potvrdite da želite da pošaljete ovaj mailing sada iz browsera ?
+LimitSendingEmailing=Napomena: Slanje mailova putem web interfejsa se radi iz više puta iz bezbednosnih razloga, <b>%s</b> primalaca od jednom za svaku sesiju slanja.
 TargetsReset=Očisti listu
 ToClearAllRecipientsClickHere=Kliknite ovde da biste očistili listu primalaca za ovaj emailing
 ToAddRecipientsChooseHere=Dodaj primaoce selekcijom u listi
@@ -126,12 +127,12 @@ NbOfEMailingsReceived=Masovni emailing primljen
 NbOfEMailingsSend=Masovni mail poslat
 IdRecord=ID linije
 DeliveryReceipt=Prijemnica
-YouCanUseCommaSeparatorForSeveralRecipients=You can use the <b>comma</b> separator to specify several recipients.
+YouCanUseCommaSeparatorForSeveralRecipients=Možete koristiti <b>zarez</b> da biste naveli više primalaca
 TagCheckMail=Beleži otvaranje mailova
 TagUnsubscribe=Unsubscribe link
 TagSignature=Potpis pošiljaoca
 TagMailtoEmail=Mail primaoca
-NoEmailSentBadSenderOrRecipientEmail=No email sent. Bad sender or recipient email. Verify user profile.
+NoEmailSentBadSenderOrRecipientEmail=Mail nije poslat. Pogrešan mail primaoca ili pošiljaoca. Proverite profil korisnika.
 # Module Notifications
 Notifications=Obaveštenja
 NoNotificationsWillBeSent=Nema planiranih obaveštenja za ovaj događaj i kompaniju
@@ -140,8 +141,8 @@ SomeNotificationsWillBeSent=%s obaveštenja će biti poslato mailom
 AddNewNotification=Aktiviraj novi target za email obaveštenja
 ListOfActiveNotifications=Lista aktivnih targeta za email obaveštenja
 ListOfNotificationsDone=Lista svih poslatih obaveštenja
-MailSendSetupIs=Configuration of email sending has been setup to '%s'. This mode can't be used to send mass emailing.
-MailSendSetupIs2=You must first go, with an admin account, into menu %sHome - Setup - EMails%s to change parameter <strong>'%s'</strong> to use mode '%s'. With this mode, you can enter setup of the SMTP server provided by your Internet Service Provider and use Mass emailing feature.
-MailSendSetupIs3=If you have any questions on how to setup your SMTP server, you can ask to %s.
-YouCanAlsoUseSupervisorKeyword=You can also add the keyword <strong>__SUPERVISOREMAIL__</strong> to have email being sent to the supervisor of user (works only if an email is defined for this supervisor)
-NbOfTargetedContacts=Current number of targeted contact emails
+MailSendSetupIs=Konfiguracija slanja mailova je podešena na "%s". Ovaj mod ne može slati masovne mailove.
+MailSendSetupIs2=Prvo morate sa admin nalogom otvoriti meni %sHome - Setup - EMails%s da biste promenili parametar <strong>'%s'</strong> i prešli u mod '%s'. U ovom modu, možete uneti podešavanja SMTP servera Vašeg provajdera i koristiti funkcionalnost masovnog emailinga.
+MailSendSetupIs3=Ukoliko imate pitanja oko podešavanja SMTP servera, možete pitati %s.
+YouCanAlsoUseSupervisorKeyword=Takođe možete dodati parametar <strong>__SUPERVISOREMAIL__</strong> kako bi mail bio poslat supervizoru korisnika (radi samo ukoliko je mail definisan za ovog supervizora)
+NbOfTargetedContacts=Trenutni broj targetiranih kontakt mailova
diff --git a/htdocs/langs/sr_RS/main.lang b/htdocs/langs/sr_RS/main.lang
index 2539d4f34816c55d16c35c67079fd449c4c4f868..64312e45f61713823362e99d897b29ab7efb1836 100644
--- a/htdocs/langs/sr_RS/main.lang
+++ b/htdocs/langs/sr_RS/main.lang
@@ -24,11 +24,12 @@ FormatDateHourSecShort=%d/%m/%Y %I:%M:%S %p
 FormatDateHourTextShort=%d %b %Y %H:%M
 FormatDateHourText=%d %B %Y %H:%M
 DatabaseConnection=Konekcija sa bazom
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Nema prevoda
 NoRecordFound=Nema rezultata
 NoError=Nema greške
 Error=Greška
-Errors=Errors
+Errors=Greške
 ErrorFieldRequired=Polje '%s' je obavezno
 ErrorFieldFormat=Polje '%s' sadrži pogrešnu vrednost
 ErrorFileDoesNotExists=Fajl %s ne postoji
@@ -43,24 +44,24 @@ ErrorGoToGlobalSetup=Idite u 'Company/Foundation' podešavanja da ovo ispravite
 ErrorGoToModuleSetup=Idite u podešavanja Modula da ovo ispravite
 ErrorFailedToSendMail=Greška u slanju mail-a (pošiljalac=%s, primalac=%s)
 ErrorAttachedFilesDisabled=Fajlovi u prilogu su deaktivirani na ovom serveru
-ErrorFileNotUploaded=File was not uploaded. Check that size does not exceed maximum allowed, that free space is available on disk and that there is not already a file with same name in this directory.
+ErrorFileNotUploaded=Fajl nije uploadovan. Proverite da li je fajl preveliki, da li ima dovoljno prostora na disku i da li postoji fajl sa istim imenom u ovom folderu.
 ErrorInternalErrorDetected=Detektovana je greška
 ErrorNoRequestRan=Nema izvršenih upita
 ErrorWrongHostParameter=Pogrešan host parametar
 ErrorYourCountryIsNotDefined=Vaša zemlja nije definisana. Idite na Početna-Podešavanja-Izmene i ponovo popunite formu
-ErrorRecordIsUsedByChild=Failed to delete this record. This record is used by at least one child records.
+ErrorRecordIsUsedByChild=Greška prilikom brisanja linije. Ovu liniju koristi jedan ili više drugih redova. 
 ErrorWrongValue=Pogrešna vrednost
 ErrorWrongValueForParameterX=Pogrešna vrednost za parametar %s
 ErrorNoRequestInError=Nema upita sa greškom
 ErrorServiceUnavailableTryLater=Servis trenutno nije dostupan. Pokušajte ponovo.
 ErrorDuplicateField=Dupla vrednost u jedinstvenom polju
 ErrorSomeErrorWereFoundRollbackIsDone=Detektovane su greške. Poništavamo sve promene.
-ErrorConfigParameterNotDefined=Parameter <b>%s</b> is not defined inside Dolibarr config file <b>conf.php</b>.
-ErrorCantLoadUserFromDolibarrDatabase=Failed to find user <b>%s</b> in Dolibarr database.
-ErrorNoVATRateDefinedForSellerCountry=Error, no vat rates defined for country '%s'.
-ErrorNoSocialContributionForSellerCountry=Error, no social/fiscal taxes type defined for country '%s'.
+ErrorConfigParameterNotDefined=Parametar <b>%s</b> nije definisan u Dolibarr config fajlu <b>conf.php</b>.
+ErrorCantLoadUserFromDolibarrDatabase=Korisnik <b>%s</b> nije pronađen u Dolibarr bazi.
+ErrorNoVATRateDefinedForSellerCountry=Greška, PDV stopa nije definisana za zemlju "%s".
+ErrorNoSocialContributionForSellerCountry=Greška, nema poreskih stopa definisanih za zemlju "%s".
 ErrorFailedToSaveFile=Greška, nemoguće sačuvati fajl.
-NotAuthorized=You are not authorized to do that.
+NotAuthorized=Nemate prava za tu akciju.
 SetDate=Postavi datum
 SelectDate=Izaberi datum
 SeeAlso=Pogledajte i %s
@@ -68,17 +69,17 @@ SeeHere=Pogledaj ovde
 BackgroundColorByDefault=Default boja pozadine
 FileNotUploaded=Fajl nije uloadovan
 FileUploaded=Fajl je uspešno uploadovan
-FileWasNotUploaded=A file is selected for attachment but was not yet uploaded. Click on "Attach file" for this.
+FileWasNotUploaded=Fajl je selektiran za prilog, ali još uvek nije uploadovan. Klikni na "Priloži fajl".
 NbOfEntries=Br linija
 GoToWikiHelpPage=Pročitajte online pomoć (potrebna je internet konekcija)
 GoToHelpPage=Pročitajte pomoć
 RecordSaved=Linija sačuvana
 RecordDeleted=Linija obrisana
-LevelOfFeature=Level of features
+LevelOfFeature=Nivo funkcionalnosti
 NotDefined=Nije definisano
-DefinedAndHasThisValue=Defined and value to
+DefinedAndHasThisValue=Definisana vrednost
 IsNotDefined=nedefinisano
-DolibarrInHttpAuthenticationSoPasswordUseless=Dolibarr authentication mode is setup to <b>%s</b> in configuration file <b>conf.php</b>.<br>This means that password database is extern to Dolibarr, so changing this field may have no effects.
+DolibarrInHttpAuthenticationSoPasswordUseless=Mod autentifkacije je podešen na <b>%s</b> u konfiguracionom fajlu <b>conf.php</b>.<br>To znači da je baza sa lozinkama van Dolibarr-a, tako da izmena ovog polja nema efekata.
 Administrator=Administrator
 Undefined=Nedefinisano
 PasswordForgotten=Zaboravljena lozinka ?
@@ -99,13 +100,14 @@ DolibarrHasDetectedError=Dolibarr je detektovao tehničku grešku
 InformationToHelpDiagnose=Ova informacija može pomoći u dijagnostici problema
 MoreInformation=Više informacija
 TechnicalInformation=Tehnički podaci
-TechnicalID=Technical ID
+TechnicalID=Tehnički ID
 NotePublic=Beleška (javna)
 NotePrivate=Beleška (privatna)
-PrecisionUnitIsLimitedToXDecimals=Dolibarr was setup to limit precision of unit prices to <b>%s</b> decimals.
+PrecisionUnitIsLimitedToXDecimals=Dolibarr je podešen da zaokružuje cene na <b>%s</b> decimala.
 DoTest=Test
 ToFilter=Filter
-WarningYouHaveAtLeastOneTaskLate=Warning, you have at least one element that has exceeded the tolerance delay.
+NoFilter=No filter
+WarningYouHaveAtLeastOneTaskLate=Upozorenje, imate barem jedan element koji kasni.
 yes=da
 Yes=Da
 no=ne
@@ -181,7 +183,7 @@ Groups=Grupe
 NoUserGroupDefined=Korisnička grupa nije definisana
 Password=Lozinka
 PasswordRetype=Ponovo unesi lozinku
-NoteSomeFeaturesAreDisabled=Note that a lot of features/modules are disabled in this demonstration.
+NoteSomeFeaturesAreDisabled=Dosta funkcionalnosti/modula su deaktivirani u ovoj demonstraciji.
 Name=Ime
 Person=Osoba
 Parameter=Parametar
@@ -216,7 +218,7 @@ Limit=Limit
 Limits=Limiti
 DevelopmentTeam=Razvojni tim
 Logout=Logout
-NoLogoutProcessWithAuthMode=No applicative disconnect feature with authentication mode <b>%s</b>
+NoLogoutProcessWithAuthMode=Nema funkcionalnosti za diskonekciju sa <b>%s</b> modom autentifikacije
 Connection=Konekcija
 Setup=Podešavanja
 Alert=Alert
@@ -228,10 +230,12 @@ Now=Sada
 HourStart=Vreme početka
 Date=Datum
 DateAndHour=Datum i vreme
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Početak
 DateEnd=Kraj
 DateCreation=Datum kreacije
-DateCreationShort=Creat. date
+DateCreationShort=Datum kreiranja
 DateModification=Datum izmene
 DateModificationShort=Dat. izmene
 DateLastModification=Datum poslednje izmene
@@ -307,7 +311,7 @@ UnitPriceHT=Jedinična cena (neto)
 UnitPriceTTC=Jedinična cena
 PriceU=J.C.
 PriceUHT=J.C. (neto)
-SupplierProposalUHT=U.P. net Requested
+SupplierProposalUHT=Potrebna je Neto J.C. 
 PriceUTTC=J.C. (bruto)
 Amount=Iznos
 AmountInvoice=Iznos računa
@@ -345,7 +349,7 @@ IncludedVAT=Uračunat porez
 HT=Neto
 TTC=Bruto
 VAT=Porez na promet
-VATs=Sales taxes
+VATs=Porezi prodaje
 LT1ES=RE
 LT2ES=IRPF
 VATRate=Stopa poreza
@@ -359,10 +363,10 @@ FullList=Cela lista
 Statistics=Statistike
 OtherStatistics=Druge statistike
 Status=Status
-Favorite=Favorite
+Favorite=Preferirani
 ShortInfo=Info.
 Ref=Ref.
-ExternalRef=Ref. extern
+ExternalRef=Eksterna ref.
 RefSupplier=Ref. dobavljača
 RefPayment=Ref. plaćanja
 CommercialProposalsShort=Komercijalne svrhe
@@ -386,9 +390,9 @@ ActionsOnCompany=Događaji vezani za ovaj subjekat
 ActionsOnMember=Događaji vezani za ovog člana
 NActions=%s događaja
 NActionsLate=%s kasni
-RequestAlreadyDone=Request already recorded
+RequestAlreadyDone=Upit je već zabeležen
 Filter=Filter
-FilterOnInto=Search criteria '<strong>%s</strong>' into fields %s
+FilterOnInto=Kriterijum pretrage '<strong>%s</strong>' za polja %s
 RemoveFilter=Ukloni filter
 ChartGenerated=Grafik generisan
 ChartNotGenerated=Grafik nije generisan
@@ -401,7 +405,7 @@ MyBookmarks=Moje zabeleške
 OtherInformationsBoxes=Drugi info boxovi
 DolibarrBoard=Dolibarr board
 DolibarrStateBoard=Statistike
-DolibarrWorkBoard=Work tasks board
+DolibarrWorkBoard=Pregled radnih zadataka
 Available=Dostupno
 NotYetAvailable=Još uvek nedostupno
 NotAvailable=Nedostupno
@@ -541,7 +545,7 @@ DateFromTo=Od %s do %s
 DateFrom=Od %s
 DateUntil=Do %s
 Check=Proveri
-Uncheck=Uncheck
+Uncheck=Ukloni
 Internal=interni
 External=Eksterni
 Internals=Interni
@@ -593,7 +597,7 @@ CanBeModifiedIfKo=Može biti izmenjeno ukoliko nije validno
 RecordModifiedSuccessfully=Linija uspešno izmenjena
 RecordsModified=%s linija izmenjeno
 AutomaticCode=Automatski kod
-NotManaged=Not managed
+NotManaged=Nema upravljanja
 FeatureDisabled=Funkcionalnost deaktivirana
 MoveBox=Pomeri box %s
 Offered=Ponuđeno
@@ -607,7 +611,8 @@ TotalWoman=Celo
 TotalMan=Celo
 NeverReceived=Nije primljena
 Canceled=Otkazano
-YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanChangeValuesForThisListFromDictionarySetup=Možete izmeniti vrednosti ove liste iz menija podešavanja - rečnik
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Boja
 Documents=Povezani fajlovi
 DocumentsNb=Povezani fajlovi (%s)
@@ -618,7 +623,7 @@ MenuECM=Dokumenti
 MenuAWStats=AWStats
 MenuMembers=Članovi
 MenuAgendaGoogle=Google agenda
-ThisLimitIsDefinedInSetup=Dolibarr limit (Menu home-setup-security): %s Kb, PHP limit: %s Kb
+ThisLimitIsDefinedInSetup=Dolibarr limit (Meni home-podešavanja-bezbednost): %s Kb, PHP limit: %s Kb
 NoFileFound=Nema sačuvanih dokumenata u folderu
 CurrentUserLanguage=Aktivni jezik
 CurrentTheme=Aktivna tema
@@ -637,26 +642,26 @@ AddNewLine=Dodaj liniju
 AddFile=Dodaj fajl
 ListOfFiles=Lista dostupnih fajlova
 FreeZone=Slobodan ulaz
-FreeLineOfType=Free entry of type
+FreeLineOfType=Slobodan unos tipa
 CloneMainAttributes=Dupliraj objekat sa glavnim atributima
 PDFMerge=PDF Merge
 Merge=Merge
-PrintContentArea=Show page to print main content area
+PrintContentArea=Prikaži stranu za štampanje glavnog sadržaja
 MenuManager=Menu manager
 NoMenu=Nema pod menija
-WarningYouAreInMaintenanceMode=Warning, you are in a maintenance mode, so only login <b>%s</b> is allowed to use application at the moment.
+WarningYouAreInMaintenanceMode=Upozorenje, trenutno ste u modu održavanja, samo korisnik <b>%s</b> može trenutno koristiti aplikaciju.
 CoreErrorTitle=Sistemska greška
-CoreErrorMessage=Sorry, an error occurred. Check the logs or contact your system administrator.
+CoreErrorMessage=Došlo je do greške. Proverite logove ili kontaktirajte administratora.
 CreditCard=Kreditna kartica
 FieldsWithAreMandatory=Polja sa <b>%s</b> su obavezna
-FieldsWithIsForPublic=Fields with <b>%s</b> are shown on public list of members. If you don't want this, check off the "public" box.
-AccordingToGeoIPDatabase=(according to GeoIP convertion)
+FieldsWithIsForPublic=Polja sa <b>%s</b> su prikazana na javnim listama članova. Ukoliko to ne želite, odčekirajte opciju "javno".
+AccordingToGeoIPDatabase=(po GeoIP konvenciji)
 Line=Linija
 NotSupported=Nije podržano
 RequiredField=Obavezno polje
 Result=Rezultat
 ToTest=Test
-ValidateBefore=Card must be validated before using this feature
+ValidateBefore=Kartica mora biti potvrđena pre korišćenja ove funkcionalnosti
 Visibility=Vidljivost
 Private=Privatno
 Hidden=Skriveno
@@ -672,7 +677,7 @@ NewAttribute=Novi atribut
 AttributeCode=Kod atributa
 OptionalFieldsSetup=Podešavanja dodatnih atributa
 URLPhoto=URL fotografije/logoa
-SetLinkToAnotherThirdParty=Link to another third party
+SetLinkToAnotherThirdParty=Link ka drugom subjektu
 CreateDraft=Napravi draft
 SetToDraft=Nazad u draft
 ClickToEdit=Klikni za edit
@@ -695,13 +700,14 @@ Test=Test
 Element=Element
 NoPhotoYet=Još nema slika
 HomeDashboard=Pregled početne
-Deductible=Deductible
+Dashboard=Dashboard
+Deductible=Može se odbiti
 from=od
 toward=ka
 Access=Pristup
-SelectAction=Select action
+SelectAction=Selektiraj akciju
 HelpCopyToClipboard=Ctrl+C za kopiranje
-SaveUploadedFileWithMask=Save file on server with name "<strong>%s</strong>" (otherwise "%s")
+SaveUploadedFileWithMask=Sačuvaj fajl na serveru sa nazivom "<strong>%s</strong>" (ili "%s")
 OriginFileName=Originalno ime fajla
 SetDemandReason=Postavi izvor
 SetBankAccount=Definiši bankovni nalog
@@ -712,20 +718,20 @@ PublicUrl=Javni UR
 AddBox=Dodaj box
 SelectElementAndClickRefresh=Izaberite element i kliknite na Refresh
 PrintFile=Štampaj fajl %s
-ShowTransaction=Show transaction on bank account
-GoIntoSetupToChangeLogo=Go into Home - Setup - Company to change logo or go into Home - Setup - Display to hide.
+ShowTransaction=Prikazi transakciju na bankovnom računu
+GoIntoSetupToChangeLogo=Otvori Home - Podešavanja - Kompanija da biste izmenili logo ili Home - Setup - Prikaz da biste ga sakrili.
 Deny=Odbij
 Denied=Odbijeno
-ListOfTemplates=List of templates
+ListOfTemplates=Lista templejtova
 Gender=Pol
 Genderman=Muško
 Genderwoman=Žensko
-ViewList=List view
+ViewList=Prikaz liste
 Mandatory=Obavezno
 Hello=Zdravo
 Sincerely=Srdačan pozdrav
-DeleteLine=Delete line
-ConfirmDeleteLine=Are you sure you want to delete this line ?
+DeleteLine=Obriši red
+ConfirmDeleteLine=Da li ste sigurni da želite da obrišete ovaj red?
 
 # Week day
 Monday=Ponedeljak
@@ -756,26 +762,26 @@ ShortThursday=Č
 ShortFriday=P
 ShortSaturday=S
 ShortSunday=N
-SelectMailModel=Select email template
-SetRef=Set ref
+SelectMailModel=Izaberite email template
+SetRef=Podesi ref
 Select2ResultFoundUseArrows=
-Select2NotFound=No result found
-Select2Enter=Enter
-Select2MoreCharacters=or more characters
-Select2LoadingMoreResults=Loading more results...
-Select2SearchInProgress=Search in progress...
-SearchIntoThirdparties=Thirdparties
-SearchIntoContacts=Contacts
-SearchIntoMembers=Members
-SearchIntoUsers=Users
-SearchIntoProductsOrServices=Products or services
-SearchIntoProjects=Projects
-SearchIntoCustomerInvoices=Customer invoices
-SearchIntoSupplierInvoices=Supplier invoices
-SearchIntoCustomerOrders=Customer orders
-SearchIntoSupplierOrders=Supplier orders
-SearchIntoCustomerProposals=Customer proposals
-SearchIntoSupplierProposals=Supplier proposals
-SearchIntoInterventions=Interventions
-SearchIntoContracts=Contracts
-SearchIntoExpenseReports=Expense reports
+Select2NotFound=Nema rezultata
+Select2Enter=Unesite
+Select2MoreCharacters=ili više karaktera
+Select2LoadingMoreResults=Učitavanje drugih rezultata...
+Select2SearchInProgress=Pretraga u toku...
+SearchIntoThirdparties=Subjekti
+SearchIntoContacts=Kontakti
+SearchIntoMembers=Članovi
+SearchIntoUsers=Korisnici
+SearchIntoProductsOrServices=Proizvodi ili usluge
+SearchIntoProjects=Projekti
+SearchIntoCustomerInvoices=Fakture klijenata
+SearchIntoSupplierInvoices=Fakture dobavljača
+SearchIntoCustomerOrders=Narudžbine klijenata
+SearchIntoSupplierOrders=Narudžbine dobavljača
+SearchIntoCustomerProposals=Ponude klijenata
+SearchIntoSupplierProposals=Ponude dobavljača
+SearchIntoInterventions=Intervencije
+SearchIntoContracts=Ugovori
+SearchIntoExpenseReports=Troškovi
diff --git a/htdocs/langs/sr_RS/margins.lang b/htdocs/langs/sr_RS/margins.lang
index 7087ca5c2d7ef8ae124ffa9e42458223c311f49e..e275c578bed0246541742783195b941c7413ecbd 100644
--- a/htdocs/langs/sr_RS/margins.lang
+++ b/htdocs/langs/sr_RS/margins.lang
@@ -5,10 +5,10 @@ Margins=Marže
 TotalMargin=Ukupna marža
 MarginOnProducts=Marža / Proizvodi
 MarginOnServices=Marža / Usluge
-MarginRate=Margin rate
-MarkRate=Mark rate
-DisplayMarginRates=Display margin rates
-DisplayMarkRates=Display mark rates
+MarginRate=Stopa marže
+MarkRate=Stopa marže
+DisplayMarginRates=Prikaži stope marže
+DisplayMarkRates=Prikaži stope marže
 InputPrice=Ulazna cena
 margin=Upravljanje maržama profita
 margesSetup=Podešavanja upravljanja maržama profita
@@ -23,26 +23,27 @@ ChooseProduct/Service=Izaberi proizvod ili uslugu
 StartDate=Početak
 EndDate=Kraj
 Launch=Start
-ForceBuyingPriceIfNull=Forsiraj kupovnu cenu ako je prazna
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Frsiraj nabavnu cenu na prodajnu cenu ukoliko nije definisana
+ForceBuyingPriceIfNullDetails=Ukoliko nabavna cena nije definisana i ova opcija je aktivna, marža će biti nula za ovu liniju (nabavna cena = prodajna cena). U suprotnom, marža će biti jednaka default vrednosti.
 MARGIN_METHODE_FOR_DISCOUNT=Metoda marže za globalne popuste
 UseDiscountAsProduct=Kao proizvod
 UseDiscountAsService=Kao usluga
-UseDiscountOnTotal=On subtotal
-MARGIN_METHODE_FOR_DISCOUNT_DETAILS=Defines if a global discount is treated as a product, a service, or only on subtotal for margin calculation.
-MARGIN_TYPE=Buying/Cost price suggested by default for margin calculation
+UseDiscountOnTotal=Pod-zbir
+MARGIN_METHODE_FOR_DISCOUNT_DETAILS=Definiše da li je globalni popust tretiran kao proizvod, usluga ili se primenjuje samo na pod-zbiru za uračunanje marže.
+MARGIN_TYPE=Default nabavna cena za računanje marže
 MargeBrute=Bruto marža
 MargeNette=Neto marža
 MargeType1=Marža na najpovoljniju cenu dobavljača
 MargeType2=Marža na prosečnu cenu (PC)
-MARGIN_TYPE_DETAILS=Bruto marža : Prodajna cena - Kupovna cena<br/>neto marža : Prodajna cena - Cena koštanja
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cena koštanja
 BuyingCost=Cena koštanja
 UnitCharges=Unitarni troškovi
 Charges=Troškovi
 AgentContactType=Tip kontakta komercijalnog agenta
-AgentContactTypeDetails=Define what contact type (linked on invoices) will be used for margin report per sale representative
-rateMustBeNumeric=Rate must be a numeric value
-markRateShouldBeLesserThan100=Mark rate should be lower than 100
+AgentContactTypeDetails=Definiše tip kontakta (povezan sa fakturom) koji će biti korišćen za izveštaj marže po agentu prodaje
+rateMustBeNumeric=Stopa mora biti numerička
+markRateShouldBeLesserThan100=Stopa marže mora biti niža od 100
 ShowMarginInfos=Prikaži informacije marže
diff --git a/htdocs/langs/sr_RS/members.lang b/htdocs/langs/sr_RS/members.lang
index 25e2ca81d5a0b8ca8f8335c9ec80c3a6c7733281..4cd8a8ed4b6409b4389371a474e2243d19d52c60 100644
--- a/htdocs/langs/sr_RS/members.lang
+++ b/htdocs/langs/sr_RS/members.lang
@@ -8,7 +8,7 @@ Members=Članovi
 MemberAccount=Login člana
 ShowMember=Prikaži karticu člana
 UserNotLinkedToMember=Korisnik nije povezan sa članom
-ThirdpartyNotLinkedToMember=Third-party not linked to a member
+ThirdpartyNotLinkedToMember=Subjekat nije povezan sa članom
 MembersTickets=Karte članova
 FundationMembers=Članovi fondacije
 Attributs=Atributi
@@ -146,61 +146,61 @@ DescADHERENT_CARD_HEADER_TEXT=Tekst odštampan na vrhu kartica članova
 DescADHERENT_CARD_TEXT=Tekst odštampan na karticama članova (levo poravnanje)
 DescADHERENT_CARD_TEXT_RIGHT=Tekst odštampan na karticama članova (desno poravnanje)
 DescADHERENT_CARD_FOOTER_TEXT=Tekst odštampan na dnu kartica članova
-GlobalConfigUsedIfNotDefined=Text defined in Foundation module setup will be used if not defined here
-MayBeOverwrited=This text can be overwrited by value defined for member's type
-ShowTypeCard=Show type '%s'
-HTPasswordExport=htpassword file generation
-NoThirdPartyAssociatedToMember=No third party associated to this member
-ThirdPartyDolibarr=Dolibarr third party
-MembersAndSubscriptions= Members and Subscriptions
-MoreActions=Complementary action on recording
-MoreActionsOnSubscription=Complementary action, suggested by default when recording a subscription
-MoreActionBankDirect=Create a direct transaction record on account
-MoreActionBankViaInvoice=Create an invoice and payment on account
-MoreActionInvoiceOnly=Create an invoice with no payment
-LinkToGeneratedPages=Generate visit cards
-LinkToGeneratedPagesDesc=This screen allows you to generate PDF files with business cards for all your members or a particular member.
-DocForAllMembersCards=Generate business cards for all members
-DocForOneMemberCards=Generate business cards for a particular member
-DocForLabels=Generate address sheets
-SubscriptionPayment=Subscription payment
+GlobalConfigUsedIfNotDefined=Biće iskorišćen tekst definisan u podešavanjima modula Fondacija ukoliko ovde nije definisan
+MayBeOverwrited=Ovaj tekst može biti zamenjen vrednošću definisanoj u tipu člana
+ShowTypeCard=Prikaži tim "%s"
+HTPasswordExport=Generisanje fajla htpassword
+NoThirdPartyAssociatedToMember=Nema subjekta dodeljenog ovom članu
+ThirdPartyDolibarr=Dolibarr subjekat
+MembersAndSubscriptions= Članovi i pretplate
+MoreActions=Dodatna aktivnost pri snimanju
+MoreActionsOnSubscription=Dodatna aktivnost, predložena po defaultu prilikom snimanja pretplate
+MoreActionBankDirect=Kreiraj red direktne transakcije na nalogu
+MoreActionBankViaInvoice=Kreiraj fakturu i uplatu na nalogu
+MoreActionInvoiceOnly=Kreiraj fakturu bez uplate
+LinkToGeneratedPages=Kreiraj vizit kartu
+LinkToGeneratedPagesDesc=Ovaj ekran omogućava generisanje PDF fajla sa vizit kartama svih Vaših članova ili jednog određenog člana.
+DocForAllMembersCards=Generiši vizit karte za sve članove
+DocForOneMemberCards=Generiši vizit kartu za određenog člana
+DocForLabels=Generiši karticu adrese
+SubscriptionPayment=Uplata pretplate
 LastSubscriptionDate=Datum poslednje prijave
 LastSubscriptionAmount=Svota poslednje prijave
-MembersStatisticsByCountries=Members statistics by country
-MembersStatisticsByState=Members statistics by state/province
-MembersStatisticsByTown=Members statistics by town
-MembersStatisticsByRegion=Members statistics by region
-MemberByRegion=Members by region
-NbOfMembers=Number of members
-NoValidatedMemberYet=No validated members found
-MembersByCountryDesc=This screen show you statistics on members by countries. Graphic depends however on Google online graph service and is available only if an internet connection is is working.
-MembersByStateDesc=This screen show you statistics on members by state/provinces/canton.
-MembersByTownDesc=This screen show you statistics on members by town.
-MembersStatisticsDesc=Choose statistics you want to read...
-MenuMembersStats=Statistics
-LastMemberDate=Last member date
-Nature=Nature
-Public=Information are public
+MembersStatisticsByCountries=Statistike članova po zemlji
+MembersStatisticsByState=Statistike članova po regionu
+MembersStatisticsByTown=Statistike članova po gradu
+MembersStatisticsByRegion=Statistike članova po regionu
+MemberByRegion=Članovi po regionu
+NbOfMembers=Broj članova
+NoValidatedMemberYet=Nema potvrđenih članova
+MembersByCountryDesc=Ovaj ekran pokazuje statistike članove po zemljama. Koristi se Google online graph service koji je dostupan samo ukoliko imate aktivnu internet konekciju.
+MembersByStateDesc=Ovaj ekran pokazuje statistike članova po regionu.
+MembersByTownDesc=Ovaj ekran pokazuje statistike članova po gradu.
+MembersStatisticsDesc=Izaberite statistike koje želite da konsultujete...
+MenuMembersStats=Statistike
+LastMemberDate=Datum poslednjeg člana
+Nature=Priroda
+Public=Javne informacije
 Exports=Izvozi
-NewMemberbyWeb=New member added. Awaiting approval
-NewMemberForm=New member form
-SubscriptionsStatistics=Statistics on subscriptions
-NbOfSubscriptions=Number of subscriptions
-AmountOfSubscriptions=Amount of subscriptions
-TurnoverOrBudget=Turnover (for a company) or Budget (for a foundation)
-DefaultAmount=Default amount of subscription
-CanEditAmount=Visitor can choose/edit amount of its subscription
-MEMBER_NEWFORM_PAYONLINE=Jump on integrated online payment page
-Associations=Foundations
-Collectivités=Organizations
-Particuliers=Personal
-Entreprises=Companies
-DOLIBARRFOUNDATION_PAYMENT_FORM=To make your subscription payment using a bank transfer, see page <a target="_blank" href="http://wiki.dolibarr.org/index.php/Subscribe#To_subscribe_making_a_bank_transfer">http://wiki.dolibarr.org/index.php/Subscribe</a>.<br>To pay using a Credit Card or Paypal, click on button at bottom of this page.<br>
-ByProperties=By characteristics
-MembersStatisticsByProperties=Members statistics by characteristics
-MembersByNature=This screen show you statistics on members by nature.
-MembersByRegion=This screen show you statistics on members by region.
-VATToUseForSubscriptions=VAT rate to use for subscriptions
-NoVatOnSubscription=No TVA for subscriptions
-MEMBER_PAYONLINE_SENDEMAIL=Email to warn when Dolibarr receive a confirmation of a validated payment for subscription
-ADHERENT_PRODUCT_ID_FOR_SUBSCRIPTIONS=Product used for subscription line into invoice: %s
+NewMemberbyWeb=Novi član je dodat. Čeka se odobrenje.
+NewMemberForm=Forma za nove članove
+SubscriptionsStatistics=Statistike pretplata
+NbOfSubscriptions=Broj pretplata
+AmountOfSubscriptions=Iznos pretplata
+TurnoverOrBudget=Obrt (za kompaniju) ili budžet (za fondaciju)
+DefaultAmount=Default iznos pretplate
+CanEditAmount=Posetilac može da izabere/izmeni iznos svoje pretplate
+MEMBER_NEWFORM_PAYONLINE=Pređi na integrisanu online stranicu uplate
+Associations=Fondacije
+Collectivités=Organizacije
+Particuliers=Lično
+Entreprises=Kompanije
+DOLIBARRFOUNDATION_PAYMENT_FORM=Kako biste uplatili Vašu pretplatu bankovnim transferom, pogledajte stranu <a target="_blank" href="http://wiki.dolibarr.org/index.php/Subscribe#To_subscribe_making_a_bank_transfer">http://wiki.dolibarr.org/index.php/Subscribe</a>.<br>Da biste uplatili kreditnom karticom ili Paypal-om, kliknite na dugme na dnu ove strane.<br>
+ByProperties=Po karakteristikama
+MembersStatisticsByProperties=Statistike članova po karakteristikama
+MembersByNature=Ovaj ekran prikazuje statistike članova po prirodi.
+MembersByRegion=Ovaj ekran prikazuje statistike članova po regionu.
+VATToUseForSubscriptions=PDV stopa za pretplate
+NoVatOnSubscription=Pretplate bez PDV-a
+MEMBER_PAYONLINE_SENDEMAIL=Pošalji email upozorenja kada Dolibarr primi konfirmaciju potvrđene uplate za pretplatu
+ADHERENT_PRODUCT_ID_FOR_SUBSCRIPTIONS=Proizvod korišćen za liniju pretplate u fakturi: %s
diff --git a/htdocs/langs/sr_RS/opensurvey.lang b/htdocs/langs/sr_RS/opensurvey.lang
index 1c7b5bacb8fca5caaf487aa303a08bdf303dee84..54fba04e6ba10acdbc5267209ea9ecbecf64f2eb 100644
--- a/htdocs/langs/sr_RS/opensurvey.lang
+++ b/htdocs/langs/sr_RS/opensurvey.lang
@@ -12,7 +12,7 @@ PollTitle=Naslov ankete
 ToReceiveEMailForEachVote=Primi email za svaki glas
 TypeDate=Tip datum
 TypeClassic=Tip standardni
-OpenSurveyStep2=Select your dates amoung the free days (grey). The selected days are green. You can unselect a day previously selected by clicking again on it
+OpenSurveyStep2=Izaberite Vaše datume među slobodnim danima (sivo). Selektirani dani su zeleni. Možete deselektovati dan tako što ćete ponovo kliknuti na njega.
 RemoveAllDays=Ukloni sve dane
 CopyHoursOfFirstDay=Kopiraj sate prvog dana
 RemoveAllHours=Ukloni sve sate
@@ -20,12 +20,12 @@ SelectedDays=Selektirani dani
 TheBestChoice=Trenutno, najboji izbor je
 TheBestChoices=Trenutno, najbolji izbori su
 with=sa
-OpenSurveyHowTo=If you agree to vote in this poll, you have to give your name, choose the values that fit best for you and validate with the plus button at the end of the line.
+OpenSurveyHowTo=Ukoliko želite da glasate, morate dati svoje ime, izabrati vrednosti koje Vam najviše odgovaraju i potvrditi dugmetom plus na kraju linije
 CommentsOfVoters=Komentari glasača
 ConfirmRemovalOfPoll=Da li ste sigurni da želite da uklonite ovu anketu (sa svim glasovima)
 RemovePoll=Ukloni anketu
 UrlForSurvey=URL za direktan pristup anketi
-PollOnChoice=You are creating a poll to make a multi-choice for a poll. First enter all possible choices for your poll:
+PollOnChoice=Kreirate anketu sa pitanjima sa više ponuđenih odgovora. Prvo unesite sve moguće odgovore:
 CreateSurveyDate=Kreiraj datum anketu
 CreateSurveyStandard=Kreiraj standardnu anketu
 CheckBox=Jednostavan checkbox
@@ -38,15 +38,15 @@ ExpireDate=Krajnji datum
 NbOfSurveys=Broj anketa
 NbOfVoters=Br glasača
 SurveyResults=Rezultati
-PollAdminDesc=You are allowed to change all vote lines of this poll with button "Edit". You can, as well, remove a column or a line with %s. You can also add a new column with %s.
+PollAdminDesc=Možete izmeniti sve linije u ovom upitniku dugmetom "Izmeni". Takođe, možete obrisati kolonu ili liniju sa %s. Takođe možete dodati novu kolonu sa %s.
 5MoreChoices=Još 5 izbora
 Abstention=Uzdržan
 Against=Protiv
 YouAreInivitedToVote=Pozvani ste da glasate u ovoj anketi
 VoteNameAlreadyExists=Ovo ime je već upotrebljeno u ovoj anketi
-ErrorPollDoesNotExists=Error, poll <strong>%s</strong> does not exists.
+ErrorPollDoesNotExists=Greška, upitnik <strong>%s</strong> ne postoji.
 OpenSurveyNothingToSetup=Nema specifičnih podešavanja.
-PollWillExpire=Your poll will expire automatically <strong>%s</strong> days after the last date of your poll.
+PollWillExpire=Vaš upitnik će automatski isteći <strong>%s</strong> dana posle poslednjeg datuma upitnika.
 AddADate=Dodaj datum
 AddStartHour=Dodaj vreme početka
 AddEndHour=Dodaj vreme kraja
@@ -55,7 +55,7 @@ NoCommentYet=Još nema komentara na ovu anketu
 CanEditVotes=Može izmeniti glas drugih
 CanComment=Glasači mogu da ostave komentare na anketi
 CanSeeOthersVote=Glasači mogu videti glasove drugih glasača
-SelectDayDesc=For each selected day, you can choose, or not, meeting hours in the following format :<br>- empty,<br>- "8h", "8H" or "8:00" to give a meeting's start hour,<br>- "8-11", "8h-11h", "8H-11H" or "8:00-11:00" to give a meeting's start and end hour,<br>- "8h15-11h15", "8H15-11H15" or "8:15-11:15" for the same thing but with minutes.
+SelectDayDesc=Za svaki selektovani dan, možete izabrati, ili ne, termin sastanka u sledećem formatu :<br>- prazno,<br>- "8h", "8H" ili "8:00" kako biste odredili vreme početka,<br>- "8-11", "8h-11h", "8H-11H" ili "8:00-11:00" kako biste odredili vreme početka i kraja,<br>- "8h15-11h15", "8H15-11H15" ili "8:15-11:15" sa minutima.
 BackToCurrentMonth=Nazad na trenutni mesec
 ErrorOpenSurveyFillFirstSection=Niste ispunili prvu sekciju kreiranja ankete
 ErrorOpenSurveyOneChoice=Unesite makar jedan izbor
@@ -63,4 +63,4 @@ ErrorOpenSurveyDateFormat=Datum mora biti u formatu GGGGMMDD
 ErrorInsertingComment=Došlo je do greške prilikom postavljanja Vašeg komentara
 MoreChoices=Unesite više izbora za glasače
 SurveyExpiredInfo=Vreme za glasanje za ovu anketu je isteklo
-EmailSomeoneVoted=%s has filled a line.\nYou can find your poll at the link: \n%s
+EmailSomeoneVoted=%s je ispunio liniju.\nMožete naći svoj upitnik na linku: \n%s
diff --git a/htdocs/langs/sr_RS/orders.lang b/htdocs/langs/sr_RS/orders.lang
index b4019904ae8dbb2b6c6314822103bf98135124f2..59e78f8bb72c69731a36acae4e67b545f183f387 100644
--- a/htdocs/langs/sr_RS/orders.lang
+++ b/htdocs/langs/sr_RS/orders.lang
@@ -31,12 +31,12 @@ StatusOrderSentShort= toku
 StatusOrderSent=Isporuka u toku
 StatusOrderOnProcessShort=Naručeno
 StatusOrderProcessedShort=Obrađeno
-StatusOrderDelivered=Delivered
+StatusOrderDelivered=Isporučeno
 StatusOrderToBillShort=Isporučeno
 StatusOrderToBill2Short=Za naplatu
 StatusOrderApprovedShort=Odobreno
 StatusOrderRefusedShort=Odbijeno
-StatusOrderBilledShort=Billed
+StatusOrderBilledShort=Naplaćeno
 StatusOrderToProcessShort=Za obradu
 StatusOrderReceivedPartiallyShort=Delimično primljeno
 StatusOrderReceivedAllShort=Primljeno
@@ -44,18 +44,18 @@ StatusOrderCanceled=Otkazano
 StatusOrderDraft=Draft (čeka na odobrenje)
 StatusOrderValidated=Odobreno
 StatusOrderOnProcess=Naručeno - čeka se prijem
-StatusOrderOnProcessWithValidation=Ordered - Standby reception or validation
+StatusOrderOnProcessWithValidation=Naručeno - čeka se prijem ili odobrenje
 StatusOrderProcessed=Obrađeno
 StatusOrderToBill=Isporučeno
 StatusOrderToBill2=Za naplatu
 StatusOrderApproved=Odobreno
 StatusOrderRefused=Odbijeno
-StatusOrderBilled=Billed
+StatusOrderBilled=Naplaćeno
 StatusOrderReceivedPartially=Delimično primljeno
 StatusOrderReceivedAll=Primljeno
 ShippingExist=Isporuka postoji
-ProductQtyInDraft=Product quantity into draft orders
-ProductQtyInDraftOrWaitingApproved=Product quantity into draft or approved orders, not yet ordered
+ProductQtyInDraft=Količina proizvoda u draft narudžbinama
+ProductQtyInDraftOrWaitingApproved=Količina proizvoda u draft ili potvrđenim narudžbinama, još uvek nenaručenim
 DraftOrWaitingApproved=Draft ili odobreno i neporučeno
 DraftOrWaitingShipped=Draft ili odobreno nedostavljeno
 MenuOrdersToBill=Isporučene narudžbine
@@ -72,7 +72,7 @@ ValidateOrder=Odobri narudžbinu
 UnvalidateOrder=Poništi odobrenje narudžbine
 DeleteOrder=Obriši narudžbinu
 CancelOrder=Otkaži narudžbinu
-OrderReopened= Order %s Reopened
+OrderReopened= Narudžbina %s je ponovo otvorena
 AddOrder=Kreiraj narudžbinu
 AddToMyOrders=Dodaj u moje narudžbine
 AddToOtherOrders=Dodaj u druge narudžbine
@@ -82,8 +82,8 @@ OrdersOpened=Narudžbine za obradu
 NoOpenedOrders=Nema otvorenih narudžbina
 NoOtherOpenedOrders=Nema drugih otvorenih narudžbina
 NoDraftOrders=Nema drafg narudžbina
-NoOrder=No Order
-NoSupplierOrder=No supplier order
+NoOrder=No order
+NoSupplierOrder=Nema narudžbine dobavjača
 OtherOrders=Druge narudžbine
 LastOrders=Poslednjih %s klijentovih narudžbina
 LastCustomerOrders=Poslednjih %s narudžbina klijenta
@@ -98,19 +98,19 @@ NumberOfOrdersByMonth=Broj narudžbina po mesecu
 AmountOfOrdersByMonthHT=Suma narudžbina po mesecu (neto)
 ListOfOrders=Lista narudžbina
 CloseOrder=Zatvori narudžbinu
-ConfirmCloseOrder=Are you sure you want to set this order to deliverd ? Once an order is delivered, it can be set to billed.
-ConfirmCloseOrderIfSending=Are you sure you want to close this order ? You must close an order only when all shipping are done.
-ConfirmDeleteOrder=Are you sure you want to delete this order ?
-ConfirmValidateOrder=Are you sure you want to validate this order under name <b>%s</b> ?
-ConfirmUnvalidateOrder=Are you sure you want to restore order <b>%s</b> to draft status ?
-ConfirmCancelOrder=Are you sure you want to cancel this order ?
-ConfirmMakeOrder=Are you sure you want to confirm you made this order on <b>%s</b> ?
+ConfirmCloseOrder=Da li ste sigurni da želite da označite ovu narudžbinu kao isporučenu ? Kada je narudžbina isporučena može se označiti kao naplaćena.
+ConfirmCloseOrderIfSending=Da li ste sigurni da želite da zatvorite ovu narudžbinu ? Narudžbina treba biti zatvorena samo kada su sve isporuke završene.
+ConfirmDeleteOrder=Da li ste sigurni da želite da obrišete ovu narudžbinu ?
+ConfirmValidateOrder=Da li ste sigurni da želite da potvrdite ovu narudžbinu pod imenom <b>%s</b> ?
+ConfirmUnvalidateOrder=Da li ste sigurni da želite da vratite narudžbinu <b>%s</b> u status draft ?
+ConfirmCancelOrder=Da li ste sigurni da želite da otkažete ovu narudžbinu ?
+ConfirmMakeOrder=Da li ste sigurni da želite da potvrdite da ste napravili ovu narudžbinu na <b>%s</b> ?
 GenerateBill=Generiši račun
 ClassifyShipped=Označi kao ispostavljeno
 ClassifyBilled=Označi kao naplaćeno
 ComptaCard=Računovodstvena kartica
 DraftOrders=Draft narudžbine
-DraftSuppliersOrders=Draft suppliers orders
+DraftSuppliersOrders=Drat narudžbine dobavljača
 RelatedOrders=Povezane narudžbine
 RelatedCustomerOrders=Povezane narudžbine klijenta
 RelatedSupplierOrders=Povezane narudžbine dobavljača
@@ -120,26 +120,26 @@ RefCustomerOrder=Ref. narudžbine klijenta
 RefCustomerOrderShort=Ref. narudžbine dostavljača
 SendOrderByMail=Pošalji narudžbinu mailom
 ActionsOnOrder=Događaji na narudžbini
-NoArticleOfTypeProduct=No article of type 'product' so no shippable article for this order
+NoArticleOfTypeProduct=Nema artikla tipa "proizvod" tako da nema isporučivog artikla za ovu narudžbinu
 OrderMode=Način naručivanja
-AuthorRequest=Request author
-UseCustomerContactAsOrderRecipientIfExist=Use customer contact address if defined instead of third party address as order recipient address
+AuthorRequest=Potražilac
+UseCustomerContactAsOrderRecipientIfExist=Koristi klijentovu kontakt adresu ukoliko postoji, umesto adrese subjekta kao adresu narudžbine
 RunningOrders=Narudžbine u toku
-UserWithApproveOrderGrant=Users granted with "approve orders" permission.
-PaymentOrderRef=Payment of order %s
+UserWithApproveOrderGrant=Korisnici imaju pravo da "potvrđuju narudžbine"
+PaymentOrderRef=Uplata za narudžbinu %s
 CloneOrder=Dupliraj narudžbinu
-ConfirmCloneOrder=Are you sure you want to clone this order <b>%s</b> ?
-DispatchSupplierOrder=Receiving supplier order %s
+ConfirmCloneOrder=Da li ste sigurni da želite da duplirate ovu narudžbinu <b>%s</b> ?
+DispatchSupplierOrder=Primanje narudžbine dobavljača %s
 FirstApprovalAlreadyDone=Prvo odobrenje je već završeno
 SecondApprovalAlreadyDone=Drugo odobrenje je već završeno
 ##### Types de contacts #####
-TypeContact_commande_internal_SALESREPFOLL=Representative following-up customer order
-TypeContact_commande_internal_SHIPPING=Representative following-up shipping
+TypeContact_commande_internal_SALESREPFOLL=Osoba koja prati narudžbinu klijenta
+TypeContact_commande_internal_SHIPPING=Osoba koja prati isporuku
 TypeContact_commande_external_BILLING=Kontakt klijenta sa računa
 TypeContact_commande_external_SHIPPING=Kontakt klijenta za isporuku
 TypeContact_commande_external_CUSTOMER=Kontakt klijenta za pratnju narudžbine
-TypeContact_order_supplier_internal_SALESREPFOLL=Representative following-up supplier order
-TypeContact_order_supplier_internal_SHIPPING=Representative following-up shipping
+TypeContact_order_supplier_internal_SALESREPFOLL=Osoba koja prati narudžbinu dobavljača
+TypeContact_order_supplier_internal_SHIPPING=Osoba koja prati isporuku
 TypeContact_order_supplier_external_BILLING=Kontakt dobavljača sa računa
 TypeContact_order_supplier_external_SHIPPING=Kontakt dobavljača za isporuku
 TypeContact_order_supplier_external_CUSTOMER=Kontakt dobavljača za praćenje narudžbine
@@ -158,7 +158,7 @@ OrderSource4=Fax kampanja
 OrderSource5=Komercijalno
 OrderSource6=Prodavnica
 QtyOrdered=Kol. naručena
-AddDeliveryCostLine=Add a delivery cost line indicating the weight of the order
+AddDeliveryCostLine=Dodaj cenu isporuke sa naznakom težine narudžbine
 # Documents models
 PDFEinsteinDescription=Kompletan model narudžbine (logo...)
 PDFEdisonDescription=Jednostavan model narudžbine
@@ -169,7 +169,7 @@ OrderByFax=Fax
 OrderByEMail=Email
 OrderByWWW=Online
 OrderByPhone=Telefon
-CreateInvoiceForThisCustomer=Bill orders
+CreateInvoiceForThisCustomer=Naplata narudžbina
 NoOrdersToInvoice=Nema naplativih narudžbina
 CloseProcessedOrdersAutomatically=Označi sve selektovane narudžbine kao "Obrađene".
 OrderCreation=Kreacija narudžbine
@@ -177,4 +177,4 @@ Ordered=Naručeno
 OrderCreated=Vaše narudžbine su kreirane
 OrderFail=Došlo je do greške prilikom kreiranja Vaših narudžbina
 CreateOrders=Kreiraj narudžbine
-ToBillSeveralOrderSelectCustomer=To create an invoice for several orders, click first onto customer, then choose "%s".
+ToBillSeveralOrderSelectCustomer=Da biste kreirali fakturu za nekoliko narudžbina, prvo kliknite na klijenta, pa izaberite "%s"
diff --git a/htdocs/langs/sr_RS/other.lang b/htdocs/langs/sr_RS/other.lang
index cae82f6d92b487d9783ee81dd649afd55d0bcaf5..108ca3870db66448becd5375472efc7e0f60daa9 100644
--- a/htdocs/langs/sr_RS/other.lang
+++ b/htdocs/langs/sr_RS/other.lang
@@ -2,7 +2,7 @@
 SecurityCode=Bezbednosni kod
 Calendar=Kalendar
 Tools=Alati
-ToolsDesc=This area is dedicated to group miscellaneous tools not available into other menu entries.<br><br>Those tools can be reached from menu on the side.
+ToolsDesc=Ovde se nalaze razni alati koji nisu dostupni u drugim menijima <br><br>Ti alati su dostupni u meniju sa strane.
 Birthday=Datum rođenja
 BirthdayDate=Datum rođenja
 DateToBirth=Datum rođenja
@@ -20,9 +20,9 @@ Notify_PROPAL_VALIDATE=Komercijalna ponuda je potvrđena
 Notify_PROPAL_CLOSE_SIGNED=Komercijalna ponuda je zatvorena i potpisana
 Notify_PROPAL_CLOSE_REFUSED=Komercijalna ponuda je zatvorena i odbijena
 Notify_PROPAL_SENTBYMAIL=Komercijalna ponuda poslata mailom
-Notify_WITHDRAW_TRANSMIT=Transmission withdrawal
-Notify_WITHDRAW_CREDIT=Credit withdrawal
-Notify_WITHDRAW_EMIT=Perform withdrawal
+Notify_WITHDRAW_TRANSMIT=Podizanje transfera
+Notify_WITHDRAW_CREDIT=Kreditno podizanje
+Notify_WITHDRAW_EMIT=Izvrši podizanje
 Notify_COMPANY_CREATE=Subjekt kreiran
 Notify_COMPANY_SENTBYMAIL=Mailovi poslati sa kartice subjekta
 Notify_BILL_VALIDATE=Račun klijenta je potvrđen
@@ -55,19 +55,19 @@ AttachANewFile=Priloži novi fajl/dokument
 LinkedObject=Povezan objekat
 Miscellaneous=Ostalo
 NbOfActiveNotifications=Broj obaveštenja (br. primalaca mailova)
-PredefinedMailTest=This is a test mail.\nThe two lines are separated by a carriage return.\n\n__SIGNATURE__
-PredefinedMailTestHtml=This is a <b>test</b> mail (the word test must be in bold).<br>The two lines are separated by a carriage return.<br><br>__SIGNATURE__
-PredefinedMailContentSendInvoice=__CONTACTCIVNAME__\n\nYou will find here the invoice __REF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
-PredefinedMailContentSendInvoiceReminder=__CONTACTCIVNAME__\n\nWe would like to warn you that the invoice  __REF__ seems to not being payed. So this is the invoice in attachment again, as a reminder.\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
-PredefinedMailContentSendProposal=__CONTACTCIVNAME__\n\nYou will find here the commercial proposal __PROPREF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
-PredefinedMailContentSendSupplierProposal=__CONTACTCIVNAME__\n\nYou will find here the price request __ASKREF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
-PredefinedMailContentSendOrder=__CONTACTCIVNAME__\n\nYou will find here the order __ORDERREF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
-PredefinedMailContentSendSupplierOrder=__CONTACTCIVNAME__\n\nYou will find here our order __ORDERREF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
-PredefinedMailContentSendSupplierInvoice=__CONTACTCIVNAME__\n\nYou will find here the invoice __REF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
-PredefinedMailContentSendShipping=__CONTACTCIVNAME__\n\nYou will find here the shipping __SHIPPINGREF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
-PredefinedMailContentSendFichInter=__CONTACTCIVNAME__\n\nYou will find here the intervention __FICHINTERREF__\n\n__PERSONALIZED__Sincerely\n\n__SIGNATURE__
+PredefinedMailTest=Ovo je test mail.\nDve linije su razdvojene u dva različita reda.\n\n__SIGNATURE__
+PredefinedMailTestHtml=Ovo je <b>test</b> mail (reč test mora biti pojačana).<br>Dve linije su razdvojene u dva različita reda.<br><br>__SIGNATURE__
+PredefinedMailContentSendInvoice=__CONTACTCIVNAME__\n\nU prilogu možete pronaći fakturu __REF__\n\n__PERSONALIZED__Srdačan pozdrav\n\n__SIGNATURE__
+PredefinedMailContentSendInvoiceReminder=__CONTACTCIVNAME__\n\nOvom prilikom želimo da Vas upozorimo da nismo evidentirali uplatu za fakturu  __REF__ koju možete pronaći u prilogu, kao podsetnik.\n\n__PERSONALIZED__Srdačan pozdrav,\n\n__SIGNATURE__
+PredefinedMailContentSendProposal=__CONTACTCIVNAME__\n\nU prilogu možete pronaći komercijalnu ponudu __PROPREF__\n\n__PERSONALIZED__Srdačan pozdrav,\n\n__SIGNATURE__
+PredefinedMailContentSendSupplierProposal=__CONTACTCIVNAME__\n\nU prilogu možete pronaći zahtev za cenu __ASKREF__\n\n__PERSONALIZED__Srdačan pozdrav,\n\n__SIGNATURE__
+PredefinedMailContentSendOrder=__CONTACTCIVNAME__\n\nU prilogu možete naći narudžbinu __ORDERREF__\n\n__PERSONALIZED__Srdačan pozdrav,\n\n__SIGNATURE__
+PredefinedMailContentSendSupplierOrder=__CONTACTCIVNAME__\n\nU prilogu možete naći narudžbinu __ORDERREF__\n\n__PERSONALIZED__Srdačan pozdrav,\n\n__SIGNATURE__
+PredefinedMailContentSendSupplierInvoice=__CONTACTCIVNAME__\n\nU prilogu možete pronaći fakturu __REF__\n\n__PERSONALIZED__Srdačan pozdrav\n\n__SIGNATURE__
+PredefinedMailContentSendShipping=__CONTACTCIVNAME__\n\nU prilogu možete naći isporuku __SHIPPINGREF__\n\n__PERSONALIZED__Srdačan pozdrav,\n\n__SIGNATURE__
+PredefinedMailContentSendFichInter=__CONTACTCIVNAME__\n\nU prilogu možete naći intervenciju __FICHINTERREF__\n\n__PERSONALIZED__Srdačan pozdrav,\n\n__SIGNATURE__
 PredefinedMailContentThirdparty=__CONTACTCIVNAME__\n\n__PERSONALIZED__\n\n__SIGNATURE__
-DemoDesc=Dolibarr is a compact ERP/CRM composed by several functional modules. A demo that includes all modules does not mean anything as this never occurs. So, several demo profiles are available.
+DemoDesc=Dolibarr je kompaktni ERP/CRM koji sadrži više modula. Demo koji sadrži sve module nema smisla, jer se to u praksi nikada ne dešava. Stoga je dostupno nekoliko demo profila.
 ChooseYourDemoProfil=Izaberite demo profil koji odgovara Vašoj aktivnosti...
 DemoFundation=Upravljanje članovima fondacije
 DemoFundation2=Upravljanje članovima i bankovnim računom fondacije
@@ -145,12 +145,12 @@ SizeUnitinch=inch
 SizeUnitfoot=foot
 SizeUnitpoint=tačka
 BugTracker=Bug tracker
-SendNewPasswordDesc=This form allows you to request a new password. It will be send to your email address.<br>Change will be effective only after clicking on confirmation link inside this email.<br>Check your email reader software.
+SendNewPasswordDesc=Pomoću ove forme možete zahtevati novu lozinku, koja će Vam biti poslata na mail.<br>Promena će biti izvršena tek kada kliknete na konfirmacioni link u mailu.<br>Proverite Vaš mail.
 BackToLoginPage=Nazad na login stranu
-AuthenticationDoesNotAllowSendNewPassword=Authentication mode is <b>%s</b>.<br>In this mode, Dolibarr can't know nor change your password.<br>Contact your system administrator if you want to change your password.
-EnableGDLibraryDesc=Install or enable GD library with your PHP for use this option.
-EnablePhpAVModuleDesc=You need to install a module compatible with your anti-virus. (Clamav : php4-clamavlib ou php5-clamavlib)
-ProfIdShortDesc=<b>Prof Id %s</b> is an information depending on third party country.<br>For example, for country <b>%s</b>, it's code <b>%s</b>.
+AuthenticationDoesNotAllowSendNewPassword=Mod autentifikacije je <b>%s</b>.<br>U ovom modu, Dolibarr nema uvid u Vašu lozinku i ne može je promeniti.<br>Kontaktirajte Vašeg sistem administratora ukoliko želite da promenite lozinku.
+EnableGDLibraryDesc=Instalirajte ili aktivirajte GD biblioteku PHP-a da biste koristili ovu opciju.
+EnablePhpAVModuleDesc=Potrebno je da instalirate modul kompatibilan sa Vašim anti-virusom. (Clamav : php4-clamavlib ili php5-clamavlib)
+ProfIdShortDesc=<b>Prof Id %s</b> je infomacija koja zavisi od zemlje subjekta.<br>Na primer, za zemlju <b>%s</b>, to je kod <b>%s</b>.
 DolibarrDemo=Dolibarr ERP/CRM demo
 StatsByNumberOfUnits=Statistike u brojkama jedinica proizvoda/usluga
 StatsByNumberOfEntities=Statistike u brojkama referentnih entiteta
@@ -180,14 +180,14 @@ ResizeDesc=Unesite novu širinu <b>ILI</b> novu visinu. Proporcija će biti odr
 NewLength=Nova širina
 NewHeight=Nova visina
 NewSizeAfterCropping=Nova veličina nakon sečenja
-DefineNewAreaToPick=Define new area on image to pick (left click on image then drag until you reach the opposite corner)
-CurrentInformationOnImage=This tool was designed to help you to resize or crop an image. This is informations on current edited image
+DefineNewAreaToPick=Definiši novu oblast na slici za izbor (kliknite levim klikom na sliku i prevucite kursor do suprotnog ugla)
+CurrentInformationOnImage=Ovaj alat važ omogućava da izmenite veličinu ili da isečete sliku. Ovo su informacije o slici koju trenutno gledate.
 ImageEditor=Editor slika
-YouReceiveMailBecauseOfNotification=You receive this message because your email has been added to list of targets to be informed of particular events into %s software of %s.
+YouReceiveMailBecauseOfNotification=Dobili ste ovu poruku jer je Vaš mail dodat u listu za informisanje o određenim događajima u %s softveru od %s.
 YouReceiveMailBecauseOfNotification2=Ovaj događaj je sledeće:
-ThisIsListOfModules=This is a list of modules preselected by this demo profile (only most common modules are visible in this demo). Edit this to have a more personalized demo and click on "Start".
+ThisIsListOfModules=Ovo je lista modula preselektovanih za ovaj demo profil (samo najstandardniji moduli su dostupni u ovom demo-u). Izmenite ovu listu kako biste dobili personalizovaniji demo i kliknite na "Start".
 ClickHere=Klikni ovde
-UseAdvancedPerms=Use the advanced permissions of some modules
+UseAdvancedPerms=Koristite napredna prava nekih modula
 FileFormat=Format fajla
 SelectAColor=Izaberi boju
 AddFiles=Dodaj fajlove
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=Novi export
 ##### External sites #####
 ExternalSites=Eksterni sajtovi
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/sr_RS/paybox.lang b/htdocs/langs/sr_RS/paybox.lang
index e13a95cd9023080569ff30c5d3b53f4ef2808346..8df3d477886a6031abff820aa6a7625d287d6879 100644
--- a/htdocs/langs/sr_RS/paybox.lang
+++ b/htdocs/langs/sr_RS/paybox.lang
@@ -1,7 +1,7 @@
 # Dolibarr language file - Source file is en_US - paybox
 PayBoxSetup=Podešavanja modula PayBox
-PayBoxDesc=This module offer pages to allow payment on <a href="http://www.paybox.com" target="_blank">Paybox</a> by customers. This can be used for a free payment or for a payment on a particular Dolibarr object (invoice, order, ...)
-FollowingUrlAreAvailableToMakePayments=Following URLs are available to offer a page to a customer to make a payment on Dolibarr objects
+PayBoxDesc=Ovaj modul nudi strane za uplatu na <a href="http://www.paybox.com" target="_blank">Paybox-u</a>. Može biti korišćen za slobodne uplate, ili za uplate vezane za određeni Dolibarr objekat (faktura, narudžbenica, ...)
+FollowingUrlAreAvailableToMakePayments=Sledeći URL-ovi mogu omogućiti klijentu da izvrši uplatu na Dolibarr objekte
 PaymentForm=Forma za uplatu
 WelcomeOnPaymentPage=Dobrodošli na naš servis online plaćanja
 ThisScreenAllowsYouToPay=Ovaj ekran vam omogućava da izvršite online uplatu u korist %s
@@ -11,29 +11,29 @@ YourEMail=Email za potvrdu uplate
 Creditor=Kreditor
 PaymentCode=Kod uplate
 PayBoxDoPayment=Izvrši plaćanje
-YouWillBeRedirectedOnPayBox=You will be redirected on secured Paybox page to input you credit card information
+YouWillBeRedirectedOnPayBox=Bićete redrektovani na sigurnu Paybox stranu kako biste uneli informacije Vaše kreditne kartice
 Continue=Dalje
 ToOfferALinkForOnlinePayment=URL za %s uplatu
-ToOfferALinkForOnlinePaymentOnOrder=URL to offer a %s online payment user interface for a customer order
-ToOfferALinkForOnlinePaymentOnInvoice=URL to offer a %s online payment user interface for a customer invoice
-ToOfferALinkForOnlinePaymentOnContractLine=URL to offer a %s online payment user interface for a contract line
-ToOfferALinkForOnlinePaymentOnFreeAmount=URL to offer a %s online payment user interface for a free amount
-ToOfferALinkForOnlinePaymentOnMemberSubscription=URL to offer a %s online payment user interface for a member subscription
-YouCanAddTagOnUrl=You can also add url parameter <b>&tag=<i>value</i></b> to any of those URL (required only for free payment) to add your own payment comment tag.
-SetupPayBoxToHavePaymentCreatedAutomatically=Setup your PayBox with url <b>%s</b> to have payment created automatically when validated by paybox.
-YourPaymentHasBeenRecorded=This page confirms that your payment has been recorded. Thank you.
-YourPaymentHasNotBeenRecorded=You payment has not been recorded and transaction has been canceled. Thank you.
+ToOfferALinkForOnlinePaymentOnOrder=URL za korisnički interfejs %s online uplate za narudžbinu klijenta
+ToOfferALinkForOnlinePaymentOnInvoice=URL za korisnički interfejs %s online uplate za račun klijenta
+ToOfferALinkForOnlinePaymentOnContractLine=URL za korisnički interfejs %s online uplate za liniju ugovora
+ToOfferALinkForOnlinePaymentOnFreeAmount=URL za korisnički interfejs %s online uplate za slobodan iznos
+ToOfferALinkForOnlinePaymentOnMemberSubscription=URL za korisnički interfejs %s online uplate za korisničku pretplatu
+YouCanAddTagOnUrl=Takođe možete dodati url parametar <b>&tag=<i>value</i></b> na bilo koji od ovih URL-ova (samo za slobodne uplate) kako biste uneli svoj sopstveni komentar za uplatu.
+SetupPayBoxToHavePaymentCreatedAutomatically=Podesite svoj PayBox sa url-om <b>%s</b> kako bi se uplata kreirala automatski kada je potvrđena u paybox-u.
+YourPaymentHasBeenRecorded=Ova strana potvrđuje da je Vaša uplata registrovana. Hvala.
+YourPaymentHasNotBeenRecorded=Vaša uplata nije registrovana i transakcija je otkazana. Hvala.
 AccountParameter=Parametri naloga
 UsageParameter=Parametri korišćenja
-InformationToFindParameters=Help to find your %s account information
-PAYBOX_CGI_URL_V2=Url of Paybox CGI module for payment
+InformationToFindParameters=Pomoć za pronalaženje informacije o Vašem %s nalogu
+PAYBOX_CGI_URL_V2=Url ili Paybox CGI modul za plaćanje
 VendorName=Ime prodavca
-CSSUrlForPaymentForm=CSS style sheet url for payment form
-MessageOK=Message on validated payment return page
-MessageKO=Message on canceled payment return page
-NewPayboxPaymentReceived=New Paybox payment received
-NewPayboxPaymentFailed=New Paybox payment tried but failed
-PAYBOX_PAYONLINE_SENDEMAIL=EMail to warn after a payment (success or failed)
-PAYBOX_PBX_SITE=Value for PBX SITE
-PAYBOX_PBX_RANG=Value for PBX Rang
-PAYBOX_PBX_IDENTIFIANT=Value for PBX ID
+CSSUrlForPaymentForm=CSS url za formu za plaćanje
+MessageOK=Poruka na strani potvrđene uplate
+MessageKO=Poruka na strani otkazane uplate
+NewPayboxPaymentReceived=Nova Paybox uplata je primljena
+NewPayboxPaymentFailed=Pokušak nove Paybox uplate nije uspeo
+PAYBOX_PAYONLINE_SENDEMAIL=EMail obaveštenja nakon uplate (uspele ili neuspele)
+PAYBOX_PBX_SITE=Vrednost PBX SITE
+PAYBOX_PBX_RANG=Vrednost PBX Rang
+PAYBOX_PBX_IDENTIFIANT=Vrednost PBX ID
diff --git a/htdocs/langs/sr_RS/paypal.lang b/htdocs/langs/sr_RS/paypal.lang
index fd9e28866ed93873459c8281fe2f84da3db9e6e0..db81d858a55e7d12d0a7832638e03bb85cf813b8 100644
--- a/htdocs/langs/sr_RS/paypal.lang
+++ b/htdocs/langs/sr_RS/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Test/sandbox mod
 PAYPAL_API_USER=API username
 PAYPAL_API_PASSWORD=API password
 PAYPAL_API_SIGNATURE=API signature
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Ponudi "integralno" plaćanje (kreditna kartca + PayPal) ili samo "PayPal"
 PaypalModeIntegral=Integralno
 PaypalModeOnlyPaypal=Samo PayPal
@@ -23,3 +24,9 @@ PAYPAL_PAYONLINE_SENDEMAIL=Email obaveštenja nakon uplate (uspešne ili ne)
 ReturnURLAfterPayment=Povratni URL posle plaćanja
 ValidationOfPaypalPaymentFailed=Potvrda neuspešne Paypal uplate
 PaypalConfirmPaymentPageWasCalledButFailed=Paypal strana za konfirmaciju uplate je pozvana, ali je konfirmacija neuspela
+SetExpressCheckoutAPICallFailed=Greška u pozivu SetExpressCheckout API.
+DoExpressCheckoutPaymentAPICallFailed=Greška u pozivu DoExpressCheckoutPayment API.
+DetailedErrorMessage=Detaljna poruka greške
+ShortErrorMessage=Kratka poruka greške
+ErrorCode=Kod greške
+ErrorSeverityCode=Kod ozbiljnosti greške
diff --git a/htdocs/langs/sr_RS/printing.lang b/htdocs/langs/sr_RS/printing.lang
index 65c5d254add35854f070b484a2985f9a180d1f2d..553878ce423a6aee706f86789bdef3da67a26667 100644
--- a/htdocs/langs/sr_RS/printing.lang
+++ b/htdocs/langs/sr_RS/printing.lang
@@ -2,8 +2,8 @@
 Module64000Name=Direct Printing
 Module64000Desc=Aktiviraj Direct Printing System
 PrintingSetup=Podešavanja Direct Printing System-a
-PrintingDesc=This module adds a Print button to send documents directly to a printer (without opening document into an application) with various module.
-MenuDirectPrinting=Direct Printing
+PrintingDesc=Ovaj modul dodaje dugme Štampaj kako bi dokumenti bili poslati direktno na štampač (bew otvaranja dokumenta u aplikaciji).
+MenuDirectPrinting=Direct Printing akcije
 DirectPrint=Direct print
 ModuleDriverSetup=Podesi Module Driver
 PrintingDriverDesc=Opcije za driver štampača.
@@ -18,6 +18,13 @@ TestDriver=Test
 TargetedPrinter=Ciljani štampač
 UserConf=Podešavanja po korisniku
 PRINTGCP=Google Cloud Print
+PRINTGCP_INFO=Google OAuth API podešavanja
+PRINTGCP_AUTHLINK=Autentifikacija
+PRINTGCP_TOKEN_ACCESS=Google Cloud Print OAuth Token
+PRINTGCP_TOKEN_REFRESH=Token Refresh Present
+PRINTGCP_TOKEN_EXPIRED=Token Istekao
+PRINTGCP_TOKEN_EXPIRE_AT=Token ističe
+PRINTGCP_DELETE_TOKEN=Obriši sačuvani token
 PrintGCPDesc=Ovaj driver omogućava direktno štampanje sa Google Cloud Print.
 PrintingDriverDescprintgcp=Opcije driver-a štampača Google Cloud Print.
 PrintTestDescprintgcp=Lista štampača za Google Cloud Print.
@@ -74,3 +81,6 @@ STATE_IPP_none=Nema
 MEDIA_IPP_stationery=Stacioniran
 MEDIA_IPP_thermal=Termalni
 IPP_COLOR_print-black=Crno-beli štampač
+DirectPrintingJobsDesc=Ova strana lista zadatke štampanja za sve dostupne štampače
+GoogleAuthNotConfigured=Google OAuth podešavanje nije završeno. Aktivirajte modul OAuth i podesite Google ID/Secret.
+GoogleAuthConfigured=Google OAuth credentials pronađeni u podešavanjima modula OAuth.
diff --git a/htdocs/langs/sr_RS/products.lang b/htdocs/langs/sr_RS/products.lang
index 9772a7ae4a0e9c75350e2468970672a18b711c9d..9bc971ae2fb533b12ee8f93b0398655a4f0acb25 100644
--- a/htdocs/langs/sr_RS/products.lang
+++ b/htdocs/langs/sr_RS/products.lang
@@ -1,9 +1,9 @@
 # Dolibarr language file - Source file is en_US - products
 ProductRef=Ref. proizvoda
 ProductLabel=Oznaka proizvoda
-ProductLabelTranslated=Translated product label
-ProductDescriptionTranslated=Translated product description
-ProductNoteTranslated=Translated product note
+ProductLabelTranslated=Prevedeni naziv proizvoda
+ProductDescriptionTranslated=Prevedeni opis proizvoda
+ProductNoteTranslated=Prevedena napomena proizvoda
 ProductServiceCard=Kartica Proizvoda/Usluga
 Products=Proizvodi
 Services=Usluge
@@ -17,9 +17,9 @@ NewService=Nova usluga
 ProductCode=Kod proizvoda
 ServiceCode=Kod usluge
 ProductVatMassChange=Masivna promena PDV-a
-ProductVatMassChangeDesc=This page can be used to modify a VAT rate defined on products or services from a value to another. Warning, this change is done on all database.
+ProductVatMassChangeDesc=Na ovoj strani možete izmeniti stopu PDV-a definisanu za proizvode ili usluge. Upozorenje, ova promena će biti primenjena na celu bazu.
 MassBarcodeInit=Masivna inicijalizacija bar code-a.
-MassBarcodeInitDesc=This page can be used to initialize a barcode on objects that does not have barcode defined. Check before that setup of module barcode is complete.
+MassBarcodeInitDesc=Na ovoj strani možete inicijalizovati bar kod za objekte koji još uvek nemaju definisan kod. Prethodno proverite da li je završeno podešavanje modula bar kod.
 ProductAccountancyBuyCode=Računovodstveni kod (kupovina)
 ProductAccountancySellCode=Računovodstveni kod (prodaja)
 ProductOrService=Proizvod ili Usluga
@@ -67,32 +67,32 @@ ProductStatusNotOnBuy=Nije za nabavku
 ProductStatusOnBuyShort=Za nabavku
 ProductStatusNotOnBuyShort=Nije za nabavku
 UpdatePrice=Ažuriraj cenu
-UpdateVAT=Update vat
-UpdateDefaultPrice=Update default price
-UpdateLevelPrices=Update prices for each level
+UpdateVAT=Ažuriranje TVA
+UpdateDefaultPrice=Ažuriranje default cene
+UpdateLevelPrices=Ažuriranje cena za svaki nivo
 AppliedPricesFrom=Važeće cene od
 SellingPrice=Prodajna cena
 SellingPriceHT=Prodajna cena (neto)
 SellingPriceTTC=Prodajna cena (sa PDV-om)
 PublicPrice=Javna cena
 CurrentPrice=Trenutna cena
-CostPriceDescription=This price (net of tax) can be used to store the average amount this product cost to your company. It may be any price you calculate yourself, for example from the average buying price plus average production and distribution cost.
-CostPriceUsage=In a future version, this value could be used for margin calculation.
+CostPriceDescription=Ovu cenu (neto) možete koristiti da zabeležite prosečnu cenu koštanja proizvoda za Vašu kompaniju. To može biti bilo koja cenu koju sami izračunate, npr. prosečna nabavna cena plus prosečna cena proizvodnje i distribucije.
+CostPriceUsage=U sledećoj verziji, ova vrednost će biti korisna za računanje marže.
 NewPrice=Nova cena
 MinPrice=Min. prodajna cena
 MinPriceHT=Min. prodajna cena (neto)
 MinPriceTTC=Min. prodajna cena (bruto)
-CantBeLessThanMinPrice=The selling price can't be lower than minimum allowed for this product (%s without tax). This message can also appears if you type a too important discount.
+CantBeLessThanMinPrice=Prodajna cena ne može biti niža od dozvoljenog minimuma za ovaj proizvod (%s neto). Ova poruka se takođe može pojaviti ukoliko ste uneli preveliki popust.
 ContractStatus=Status ugovora
 ContractStatusClosed=Zatvoren
 ContractStatusRunning=U toku
 ContractStatusExpired=istekao
 ContractStatusOnHold=Na čekanju
-ContractStatusToRun=Make ongoing
-ContractNotRunning=This contract is not ongoing
+ContractStatusToRun=Postavi kao tekući
+ContractNotRunning=Ovaj ugovor nije tekući
 ErrorProductAlreadyExists=Proizvod sa referencom %s već postoji
 ErrorProductBadRefOrLabel=Pogrešna vrednost za referencu ili naziv.
-ErrorProductClone=There was a problem while trying to clone the product or service.
+ErrorProductClone=Došlo je do greške prilikom dupliranja proizvoda ili usluge.
 ErrorPriceCantBeLowerThanMinPrice=Greška, cena ne može biti manja od minimalne.
 Suppliers=Dobavljači
 SupplierRef=Dobavljačeva ref. proizvoda
@@ -108,8 +108,8 @@ AddToOtherBills=Ubaci u druge račune
 CorrectStock=Ispravno stanje
 ListOfStockMovements=Lista promena stanja
 BuyingPrice=Kupovna cena
-PriceForEachProduct=Products with specific prices
-NoPriceSpecificToCustomer=This customer has no specific prices. All standard prices for products/services will be used.
+PriceForEachProduct=Proizvodi sa posebnim cenama
+NoPriceSpecificToCustomer=Ovaj klijent nema posebnih pravila. Biće primenjne standardne cene proizvoda/usluga.
 SupplierCard=Kartica dobavljača
 CommercialCard=Komercijalna kartica
 AllWays=Putanja do Vašeg proizvoda na lageru
@@ -129,7 +129,7 @@ MultiPriceLevelsName=Kategorije cena
 AssociatedProductsAbility=Aktiviraj mogućnost paketa
 AssociatedProducts=Paket proizvoda
 AssociatedProductsNumber=Broj proizvoda koji čine ovaj paket proizvoda
-ParentProductsNumber=Number of parent packaging product
+ParentProductsNumber=Broj paketa proizvoda
 IfZeroItIsNotAVirtualProduct=Ako je vrednost 0, ovaj proizvod nije paket proizvoda
 IfZeroItIsNotUsedByVirtualProduct=Ako je vrednost 0, povaj proizvod nije ni u jednom paketu proizvoda
 EditAssociate=Poveži
@@ -139,9 +139,9 @@ CategoryFilter=Filter po kategoriji
 ProductToAddSearch=Potraži proizvod za dodavanje
 AddDel=Dodaj/Obriši
 NoMatchFound=Nema rezultata
-ProductAssociationList=List of products/services that are component of this virtual product/package
-ProductParentList=List of package products/services with this product as a component
-ErrorAssociationIsFatherOfThis=One of selected product is parent with current product
+ProductAssociationList=Lista prozvoda/usluga koje su deo ovog virtuelnog proizvoda/paketa
+ProductParentList=Lista paketa proizvoda/usluga koje sadrže ovaj proizvod
+ErrorAssociationIsFatherOfThis=Jedan od izabranih proizvoda je matični za trenutni proizvod
 DeleteProduct=Obriši proizvod/uslugu
 ConfirmDeleteProduct=Da li ste sigurni da želite da obrišete ovaj proizvod/uslugu?
 ProductDeleted=Proizvod/Usluga "%s" je obrisan iz baze.
@@ -176,7 +176,7 @@ PredefinedProductsToPurchase=Predefinisani proizvod za nabavku
 PredefinedServicesToPurchase=Predefinisane usluge za nabavku
 PredefinedProductsAndServicesToPurchase=Predfinisani proizvodi/usluge za nabavku
 GenerateThumb=Generiši ikonu
-ProductCanvasAbility=Use special "canvas" addons
+ProductCanvasAbility=Koristi specijane "canvas" dodatke
 ServiceNb=Usluga #%s
 ListProductServiceByPopularity=Lista proizvoda/usluga po popularnosti
 ListProductByPopularity=Lista proizvoda po popularnosti
@@ -190,14 +190,14 @@ ClonePricesProduct=Kloniraj glavne podatke i cene
 CloneCompositionProduct=Dupliraj paket proizvoda/usluga
 ProductIsUsed=Ovaj proizvod je u upotrebi
 NewRefForClone=Ref. novog proizvoda/usluge
-SellingPrices=Selling prices
-BuyingPrices=Buying prices
+SellingPrices=Prodajne cene
+BuyingPrices=Kupovne cene
 CustomerPrices=Cene klijenta
 SuppliersPrices=Cene dobavljača
 SuppliersPricesOfProductsOrServices=Cene dobavljača (proizvoda ili usluga)
 CustomCode=Carinski kod
 CountryOrigin=Zemlja porekla
-HiddenIntoCombo=Hidden into select lists
+HiddenIntoCombo=Sakriven u selektiranim listama
 Nature=Priroda
 ShortLabel=Kratak naziv
 Unit=Jedinica
@@ -227,41 +227,41 @@ l=L
 ProductCodeModel=Template ref. proizvoda
 ServiceCodeModel=Template ref. usluge
 AddThisProductCard=Kreiraj karticu proizvoda
-HelpAddThisProductCard=This option allows you to create or clone a product if it does not exist.
+HelpAddThisProductCard=Ova opcija omogućava da kreirate ili duplirate proizvod ukoliko ne postoji.
 AddThisServiceCard=Kreiraj karticu usluge
-HelpAddThisServiceCard=This option allows you to create or clone a service if it does not exist.
+HelpAddThisServiceCard=Ova opcija omogućava da kreirate ili duplirate uslugu ukoliko ne postoji.
 CurrentProductPrice=Trenutna cena
-AlwaysUseNewPrice=Always use current price of product/service
+AlwaysUseNewPrice=Uvek koristi trenutnu cenu proizvoda/usluge
 AlwaysUseFixedPrice=Koristi fiksnu cenu
-PriceByQuantity=Different prices by quantity
-PriceByQuantityRange=Quantity range
+PriceByQuantity=Različite cene po količini
+PriceByQuantityRange=Raspon količina
 ProductsDashboard=Rezime Proizvoda/Usluga
 UpdateOriginalProductLabel=Izmeni izvorni naziv
 HelpUpdateOriginalProductLabel=Omogućuje izmenu imena proizvoda
-MultipriceRules=Price level rules
-UseMultipriceRules=Use price level rules (defined into product module setup) to autocalculate prices of all other level according to first level
-PercentVariationOver=%% variation over %s
-PercentDiscountOver=%% discount over %s
+MultipriceRules=Pravila nivoa cena
+UseMultipriceRules=Primeni pravila nivoa cena (definisanih u podešavanjima modula proizvodi) za automatsko računanje svih nivoa cena na osnovu prvog nivoa
+PercentVariationOver=%% varijacija od %s
+PercentDiscountOver=%% popust od %s
 ### composition fabrication
-Building=Production and items dispatchment
+Building=Proizvodnja i otprema artikala
 Build=Napravi
 BuildIt=Napravi i raspodeli
-BuildindListInfo=Available quantity for production per warehouse (set it to 0 for no further action)
+BuildindListInfo=Dostupna količina za proizvodnju po magacinu (postaviti na 0 da biste sprečili dalje aktivnosti)
 QtyNeed=Kol
-UnitPmp=Net unit VWAP
-CostPmpHT=Net total VWAP
-ProductUsedForBuild=Auto consumed by production
+UnitPmp=Neto jedinični VWAP
+CostPmpHT=Neto ukupni VWAP
+ProductUsedForBuild=Potrošnja u produkciji
 ProductBuilded=Proizvodnja je završena
-ProductsMultiPrice=Multi-cena proizvoda
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Cene klijenata (proizvoda ili usluga, multi-cene)
-ProductSellByQuarterHT=Products turnover quarterly before tax
-ServiceSellByQuarterHT=Services turnover quarterly before tax
+ProductSellByQuarterHT=Tromesečni obrt proizvoda pre poreza
+ServiceSellByQuarterHT=Tromesečni obrt usluga pre poreza
 Quarter1=1. Kvartal
 Quarter2=2. Kvartal
 Quarter3=3. Kvartal
 Quarter4=4. Kvartal
 BarCodePrintsheet=Odštampaj bar code
-PageToGenerateBarCodeSheets=With this tool, you can print sheets of bar code stickers. Choose format of your sticker page, type of barcode and value of barcode, then click on button <b>%s</b>.
+PageToGenerateBarCodeSheets=Uz pomoć ovog alata možete štampati strane sa bar kod nalepnicama. Izaberite format strane, tip bar koda i vrednosti bar koda i kliknite na dugme <b>%s</b>.
 NumberOfStickers=Broj nalepnica za štampanje na strani
 PrintsheetForOneBarCode=Odštampaj više nalepnica za jedan bar code
 BuildPageToPrint=Generiši stranu za štampanje
@@ -272,43 +272,44 @@ DefinitionOfBarCodeForProductNotComplete=Definicija tipa ili vrednosti bar code-
 DefinitionOfBarCodeForThirdpartyNotComplete=Definicija tipa ili vrednosti bar codea nije kompletna za subjekt %s.
 BarCodeDataForProduct=Barcode informacija proizvoda %s :
 BarCodeDataForThirdparty=Barcode informacija subjekta %s :
-ResetBarcodeForAllRecords=Define barcode value for all records (this will also reset barcode value already defined with new values)
+ResetBarcodeForAllRecords=Definiši bar kod vrednost za sve redove (ovo će takođe resetovati već definisane bar kod vrednosti)
 PriceByCustomer=Različita cena za svakog klijenta
 PriceCatalogue=Jedinstvena cena za proizvod/uslugu
 PricingRule=Pravila za cene klijenata
 AddCustomerPrice=Dodaj cenu po klijentu
-ForceUpdateChildPriceSoc=Set same price on customer subsidiaries
+ForceUpdateChildPriceSoc=Podesi istu cenu za ogranke klijenta
 PriceByCustomerLog=Istorija prethodnih cena klijenata
 MinimumPriceLimit=Minimalna cena ne može biti manja od %s
 MinimumRecommendedPrice=Minimalna preporučena cena je : %s
-PriceExpressionEditor=Price expression editor
-PriceExpressionSelected=Selected price expression
+PriceExpressionEditor=Izmena izraza cene
+PriceExpressionSelected=Selektiran izraz cene
 PriceExpressionEditorHelp1="cena = 2 + 2" ili "2 + 2" da biste zadali cenu. Koristite ; da biste razdvojili izraze
-PriceExpressionEditorHelp2=You can access ExtraFields with variables like <b>#extrafield_myextrafieldkey#</b> and global variables with <b>#global_mycode#</b>
-PriceExpressionEditorHelp3=In both product/service and supplier prices there are these variables available:<br><b>#tva_tx# #localtax1_tx# #localtax2_tx# #weight# #length# #surface# #price_min#</b>
-PriceExpressionEditorHelp4=In product/service price only: <b>#supplier_min_price#</b><br>In supplier prices only: <b>#supplier_quantity# and #supplier_tva_tx#</b>
+PriceExpressionEditorHelp2=Možete pristupiti ExtraFields pomoću promenljivih kao što su <b>#extrafield_myextrafieldkey#</b> i globalnih promenljivih sa <b>#global_mycode#</b>
+PriceExpressionEditorHelp3=I u cenama proizvoda/usluga i u cenama dobavljača su dostupne sledeće promenljive:<br><b>#tva_tx# #localtax1_tx# #localtax2_tx# #weight# #length# #surface# #price_min#</b>
+PriceExpressionEditorHelp4=Samo u cenama proizvoda/usluga: <b>#supplier_min_price#</b><br>Samo u cenama dobavljača: <b>#supplier_quantity# and #supplier_tva_tx#</b>
 PriceExpressionEditorHelp5=Dostupne globalne vrednosti:
 PriceMode=Mod cene
 PriceNumeric=Broj
 DefaultPrice=Default cena
-ComposedProductIncDecStock=Increase/Decrease stock on parent change
+ComposedProductIncDecStock=Povećaj/Smanji zalihu na matičnoj promeni
 ComposedProduct=Pod-proizvod
 MinSupplierPrice=Minimalna cena dobavljača
-DynamicPriceConfiguration=Dynamic price configuration
+DynamicPriceConfiguration=Dinamička konfiguracija cene
 GlobalVariables=Globalne promenljive
-GlobalVariableUpdaters=Global variable updaters
+GlobalVariableUpdaters=Ažuriranje globalnih promenljivih
 GlobalVariableUpdaterType0=JSON data
-GlobalVariableUpdaterHelp0=Parses JSON data from specified URL, VALUE specifies the location of relevant value,
-GlobalVariableUpdaterHelpFormat0=format is {"URL": "http://example.com/urlofjson", "VALUE": "array1,array2,targetvalue"}
+GlobalVariableUpdaterHelp0=Čita JSON podatke sa naznačenog URL-a, VALUE označava lokaciju vrednosti,
+GlobalVariableUpdaterHelpFormat0=format je {"URL": "http://example.com/urlofjson", "VALUE": "array1,array2,targetvalue"}
 GlobalVariableUpdaterType1=WebService data
-GlobalVariableUpdaterHelp1=Parses WebService data from specified URL, NS specifies the namespace, VALUE specifies the location of relevant value, DATA should contain the data to send and METHOD is the calling WS method
-GlobalVariableUpdaterHelpFormat1=format is {"URL": "http://example.com/urlofws", "VALUE": "array,targetvalue", "NS": "http://example.com/urlofns", "METHOD": "myWSMethod", "DATA": {"your": "data, "to": "send"}}
+GlobalVariableUpdaterHelp1=Čita WebService podatke sa naznačenog URL-a. NS označava namespace, VALUE označava lokaciju vrednosti, DATA označava podatke za slanje i METHOD je pozvana WS metoda
+GlobalVariableUpdaterHelpFormat1=format je {"URL": "http://example.com/urlofws", "VALUE": "array,targetvalue", "NS": "http://example.com/urlofns", "METHOD": "myWSMethod", "DATA": {"your": "data, "to": "send"}}
 UpdateInterval=Interval ažuriranja (minuti)
 LastUpdated=Ažurrano
 CorrectlyUpdated=Uspešno ažurirano
-PropalMergePdfProductActualFile=Files use to add into PDF Azur are/is
+PropalMergePdfProductActualFile=Fajlovi za dodavanje u PDF Azur su
 PropalMergePdfProductChooseFile=Selektiraj PDF fajlove
-IncludingProductWithTag=Including product/service with tag
+IncludingProductWithTag=Uključivanje proizvoda/usluge sa tagom
 DefaultPriceRealPriceMayDependOnCustomer=Default cena, realna cena može zavisiti od klijenta
-WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+WarningSelectOneDocument=Molimo izaberite barem jedan dokument
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/sr_RS/projects.lang b/htdocs/langs/sr_RS/projects.lang
index 588d01166d5e5867d7d911736751abf9905135ee..3bff129a731a82cb3490b4b6fa2c14462030c5e1 100644
--- a/htdocs/langs/sr_RS/projects.lang
+++ b/htdocs/langs/sr_RS/projects.lang
@@ -1,23 +1,24 @@
 # Dolibarr language file - Source file is en_US - projects
 RefProject=Ref. projekta
-ProjectRef=Project ref.
+ProjectRef=Ref. projekta
 ProjectId=ID projekta
-ProjectLabel=Project label
+ProjectLabel=Naziv projekta
 Project=Projekat
 Projects=Projekti
 ProjectStatus=Status projekta
 SharedProject=Svi
 PrivateProject=Kontakti projekta
-MyProjectsDesc=This view is limited to projects you are a contact for (whatever is the type).
-ProjectsPublicDesc=This view presents all projects you are allowed to read.
-ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed to read.
-ProjectsDesc=This view presents all projects (your user permissions grant you permission to view everything).
-MyTasksDesc=This view is limited to projects or tasks you are a contact for (whatever is the type).
-OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
-TasksPublicDesc=This view presents all projects and tasks you are allowed to read.
-TasksDesc=This view presents all projects and tasks (your user permissions grant you permission to view everything).
-AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
-OnlyYourTaskAreVisible=Only tasks you are assigned on are visible. Assign task to you if you want to enter time on it.
+MyProjectsDesc=Ovaj ekran prikazuje samo projekte u kojima ste definisani kao kontakt (bilo kog tipa).
+ProjectsPublicDesc=Ovaj ekran prikazuje sve projekte za koje imate pravo pregleda.
+ProjectsPublicTaskDesc=Ovaj ekran prikazuje sve projekte ili zadatke za koje imate pravo pregleda.
+ProjectsDesc=Ovaj ekran prikazuje sve projekte (Vaš korisnik ima pravo pregleda svih informacija)
+MyTasksDesc=Ovaj ekran prikazuj projekte ili zadatke za koje ste definisani kao kontakt (bilo kog tipa).
+OnlyOpenedProject=Vidljivi su samo otvoreni projekti (draft i zatvoreni projekti nisu vidljivi)
+ClosedProjectsAreHidden=Closed projects are not visible.
+TasksPublicDesc=Ovaj ekran prikazuje sve projekte ili zadatke za koje imate pravo pregleda.
+TasksDesc=Ovaj ekran prikazuje sve projekte i zadatke (Vaš korisnik ima pravo pregleda svih informacija)
+AllTaskVisibleButEditIfYouAreAssigned=Svi zadaci za takav projekat su vidljivi, ali možete uneti vreme samo za zadatke koji su Vam dodeljeni. Ukoliko želite da unesete vreme za zadatak, morate ga dodeliti sebi.
+OnlyYourTaskAreVisible=Samo zadaci koji su Vam dodeljeni su vidljivi. Dodelite sebi zadatak ukoliko želite da unesete vreme za njega.
 ProjectsArea=Oblast projekata
 NewProject=Novi projekat
 AddProject=Kreiraj projekat
@@ -25,15 +26,17 @@ DeleteAProject=Obriši projekat
 DeleteATask=Obriši zadatak
 ConfirmDeleteAProject=Da li ste sigurni da želite da obrišete ovaj projekat ?
 ConfirmDeleteATask=Da li ste sigurni da želite da obrišete ovaj zadatak ?
-OfficerProject=Officer project
+OfficerProject=Referentni projekat
 LastProjects=Poslednjih %s projekata
 AllProjects=Svi projekti
 OpenedProjects=Otvoreni projekti
-OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpenedTasks=Opened tasks
+OpportunitiesStatusForOpenedProjects=Iznos prilika u otvorenim projektima po statusu
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Lista projekata
 ShowProject=Prikaži projekat
-SetProject=Set project
-NoProject=No project defined or owned
+SetProject=Postavi projekat
+NoProject=Nema definisanih ni pripadajućih projekata
 NbOpenTasks=Br otvorenih zadataka
 NbOfProjects=Br projekata
 TimeSpent=Provedeno vreme
@@ -47,7 +50,7 @@ TaskTimeUser=Korisnik
 TaskTimeNote=Beleška
 TaskTimeDate=Datum
 TasksOnOpenedProject=Zadaci na otvorenim projektima
-WorkloadNotDefined=Workload not defined
+WorkloadNotDefined=Količina vremena nije definisana
 NewTimeSpent=Novo provedeno vreme
 MyTimeSpent=Moje vreme
 MyTasks=Moji zadaci
@@ -72,25 +75,25 @@ Time=Vreme
 ListProposalsAssociatedProject=Lista komercijalnih ponuda vezanih za projekat
 ListOrdersAssociatedProject=Lista narudžbina klijenata vezanih za projekat
 ListInvoicesAssociatedProject=Lista računa klijenata vezanih za projekat
-ListPredefinedInvoicesAssociatedProject=List of customer's predefined invoices associated with project
+ListPredefinedInvoicesAssociatedProject=Lista predefinisanih faktura klijenata vezanih za ovaj projekat
 ListSupplierOrdersAssociatedProject=Lista dobavljčkih narudžbina vezanih za projekat
 ListSupplierInvoicesAssociatedProject=Lista dobavljačkih računa vezanih za projekat
 ListContractAssociatedProject=Lista ugovora vezanih za projekat
 ListFichinterAssociatedProject=Lista intervencija vezanih za projekat
-ListExpenseReportsAssociatedProject=List of expense reports associated with the project
+ListExpenseReportsAssociatedProject=Lista troškova povezanih sa ovim projektom
 ListDonationsAssociatedProject=Lista donacija vezanih za ovaj projekat
 ListActionsAssociatedProject=Lista događaja vezanih za projekat
-ListTaskTimeUserProject=List of time consumed on tasks of project
+ListTaskTimeUserProject=Lista utrošenog vremena na zadacima ovog projekta
 TaskTimeUserProject=Vreme provedeno na zadacima ovog projekta
 ActivityOnProjectToday=Aktivnost na projektu danas
 ActivityOnProjectYesterday=Aktivnost na projektu juče
 ActivityOnProjectThisWeek=Aktivnosti na projektu ove nedelje
 ActivityOnProjectThisMonth=Aktivnosti na projektu ovog meseca
 ActivityOnProjectThisYear=Aktivnosti na projektu ove godine
-ChildOfTask=Child of project/task
-NotOwnerOfProject=Not owner of this private project
+ChildOfTask=Naslednik projekta/zadatka
+NotOwnerOfProject=Ovaj privatni projekat Vam ne pripada
 AffectedTo=Dodeljeno 
-CantRemoveProject=This project can't be removed as it is referenced by some other objects (invoice, orders or other). See referers tab.
+CantRemoveProject=Ovaj projekat ne može biti uklonjen jer ga koriste drugi objekti (fakture, narudžbine, i sl.). Vidite tab reference.
 ValidateProject=Odobri projekat
 ConfirmValidateProject=Da li ste sigurni da želite da odobrite ovaj projekat ?
 CloseAProject=Zatvori projekat
@@ -110,77 +113,80 @@ NoTasks=Nema zadataka za ovaj projekat
 LinkedToAnotherCompany=Subjekti vezani za ovaj projekat
 TaskIsNotAffectedToYou=Zadaci koji Vam nisu dodeljeni
 ErrorTimeSpentIsEmpty=Provedeno vreme nije uneto
-ThisWillAlsoRemoveTasks=This action will also delete all tasks of project (<b>%s</b> tasks at the moment) and all inputs of time spent.
-IfNeedToUseOhterObjectKeepEmpty=If some objects (invoice, order, ...), belonging to another third party, must be linked to the project to create, keep this empty to have the project being multi third parties.
+ThisWillAlsoRemoveTasks=Ova akcija će obrisati sve zadatke ovog projekta (<b>%s</b> zadataka u ovom trenutku) i sve unose utrošenog vremena.
+IfNeedToUseOhterObjectKeepEmpty=Ukoliko neki objekti (fakture, narudžbine, ...) pripadaju drugom subjektu, oni moraju biti povezani projektu koji se kreira. Ostavite ovu opciju praznu da bi projekat mogao da bude povezan sa više subjekata.
 CloneProject=Dupliraj projekat
 CloneTasks=Dupiraj zadatke
 CloneContacts=Dupliraj kontakte
 CloneNotes=Dupliraj beleške
-CloneProjectFiles=Clone project joined files
-CloneTaskFiles=Clone task(s) joined files (if task(s) cloned)
-CloneMoveDate=Update project/tasks dates from now ?
+CloneProjectFiles=Dupliraj fajlove projekta
+CloneTaskFiles=Dupliraj fajlove zadataka (ukoliko su zadaci duplirani)
+CloneMoveDate=Ažuriraj datume projekta/zadataka od sada ?
 ConfirmCloneProject=Da li ste sigurni da želite da duplirate ovaj projekat ?
-ProjectReportDate=Change task date according project start date
-ErrorShiftTaskDate=Impossible to shift task date according to new project start date
+ProjectReportDate=Izmenite datum zadatka prema datumu početka projekta.
+ErrorShiftTaskDate=Nemoguće promeniti datum zadatka prema novom datumu početka projekta
 ProjectsAndTasksLines=Projekti i zadaci
 ProjectCreatedInDolibarr=Projekat %s je kreiran
 TaskCreatedInDolibarr=Zadatak %s je kreiran
 TaskModifiedInDolibarr=Zadatak %s je izmenjen
 TaskDeletedInDolibarr=Zadatak %s je obrisan
-OpportunityStatus=Opportunity status
-OpportunityStatusShort=Opp. status
-OpportunityAmount=Opportunity amount
-OpportunityAmountShort=Opp. amount
+OpportunityStatus=Status prilike
+OpportunityStatusShort=Status prilike
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
+OpportunityAmount=Iznos prilike
+OpportunityAmountShort=Iznos prilike
 ##### Types de contacts #####
 TypeContact_project_internal_PROJECTLEADER=Vođa projekta
 TypeContact_project_external_PROJECTLEADER=Vođa projekta
-TypeContact_project_internal_PROJECTCONTRIBUTOR=Contributor
-TypeContact_project_external_PROJECTCONTRIBUTOR=Contributor
+TypeContact_project_internal_PROJECTCONTRIBUTOR=Saradnik
+TypeContact_project_external_PROJECTCONTRIBUTOR=Saradnik
 TypeContact_project_task_internal_TASKEXECUTIVE=Izvršilac zadatka
 TypeContact_project_task_external_TASKEXECUTIVE=Izvršilac zadatka
-TypeContact_project_task_internal_TASKCONTRIBUTOR=Contributor
-TypeContact_project_task_external_TASKCONTRIBUTOR=Contributor
+TypeContact_project_task_internal_TASKCONTRIBUTOR=Saradnik
+TypeContact_project_task_external_TASKCONTRIBUTOR=Saradnik
 SelectElement=Selektiraj element
 AddElement=Link ka elementu
 UnlinkElement=Unlinkuj element
 # Documents models
-DocumentModelBeluga=Project template for linked objects overview
-DocumentModelBaleine=Project report template for tasks
-PlannedWorkload=Planned workload
-PlannedWorkloadShort=Workload
-WorkloadOccupation=Workload assignation
+DocumentModelBeluga=Templejt projekta sa povezanim objektima
+DocumentModelBaleine=Templejt izveštavanja projekta za zadatke
+PlannedWorkload=Planirano utrošeno vreme
+PlannedWorkloadShort=Utrošeno vreme
+WorkloadOccupation=Dodela zadataka
 ProjectReferers=Referentirajući objekti
 SearchAProject=Potraži projekat
 SearchATask=Potraži zadatak
 ProjectMustBeValidatedFirst=Projekat prvo mora biti odobren
 ProjectDraft=Draft projekti
-FirstAddRessourceToAllocateTime=Associate a resource to allocate time
+FirstAddRessourceToAllocateTime=Dodelite resurs da biste dodelili vreme
 InputPerDay=Ulaz po danu
 InputPerWeek=Ulaz po nedelji
 InputPerAction=Ulaz po akciji
-TimeAlreadyRecorded=Time spent already recorded for this task/day and user %s
+TimeAlreadyRecorded=Utrošeno vreme je već sačuvano za ovaj zadatak/dan za korisnika %s
 ProjectsWithThisUserAsContact=Projekti sa ovim korisnikom u kontaktima
 TasksWithThisUserAsContact=Zadaci ovog korisnika
 ResourceNotAssignedToProject=Nije dodeljen projektu
 ResourceNotAssignedToTask=Nije dodeljen zadatku
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Dodeli zadatak meni
 AssignTask=Dodeli
 ProjectOverview=Pregled
 ManageTasks=Koristi projekte za praćenje zadataka i vremena
-ManageOpportunitiesStatus=Use projects to follow leads/opportinuties
+ManageOpportunitiesStatus=Koristi projekte za praćenje prilika
 ProjectNbProjectByMonth=Br kreiranih projekata po mesecu
-ProjectOppAmountOfProjectsByMonth=Amount of opportunities by month
-ProjectWeightedOppAmountOfProjectsByMonth=Weighted amount of opportunities by month
-ProjectOpenedProjectByOppStatus=Opened project/lead by opportunity status
+ProjectOppAmountOfProjectsByMonth=Iznos prilika po mesecu
+ProjectWeightedOppAmountOfProjectsByMonth=Prosečni iznos prilika po mesecu
+ProjectOpenedProjectByOppStatus=Otvoreni projekti po statusu prilika
 ProjectsStatistics=Statistike na projektima/lead-ovima
-TaskAssignedToEnterTime=Task assigned. Entering time on this task should be possible.
-IdTaskTime=Id task time
-YouCanCompleteRef=If you want to complete the ref with some information (to use it as search filters), it is recommanded to add a - character to separate it, so the automatic numbering will still work correctly for next projects. For example %s-ABC. You may also prefer to add search keys into label.
+TaskAssignedToEnterTime=Zadatak je dodeljen. Unos vremena za ovaj zadatak je omogućen.
+IdTaskTime=Id vremena zadatka
+YouCanCompleteRef=Ukoliko želite da kompletirate referencu informacijama (da je koristite sa filterima pretrage), preporučivo da ih razdvojite simbolom - kako bi automatsko numerisanje i dalje moglo da funkcioniše. Npr. %s-ABC. Takođe može biti korisno dodati ključne reč u naziv.
 OpenedProjectsByThirdparties=Otvoreni projekti po subjektima
-OpportunityTotalAmount=Opportunities total amount
-OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
-OppStatusPROSP=Prospection
+OpportunityTotalAmount=Ukupan iznos prilika
+OpportunityPonderatedAmount=Prosečni iznos prilika
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
+OppStatusPROSP=Prospekcija
 OppStatusQUAL=Kvalifikacija
 OppStatusPROPO=Ponuda
 OppStatusNEGO=Pregovaranje
diff --git a/htdocs/langs/sr_RS/propal.lang b/htdocs/langs/sr_RS/propal.lang
index bd4de91ae1dc213761a2d3067cd355cf9a39a0b0..a54fc8c6eac282e76697506146a605bd05117e04 100644
--- a/htdocs/langs/sr_RS/propal.lang
+++ b/htdocs/langs/sr_RS/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Poslednjih %s izmenjenih ponuda
 AllPropals=Sve ponude
 LastProposals=Poslednje ponude
 SearchAProposal=Potraži ponudu
+NoProposal=No proposal
 ProposalsStatistics=Statistike komercijalnih ponuda
 NumberOfProposalsByMonth=Broj po mesecu
 AmountOfProposalsByMonthHT=Svota po mesecu (neto)
@@ -53,6 +54,7 @@ ListOfProposals=Lista komercijalnih ponuda
 ActionsOnPropal=Događaji na ponudi
 NoOpenedPropals=Nema otvorenih komercijalnih ponuda
 NoOtherOpenedPropals=Nema drugih otvorenih komercijalnih ponuda
+NoPropal=Nema komercijalne ponude
 RefProposal=Ref komercijalne ponude
 SendPropalByMail=Pošalji komercijalnu poudu mailom
 AssociatedDocuments=Dokumenti vezani za ponudu:
@@ -61,7 +63,8 @@ DatePropal=Datum ponude
 DateEndPropal=Kraj validnosti
 DateEndPropalShort=Kraj
 ValidityDuration=Trajanje validnosti
-CloseAs=Zatvori sa statusom
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Označi kao naplaćenu
 BuildBill=Kreiraj račun
 ErrorPropalNotFound=Ponuda %s nije pronađena
@@ -99,3 +102,4 @@ DefaultModelPropalCreate=Kreacija default modela
 DefaultModelPropalToBill=Default model prilikom zatvaranja komercijalne ponude (za naplatu)
 DefaultModelPropalClosed=Default model prilikom zatvaranja komercijalne ponude (nenaplaćen)
 ProposalCustomerSignature=Pismeno odobrenje, pečat kompanije, datum i potpis
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/sr_RS/resource.lang b/htdocs/langs/sr_RS/resource.lang
index 39a49801e2bd45c007164f7595ddcb10794825a8..200916ad613df5d4303e7b17dd1d70180ab6452c 100644
--- a/htdocs/langs/sr_RS/resource.lang
+++ b/htdocs/langs/sr_RS/resource.lang
@@ -17,7 +17,7 @@ ResourceFormLabel_description=Opis resursa
 
 ResourcesLinkedToElement=Resursi vezani za elemenat
 
-ShowResource=Show resource
+ShowResource=Prikaži resurs
 ShowResourcePlanning=Prikaži planing resursa
 GotoDate=Idi na datum
 
diff --git a/htdocs/langs/sr_RS/salaries.lang b/htdocs/langs/sr_RS/salaries.lang
index 27858251bde7a6cdeb466ae6437d7fbdb153bba9..eb628d5481ed8faa054e38a34b41f64b29afc8b5 100644
--- a/htdocs/langs/sr_RS/salaries.lang
+++ b/htdocs/langs/sr_RS/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Računovodstveni kod za isplate zarada
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Računovodstveni kod za finansijske troškove
 Salary=Plata
 Salaries=Plate
-Employee=Zaposleni
 NewSalaryPayment=Nova isplata zarade
 SalaryPayment=Isplata zarade
 SalariesPayments=Isplate zarada
diff --git a/htdocs/langs/sr_RS/sendings.lang b/htdocs/langs/sr_RS/sendings.lang
index d02fc761133548c45e77ce687e77840fab9c3d7f..8c585607f8acf11ad94b86f8f0febf43769edab8 100644
--- a/htdocs/langs/sr_RS/sendings.lang
+++ b/htdocs/langs/sr_RS/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=Sve isporuke
 Shipment=Isporuka
 Shipments=Isporuke
 ShowSending=Prikaži isporuke
-Receivings=Prijemnice
+Receivings=Delivery Receipts
 SendingsArea=Oblast isporuka
 ListOfSendings=Lista isporuka
 SendingMethod=Način isporuke
@@ -69,10 +69,10 @@ ProductQtyInCustomersOrdersRunning=Količina proizvoda u otvorenim narudžbinama
 ProductQtyInSuppliersOrdersRunning=Količina proizvoda u otvorenim dobavljačevim narudžbinama
 ProductQtyInShipmentAlreadySent=Količina proizvoda u već poslatim otvorenim narudžbinama klijenta
 ProductQtyInSuppliersShipmentAlreadyRecevied=Količina proizvoda u već primljenim otvorenim dobavljačevim narudžbinama
-NoProductToShipFoundIntoStock=No product to ship found into warehouse <b>%s</b>. Correct stock or go back to choose another warehouse.
+NoProductToShipFoundIntoStock=Nema proizvoda za isporuku u magacin <b>%s</b>. Ispravite zalihu ili izaberite drugi magacin.
 
 # Sending methods
-SendingMethodCATCH=Catch by customer
+SendingMethodCATCH=Klijent preuzima
 SendingMethodTRANS=Transporter
 SendingMethodCOLSUI=Colissimo
 # ModelDocument
diff --git a/htdocs/langs/sr_RS/sms.lang b/htdocs/langs/sr_RS/sms.lang
index 066e99d54012f0deff90616bd9ba846a465a400f..756a81595e627f1b16ea24b3bcbc8063a57b4e3c 100644
--- a/htdocs/langs/sr_RS/sms.lang
+++ b/htdocs/langs/sr_RS/sms.lang
@@ -39,7 +39,7 @@ SmsSuccessfulySent=SMS uspešno poslat (od %s do %s)
 ErrorSmsRecipientIsEmpty=Broj targeta je prazan
 WarningNoSmsAdded=Nema novih brojeva za dodavanje na listu targeta
 ConfirmValidSms=Da li potvrđujete odobrenje ove kampanje ?
-ConfirmResetMailing=Warning, if you make a reinit of Sms campain <b>%s</b>, you will allow to make a mass sending of it a second time. Is it really what you wan to do ?
+ConfirmResetMailing=Upozorenje, ukoliko reinicijalizujete Sms kampanju <b>%s</b>, obavićete masivno slanje sms-a po drugi put. Da li zaista želite da reinicijalizujete kampanju ?
 ConfirmDeleteMailing=Da li potvrđujete uklanjanje ove kampanje ?
 NbOfRecipients=Broj targeta
 NbOfUniqueSms=Br. jedinstvenih brojeva telefona
@@ -49,5 +49,6 @@ SendSms=Pošalji SMS
 SmsInfoCharRemain=Broj preostalih karaktera
 SmsInfoNumero= (internacionalni format npr: +33899701761)
 DelayBeforeSending=Odloženo slanje (u minutima)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Nema definisanog targeta. Proverite podešavanja Vašeg SMS provajdera.
 
diff --git a/htdocs/langs/sr_RS/stocks.lang b/htdocs/langs/sr_RS/stocks.lang
index 9ee76f40dd7f4dd1200859cb6edd489ed852394b..c1e4f868f11f57c662142fa9d0d9dc704b368ba1 100644
--- a/htdocs/langs/sr_RS/stocks.lang
+++ b/htdocs/langs/sr_RS/stocks.lang
@@ -16,7 +16,7 @@ CancelSending=Otkaži slanje
 DeleteSending=Obrii slanje
 Stock=Zaliha
 Stocks=Zalihe
-StocksByLotSerial=Stock by lot/serial
+StocksByLotSerial=Zalihe po seriji
 Movement=Promet
 Movements=Prometi
 ErrorWarehouseRefRequired=Referenca magacina je obavezna
@@ -34,9 +34,9 @@ LastMovements=Poslednji prometi
 Units=Jedinice
 Unit=Jedinica
 StockCorrection=Ispravna zaliha
-StockTransfer=Transfer zalihe
-StockMovement=Transfer
-StockMovements=Transferi zaliha
+StockTransfer=Kretanje zaliha
+StockMovement=Kretanje zaliha
+StockMovements=Kretanja zaliha
 LabelMovement=Naziv prometa
 NumberOfUnit=Broj jedinica
 UnitPurchaseValue=Kupovna cena jedinice
@@ -48,13 +48,13 @@ PMPValue=Prosecna cena
 PMPValueShort=PC
 EnhancedValueOfWarehouses=Vrednost magacina
 UserWarehouseAutoCreate=Automatski kreiraj skladište prilikom kreacije korisnika
-IndependantSubProductStock=Product stock and subproduct stock are independant
+IndependantSubProductStock=Zaliha proizvoda i pod-proizvoda su nezavisne
 QtyDispatched=Raspoređena količina
 QtyDispatchedShort=Raspodeljena kol.
 QtyToDispatchShort=Kol. za raspodelu
 OrderDispatch=Raspodela zalihe
-RuleForStockManagementDecrease=Pravilo za kontrolisano smanjenje zalihe
-RuleForStockManagementIncrease=Pravilo za kontrolisano povećanje zalihe
+RuleForStockManagementDecrease=Pravila za automatsko smanjivanje zaliha (ručno smanjivanje je uvek moguće, čak i kada je automatsko pravilo aktivirano)
+RuleForStockManagementIncrease=Pravila za automatsko uvećanje zaliha (ručno uvećanje je uvek moguće, čak i kada je automatsko pravilo aktivirano)
 DeStockOnBill=Smanji realne zalihe nakon potvrde računa/kreditne note klijenta
 DeStockOnValidateOrder=Smanji realne zalihe nakon potvrde narudžbine klijenta
 DeStockOnShipment=Smanji realne zalihe nakon potvrde računa/kreditne note dobavljača
@@ -62,9 +62,9 @@ ReStockOnBill=Povećaj realne zalihe nakon potvrde računa/kreditne note dobavlj
 ReStockOnValidateOrder=Povećaj realne zalihe nakon potvrde narudžbine dobavljača
 ReStockOnDispatchOrder=Povećaj realne zalihe nakon ručne raspodele po magacinima, nakon prijema narudžbine dobavljača
 ReStockOnDeleteInvoice=Povećaj stvarne zalihe nakon brisanja računa
-OrderStatusNotReadyToDispatch=Order has not yet or no more a status that allows dispatching of products in stock warehouses.
-StockDiffPhysicTeoric=Explanation for difference between physical and theoretical stock
-NoPredefinedProductToDispatch=No predefined products for this object. So no dispatching in stock is required.
+OrderStatusNotReadyToDispatch=Narudžbina nema status koji omogućava otpremu proizvoda u magacin.
+StockDiffPhysicTeoric=Objašnjenje razlike fizičke i teoretske zalihe
+NoPredefinedProductToDispatch=Nema predefinisanih proizvoda za ovaj objekat. Stoga otprema u zalihu nije potrebna.
 DispatchVerb=Raspodela
 StockLimitShort=Limit za alertiranje
 StockLimit=Limit zalihe za alertiranje
@@ -72,19 +72,19 @@ PhysicalStock=Fizička zaliha
 RealStock=Realna zaliha
 VirtualStock=Fiktivna zaliha
 MininumStock=Minimalna zaliha
-StockUp=Stock up
+StockUp=Povećaj zalihu
 MininumStockShort=Min zaliha
-StockUpShort=Stock up
+StockUpShort=Povećaj zalihu
 IdWarehouse=Id magacina
 DescWareHouse=Opis magacina
 LieuWareHouse=Lokacija magacina
 WarehousesAndProducts=Magacini i proizvodi
-WarehousesAndProductsBatchDetail=Warehouses and products (with detail per lot/serial)
+WarehousesAndProductsBatchDetail=Magacini i proizvodi (sa detaljima po seriji)
 AverageUnitPricePMPShort=Prosečna ulazna cena
 AverageUnitPricePMP=Prosečna ulazna cena
 SellPriceMin=Jedinična prodajna cena
-EstimatedStockValueSellShort=Vrednost za prodaju
-EstimatedStockValueSell=Vrednost za prodaju
+EstimatedStockValueSellShort=Prodajna vrednost
+EstimatedStockValueSell=Prodajna vrednost
 EstimatedStockValueShort=Ulazna vrednost zalihe
 EstimatedStockValue=Ulazna vrednost zalihe
 DeleteAWarehouse=Obriši magacin
@@ -98,43 +98,43 @@ LastWaitingSupplierOrders=Narudžbine koje čekaju prijem
 DesiredStock=Željena minimalna zaliha
 DesiredMaxStock=Željena maksimalna zaliha
 StockToBuy=Za narudžbinu
-Replenishment=Replenishment
-ReplenishmentOrders=Replenishment orders
-VirtualDiffersFromPhysical=According to increase/decrease stock options, physical stock and virtual stock (physical + current orders) may differ
-UseVirtualStockByDefault=Use virtual stock by default, instead of physical stock, for replenishment feature
+Replenishment=Dopunjavanje
+ReplenishmentOrders=Narudžbine dopunjavanja
+VirtualDiffersFromPhysical=Prema opcijama za povećanje/umanjenje zaliha, fizička zaliha i virutelna zaliha (fizička + trenutne narudžbine) se mogu razlikovati
+UseVirtualStockByDefault=Po defaultu koristi virtuelnu zalihu, umesto fizičke, za funkciju dopunjavanja
 UseVirtualStock=Koristi fiktivnu zalihu
 UsePhysicalStock=Koristi fizičku zalihu
 CurentSelectionMode=Trenutan način selekcije
 CurentlyUsingVirtualStock=Fiktivna zaliha
 CurentlyUsingPhysicalStock=Fzička zaliha
-RuleForStockReplenishment=Rule for stocks replenishment
-SelectProductWithNotNullQty=Select at least one product with a qty not null and a supplier
+RuleForStockReplenishment=Pravilo za dopunjavanje zalihe
+SelectProductWithNotNullQty=Izaberite barem jedan prozvod sa pozitivnom količinom i dobavljača
 AlertOnly= Samo alertiranja
 WarehouseForStockDecrease=Magacin <b>%s</b> će biti upotrebljen za smanjenje zalihe
 WarehouseForStockIncrease=Magacin <b>%s</b> će biti upotrebljen za uvećanje zalihe
 ForThisWarehouse=Za ovaj magacin
-ReplenishmentStatusDesc=This is a list of all products with a stock lower than desired stock (or lower than alert value if checkbox "alert only" is checked), and suggest you to create supplier orders to fill the difference.
-ReplenishmentOrdersDesc=This is a list of all opened supplier orders including predefined products. Only opened orders with predefined products, so orders that may affect stocks, are visible here.
-Replenishments=Replenishments
-NbOfProductBeforePeriod=Quantity of product %s in stock before selected period (< %s)
-NbOfProductAfterPeriod=Quantity of product %s in stock after selected period (> %s)
+ReplenishmentStatusDesc=Ovo je lista svih proizvoda sa zalihom manjom od poželjne (ili manjom od vrednosti upozorenja ukoiko je opcija "samo upozorenje" selktirana). Ovom opcijom, možete kreirati narudžbine dobavljača kako biste ispunili razliku.
+ReplenishmentOrdersDesc=Ovo je lista svih otvorenih narudžbina dobavljača, uključujući i predefinisane proizvode. Vidljive su samo otvorene narudžbine sa predefinisanim proizvodima, koje se mogu odraziti na zalihu.
+Replenishments=Dopunjavanja
+NbOfProductBeforePeriod=Količina proizvoda %s u zalihama pre selektiranog perioda (< %s)
+NbOfProductAfterPeriod=Količina proizvoda %s u zalihama posle selektiranog perioda (> %s)
 MassMovement=Masivni promet
 MassStockMovement=Masivni promet zaliha
-SelectProductInAndOutWareHouse=Select a product, a quantity, a source warehouse and a target warehouse, then click "%s". Once this is done for all required movements, click onto "%s".
+SelectProductInAndOutWareHouse=Izaberite proizvod, količinu, izvorni magacin, ciljani magacin i kliknite "%s". Kada su sva kretanja izvršena, kliknite "%s".
 RecordMovement=Snimi transfer
 ReceivingForSameOrder=Prijemnice za ovu narudžbinu
 StockMovementRecorded=Snimljeni prometi zalihe
-RuleForStockAvailability=Rules on stock requirements
-StockMustBeEnoughForInvoice=Stock level must be enough to add product/service to invoice
-StockMustBeEnoughForOrder=Stock level must be enough to add product/service to order
-StockMustBeEnoughForShipment= Stock level must be enough to add product/service to shipment
+RuleForStockAvailability=Pravila na zahtevima zaliha
+StockMustBeEnoughForInvoice=Nivo zaliha mora biti dovoljan da biste dodali proizvod/uslugu u fakturu
+StockMustBeEnoughForOrder=Nivo zalihe mora biti dovoljan da biste dodali proizvod/uslugu u narudžbinu
+StockMustBeEnoughForShipment= Nivo zaliha mora biti dovoljan da biste dodali proizvod/uslugu u isporuku
 MovementLabel=Naziv prometa
 InventoryCode=Promet ili inventarski kod
 IsInPackage=Sadržan u paketu
 ShowWarehouse=Prikaži magacin
 MovementCorrectStock=Ispravka zalihe za proizvod %s
-MovementTransferStock=Stock transfer of product %s into another warehouse
-WarehouseMustBeSelectedAtFirstStepWhenProductBatchModuleOn=Source warehouse must be defined here when "Product lot" module is on. It will be used to list which lot/serial are available for products requiring lot/serial data for movement. If you want to send products from different warehouses, just make the shipment into several steps.
-InventoryCodeShort=Inv./Mov. code
-NoPendingReceptionOnSupplierOrder=No pending reception due to open supplier order
-ThisSerialAlreadyExistWithDifferentDate=This lot/serial number (<strong>%s</strong>) already exists but with different eatby or sellby date (found <strong>%s</strong> but you enter <strong>%s</strong>).
+MovementTransferStock=Transfer zaliha proizvoda %s u drugi magacin
+WarehouseMustBeSelectedAtFirstStepWhenProductBatchModuleOn=Kada je modul "Serija proizvoda" aktivan, mora biti definisan izvorni magacin. Serija proizvoda će tako biti dodeljena definisanom magacinu. Ukoliko želite da pošaljete proizvode iz različitih magacina, isporuka mora biti obavljena iz više koraka.
+InventoryCodeShort=Kod Inv./Krt.
+NoPendingReceptionOnSupplierOrder=Nema prijema po narudžbini dobavljača na čekanju
+ThisSerialAlreadyExistWithDifferentDate=Ova serija (<strong>%s</strong>) već postoji, ali sa različitim rokom trajanja/prodaje (nađeno je <strong>%s</strong> ali ste uneli <strong>%s</strong>).
diff --git a/htdocs/langs/sr_RS/suppliers.lang b/htdocs/langs/sr_RS/suppliers.lang
index fac08806b46168b22c4ab9ce9860eed24cf2f173..37ae3ebffc2d168f6227bb8ad068a6cf5207e2cb 100644
--- a/htdocs/langs/sr_RS/suppliers.lang
+++ b/htdocs/langs/sr_RS/suppliers.lang
@@ -3,19 +3,20 @@ Suppliers=Dobavljači
 AddSupplier=Kreiraj dobavljača
 SupplierRemoved=Dobavljač uklonjen
 SuppliersInvoice=Račun dobavljača
+ShowSupplierInvoice=Prikaži fakturu dobavljača
 NewSupplier=Novi dobavljač
-History=History
+History=Istorija
 ListOfSuppliers=Lista dobavljača
 ShowSupplier=Prikaži dobavljača
 OrderDate=Datum porudžbine
 BuyingPrice=Kupovna cena
 BuyingPriceMin=Minimalna kupovna cena
 BuyingPriceMinShort=Min kupovna cena
-TotalBuyingPriceMin=Total of subproducts buying prices
-SomeSubProductHaveNoPrices=Some sub-products have no price defined
+TotalBuyingPriceMin=Ukupna kupovna cena pod-proizvoda
+SomeSubProductHaveNoPrices=Neki od pod-proizvoda nemaju definisanu cenu
 AddSupplierPrice=Dodaj cenu dobavljača
 ChangeSupplierPrice=Izmeni cenu dobavljača
-ErrorQtyTooLowForThisSupplier=Quantity too low for this supplier or no price defined on this product for this supplier
+ErrorQtyTooLowForThisSupplier=Količina previše mala za ovog dobavljača ili nema definisane cen za ovaj proizvod kod ovog dobavljača
 ErrorSupplierCountryIsNotDefined=Zemlja dobavljača mora biti definisana.
 ProductHasAlreadyReferenceInThisSupplier=Ovaj proizvod već ima referencu kod ovog dobavljača
 ReferenceSupplierIsAlreadyAssociatedWithAProduct=Ovaj dobavljača je već vezan za referencu: %s
@@ -37,10 +38,10 @@ AddCustomerInvoice=Kreiraj račun klijenta
 AddSupplierOrder=Kreiraj narudžbinu dobavljača
 AddSupplierInvoice=Kreiraj račun dobavljača
 ListOfSupplierProductForSupplier=Lista proizvoda i cena za dobavljača <b>%s</b> 
-NoneOrBatchFileNeverRan=None or batch <b>%s</b> not ran recently
+NoneOrBatchFileNeverRan=Ni jedna od serija <b>%s</b> nije pokrenuta u skorije vreme
 SentToSuppliers=Poslato dobavljačima
 ListOfSupplierOrders=Lista narudžbina dobavljača
 MenuOrdersSupplierToBill=Narudžbine dobavljača za naplatu
 NbDaysToDelivery=Kašnjenje isporuke u danima
 DescNbDaysToDelivery=Najduže kašnjenje isporuke proizvoda iz ove narudžbine
-UseDoubleApproval=Use double approval when amount (without tax) is higher than (The second approval can be done by any user with the dedicated permission. Set to 0 for no double approval)
+UseDoubleApproval=Koristite duplo odobravanje kada je iznos (neto) veći od (Drugo odobrenje može biti dato od strane bilo kog korisnika sa odgovarajućim pravima. Podesite 0 da ne bi bilo duplog odobravanja)
diff --git a/htdocs/langs/sr_RS/trips.lang b/htdocs/langs/sr_RS/trips.lang
index e13d59dc163e783cce3233ce38fa5dd8079ac8ac..bb0c9957370fde93d4235a8c436c581716ca001b 100644
--- a/htdocs/langs/sr_RS/trips.lang
+++ b/htdocs/langs/sr_RS/trips.lang
@@ -22,7 +22,7 @@ ExpensesArea=Oblast troškova
 SearchATripAndExpense=Potraži trošak
 ClassifyRefunded=Označi kao "Refundirano"
 ExpenseReportWaitingForApproval=Novi trošak je poslat na odobrenje
-ExpenseReportWaitingForApprovalMessage=A new expense report has been submitted and is waiting for approval.\n- User: %s\n- Period: %s\nClick here to validate: %s
+ExpenseReportWaitingForApprovalMessage=Napravljen je novi zahtev koji čeka na odobrenje.\n- Korisnik %s\n- Period: %s\nKliknite ovde da potvrdite: %s
 TripId=ID troška
 AnyOtherInThisListCanValidate=Osoba koju treba obavestiti za odobrenje.
 TripSociete=Informacije kompanije
@@ -31,7 +31,7 @@ TripNDF=Informacije o trošku
 PDFStandardExpenseReports=Standardni template za generisanje PDF dokumenta o trošku
 ExpenseReportLine=Linija troška
 TF_OTHER=Ostalo
-TF_TRANSPORTATION=Prevoz
+TF_TRIP=Transportation
 TF_LUNCH=Ručak
 TF_METRO=Metro
 TF_TRAIN=Voz
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Da li ste sigurni da želite da odobrite ovaj trošak ?
 NoTripsToExportCSV=Nema troškova za ovaj period.
 ExpenseReportPayment=Isplata troška
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Troškovi zaisplatu
diff --git a/htdocs/langs/sr_RS/users.lang b/htdocs/langs/sr_RS/users.lang
index 6d58359c8873a85d1eac582acddf1ce298f0088d..698abd6e674fe5bdf09b8ef6124d2c32d76e3a02 100644
--- a/htdocs/langs/sr_RS/users.lang
+++ b/htdocs/langs/sr_RS/users.lang
@@ -44,9 +44,9 @@ ListOfUsers=Lista korisnika
 SuperAdministrator=Super Administrator
 SuperAdministratorDesc=Globalni administrator
 AdministratorDesc=Administrator
-AdministratorDescEntity=Administrator (for its company)
+AdministratorDescEntity=Administrator (za svoju kompaniju)
 DefaultRights=Default prava
-DefaultRightsDesc=Define here <u>default</u> permissions that are automatically granted to a <u>new created</u> user (Go on user card to change permission of an existing user).
+DefaultRightsDesc=Ovde definišite <u>default</u> prava koja će biti automatski dodeljena <u>novokreiranim</u> korisnicima (na kartici korisnika možete izmeniti prava postojećih korisnika).
 DolibarrUsers=Dolibarr korisnici
 LastName=Ime
 FirstName=Ime
@@ -54,8 +54,8 @@ ListOfGroups=Lista grupa
 NewGroup=Nova grupa
 CreateGroup=Kreiraj grupu
 RemoveFromGroup=Izbaci iz grupe
-PasswordChangedAndSentTo=Password changed and sent to <b>%s</b>.
-PasswordChangeRequestSent=Request to change password for <b>%s</b> sent to <b>%s</b>.
+PasswordChangedAndSentTo=Lozinka izmenjena i poslata na <b>%s</b>.
+PasswordChangeRequestSent=Zahtev za izmenu lozinke za <b>%s</b> je poslat <b>%s</b>.
 MenuUsersAndGroups=Korisnici & Grupe
 MenuMyUserCard=Moja korisnička kartica
 LastGroupsCreated=Poslednjih %s kreiranih grupa
@@ -87,37 +87,38 @@ MyInformations=Moji podaci
 ExportDataset_user_1=Korisnici Dolibarr-a i parametri
 DomainUser=Korisnik domena %s
 Reactivate=Reaktiviraj
-CreateInternalUserDesc=This form allows you to create an user internal to your company/foundation. To create an external user (customer, supplier, ...), use the button 'Create Dolibarr user' from third party's contact card.
-InternalExternalDesc=An <b>internal</b> user is a user that is part of your company/foundation.<br>An <b>external</b> user is a customer, supplier or other.<br><br>In both cases, permissions defines rights on Dolibarr, also external user can have a different menu manager than internal user (See Home - Setup - Display)
-PermissionInheritedFromAGroup=Permission granted because inherited from one of a user's group.
+CreateInternalUserDesc=Ova forma omogućava kreiranje korisnika u okviru Vaše kompanije/fondacije. Da biste kreirali spoljnog korisnika (klijenta, dobavljača, ...), koristite dugme "Kreiraj Dolibarr korisnika" iz kartice kontakta subjekta.
+InternalExternalDesc=<b>Interni</b> korisnik je korisnik koji je deo Vaše kompanije/fondacije.<br>An <b>Eksterni</b> korisnik je klijent, dobavljač i sl.<br><br>U oba slučaja, prava su definisana u Dolibarr-u, a eksterni korisnik može imati drugačiji meni nego interni korisnik (Home - Podešavanja - Prikaz)
+PermissionInheritedFromAGroup=Prava su dodeljena jer su nasleđena od jedne od korisnikovih grupa.
 Inherited=Nasleđeno
-UserWillBeInternalUser=Created user will be an internal user (because not linked to a particular third party)
-UserWillBeExternalUser=Created user will be an external user (because linked to a particular third party)
+UserWillBeInternalUser=Kreirani korisnik će biti interni korisnik (jer nije vezan za određeni subjekat)
+UserWillBeExternalUser=Kreirani korisnik će biti eksterni (jer je vezan za određeni subjekat)
 IdPhoneCaller=Id telefonskog poziva
-UserLogged=User %s login
-UserLogoff=User %s logout
-NewUserCreated=User %s created
-NewUserPassword=Password change for %s
-EventUserModified=User %s modified
-UserDisabled=User %s disabled
-UserEnabled=User %s activated
-UserDeleted=User %s removed
-NewGroupCreated=Group %s created
+UserLogged=Korisnik %s login
+UserLogoff=Korisnik %s logout
+NewUserCreated=Korisnik %s je kreiran
+NewUserPassword=Izmena lozinke za %s
+EventUserModified=Korisnik %s je izmenjen
+UserDisabled=Korisnik %s je deaktiviran
+UserEnabled=Korisnik %s je aktiviran
+UserDeleted=Korisnik %s je uklonjen
+NewGroupCreated=Grupa %s je kreirana
 GroupModified=Grupa %s je izmenjena
-GroupDeleted=Group %s removed
-ConfirmCreateContact=Are you sure you want to create a Dolibarr account for this contact ?
-ConfirmCreateLogin=Are you sure you want to create a Dolibarr account for this member ?
-ConfirmCreateThirdParty=Are you sure you want to create a third party for this member ?
-LoginToCreate=Login to create
-NameToCreate=Name of third party to create
+GroupDeleted=Grupa %s je uklonjena
+ConfirmCreateContact=Da li ste sigurni da želite da napravite Dolibarr nalog za ovaj kontakt ?
+ConfirmCreateLogin=Da li ste sigurni da želite da napravite Dolibarr nalog za ovog člana ?
+ConfirmCreateThirdParty=Da li ste sigurni da želite da napravite subjekat za ovog člana ?
+LoginToCreate=Login za kreiranje
+NameToCreate=Ime subjekta za kreiranje
 YourRole=Vaši profili
 YourQuotaOfUsersIsReached=Vaša kvota aktivnih korisnika je dostignuta !
 NbOfUsers=Br korisnika
-DontDowngradeSuperAdmin=Only a superadmin can downgrade a superadmin
+DontDowngradeSuperAdmin=Samo superadmin može downgrade-ovati superadmina
 HierarchicalResponsible=Supervizor
 HierarchicView=Hijerarhijski prikaz
-UseTypeFieldToChange=Use field Type to change
+UseTypeFieldToChange=Koristi polje tip za promenu
 OpenIDURL=OpenID UR
 LoginUsingOpenID=Uloguj se sa OpenID-em
 WeeklyHours=Nedeljni broj sati
 ColorUser=Boja korisnika
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/sr_RS/withdrawals.lang b/htdocs/langs/sr_RS/withdrawals.lang
index ad3cfa68de354e59c0b88c328a27e95c24d7ee06..e12cf743bda182b9fb9b6944784243cc3f3774c0 100644
--- a/htdocs/langs/sr_RS/withdrawals.lang
+++ b/htdocs/langs/sr_RS/withdrawals.lang
@@ -16,15 +16,15 @@ WithdrawedBills=Podignuti računi
 WithdrawalsLines=Linije podizanja
 RequestStandingOrderToTreat=Zahtevi za procesuiranj trajnih naloga
 RequestStandingOrderTreated=Zahtev za trajni nalog procesuiran
-NotPossibleForThisStatusOfWithdrawReceiptORLine=Not yet possible. Withdraw status must be set to 'credited' before declaring reject on specific lines.
+NotPossibleForThisStatusOfWithdrawReceiptORLine=Još nije moguće. Status podizanja mora biti podešen na "kreditiran" pre odbijanja određenih linija.
 CustomersStandingOrders=Trajni nalozi klijenta
 CustomerStandingOrder=Trajni nalog klijenta
 NbOfInvoiceToWithdraw=Br. računa sa zahtevom podizanja
-NbOfInvoiceToWithdrawWithInfo=Nb. of invoice with withdraw request for customers having defined bank account information
+NbOfInvoiceToWithdrawWithInfo=Br. fakture sa zahtevom za podizanje za klijente koji su definisali informacije o bankovnom računu
 InvoiceWaitingWithdraw=Račun na čekanju za podizanje
 AmountToWithdraw=Svota za podizanje
 WithdrawsRefused=Odbijena podizanja
-NoInvoiceToWithdraw=No customer invoice in payment mode "withdraw" is waiting. Go on 'Withdraw' tab on invoice card to make a request.
+NoInvoiceToWithdraw=Nema faktura klijenata u modu "podizanje" na čekanju. Otvorite tab "Podizanja" na kartici fakture da biste kreirali zahtev.
 ResponsibleUser=Odgovorni korisnik
 WithdrawalsSetup=Podešavanja podizanja
 WithdrawStatistics=Statistike podizanja
@@ -33,16 +33,16 @@ LastWithdrawalReceipt=Poslednjih %s prijemnica podizanja
 MakeWithdrawRequest=Kreiraj zahtev za podizanje
 ThirdPartyBankCode=Bankarski kod subjekta
 ThirdPartyDeskCode=Šalterski kod subjekta
-NoInvoiceCouldBeWithdrawed=No invoice withdrawed with success. Check that invoice are on companies with a valid BAN.
-ClassCredited=Classify credited
-ClassCreditedConfirm=Are you sure you want to classify this withdrawal receipt as credited on your bank account?
+NoInvoiceCouldBeWithdrawed=Nema uspešno podugnutih faktura. Proverite da su fakture na kompanijama sa validnim IBAN-om.
+ClassCredited=Označi kreditirano
+ClassCreditedConfirm=Da li ste sigurni da želite da označite ovaj račun podizanja kao kreditiran na Vašem bankovnom računu ?
 TransData=Datum prenosa
 TransMetod=Način prenosa
 Send=Pošalji
 Lines=Linije
 StandingOrderReject=Odbij
 WithdrawalRefused=Podizanje odbijeno
-WithdrawalRefusedConfirm=Are you sure you want to enter a withdrawal rejection for society
+WithdrawalRefusedConfirm=Da li ste sigurni da želite da unesete odbijanje podizanja za kompaniju ?
 RefusedData=Datum odbijanja
 RefusedReason=Razlog odbijanja
 RefusedInvoicing=Naplata odbijanja
@@ -51,11 +51,11 @@ InvoiceRefused=Račun odbijen (naplati odbijanje klijentu)
 StatusUnknown=Nepoznato
 StatusWaiting=Na čekanju
 StatusTrans=Poslat
-StatusCredited=Credited
+StatusCredited=Kreditirano
 StatusRefused=Odbijen
 StatusMotif0=Neodređen
 StatusMotif1=Nedovoljno sredstava
-StatusMotif2=Request contested
+StatusMotif2=Primedba na zahtev uložena
 StatusMotif3=Nema narudžbine podizanja
 StatusMotif4=Narudžbina klijenta
 StatusMotif5=Neupotrebljiv IBAN
@@ -68,20 +68,20 @@ CreateBanque=Samo banka
 OrderWaiting=Čeka procesuiranje
 NotifyTransmision=Transfer podizanja
 NotifyEmision=Izdavanje podizanja
-NotifyCredit=Withdrawal Credit
+NotifyCredit=Kredit podizanja
 NumeroNationalEmetter=Nacionalni Broj Pošiljaoca
-PleaseSelectCustomerBankBANToWithdraw=Select information about customer bank account to withdraw
+PleaseSelectCustomerBankBANToWithdraw=Izaberite informaciju o bankovnom računu za podizanje
 WithBankUsingRIB=Za bankovne račune koji koriste RIB
 WithBankUsingBANBIC=Za bankovne račune koji koriste IBAN/BIC/SWIFT
 BankToReceiveWithdraw=Bankovni račun za podizanja
 CreditDate=Kreditiraj na
-WithdrawalFileNotCapable=Unable to generate withdrawal receipt file for your country %s (Your country is not supported)
+WithdrawalFileNotCapable=Nemoguće generisati račun podizanja za Vašu zemlju %s (Vaša zemlja nije podržana)
 ShowWithdraw=Prikaži podizanje
-IfInvoiceNeedOnWithdrawPaymentWontBeClosed=However, if invoice has at least one withdrawal payment not yet processed, it won't be set as paid to allow prior withdrawal management.
-DoStandingOrdersBeforePayments=This tab allows you to request a standing order. Once done, go into menu Bank->Withdrawal to manage the standing order. When standing order is closed, payment on invoice will be automatically recorded, and invoice closed if remainder to pay is null.
+IfInvoiceNeedOnWithdrawPaymentWontBeClosed=Međutim, ukoliko faktura ima bar jedno podizanje koje još uvek nije obrađeno, neće biti označena kao plaćena kako bi omogućila upravljanje podizanjima.
+DoStandingOrdersBeforePayments=Ovaj tab Vam omogućava da zahtevate narudžbinu. Kada završite, otvorite meni Banka->Podizanja kako biste upravljali narudžbinom. Kada je narudžbina zatvorena, uplata za fakturu će biti automatski zabeležena i faktura će biti zatvorena ukoliko je isplaćen ceo iznos.
 WithdrawalFile=Fajl podizanja
-SetToStatusSent=Set to status "File Sent"
-ThisWillAlsoAddPaymentOnInvoice=This will also apply payments to invoices and will classify them as "Paid"
+SetToStatusSent=Podesi status "Fajl poslat"
+ThisWillAlsoAddPaymentOnInvoice=Ovo će se takođe odnositi na uplate i fakture i označiti ih kao "Plaćene"
 StatisticsByLineStatus=Statistike po statusu linija
 RUM=RUM
 RUMWillBeGenerated=RUM broj će biti generisan kada informacije bankovnog računa budu sačuvane
@@ -97,5 +97,5 @@ InfoTransMessage=Trajni nalog %s je poslat banci od strane %s %s.<br><br>
 InfoTransData=Svota: %s<br>Način: %s<br>Datum: %s
 InfoFoot=Ovo je automatska poruka poslata iz Dolibarr-a
 InfoRejectSubject=Trajni nalog odbijen
-InfoRejectMessage=Hello,<br><br>the standing order of invoice %s related to the company %s, with an amount of %s has been refused by the bank.<br><br>--<br>%s
-ModeWarning=Option for real mode was not set, we stop after this simulation
+InfoRejectMessage=Zdravo,<br><br>narudžbina za fakturu %s vezanu za kompaniju %s, sa iznosom od %s je odbijena od strane banke.<br><br>--<br>%s
+ModeWarning=Opcija za realni mod nije podešena, prekidamo posle ove simulacije.
diff --git a/htdocs/langs/sr_RS/workflow.lang b/htdocs/langs/sr_RS/workflow.lang
index 78e4c3d53d18f82be122a2e17dd8826d9db7c27e..06bc17d1cb28043205e1ca4dded7ca121a7b1f5a 100644
--- a/htdocs/langs/sr_RS/workflow.lang
+++ b/htdocs/langs/sr_RS/workflow.lang
@@ -3,9 +3,9 @@ WorkflowSetup=Podešavanja modula Workflow
 WorkflowDesc=Ovaj modul je namenjen za izmene automatskih akcija u aplikaciji. Po defaultu, workflow je otvoren (možete vršiti akcije redosledom kojim poželite). Možete aktivirati automatske akcije koje Vas interesuju.
 ThereIsNoWorkflowToModify=Nema mogućih izmena workflow-a u aktiviranim modulima.
 descWORKFLOW_PROPAL_AUTOCREATE_ORDER=Automatski kreiraj narudžbinu klijenta nakon potpisivanja komercijalne ponude.
-descWORKFLOW_PROPAL_AUTOCREATE_INVOICEAutomatically Kreiraj račun za klijenta kada je komercijalna ponuda potpisana.
-descWORKFLOW_CONTRACT_AUTOCREATE_INVOICEAutomatically Kreiraj račun za klijenta kada je ugovor potvrđen
-descWORKFLOW_ORDER_AUTOCREATE_INVOICEAutomatically Kreiraj račun za klijenta kada je narudžbina zatvorena
+descWORKFLOW_PROPAL_AUTOCREATE_INVOICE=Automatski kreiraj fakturu klijenta posle potpisivanja komercijalne ponude
+descWORKFLOW_CONTRACT_AUTOCREATE_INVOICE=Automatski kreiraj fakturu klijenta posle potvrde ugovora
+descWORKFLOW_ORDER_AUTOCREATE_INVOICE=Automatski kreiraj fakturu klijenta posle posle zatvaranja narudžbine klijenta
 descWORKFLOW_ORDER_CLASSIFY_BILLED_PROPAL=Označi komercijalnu ponudu kao naplaćenu kada se narudžbina klijenta označi kao plaćena.
 descWORKFLOW_INVOICE_CLASSIFY_BILLED_ORDER=Označi komerijalnu(e) ponudu(e) kao naplaćenu(e) kada je račun klijenta označen kao plaćen.
 descWORKFLOW_INVOICE_AMOUNT_CLASSIFY_BILLED_ORDER=Označi komerijalnu(e) ponudu(e) kao naplaćenu(e) kada je račun klijenta označen kao potvrđen.
diff --git a/htdocs/langs/sv_SE/accountancy.lang b/htdocs/langs/sv_SE/accountancy.lang
index c3654d944acdcc320ad452ce0e9c95e8c835655d..0a8ac5f25de7acbc17fce2e9067894e67c303e6b 100644
--- a/htdocs/langs/sv_SE/accountancy.lang
+++ b/htdocs/langs/sv_SE/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Välj en modell av export
 Modelcsv_normal=Klassisk export
 Modelcsv_CEGID=Export mot CEGID Expert
 BackToChartofaccounts=Avkastning kontoplan
-Back=Avkastning
 
 Definechartofaccounts=Definiera en kontoplan
 Selectchartofaccounts=Välj en kontoplan
@@ -109,10 +108,6 @@ DelBookKeeping=Ta bort posterna i huvudboken
 
 DescSellsJournal=Sells tidskrift
 DescPurchasesJournal=Inköp tidskrift
-BankJournal=Bank tidskrift
-DescBankJournal=Bank journal inklusive alla typer av annat än pengar betalningar
-CashJournal=Cash journal
-DescCashJournal=Cash journal inklusive typ av betalning kontant
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Konsul här listan med linjerna av fakturor leverantör o
 ValidateHistory=Validera Automatiskt
 
 ErrorAccountancyCodeIsAlreadyUse=Fel, du kan inte ta bort denna redovisningskonto eftersom den används
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Uppdelning kort
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/sv_SE/admin.lang b/htdocs/langs/sv_SE/admin.lang
index 8e72da75b7365ade12e78adc4f79ce305ea7c300..c3ce4441aaf4d39c031377957fc85b64acb526f8 100644
--- a/htdocs/langs/sv_SE/admin.lang
+++ b/htdocs/langs/sv_SE/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Göm all information som rör moms på genererade PDF
 HideDescOnPDF=Dölj produktbeskrivningar i genererad PDF
 HideRefOnPDF=Visa ej produkt ref. i genererad PDF
 HideDetailsOnPDF=Visa ej detaljer i produktrad i genereraf PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Bibliotek
 UrlGenerationParameters=Parametrar för att säkra webbadresser
 SecurityTokenIsUnique=Använd en unik securekey parameter för varje webbadress
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Vill du radera alla nuvarande streckkoder?
 AllBarcodeReset=Alla värden för streckkod har raderats
 NoBarcodeNumberingTemplateDefined=Ingen numrering streckkod mall aktiverat i streckkodsmodul setup.
 NoRecordWithoutBarcodeDefined=Ingen post utan angivet värde för streckkod.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Användare & grupper
@@ -499,7 +500,7 @@ Module510Desc=Förvaltning av de anställdas löner och betalningar
 Module520Name=Lån
 Module520Desc=Förvaltning av lån
 Module600Name=Anmälningar
-Module600Desc=Skicka e-postmeddelanden på vissa Dolibarr affärshändelser till kontakter tredjeparts (inställnings definieras på varje tredjeparts)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Donationer
 Module700Desc=Donation ledning
 Module770Name=Räkningar
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Förseningar innan varning
 DelaysOfToleranceBeforeWarning=Tolerans förseningar innan varning
 DelaysOfToleranceDesc=Den här skärmen kan du definiera den tillåtna dröjsmål innan en registrering rapporteras på skärmen med Picto %s för varje försenad element.
 Delays_MAIN_DELAY_ACTIONS_TODO=Fördröjning tolerans (i dagar) före registrering om planerade åtgärder som ännu inte realiserats
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Fördröjning tolerans (i dagar) före registrering om order som ännu inte gjort
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Fördröjning tolerans (i dagar) före registrering om leverantörer order som ännu inte behandlats
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Fördröjning tolerans (i dagar) före registrering om förslag att stänga
@@ -1087,6 +1089,7 @@ PathDirectory=Directory
 SendmailOptionMayHurtBuggedMTA=Funktion för att skicka e-post med hjälp av metoden "PHP mail direct" genererar ett e-postmeddelande som kanske inte tolkas korrekt av vissa e-postservrar. Resultatet är att viss epost inte kan läsas av användare som hostas på sådana system som tolkar fel. Det är fallet för vissa internetleverantörer (t.ex. Orange i Frankrike). Detta är inte ett Dolibarr- eller PHP-problem men fel på inkommande e-post server. Du kan sätta MAIN_FIX_FOR_BUGGED_MTA till 1 i "Setup - andra" för att Dolibarr ska undvika detta. Du kan dock uppleva problem med andra servrar som strikt följer SMTP standard. Den andra lösningen (Rekomenderad) är att använda metoden "SMTP socket library" som inte har några nackdelar.
 TranslationSetup=Konfigurera översättning
 TranslationDesc=Val av språk visas på skärmen kan ändras: <br> * Globalt från menyn <strong>Hem - Inställningar - Display</strong> <br> * För användaren endast från fliken <strong>Användar visning</strong> av användarkort (klicka på inloggning på toppen av skärmen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Totalt antal aktiverade <b>funktionsmoduler:% s</b>
 YouMustEnableOneModule=Minst 1 modul måste aktiveras
 ClassNotFoundIntoPathWarning=Klass %s inte funnen i PHP-sökvägen
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Installation av extern modul från ans
 ConfFileMuseContainCustom=Installera en extern modul från ansökan spara modul filer till <strong>katalogen% s.</strong> Att ha den här katalogen behandlas av Dolibarr, måste du ställa in din <strong>conf / conf.php</strong> att ha alternativ <br> - <strong>$ Dolibarr_main_url_root_alt</strong> aktiverat för att <strong>värde dolibarr_main_url_root_alt = "/ custom"</strong> <br> - <strong>$ Dolibarr_main_document_root_alt</strong> aktiverat för att värdet <strong>"% s / anpassade"</strong>
 HighlightLinesOnMouseHover=Markera tabelllinjer när musen flytta passerar över
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Tryck på F5 på tangentbordet efter att ha ändrat detta värde för att få det effektiva
 NotSupportedByAllThemes=Will arbetar med Eldy tema men stöds inte av alla teman
diff --git a/htdocs/langs/sv_SE/agenda.lang b/htdocs/langs/sv_SE/agenda.lang
index 08d81b718ad18c2e64d59b9ea8d0f16696cafbd9..52030af11356af84c955a5b289220700c1fbf492 100644
--- a/htdocs/langs/sv_SE/agenda.lang
+++ b/htdocs/langs/sv_SE/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Alla åtgärder / uppgifter
 ViewCal=Visa kalender
 ViewDay=Dagsvy
 ViewWeek=Veckovy
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Visa med fördefinierade filter
 AutoActions= Automatisk fyllning av dagordning
 AgendaAutoActionDesc= Här definierar du händelser som du vill Dolibarr att automatiskt skapa en talan i dagordningen. Om ingenting är markerad (som standard), kommer endast manuella, skall ingå i dagordningen.
diff --git a/htdocs/langs/sv_SE/bills.lang b/htdocs/langs/sv_SE/bills.lang
index 0f0a93875ce75c64dff66019fed9e7e10c6e45f2..fae57a93197c6a146202873c09490fa099b3168e 100644
--- a/htdocs/langs/sv_SE/bills.lang
+++ b/htdocs/langs/sv_SE/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Betalningar redan gjort
 PaymentsBackAlreadyDone=Återbetalningar är utförda tidigare
 PaymentRule=Betalningsregel
 PaymentMode=Betalningssätt
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=Visa faktura
 ShowInvoiceReplace=Visa ersätter faktura
 ShowInvoiceAvoir=Visa kreditnota
 ShowInvoiceDeposit=Visa insättning faktura
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Visa betalning
 AlreadyPaid=Redan betalats ut
 AlreadyPaidBack=Redan återbetald
@@ -221,6 +224,7 @@ NonPercuRecuperable=Icke återvinningsbara
 SetConditions=Ställ betalningsvillkor
 SetMode=Ställ betalningssätt
 Billed=Fakturerade
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Fakturamall
 RepeatableInvoices=Fakturamallar
 Repeatable=Mall
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Detta belopp har övergivits (kund sägs vara en dålig k
 HelpAbandonOther=Detta belopp har övergivits eftersom det var ett misstag (fel kund eller faktura ersättas av en annan till exempel)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Betalning id
+PaymentRef=Payment ref.
 InvoiceId=Faktura id
 InvoiceRef=Faktura ref.
 InvoiceDateCreation=Faktura datum för skapande
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Senast relaterad faktura
 WarningBillExist=Varning, en eller flera fakturor finns redan
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Omedelbar
@@ -393,6 +402,7 @@ Reported=Försenad
 DisabledBecausePayments=Inte möjlig eftersom det inte finns några betalningar
 CantRemovePaymentWithOneInvoicePaid=Kan inte ta bort betalning eftersom det inte finns åtminstone på fakturan klassificeras betalt
 ExpectedToPay=Förväntad utbetalning
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Betalas av denna betalning
 ClosePaidInvoicesAutomatically=Klassificera "Betald" alla standard-, löpande och ersättningsfakturor som är fullständigt betalda.
 ClosePaidCreditNotesAutomatically=Beteckna "Betalda" alla fullständigt återbetalda kreditnotor.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=OBS: Denna lista innehåller bara fakturor för tre
 RevenueStamp=Intäkt stämpel
 YouMustCreateInvoiceFromThird=Det här alternativet är endast tillgängligt när du skapar faktura från fliken "kund" hos tredje parts
 PDFCrabeDescription=Faktura modell Crabe. En fullständig faktura modell (Stöd moms alternativet, rabatter, betalningar villkor, logotyp, etc. ..)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Återger nummer med formatet %syymm-nnnn för standardfakturor och %syymm-NNNN för kreditnotor där yy är året, mm månaden och nnnn är en sekvens med ingen paus och ingen återgång till 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=Ett lagförslag som börjar med $ syymm finns redan och är inte förenligt med denna modell för sekvens. Ta bort den eller byta namn på den för att aktivera denna modul.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=Denna avstämning är slutlig.
 CantBeLessThanMinPercent=Framsteget kan inte vara mindre än dess värde vid förra avstämningen.
 NoSituations=No open situations
 InvoiceSituationLast=Slutlig sammanställningsfaktura.
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/sv_SE/boxes.lang b/htdocs/langs/sv_SE/boxes.lang
index e9dbe68a7a7367fa16337a1e4ebbca7ed2219c46..f504e36df719356e75e0081fd62b90a0390c8896 100644
--- a/htdocs/langs/sv_SE/boxes.lang
+++ b/htdocs/langs/sv_SE/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Kundens fakturor
 ForCustomersOrders=Kund beställningar
 ForProposals=Förslag
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/sv_SE/categories.lang b/htdocs/langs/sv_SE/categories.lang
index 85af172f03aa6038b00bd430b7583a17b3415a70..510d94d6907645d644b2263f650314bd52a541de 100644
--- a/htdocs/langs/sv_SE/categories.lang
+++ b/htdocs/langs/sv_SE/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo. / kommande utvecklingen. kategorier
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/sv_SE/companies.lang b/htdocs/langs/sv_SE/companies.lang
index 49911e6d0dfaa20951e3d0e55bcf62e6fddc2d2f..0279518375f70933e31f093aac03c04a163644b2 100644
--- a/htdocs/langs/sv_SE/companies.lang
+++ b/htdocs/langs/sv_SE/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (RC)
 ProfId2MA=Id prof. 2 (Patent)
 ProfId3MA=Id prof. 3 (IF)
 ProfId4MA=Id prof. 4 (CNSS)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (RFC).
 ProfId2MX=Prof Id 2 (R.. P. IMSS)
diff --git a/htdocs/langs/sv_SE/compta.lang b/htdocs/langs/sv_SE/compta.lang
index fc6f8d0408ad4aa527c1d56be9472bae8e5a8e4a..3242cb2b8f511a0d426ba5a8374a52f43c3a0051 100644
--- a/htdocs/langs/sv_SE/compta.lang
+++ b/htdocs/langs/sv_SE/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Deposit fakturor eller ingår
 DepositsAreIncluded=- Deposit fakturor ingår
 LT2ReportByCustomersInInputOutputModeES=Rapport från tredje part IRPF
 LT1ReportByCustomersInInputOutputModeES=Rapport från tredje part RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Rapport av kunden moms samlas och betalas
 VATReportByCustomersInDueDebtMode=Rapport av kunden moms samlas och betalas
 VATReportByQuartersInInputOutputMode=Rapport från graden av mervärdesskatten och en betald
diff --git a/htdocs/langs/sv_SE/cron.lang b/htdocs/langs/sv_SE/cron.lang
index 4d03ee13a3ce073f0d768535fed094bd5cb542cc..a7311652ab2aa30371997bec1708daf1084e652c 100644
--- a/htdocs/langs/sv_SE/cron.lang
+++ b/htdocs/langs/sv_SE/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=I en Unix-miljö bör följande rad läggas i crontab s
 CronExplainHowToRunWin=I Microsoft(tm) Windows-miljö kan schemalagd aktivitet användas för att exekvera kommandoraden var 5:e minut
 # Menu
 CronJobs=Schemalagda jobb
-CronListActive=Lista över aktiva / schemalagda jobb
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=Lista över handikappade jobb
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Senaste körning
 CronLastOutput=Sista loppet utgång
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Jobb
 CronNone=Ingen
-CronDtStart=Startdatum
-CronDtEnd=Slutdatum
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Nästa exekvering
 CronDtLastLaunch=Senaste exekvering
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=Inga jobb registrerade
 CronPriority=Prioritet
 CronLabel=Beskrivning
 CronNbRun=Nb. lanseringen
+CronMaxRun=Max nb. launch
 CronEach=Varje
 JobFinished=Job lanserad och klar
 #Page card
diff --git a/htdocs/langs/sv_SE/deliveries.lang b/htdocs/langs/sv_SE/deliveries.lang
index c0effdf299eaab75d3c76b13eca138e325a66631..51f79cb8bbff365ccd0dac7fa67d2ad5eb776fce 100644
--- a/htdocs/langs/sv_SE/deliveries.lang
+++ b/htdocs/langs/sv_SE/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Är du säker på att du vill ta bort <b>%s</b> kvi
 DeliveryMethod=Leveransmetod
 TrackingNumber=Spårningsnummer
 DeliveryNotValidated=Leverans är inte attesterad
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Namn och namnteckning:
 ToAndDate=To___________________________________ den ____ / _____ / __________
diff --git a/htdocs/langs/sv_SE/holiday.lang b/htdocs/langs/sv_SE/holiday.lang
index 56ca74a69108a1bcf5ba8808714eb463d5cf740a..744e560fca53fa27ef94f86c412653d1c17635c7 100644
--- a/htdocs/langs/sv_SE/holiday.lang
+++ b/htdocs/langs/sv_SE/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=Du måste aktivera modulen Löv att se denna sida.
 NotConfigModCP=Du måste konfigurera modulen Lämnar för att se den här sidan. För att göra detta, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;">klicka här</a> </ a> <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;">.</a>
 NoCPforUser=Du har inte någon tillgänglig dag.
 AddCP=Gör en förfrågan ledighet
-Employe=Anställd
 DateDebCP=Startdatum
 DateFinCP=Slutdatum
 DateCreateCP=Datum för skapande
@@ -23,7 +22,7 @@ ReviewedByCP=Kommer att granskas av
 DescCP=Beskrivning
 SendRequestCP=Skapa permission begäran
 DelayToRequestCP=Lämna begäran måste göras <b>minst %s dag (ar) </b> före dem.
-MenuConfCP=Redigera balans blad
+MenuConfCP=Balance of leaves
 UpdateAllCP=Uppdatera bladen
 SoldeCPUser=Lämnar balans <b>är %s</b> dagar.
 ErrorEndDateCP=Du måste välja ett slutdatum senare än startdatum.
@@ -79,9 +78,9 @@ PrevSoldeCP=Föregående Balance
 NewSoldeCP=New Balance
 alreadyCPexist=En begäran ledigheten har redan gjorts på denna period.
 UserName=Namn
-Employee=Anställd
 FirstDayOfHoliday=Första dagen på semestern
 LastDayOfHoliday=Sista dagen på semestern
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Månads uppdatering
 ManualUpdate=Manuell uppdatering
 HolidaysCancelation=Lämna begäran Spärr
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Din ledighet begäran om %s till %s har nekats av följande
 HolidaysCanceled=Annulleras leaved begäran
 HolidaysCanceledBody=Din ledighet begäran om %s till %s har avbrutits.
 NewByMonth=Tillagda per månad
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Gå in på  <strong>Hem - Setup - Bibliotek - Typ av ledighet</strong> för att ställa in olika varianter av ledigheter.
diff --git a/htdocs/langs/sv_SE/hrm.lang b/htdocs/langs/sv_SE/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/sv_SE/hrm.lang
+++ b/htdocs/langs/sv_SE/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/sv_SE/interventions.lang b/htdocs/langs/sv_SE/interventions.lang
index 27c25050f88348628d34a16a59b67ddd0e9f8c70..5fae9b4fc006804b1dce82409f5cc0d784e7751d 100644
--- a/htdocs/langs/sv_SE/interventions.lang
+++ b/htdocs/langs/sv_SE/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Återgå numero med format %syymm-nnnn där YY är år,
 PacificNumRefModelError=En intervention kort börjar med $ syymm finns redan och är inte förenligt med denna modell för sekvens. Ta bort den eller byta namn på den för att aktivera denna modul.
 PrintProductsOnFichinter=Trycksaker på interventionskort
 PrintProductsOnFichinterDetails=Insatser skapade utifrån order
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/sv_SE/mails.lang b/htdocs/langs/sv_SE/mails.lang
index b4857249c8f82099db7aad7cb634d05c08a65b66..d0731e634cf7141adf1002240e2ee235c0b08e71 100644
--- a/htdocs/langs/sv_SE/mails.lang
+++ b/htdocs/langs/sv_SE/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail skickas till% s mottagare.
 XTargetsAdded=<b>% s</b> mottagare läggs in i målet listan
 EachInvoiceWillBeAttachedToEmail=Ett dokument med standardfakturadokumentmall kommer att skapas och bifogas varje e-postmeddelande.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Påminnelse om faktura% s (% s)
 SendRemind=Skicka påminnelse av e-post
 RemindSent=% S påminnelse (er) skickas
diff --git a/htdocs/langs/sv_SE/main.lang b/htdocs/langs/sv_SE/main.lang
index 9ae82bba2d97863ae8ca550835847b5b85ec88ef..7db0810aae73c57f80d3b697f7a71ee8ab107fbc 100644
--- a/htdocs/langs/sv_SE/main.lang
+++ b/htdocs/langs/sv_SE/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%Y-%m-%d %I:%M:%S %p
 FormatDateHourTextShort=%d %b %Y, %H:%M
 FormatDateHourText=%d %B %Y, %H:%M
 DatabaseConnection=Databasanslutning
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Ingen översättning
 NoRecordFound=Ingen post funnen
 NoError=Inget fel
@@ -105,6 +106,7 @@ NotePrivate=Anteckning (privat)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr har ställts in för att ange enhetspriser med <b>%s</b> decimaler.
 DoTest=Test
 ToFilter=Filter
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Varning, du har minst ett element som har överskridit den tillåtna förseningen.
 yes=ja
 Yes=Ja
@@ -228,6 +230,8 @@ Now=Nu
 HourStart=Start hour
 Date=Datum
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Startdatum
 DateEnd=Slutdatum
 DateCreation=Datum för skapande
@@ -608,6 +612,7 @@ TotalMan=Totalt
 NeverReceived=Aldrig fick
 Canceled=Annullerad
 YouCanChangeValuesForThisListFromDictionarySetup=Du kan ändra värden för denna lista från menyinställning - ordbok
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Färg
 Documents=Länkade filer
 DocumentsNb=Länkade filer (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=Inga bilder tillgängliga
 HomeDashboard=Hem översikt
+Dashboard=Dashboard
 Deductible=Avdragsgill
 from=från
 toward=mot
diff --git a/htdocs/langs/sv_SE/margins.lang b/htdocs/langs/sv_SE/margins.lang
index 0fb5622928a9d8d036d7360eb55fdab959965bba..9339e544e8127b3c2c3f4398186583808e90078c 100644
--- a/htdocs/langs/sv_SE/margins.lang
+++ b/htdocs/langs/sv_SE/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Välj produkt eller tjänst
 StartDate=Startdatum
 EndDate=Slutdatum
 Launch=Start
-ForceBuyingPriceIfNull=Tvinga inköpspris om tom
-ForceBuyingPriceIfNullDetails=Om "ON", kommer marginalen att vara noll på linjen (köp pris = försäljningspris), annars ("OFF"), marge kommer vara lika med försäljningspris (köp pris = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Marginalmetod för globala rabatter
 UseDiscountAsProduct=Som produkt
 UseDiscountAsService=Som tjänst
@@ -35,8 +35,9 @@ MargeBrute=Bruttomarginal
 MargeNette=Nettomarginal
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Bruttomarginal: Säljpris - Inköpspris<br/>Nettomarginal: Säljpris - Kostnadspris
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Kostnadspris
 BuyingCost=Kostnadspris
 UnitCharges=Enhetsladdningar
diff --git a/htdocs/langs/sv_SE/oauth.lang b/htdocs/langs/sv_SE/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/sv_SE/oauth.lang
+++ b/htdocs/langs/sv_SE/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/sv_SE/orders.lang b/htdocs/langs/sv_SE/orders.lang
index 0b1402e59731582de02116719c778d741a5aac4e..883550d7fd6070ca1dd9b6b2da39530b27cbda57 100644
--- a/htdocs/langs/sv_SE/orders.lang
+++ b/htdocs/langs/sv_SE/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=Inga förslag till beslut
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Övriga beställningar
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/sv_SE/other.lang b/htdocs/langs/sv_SE/other.lang
index be4216b5bb1268504c62eace1f5afb59554075a9..d6f872f68422a6317235e47b0ad10f1d9a55d5cc 100644
--- a/htdocs/langs/sv_SE/other.lang
+++ b/htdocs/langs/sv_SE/other.lang
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=Nya exportmöjligheter
 ##### External sites #####
 ExternalSites=Externa webbplatser
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/sv_SE/paypal.lang b/htdocs/langs/sv_SE/paypal.lang
index 9004208b047b6d88079f395e8e8fc777adad3145..06294d9ecb8fcc6c9dc01a2b5292729d340b6d4e 100644
--- a/htdocs/langs/sv_SE/paypal.lang
+++ b/htdocs/langs/sv_SE/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Läge test / sandlåda
 PAYPAL_API_USER=API användarnamn
 PAYPAL_API_PASSWORD=API-lösenord
 PAYPAL_API_SIGNATURE=API signatur
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Erbjuder betalning &quot;integrerad&quot; (Kreditkort + Paypal) eller &quot;Paypal&quot; endast
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal endast
diff --git a/htdocs/langs/sv_SE/products.lang b/htdocs/langs/sv_SE/products.lang
index 28944ea1f76f271eddd675a7bdf2adc3b268bdd3..61575792ec79114ce098809ca8d8e1b4f0c40e61 100644
--- a/htdocs/langs/sv_SE/products.lang
+++ b/htdocs/langs/sv_SE/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Netto enhet VWAP
 CostPmpHT=Totalt netto VWAP
 ProductUsedForBuild=Automatiskt förbrukad för tillverkning
 ProductBuilded=Tillverkning klar
-ProductsMultiPrice=Produkt multi-priser
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/sv_SE/projects.lang b/htdocs/langs/sv_SE/projects.lang
index ce32548278f578aaaf8f4f2f8deca4238a944eda..b47527ed2f336c248b507c701c49253956da4265 100644
--- a/htdocs/langs/sv_SE/projects.lang
+++ b/htdocs/langs/sv_SE/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=Denna uppfattning presenterar alla projekt (din användarbehörighet tillåta dig att visa allt).
 MyTasksDesc=Denna syn är begränsad till projekt eller uppdrag du en kontakt för (allt som är &quot;typ&quot;).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Denna uppfattning presenterar alla projekt och uppgifter som du får läsa.
 TasksDesc=Denna uppfattning presenterar alla projekt och uppgifter (din användarbehörighet tillåta dig att visa allt).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Officer projekt
 LastProjects=Senaste %s projekt
 AllProjects=Alla projekt
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Förteckning över projekt
 ShowProject=Visa projekt
 SetProject=Ställ projekt
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Uppgift %s modifierade
 TaskDeletedInDolibarr=Uppgift %s raderad
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/sv_SE/propal.lang b/htdocs/langs/sv_SE/propal.lang
index f73fbe02136d0e5a016ea9b5e62f3c961134e421..1bda117e425393c8f310be4a21bb94349ff71f83 100644
--- a/htdocs/langs/sv_SE/propal.lang
+++ b/htdocs/langs/sv_SE/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Senast %s ändrade förslag
 AllPropals=Alla förslag
 LastProposals=Senast förslag
 SearchAProposal=Sök ett förslag
+NoProposal=No proposal
 ProposalsStatistics=Kommersiella förslag statistik
 NumberOfProposalsByMonth=Antal per månad
 AmountOfProposalsByMonthHT=Belopp per månad (efter skatt)
@@ -62,7 +63,8 @@ DatePropal=Datum för förslag
 DateEndPropal=Datum sista giltighetsdag
 DateEndPropalShort=Datum slut
 ValidityDuration=Giltighet varaktighet
-CloseAs=Nära med status
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Klassificera billed
 BuildBill=Bygg faktura
 ErrorPropalNotFound=Propal %s hittades inte
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Skapa standardmodell
 DefaultModelPropalToBill=Standardmall när ett affärsförslag sluts (att fakturera)
 DefaultModelPropalClosed=Standardmall när ett affärsförslag sluts (ofakturerat)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/sv_SE/salaries.lang b/htdocs/langs/sv_SE/salaries.lang
index 804f3601c6b0754ce55cfbc5ea9ab3f20cc8b7f6..1a0091a86516dc351438f0823c66b08eebaa484a 100644
--- a/htdocs/langs/sv_SE/salaries.lang
+++ b/htdocs/langs/sv_SE/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Bokförings kod för löne utbetalningar
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Bokförings kod för finansiell kostnad
 Salary=Lön
 Salaries=Löner
-Employee=Anställd
 NewSalaryPayment=Ny löneutbetalning
 SalaryPayment=Lönebetalning
 SalariesPayments=Löneutbetalningar
diff --git a/htdocs/langs/sv_SE/sendings.lang b/htdocs/langs/sv_SE/sendings.lang
index b7a0979fe0f4ebca11d050c26a08ddb20871849a..564747798a7a4519d3035b6e733d1685dfb274d6 100644
--- a/htdocs/langs/sv_SE/sendings.lang
+++ b/htdocs/langs/sv_SE/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Sändning
 Shipments=Transporter
 ShowSending=Show Shipments
-Receivings=Kvitto
+Receivings=Delivery Receipts
 SendingsArea=Transporter område
 ListOfSendings=Lista över transporter
 SendingMethod=Frakt metod
diff --git a/htdocs/langs/sv_SE/sms.lang b/htdocs/langs/sv_SE/sms.lang
index ba6dbd46d4b8d51ccf2e0ee46a09ffe167a03f67..37b7f02a34725a2e81fc163bbd5fe611b1e7df04 100644
--- a/htdocs/langs/sv_SE/sms.lang
+++ b/htdocs/langs/sv_SE/sms.lang
@@ -49,5 +49,6 @@ SendSms=Skicka SMS
 SmsInfoCharRemain=Nb av återstående tecken
 SmsInfoNumero= (Format internationella dvs 33899701761)
 DelayBeforeSending=Fördröjning innan du skickar (minuter)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Inget mål tillgänglig. Kontrollera inställningarna i din SMS-leverantör.
 
diff --git a/htdocs/langs/sv_SE/supplier_proposal.lang b/htdocs/langs/sv_SE/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/sv_SE/supplier_proposal.lang
+++ b/htdocs/langs/sv_SE/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/sv_SE/trips.lang b/htdocs/langs/sv_SE/trips.lang
index 33b15e189ecf98db5a775219ba935198539f91cc..fc5362a897e4a57b17d5e6da758067f715b92ff3 100644
--- a/htdocs/langs/sv_SE/trips.lang
+++ b/htdocs/langs/sv_SE/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Andra
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Lunch
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/sv_SE/users.lang b/htdocs/langs/sv_SE/users.lang
index a55180250c4018547603d537125e339a977f0f84..ff99e7de4d964e8b0253c61dade544438b7e8a19 100644
--- a/htdocs/langs/sv_SE/users.lang
+++ b/htdocs/langs/sv_SE/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Logga in med OpenID
 WeeklyHours=Vecko timmar
 ColorUser=Färg på användaren
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/sw_SW/accountancy.lang b/htdocs/langs/sw_SW/accountancy.lang
index 5ee7e8de9f54f863782f095d33e3d4f43b2e78d2..87e3200f57c3544cb69c4a4d2a00867fbc5af632 100644
--- a/htdocs/langs/sw_SW/accountancy.lang
+++ b/htdocs/langs/sw_SW/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Return
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sells journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/sw_SW/admin.lang b/htdocs/langs/sw_SW/admin.lang
index c81fe4c28afda6683163ea69aba69202b77179ec..9cff117f74abd2a9b1a059a41efe0b7e74134f95 100644
--- a/htdocs/langs/sw_SW/admin.lang
+++ b/htdocs/langs/sw_SW/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Hide all information related to VAT on generated PDF
 HideDescOnPDF=Hide products description on generated PDF
 HideRefOnPDF=Hide products ref. on generated PDF
 HideDetailsOnPDF=Hide products lines details on generated PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Library
 UrlGenerationParameters=Parameters to secure URLs
 SecurityTokenIsUnique=Use a unique securekey parameter for each URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Users & groups
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Notifications
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Donations
 Module700Desc=Donation management
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Delays before warning
 DelaysOfToleranceBeforeWarning=Tolerance delays before warning
 DelaysOfToleranceDesc=This screen allows you to define the tolerated delays before an alert is reported on screen with picto %s for each late element.
 Delays_MAIN_DELAY_ACTIONS_TODO=Delay tolerance (in days) before alert on planned events not yet realised
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on orders not yet processed
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on suppliers orders not yet processed
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Delay tolerance (in days) before alert on proposals to close
@@ -1087,6 +1089,7 @@ PathDirectory=Directory
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/sw_SW/agenda.lang b/htdocs/langs/sw_SW/agenda.lang
index d8776508edcf523910ab3b06f56e1c9feb947af3..a0ccdfd26ea417d55219526b58c9ec073df47938 100644
--- a/htdocs/langs/sw_SW/agenda.lang
+++ b/htdocs/langs/sw_SW/agenda.lang
@@ -35,7 +35,9 @@ AllActions= All events/tasks
 ViewCal=Month view
 ViewDay=Day view
 ViewWeek=Week view
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= View with predefined filters
 AutoActions= Automatic filling
 AgendaAutoActionDesc= Define here events for which you want Dolibarr to create automatically an event in agenda. If nothing is checked (by default), only manual actions will be included in agenda.
diff --git a/htdocs/langs/sw_SW/bills.lang b/htdocs/langs/sw_SW/bills.lang
index 6a474886ee903714c336a4cec9f301bc999b989d..a4f919a6f49bb096b27addc8ef61adb5ebf42c9a 100644
--- a/htdocs/langs/sw_SW/bills.lang
+++ b/htdocs/langs/sw_SW/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Payments already done
 PaymentsBackAlreadyDone=Payments back already done
 PaymentRule=Payment rule
 PaymentMode=Payment type
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=Show invoice
 ShowInvoiceReplace=Show replacing invoice
 ShowInvoiceAvoir=Show credit note
 ShowInvoiceDeposit=Show deposit invoice
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Show payment
 AlreadyPaid=Already paid
 AlreadyPaidBack=Already paid back
@@ -221,6 +224,7 @@ NonPercuRecuperable=Non-recoverable
 SetConditions=Set payment terms
 SetMode=Set payment mode
 Billed=Billed
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=This amount has been abandoned (customer said to be a bad
 HelpAbandonOther=This amount has been abandoned since it was an error (wrong customer or invoice replaced by an other for example)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Payment id
+PaymentRef=Payment ref.
 InvoiceId=Invoice id
 InvoiceRef=Invoice ref.
 InvoiceDateCreation=Invoice creation date
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Immediate
@@ -393,6 +402,7 @@ Reported=Delayed
 DisabledBecausePayments=Not possible since there are some payments
 CantRemovePaymentWithOneInvoicePaid=Can't remove payment since there is at least one invoice classified paid
 ExpectedToPay=Expected payment
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Paid by this payment
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third pa
 RevenueStamp=Revenue stamp
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Invoice PDF template Crabe. A complete invoice template (recommended Template)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=A bill starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/sw_SW/boxes.lang b/htdocs/langs/sw_SW/boxes.lang
index 634b058f6d40f39c5434322b8c1ee431c6efccfa..8595403dc30264fc25e0890343920207a3b2fcc2 100644
--- a/htdocs/langs/sw_SW/boxes.lang
+++ b/htdocs/langs/sw_SW/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Customers invoices
 ForCustomersOrders=Customers orders
 ForProposals=Proposals
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/sw_SW/categories.lang b/htdocs/langs/sw_SW/categories.lang
index 81c73356c9313f8f6b58ca91fb632a9d894f335b..ccf22bb5003ca9dd4d684ff764aeb69eef7f739b 100644
--- a/htdocs/langs/sw_SW/categories.lang
+++ b/htdocs/langs/sw_SW/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo./Prosp. categories
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/sw_SW/companies.lang b/htdocs/langs/sw_SW/companies.lang
index e31c347605e091b48daeb2403b0c36b513540c0e..292fcafe238315d5e9cb6c07e0574a9f3979f7ba 100644
--- a/htdocs/langs/sw_SW/companies.lang
+++ b/htdocs/langs/sw_SW/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (R.C.)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (R.F.C).
 ProfId2MX=Prof Id 2 (R..P. IMSS)
diff --git a/htdocs/langs/sw_SW/compta.lang b/htdocs/langs/sw_SW/compta.lang
index d73f580cc8b8a84426e53b5a0c38c03dc8511bb6..07b609a17e428435a16e70932ee1763b18a0a7fa 100644
--- a/htdocs/langs/sw_SW/compta.lang
+++ b/htdocs/langs/sw_SW/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Deposit invoices are nor included
 DepositsAreIncluded=- Deposit invoices are included
 LT2ReportByCustomersInInputOutputModeES=Report by third party IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/sw_SW/cron.lang b/htdocs/langs/sw_SW/cron.lang
index bd85715642ec700a51b7365535762b2760ae54e5..21786df66cfcf912dd12c81c03fbb604e2255c26 100644
--- a/htdocs/langs/sw_SW/cron.lang
+++ b/htdocs/langs/sw_SW/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=List of disabled jobs
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Last run
 CronLastOutput=Last run output
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Job
 CronNone=None
-CronDtStart=Start date
-CronDtEnd=End date
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Next execution
 CronDtLastLaunch=Last execution
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=No jobs registered
 CronPriority=Priority
 CronLabel=Description
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
diff --git a/htdocs/langs/sw_SW/deliveries.lang b/htdocs/langs/sw_SW/deliveries.lang
index c513f3e347c28f0df14813efd7136bc833d51445..47e210744704ae9f083d6f1cf6630f7037ad794b 100644
--- a/htdocs/langs/sw_SW/deliveries.lang
+++ b/htdocs/langs/sw_SW/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Are you sure you want to delete delivery receipt <b
 DeliveryMethod=Delivery method
 TrackingNumber=Tracking number
 DeliveryNotValidated=Delivery not validated
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Name and Signature :
 ToAndDate=To___________________________________ on ____/_____/__________
diff --git a/htdocs/langs/sw_SW/holiday.lang b/htdocs/langs/sw_SW/holiday.lang
index 4beedf7021fa5d57420d3598b776c0af633abbed..a15b2d97224d732e1eceb7b84ff0947dd62e1cff 100644
--- a/htdocs/langs/sw_SW/holiday.lang
+++ b/htdocs/langs/sw_SW/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Employee
 DateDebCP=Start date
 DateFinCP=End date
 DateCreateCP=Creation date
@@ -23,7 +22,7 @@ ReviewedByCP=Will be reviewed by
 DescCP=Description
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=You must select an end date greater than the start date.
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Name
-Employee=Employee
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Monthly update
 ManualUpdate=Manual update
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/sw_SW/interventions.lang b/htdocs/langs/sw_SW/interventions.lang
index 5c08c3063534c07d4eea4a2096402a33cccadd41..cbcba219f1139b397fa8fe54ef5292c2ddf22248 100644
--- a/htdocs/langs/sw_SW/interventions.lang
+++ b/htdocs/langs/sw_SW/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Return numero with format %syymm-nnnn where yy is year,
 PacificNumRefModelError=An intervention card starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
 PrintProductsOnFichinter=Print products on intervention card
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/sw_SW/mails.lang b/htdocs/langs/sw_SW/mails.lang
index 87a1bd3c4d77c148a4c9554f25e94c5ca4becd9e..fbd7a14cd0471869ac1a1a0f1ec364a41ab9a244 100644
--- a/htdocs/langs/sw_SW/mails.lang
+++ b/htdocs/langs/sw_SW/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail sent to %s recipients.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/sw_SW/main.lang b/htdocs/langs/sw_SW/main.lang
index 3e24856e8f8b115a2fba5301a607933c36a3ecda..4afa461226b1ead0e11fa342cccef48c4075b024 100644
--- a/htdocs/langs/sw_SW/main.lang
+++ b/htdocs/langs/sw_SW/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=Database connection
+NoTemplateDefined=No template defined for this email type
 NoTranslation=No translation
 NoRecordFound=No record found
 NoError=No error
@@ -105,6 +106,7 @@ NotePrivate=Note (private)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr was setup to limit precision of unit prices to <b>%s</b> decimals.
 DoTest=Test
 ToFilter=Filter
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Warning, you have at least one element that has exceeded the tolerance delay.
 yes=yes
 Yes=Yes
@@ -228,6 +230,8 @@ Now=Now
 HourStart=Start hour
 Date=Date
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Date start
 DateEnd=Date end
 DateCreation=Creation date
@@ -608,6 +612,7 @@ TotalMan=Total
 NeverReceived=Never received
 Canceled=Canceled
 YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Color
 Documents=Linked files
 DocumentsNb=Linked files (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=No pictures available yet
 HomeDashboard=Home summary
+Dashboard=Dashboard
 Deductible=Deductible
 from=from
 toward=toward
diff --git a/htdocs/langs/sw_SW/margins.lang b/htdocs/langs/sw_SW/margins.lang
index 7db5ea4892e47d38f81f47f47b7beb00e1177280..27bb4de9fa34bef827f4501268d659670a983767 100644
--- a/htdocs/langs/sw_SW/margins.lang
+++ b/htdocs/langs/sw_SW/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Choose product or service
 StartDate=Start date
 EndDate=End date
 Launch=Start
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=As a product
 UseDiscountAsService=As a service
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/sw_SW/orders.lang b/htdocs/langs/sw_SW/orders.lang
index 29c2a0b5e21d6c38fe10363675a1bc04bdd5b309..c0bfc3ccce39be48af6c839b61305244d9261c47 100644
--- a/htdocs/langs/sw_SW/orders.lang
+++ b/htdocs/langs/sw_SW/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=No draft orders
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Other orders
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/sw_SW/other.lang b/htdocs/langs/sw_SW/other.lang
index 5fff107fde9aef8b5b102b11516d063214201ce7..c53f32346fe31f4f3ab22fa18f5933e33d5e97e2 100644
--- a/htdocs/langs/sw_SW/other.lang
+++ b/htdocs/langs/sw_SW/other.lang
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=New export
 ##### External sites #####
 ExternalSites=External sites
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/sw_SW/paypal.lang b/htdocs/langs/sw_SW/paypal.lang
index a4204f919825385332e460f03280067caa62dbb4..c6905f2ecc4299f59205dda7302732f0f7e67666 100644
--- a/htdocs/langs/sw_SW/paypal.lang
+++ b/htdocs/langs/sw_SW/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Mode test/sandbox
 PAYPAL_API_USER=API username
 PAYPAL_API_PASSWORD=API password
 PAYPAL_API_SIGNATURE=API signature
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Offer payment "integral" (Credit card+Paypal) or "Paypal" only
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/sw_SW/products.lang b/htdocs/langs/sw_SW/products.lang
index 0faea3691b0bd0e55ac1001d24cb88993cab4347..3926759fccadd1d5d9a3e2b3caf0d17fda789b7f 100644
--- a/htdocs/langs/sw_SW/products.lang
+++ b/htdocs/langs/sw_SW/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Production completed
-ProductsMultiPrice=Product multi-price
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/sw_SW/projects.lang b/htdocs/langs/sw_SW/projects.lang
index 7c94e3eb257ae07dea71f32084407e741fd94b1b..f6f6dd8ecaf09ead7b9c5d088f9ce307da860db9 100644
--- a/htdocs/langs/sw_SW/projects.lang
+++ b/htdocs/langs/sw_SW/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=This view presents all projects (your user permissions grant you permission to view everything).
 MyTasksDesc=This view is limited to projects or tasks you are a contact for (whatever is the type).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=This view presents all projects and tasks you are allowed to read.
 TasksDesc=This view presents all projects and tasks (your user permissions grant you permission to view everything).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Officer project
 LastProjects=Last %s projects
 AllProjects=All projects
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=List of projects
 ShowProject=Show project
 SetProject=Set project
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/sw_SW/propal.lang b/htdocs/langs/sw_SW/propal.lang
index d12d7595f94d6a48a961cc635329e86ed543a7ea..79ae1f1cd50add8ebf9f9f1275481055ed84ce06 100644
--- a/htdocs/langs/sw_SW/propal.lang
+++ b/htdocs/langs/sw_SW/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Last %s modified proposals
 AllPropals=All proposals
 LastProposals=Last proposals
 SearchAProposal=Search a proposal
+NoProposal=No proposal
 ProposalsStatistics=Commercial proposal's statistics
 NumberOfProposalsByMonth=Number by month
 AmountOfProposalsByMonthHT=Amount by month (net of tax)
@@ -62,7 +63,8 @@ DatePropal=Date of proposal
 DateEndPropal=Validity ending date
 DateEndPropalShort=Date end
 ValidityDuration=Validity duration
-CloseAs=Close with status
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Classify billed
 BuildBill=Build invoice
 ErrorPropalNotFound=Propal %s not found
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Default model creation
 DefaultModelPropalToBill=Default template when closing a business proposal (to be invoiced)
 DefaultModelPropalClosed=Default template when closing a business proposal (unbilled)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/sw_SW/salaries.lang b/htdocs/langs/sw_SW/salaries.lang
index 953a9c7540cbb06d6209140b32aaa0d23261e324..da177410860fb80d4d2d0872ec3b258ed787ba0e 100644
--- a/htdocs/langs/sw_SW/salaries.lang
+++ b/htdocs/langs/sw_SW/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Salary
 Salaries=Salaries
-Employee=Employee
 NewSalaryPayment=New salary payment
 SalaryPayment=Salary payment
 SalariesPayments=Salaries payments
diff --git a/htdocs/langs/sw_SW/sendings.lang b/htdocs/langs/sw_SW/sendings.lang
index fa7da0b00794647c45f8777bbc68fb23a31e1c0e..fb7b9c08868e29621711a9651a94ed955c6b223f 100644
--- a/htdocs/langs/sw_SW/sendings.lang
+++ b/htdocs/langs/sw_SW/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Shipment
 Shipments=Shipments
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Shipments area
 ListOfSendings=List of shipments
 SendingMethod=Shipping method
diff --git a/htdocs/langs/sw_SW/sms.lang b/htdocs/langs/sw_SW/sms.lang
index 4e89bb247308eb692eef9e40892f306dda5dd27b..70066caac96971420d7c55b09879e200888763c2 100644
--- a/htdocs/langs/sw_SW/sms.lang
+++ b/htdocs/langs/sw_SW/sms.lang
@@ -49,5 +49,6 @@ SendSms=Send SMS
 SmsInfoCharRemain=Nb of remaining characters
 SmsInfoNumero= (format international ie : +33899701761)
 DelayBeforeSending=Delay before sending (minutes)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=No target available. Check setup of your SMS provider.
 
diff --git a/htdocs/langs/sw_SW/trips.lang b/htdocs/langs/sw_SW/trips.lang
index ce9f0970e7c331996ee194c7613983060795a647..5ccdf8d0e37dcf680cc33691fdce1fd5644f2d53 100644
--- a/htdocs/langs/sw_SW/trips.lang
+++ b/htdocs/langs/sw_SW/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Other
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Lunch
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/sw_SW/users.lang b/htdocs/langs/sw_SW/users.lang
index 5b85ec80cf7e8a65d24d83c7359f831f9d150669..8a7dfcfe78753c5bda61b8d82208350a9e362652 100644
--- a/htdocs/langs/sw_SW/users.lang
+++ b/htdocs/langs/sw_SW/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Use OpenID to login
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/th_TH/accountancy.lang b/htdocs/langs/th_TH/accountancy.lang
index c8504d7a8af51578df555d64ee11e3784b34eda8..4a4976f4a74ce8c4d9a9c19e80221e597f1afcb4 100644
--- a/htdocs/langs/th_TH/accountancy.lang
+++ b/htdocs/langs/th_TH/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=เลือกรูปแบบของการส่งอ
 Modelcsv_normal=การส่งออกคลาสสิก
 Modelcsv_CEGID=การส่งออกที่มีต่อ CEGID ผู้เชี่ยวชาญ
 BackToChartofaccounts=กลับผังบัญชี
-Back=กลับ
 
 Definechartofaccounts=กำหนดผังบัญชี
 Selectchartofaccounts=เลือกผังบัญชี
@@ -109,10 +108,6 @@ DelBookKeeping=ลบบันทึกบัญชีแยกประเภ
 
 DescSellsJournal=วารสารขาย
 DescPurchasesJournal=ซื้อวารสาร
-BankJournal=ธนาคารวารสาร
-DescBankJournal=วารสารธนาคารรวมถึงประเภททั้งหมดของการชำระเงินอื่นที่ไม่ใช่เงินสด
-CashJournal=วารสารเงินสด
-DescCashJournal=วารสารเงินสดรวมทั้งประเภทของการชำระเงินเงินสด
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=ให้คำปรึกษาที่นี่รา
 ValidateHistory=ตรวจสอบโดยอัตโนมัติ
 
 ErrorAccountancyCodeIsAlreadyUse=ข้อผิดพลาดที่คุณไม่สามารถลบบัญชีบัญชีนี้เพราะมันถูกนำมาใช้
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=บัตรพังทลาย
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/th_TH/admin.lang b/htdocs/langs/th_TH/admin.lang
index 9cd274c129ef6824a86e5e7a8ba126df90489271..2c3db5e6a4c1bab63621fcdf07e530cd1165add1 100644
--- a/htdocs/langs/th_TH/admin.lang
+++ b/htdocs/langs/th_TH/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=ซ่อนข้อมูลทั้งหมด
 HideDescOnPDF=ซ่อนรายละเอียดผลิตภัณฑ์ที่เกี่ยวกับการสร้างรูปแบบไฟล์ PDF
 HideRefOnPDF=ซ่อนอ้างอิงผลิตภัณฑ์ ในการสร้างรูปแบบไฟล์ PDF
 HideDetailsOnPDF=ซ่อนสายผลิตภัณฑ์รายละเอียดเกี่ยวกับการสร้างรูปแบบไฟล์ PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=ห้องสมุด
 UrlGenerationParameters=พารามิเตอร์ URL ที่การรักษาความปลอดภัย
 SecurityTokenIsUnique=ใช้พารามิเตอร์ SecureKey ไม่ซ้ำกันสำหรับแต่ละ URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=คุณแน่ใจว่าคุณต้
 AllBarcodeReset=ทั้งหมดค่าบาร์โค้ดได้ถูกลบออก
 NoBarcodeNumberingTemplateDefined=ไม่มีแม่แบบบาร์โค้ดเลขที่เปิดใช้งานลงในการติดตั้งโมดูลบาร์โค้ด
 NoRecordWithoutBarcodeDefined=บันทึกที่มีค่าไม่มีบาร์โค้ดที่กำหนดไว้ไม่มี
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=และกลุ่มผู้ใช้
@@ -499,7 +500,7 @@ Module510Desc=การบริหารจัดการของเงิน
 Module520Name=เงินกู้
 Module520Desc=การบริหารจัดการของเงินให้สินเชื่อ
 Module600Name=การแจ้งเตือน
-Module600Desc=ส่งการแจ้งเตือนอีเมลในบางกิจกรรมทางธุรกิจ Dolibarr ไปยังรายชื่อของบุคคลที่สาม (การตั้งค่าที่กำหนดไว้ในแต่ละ thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=การบริจาค
 Module700Desc=การจัดการการบริจาค
 Module770Name=รายงานค่าใช้จ่าย
@@ -963,6 +964,7 @@ DelaysBeforeWarning=ความล่าช้าก่อนที่จะเ
 DelaysOfToleranceBeforeWarning=ความล่าช้าความอดทนก่อนที่จะเตือน
 DelaysOfToleranceDesc=หน้าจอนี้จะช่วยให้คุณสามารถกำหนดความล่าช้าทนแจ้งเตือนก่อนที่จะมีรายงานบนหน้าจอด้วย s picto% สำหรับแต่ละองค์ประกอบปลาย
 Delays_MAIN_DELAY_ACTIONS_TODO=ความอดทนล่าช้า (ในวัน) ก่อนที่จะแจ้งเตือนเกี่ยวกับเหตุการณ์ที่วางแผนไว้ยังไม่ได้ตระหนักถึง
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=ความอดทนล่าช้า (ในวัน) ก่อนที่จะแจ้งเตือนในการสั่งซื้อที่ยังไม่ได้ดำเนินการ
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=ความอดทนล่าช้า (ในวัน) ก่อนที่จะแจ้งเตือนในการสั่งซื้อซัพพลายเออร์ที่ยังไม่ได้ดำเนินการ
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=ความอดทนล่าช้า (ในวัน) ก่อนที่จะแจ้งเตือนเกี่ยวกับข้อเสนอที่จะปิด
@@ -1087,6 +1089,7 @@ PathDirectory=สารบบ
 SendmailOptionMayHurtBuggedMTA=คุณสมบัติที่จะส่งอีเมลโดยใช้วิธีการ "PHP mail โดยตรง" จะสร้างข้อความอีเมลที่อาจจะไม่ได้แยกวิเคราะห์ได้อย่างถูกต้องโดยบางส่วนที่ได้รับเมลเซิร์ฟเวอร์ ผลที่ได้คืออีเมลบางอย่างไม่สามารถอ่านได้โดยคนที่เป็นเจ้าภาพโดยแพลตฟอร์มร้องเหล่านั้น เป็นกรณีสำหรับบางผู้ให้บริการอินเทอร์เน็ต (Ex: ออเรนจ์ในประเทศฝรั่งเศส) ซึ่งไม่เป็นปัญหาเข้า Dolibarr หรือเข้า PHP แต่บนเซิร์ฟเวอร์อีเมลที่ได้รับ แต่คุณสามารถเพิ่มตัวเลือก MAIN_FIX_FOR_BUGGED_MTA 1 เข้าสู่การตั้งค่า - อื่น ๆ ที่จะปรับเปลี่ยน Dolibarr หลีกเลี่ยงปัญหานี้ แต่คุณอาจพบปัญหากับเซิร์ฟเวอร์อื่น ๆ ที่เคารพอย่างเคร่งครัดมาตรฐาน SMTP วิธีการแก้ปัญหาอื่น ๆ (แนะนำ) คือการใช้วิธีการ "ห้องสมุด SMTP ซ็อกเก็ต" ที่มีข้อเสียไม่มี
 TranslationSetup=การกำหนดค่า de la traduction
 TranslationDesc=ทางเลือกของภาษาที่ปรากฏบนหน้าจอสามารถปรับเปลี่ยนได้: <br> * <strong>ทั่วโลกจากที่บ้านเมนู - การติดตั้ง - จอแสดงผล</strong> <br> * <strong>สำหรับผู้ใช้เท่านั้นจากแท็บการแสดงผลผู้ใช้บัตรผู้ใช้</strong> (คลิกที่เข้าสู่ระบบที่ด้านบนของหน้าจอ)
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=<b>จำนวนโมดูลเปิดใช้งานคุณลักษณะ:% s</b>
 YouMustEnableOneModule=คุณต้องเปิดการใช้งานอย่างน้อย 1 โมดูล
 ClassNotFoundIntoPathWarning=คลาส% s ไม่พบเ​​ข้ามาในเส้นทาง PHP
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=ติดตั้งโมดูล
 ConfFileMuseContainCustom=<strong>การติดตั้งโมดูลภายนอกจากโปรแกรมบันทึกไฟล์โมดูลลงในไดเรกทอรี%</strong> s จะมีไดเรกทอรีนี้ประมวลผลโดย Dolibarr คุณต้องติดตั้ง <strong>conf / conf.php</strong> ของคุณจะมีตัวเลือก <br> - <strong>$ dolibarr_main_url_root_alt</strong> การใช้งานมูลค่า <strong>$ dolibarr_main_url_root_alt = "/ กำหนดเอง"</strong> <br> - <strong>$ dolibarr_main_document_root_alt</strong> การใช้งานค่า <strong>"% s / กำหนดเอง"</strong>
 HighlightLinesOnMouseHover=เน้นเส้นตารางเมื่อเลื่อนเมาส์ผ่านไป
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=กด F5 บนแป้นพิมพ์หลังจากเปลี่ยนค่านี้จะมีมันที่มีประสิทธิภาพ
 NotSupportedByAllThemes=จะทำงานร่วมกับธีม Eldy แต่ไม่ได้รับการสนับสนุนจากทุกรูปแบบ
diff --git a/htdocs/langs/th_TH/agenda.lang b/htdocs/langs/th_TH/agenda.lang
index 0fd1e1f2388227ad37bb3228bfa173b63d756ccc..3a8a03f5233a8070b019d332c69c69731e29d8b4 100644
--- a/htdocs/langs/th_TH/agenda.lang
+++ b/htdocs/langs/th_TH/agenda.lang
@@ -35,7 +35,9 @@ AllActions= เหตุการณ์ทั้งหมด / งาน
 ViewCal=มุมมองรายเดือน
 ViewDay=มุมมองรายวัน
 ViewWeek=มุมมองสัปดาห์
+ViewYear=Year view
 ViewPerUser=ต่อมุมมองของผู้ใช้
+ViewPerType=Per type view
 ViewWithPredefinedFilters= ดูกับตัวกรองที่กำหนดไว้ล่วงหน้า
 AutoActions= บรรจุอัตโนมัติ
 AgendaAutoActionDesc= กำหนดเหตุการณ์ที่เกิดขึ้นที่นี่ที่คุณต้องการ Dolibarr การสร้างโดยอัตโนมัติในกรณีที่วาระการประชุม ถ้าไม่มีการตรวจสอบ (โดยเริ่มต้น), คู่มือการดำเนินการจะได้รับการรวมอยู่ในวาระการประชุม
diff --git a/htdocs/langs/th_TH/bills.lang b/htdocs/langs/th_TH/bills.lang
index ee99e02c39219c36d56241dfe9cc7f287857af92..e5ee71ce648f0344f747dafb81ef5e05097c61b6 100644
--- a/htdocs/langs/th_TH/bills.lang
+++ b/htdocs/langs/th_TH/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=การชำระเงินที่ทำมาแล
 PaymentsBackAlreadyDone=การชำระเงินกลับไปทำมาแล้ว
 PaymentRule=กฎการชำระเงิน
 PaymentMode=ประเภทการชำระเงิน
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=เงื่อนไขการชำระเงิน
 PaymentConditions=เงื่อนไขการชำระเงิน
@@ -184,6 +186,7 @@ ShowInvoice=แสดงใบแจ้งหนี้
 ShowInvoiceReplace=แสดงการเปลี่ยนใบแจ้งหนี้
 ShowInvoiceAvoir=แสดงใบลดหนี้
 ShowInvoiceDeposit=แสดงใบแจ้งหนี้การฝากเงิน
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=แสดงการชำระเงิน
 AlreadyPaid=จ่ายเงินไปแล้ว
 AlreadyPaidBack=จ่ายเงินไปแล้วกลับมา
@@ -221,6 +224,7 @@ NonPercuRecuperable=ไม่รับคืน
 SetConditions=ตั้งเงื่อนไขการชำระเงิน
 SetMode=โหมดการชำระเงินชุด
 Billed=การเรียกเก็บเงิน
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=แม่แบบใบแจ้งหนี้
 RepeatableInvoices=แม่แบบใบแจ้งหนี้
 Repeatable=แบบ
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=เงินจำนวนนี้ถูกทิ้ง
 HelpAbandonOther=เงินจำนวนนี้ถูกทิ้งร้างเพราะมันเป็นข้อผิดพลาด (ลูกค้าที่ไม่ถูกต้องหรือใบแจ้งหนี้แทนที่ด้วยอื่น ๆ เป็นต้น)
 IdSocialContribution=สังคม / รหัสชำระภาษีการคลัง
 PaymentId=รหัสการชำระเงิน
+PaymentRef=Payment ref.
 InvoiceId=รหัสใบแจ้งหนี้
 InvoiceRef=อ้างอิงใบแจ้งหนี้
 InvoiceDateCreation=วันที่สร้างใบแจ้งหนี้
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=ใบแจ้งหนี้ผู้จัดจำ
 LatestRelatedBill=ใบแจ้งหนี้ที่เกี่ยวข้องล่าสุด
 WarningBillExist=คำเตือนหนึ่งหรือใบแจ้งหนี้มากขึ้นอยู่แล้ว
 MergingPDFTool=ผสานเครื่องมือรูปแบบไฟล์ PDF
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=ทันทีทันใด
@@ -393,6 +402,7 @@ Reported=ล่าช้า
 DisabledBecausePayments=เป็นไปไม่ได้เนื่องจากมีการชำระเงินบางส่วน
 CantRemovePaymentWithOneInvoicePaid=ไม่สามารถลบการชำระเงินเนื่องจากมีอย่างน้อยหนึ่งใบแจ้งหนี้แยกจ่าย
 ExpectedToPay=การชำระเงินที่คาดว่าจะ
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=การชำระเงินโดยการชำระเงินนี้
 ClosePaidInvoicesAutomatically=จำแนก "ชำระเงิน" ทุกมาตรฐานสถานการณ์หรือการเปลี่ยนใบแจ้งหนี้การชำระเงินทั้งหมด
 ClosePaidCreditNotesAutomatically=จำแนก "ชำระเงิน" ทั้งหมดบันทึกเครดิตการชำระเงินทั้งหมดกลับ
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=หมายเหตุ: รายการนี
 RevenueStamp=อากรแสตมป์
 YouMustCreateInvoiceFromThird=ตัวเลือกนี้จะใช้ได้เฉพาะเมื่อมีการสร้างใบแจ้งหนี้จากแท็บ "ลูกค้า" ของ thirdparty
 PDFCrabeDescription=ใบแจ้งหนี้แม่แบบ PDF Crabe แม่แบบใบแจ้งหนี้ฉบับสมบูรณ์ (แนะนำ Template)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=จำนวนกลับมาพร้อมกับรูปแบบ% syymm-nnnn สำหรับใบแจ้งหนี้และมาตรฐาน% syymm-nnnn สำหรับการบันทึกเครดิตที่ yy เป็นปีเป็นเดือนมิลลิเมตรและ nnnn เป็นลำดับที่มีการหยุดพักและกลับไปที่ 0 ไม่มี
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=เริ่มต้นด้วยการเรียกเก็บเงิน $ syymm มีอยู่แล้วและไม่ได้เข้ากันได้กับรูปแบบของลำดับนี้ ลบหรือเปลี่ยนชื่อเพื่อเปิดใช้งานโมดูลนี้
@@ -433,3 +444,11 @@ DisabledBecauseFinal=สถานการณ์เช่นนี้ถือ
 CantBeLessThanMinPercent=ความคืบหน้าไม่สามารถที่จะมีขนาดเล็กกว่าค่าของมันอยู่ในสถานการณ์ที่ผ่านมา
 NoSituations=ไม่มีสถานการณ์ที่เปิด
 InvoiceSituationLast=รอบชิงชนะเลิศและใบแจ้งหนี้ทั่วไป
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/th_TH/boxes.lang b/htdocs/langs/th_TH/boxes.lang
index 87f92d330514820db8d5820499b9bd26f1947319..3e2805106bede23308231bca733256fae780a577 100644
--- a/htdocs/langs/th_TH/boxes.lang
+++ b/htdocs/langs/th_TH/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=ใบแจ้งหนี้ลูกค้า
 ForCustomersOrders=คำสั่งซื้อของลูกค้า
 ForProposals=ข้อเสนอ
 LastXMonthRolling=สุดท้าย% s กลิ้งเดือน
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/th_TH/categories.lang b/htdocs/langs/th_TH/categories.lang
index a0cea40541b220bbc78542d83d63fe2107629968..44536da5e65ceb23c061d202de723a932282f688 100644
--- a/htdocs/langs/th_TH/categories.lang
+++ b/htdocs/langs/th_TH/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=แท็กสินค้า / หมวดหมู่
 MembersCategoryShort=แท็กสมาชิก / หมวดหมู่
 SuppliersCategoriesShort=ซัพพลายเออร์แท็ก / ประเภท
 CustomersCategoriesShort=ลูกค้าแท็ก / ประเภท
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=custo. / Prosp ประเภท
 ProductsCategoriesShort=แท็กสินค้า / ประเภท
 MembersCategoriesShort=แท็กสมาชิก / ประเภท
diff --git a/htdocs/langs/th_TH/companies.lang b/htdocs/langs/th_TH/companies.lang
index 8310ce1fbcdcd9f575ef8dcdfd6fc6ea51b9ca5f..b013fd409fcb5a97c32ef5a7a080e0a80fa297e5 100644
--- a/htdocs/langs/th_TH/companies.lang
+++ b/htdocs/langs/th_TH/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=ศ Id 1 (RC)
 ProfId2MA=ศ Id 2 (Patente)
 ProfId3MA=ศ Id 3 (IF)
 ProfId4MA=ศ Id 4 (CNSS)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Id ศที่ 1 (RFC)
 ProfId2MX=ศหมายเลข 2 (R..P. IMSS)
diff --git a/htdocs/langs/th_TH/compta.lang b/htdocs/langs/th_TH/compta.lang
index 7ca396a41eccde07105c060e5be3358137f4c2fd..d657b4cf85c27f54708f3416e240e5b45d95f10f 100644
--- a/htdocs/langs/th_TH/compta.lang
+++ b/htdocs/langs/th_TH/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- ใบแจ้งหนี้หรือเงิน
 DepositsAreIncluded=- ใบแจ้งหนี้เงินฝากที่จะถูกรวม
 LT2ReportByCustomersInInputOutputModeES=รายงานโดยบุคคลที่สาม IRPF
 LT1ReportByCustomersInInputOutputModeES=รายงานโดยเรื่องของบุคคลที่สาม
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=รายงานโดยลูกค้าภาษีมูลค่าเพิ่มที่จัดเก็บและเรียกชำระแล้ว
 VATReportByCustomersInDueDebtMode=รายงานโดยลูกค้าภาษีมูลค่าเพิ่มที่จัดเก็บและเรียกชำระแล้ว
 VATReportByQuartersInInputOutputMode=รายงานโดยอัตราภาษีมูลค่าเพิ่มที่จัดเก็บและเรียกชำระแล้ว
diff --git a/htdocs/langs/th_TH/cron.lang b/htdocs/langs/th_TH/cron.lang
index 27974df003535435ed862247de44cfda535f1a5c..0ce8796ead74d9b03d6becae594b5aaff60bbdda 100644
--- a/htdocs/langs/th_TH/cron.lang
+++ b/htdocs/langs/th_TH/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=ในสภาพแวดล้อมระบบป
 CronExplainHowToRunWin=ไมโครซอฟท์ (TM) ของ Windows environement คุณสามารถใช้เครื่องมือการจัดตารางงานที่จะเรียกใช้บรรทัดคำสั่งแต่ละ 5 นาที
 # Menu
 CronJobs=งานที่กำหนดเวลาไว้
-CronListActive=รายการงาน / งานที่กำหนดไว้
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=รายการของงานคนพิการ
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=การทำงานที่ผ่านมา
 CronLastOutput=การทำงานที่ผ่านมาการส่งออก
@@ -35,8 +36,8 @@ CronInfo=โมดูลงานตามกำหนดการอนุญ
 CronWaitingJobs=รองาน
 CronTask=งาน
 CronNone=ไม่
-CronDtStart=วันที่เริ่มต้น
-CronDtEnd=วันที่สิ้นสุด
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=การดำเนินการต่อไป
 CronDtLastLaunch=การดำเนินการที่ผ่านมา
 CronFrequency=ความถี่
@@ -51,6 +52,7 @@ CronNoJobs=ไม่มีงานที่ลงทะเบียน
 CronPriority=ลำดับความสำคัญ
 CronLabel=ลักษณะ
 CronNbRun=nb ยิง
+CronMaxRun=Max nb. launch
 CronEach=ทุกๆ
 JobFinished=งานเปิดตัวและจบ
 #Page card
diff --git a/htdocs/langs/th_TH/deliveries.lang b/htdocs/langs/th_TH/deliveries.lang
index 75f5a94abd9b2c8ec73aa4d0c603100b4baa52fc..fb6a289eae6bad5305f6d51caa0b2c96115fa51f 100644
--- a/htdocs/langs/th_TH/deliveries.lang
+++ b/htdocs/langs/th_TH/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=คุณแน่ใจหรือว่าต้
 DeliveryMethod=วิธีการจัดส่ง
 TrackingNumber=ติดตามจำนวน
 DeliveryNotValidated=การจัดส่งสินค้าไม่ได้ผ่านการตรวจสอบ
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=ชื่อและลายเซ็น:
 ToAndDate=To___________________________________ บน ____ / _____ / __________
diff --git a/htdocs/langs/th_TH/holiday.lang b/htdocs/langs/th_TH/holiday.lang
index 1322a638ea1db1f04adbada5e9646a4811f3946e..c3f691f81549ed03dbc25cc6bc79e1136f77887b 100644
--- a/htdocs/langs/th_TH/holiday.lang
+++ b/htdocs/langs/th_TH/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=คุณต้องเปิดใบโมดูลเพื
 NotConfigModCP=คุณต้องกำหนดค่าใบโมดูลเพื่อดูหน้านี้ การทำเช่นนี้ <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;">คลิกที่นี่</a> </ a> <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;">.</a>
 NoCPforUser=คุณไม่ได้มีวันใด ๆ
 AddCP=ขอลา
-Employe=ลูกจ้าง
 DateDebCP=วันที่เริ่มต้น
 DateFinCP=วันที่สิ้นสุด
 DateCreateCP=วันที่สร้าง
@@ -23,7 +22,7 @@ ReviewedByCP=จะถูกตรวจสอบโดย
 DescCP=ลักษณะ
 SendRequestCP=สร้างการร้องขอลา
 DelayToRequestCP=<b>ออกจากการร้องขอจะต้องทำอย่างน้อย% s วัน (s)</b> ก่อนหน้าพวกเขา
-MenuConfCP=แก้ไขความสมดุลของใบ
+MenuConfCP=Balance of leaves
 UpdateAllCP=อัพเดทใบ
 SoldeCPUser=<b>สมดุลใบเป็น% s</b> วัน
 ErrorEndDateCP=คุณต้องเลือกวันที่สิ้นสุดมากกว่าวันที่เริ่มต้น
@@ -79,9 +78,9 @@ PrevSoldeCP=คงเหลือก่อนหน้า
 NewSoldeCP=นิวบาลานซ์
 alreadyCPexist=คำขอลาได้ทำไปแล้วในเวลานี้
 UserName=ชื่อ
-Employee=ลูกจ้าง
 FirstDayOfHoliday=วันแรกของวันหยุด
 LastDayOfHoliday=วันสุดท้ายของวันหยุด
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=การปรับปรุงรายเดือน
 ManualUpdate=การปรับปรุงคู่มือการใช้งาน
 HolidaysCancelation=ออกจากคำขอยกเลิก
@@ -141,4 +140,7 @@ HolidaysRefusedBody=คำขอลาสำหรับ% s% s ได้รั
 HolidaysCanceled=ยกเลิกคำขอใบ
 HolidaysCanceledBody=คำขอลาสำหรับ% s% s ได้ถูกยกเลิก
 NewByMonth=ที่เพิ่มเข้ามาต่อเดือน
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=<strong>ไปลงในหน้าหลัก - การติดตั้ง - พจนานุกรม - ประเภทของใบจะติดตั้งที่แตกต่างกันของใบ</strong>
diff --git a/htdocs/langs/th_TH/hrm.lang b/htdocs/langs/th_TH/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/th_TH/hrm.lang
+++ b/htdocs/langs/th_TH/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/th_TH/interventions.lang b/htdocs/langs/th_TH/interventions.lang
index 3a8c17370ccecd637cb6333f0421d9079b9e642e..76786dadb0874a32459b090d26b714b76dfbf1de 100644
--- a/htdocs/langs/th_TH/interventions.lang
+++ b/htdocs/langs/th_TH/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=กลับ Numero ที่มีรูปแบบ% s
 PacificNumRefModelError=บัตรเริ่มต้นด้วยการแทรกแซง $ syymm อยู่แล้วและไม่ได้เข้ากันได้กับรูปแบบของลำดับนี้ ลบหรือเปลี่ยนชื่อเพื่อเปิดใช้งานโมดูลนี้
 PrintProductsOnFichinter=ผลิตภัณฑ์ด้านการพิมพ์บนบัตรแทรกแซง
 PrintProductsOnFichinterDetails=การแทรกแซงที่เกิดจากคำสั่งซื้อ
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/th_TH/mails.lang b/htdocs/langs/th_TH/mails.lang
index 187b667e1927c38ce9e41f06a82f1a1c077d685b..faf7859bcc0972ff6b97b3f7e748fda428611179 100644
--- a/htdocs/langs/th_TH/mails.lang
+++ b/htdocs/langs/th_TH/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=ที่สำคัญที่ใช้ในการ
 EMailSentToNRecipients=อีเมลที่ส่งไปยังผู้รับ% s
 XTargetsAdded=<b>ผู้รับ% s</b> เพิ่มเข้าไปในรายชื่อเป้าหมาย
 EachInvoiceWillBeAttachedToEmail=เอกสารที่ใช้แม่แบบเอกสารใบแจ้งหนี้ค่าเริ่มต้นจะถูกสร้างขึ้นและแนบมากับอีเมลแต่ละ
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=เตือนความทรงจำของใบแจ้งหนี้% (% s)
 SendRemind=ส่งการแจ้งเตือนโดยอีเมล์
 RemindSent=เตือน% s (s) ส่ง
diff --git a/htdocs/langs/th_TH/main.lang b/htdocs/langs/th_TH/main.lang
index c739767ab86f23485dc94a62ec3e05f983532645..ebdf50a0aee3d391298a8ff2eb3740b1c2c53ddc 100644
--- a/htdocs/langs/th_TH/main.lang
+++ b/htdocs/langs/th_TH/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%d/%m/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=เชื่อมต่อฐานข้อมูล
+NoTemplateDefined=No template defined for this email type
 NoTranslation=แปลไม่มี
 NoRecordFound=บันทึกไม่พบ
 NoError=ไม่มีข้อผิดพลาด
@@ -105,6 +106,7 @@ NotePrivate=หมายเหตุ (เอกชน)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr ถูกติดตั้งเพื่อ จำกัด <b>แม่นยำของราคาต่อหน่วย% s</b> ทศนิยม
 DoTest=ทดสอบ
 ToFilter=กรอง
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=คำเตือนคุณมีอย่างน้อยองค์ประกอบหนึ่งที่ได้เกินความล่าช้าความอดทน
 yes=ใช่
 Yes=ใช่
@@ -228,6 +230,8 @@ Now=ตอนนี้
 HourStart=เริ่มต้นชั่วโมง
 Date=วันที่
 DateAndHour=วันที่และชั่วโมง
+DateToday=Today's date
+DateReference=Reference date
 DateStart=เริ่มต้นวันที่
 DateEnd=สิ้นสุดวันที่
 DateCreation=วันที่สร้าง
@@ -608,6 +612,7 @@ TotalMan=ทั้งหมด
 NeverReceived=ไม่เคยได้รับ
 Canceled=ยกเลิก
 YouCanChangeValuesForThisListFromDictionarySetup=คุณสามารถเปลี่ยนค่าสำหรับรายชื่อจากการตั้งค่าเมนูนี้ - พจนานุกรม
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=สี
 Documents=แฟ้มที่เชื่อมโยง
 DocumentsNb=แฟ้มที่เชื่อมโยง (% s)
@@ -695,6 +700,7 @@ Test=ทดสอบ
 Element=ธาตุ
 NoPhotoYet=ภาพที่ยังไม่มี
 HomeDashboard=สรุปหน้าแรก
+Dashboard=Dashboard
 Deductible=หัก
 from=จาก
 toward=ไปทาง
diff --git a/htdocs/langs/th_TH/margins.lang b/htdocs/langs/th_TH/margins.lang
index 1bb79f31095af89efe183ae23086569d66f51bfc..78cac3f9258f6e53c9c82457cbb7f57c29648285 100644
--- a/htdocs/langs/th_TH/margins.lang
+++ b/htdocs/langs/th_TH/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=เลือกสินค้าหรือบริก
 StartDate=วันที่เริ่มต้น
 EndDate=วันที่สิ้นสุด
 Launch=เริ่มต้น
-ForceBuyingPriceIfNull=กองทัพราคาซื้อถ้า null
-ForceBuyingPriceIfNullDetails=ถ้า "ON" ขอบจะเป็นศูนย์ในบรรทัด (ซื้อราคา = ราคาขาย) มิฉะนั้น ("OFF"), มาร์จจะเท่ากับราคาขาย (ซื้อราคา = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=วิธี Margin ส่วนลดทั่วโลก
 UseDiscountAsProduct=เป็นผลิตภัณฑ์
 UseDiscountAsService=เป็นบริการ
@@ -35,8 +35,9 @@ MargeBrute=ขอบดิบ
 MargeNette=อัตรากำไรสุทธิ
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=ขอบดิบ: ราคาขาย - ราคาซื้อ <br/> อัตรากำไรสุทธิ: ราคาขาย - ราคาต้นทุน
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=ราคาทุน
 BuyingCost=ราคาทุน
 UnitCharges=ค่าใช้จ่ายต่อหน่วย
diff --git a/htdocs/langs/th_TH/oauth.lang b/htdocs/langs/th_TH/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/th_TH/oauth.lang
+++ b/htdocs/langs/th_TH/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/th_TH/orders.lang b/htdocs/langs/th_TH/orders.lang
index e229b7281453322f710d46e1da25723c808a8d99..ea2c6ac0fe9417275335668415672db3b772ba25 100644
--- a/htdocs/langs/th_TH/orders.lang
+++ b/htdocs/langs/th_TH/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=คำสั่งในการประมวลผล
 NoOpenedOrders=ไม่มีคำสั่งเปิด
 NoOtherOpenedOrders=ไม่มีคำสั่งอื่น ๆ ที่เปิด
 NoDraftOrders=ไม่มีคำสั่งร่าง
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=คำสั่งอื่น ๆ
 LastOrders=% s ล่าสุดสั่งซื้อของลูกค้า
diff --git a/htdocs/langs/th_TH/other.lang b/htdocs/langs/th_TH/other.lang
index f0f34413e1a75716118ec40ca26ecd640992050b..3adb19cb5692695b9afb86c702b308434e9e88b5 100644
--- a/htdocs/langs/th_TH/other.lang
+++ b/htdocs/langs/th_TH/other.lang
@@ -238,3 +238,8 @@ ToExport=ส่งออก
 NewExport=การส่งออกใหม่
 ##### External sites #####
 ExternalSites=เว็บไซต์ภายนอก
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/th_TH/paypal.lang b/htdocs/langs/th_TH/paypal.lang
index f9995712c40b814e7dc5f5cebd6af16ce331fc65..7c65a08163caad8a82c199641612bd57c751fd2b 100644
--- a/htdocs/langs/th_TH/paypal.lang
+++ b/htdocs/langs/th_TH/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=การทดสอบ Mode / ทราย
 PAYPAL_API_USER=ชื่อผู้ใช้ API
 PAYPAL_API_PASSWORD=รหัสผ่าน API
 PAYPAL_API_SIGNATURE=ลายเซ็น API
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=การชำระเงินที่เสนอซื้อ "หนึ่ง" (บัตรเครดิต Paypal +) หรือ "Paypal" เท่านั้น
 PaypalModeIntegral=สำคัญ
 PaypalModeOnlyPaypal=PayPal เท่านั้น
diff --git a/htdocs/langs/th_TH/products.lang b/htdocs/langs/th_TH/products.lang
index 1f298f1ebf1f7dbacf2c325bf6f859921f96852a..4ba0976e57523fabf98720d76d6d90db9be703cb 100644
--- a/htdocs/langs/th_TH/products.lang
+++ b/htdocs/langs/th_TH/products.lang
@@ -252,7 +252,7 @@ UnitPmp=หน่วยสุทธิ VWAP
 CostPmpHT=รวมสุทธิ VWAP
 ProductUsedForBuild=Auto บริโภคโดยการผลิต
 ProductBuilded=ผลิตเสร็จสมบูรณ์
-ProductsMultiPrice=สินค้าหลายราคา
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=ราคาของลูกค้า (ของผลิตภัณฑ์หรือบริการราคาหลาย)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=ไฟล์ PDF เลือก
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=ราคาเริ่มต้นราคาที่แท้จริงอาจขึ้นอยู่กับลูกค้า
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/th_TH/projects.lang b/htdocs/langs/th_TH/projects.lang
index de673c99f28a4e692e7e48f75051d7e0b9d9db5e..c0e1b913f90756efbfc086f8f00adc4be7c353bc 100644
--- a/htdocs/langs/th_TH/projects.lang
+++ b/htdocs/langs/th_TH/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=มุมมองนี้นำเสนอทุกโ
 ProjectsDesc=มุมมองนี้นำเสนอทุกโครงการ (สิทธิ์ผู้ใช้ของคุณอนุญาตให้คุณสามารถดูทุกอย่าง)
 MyTasksDesc=มุมมองนี้จะ จำกัด ให้กับโครงการหรืองานที่คุณกำลังติดต่อ (สิ่งที่เป็นประเภท)
 OnlyOpenedProject=เฉพาะโครงการที่เปิดจะมองเห็นได้ (โครงการในร่างหรือสถานะปิดจะมองไม่เห็น)
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=มุมมองนี้นำเสนอทุกโครงการและงานที่คุณได้รับอนุญาตในการอ่าน
 TasksDesc=มุมมองนี้นำเสนอทุกโครงการและงาน (สิทธิ์ผู้ใช้ของคุณอนุญาตให้คุณสามารถดูทุกอย่าง)
 AllTaskVisibleButEditIfYouAreAssigned=งานทั้งหมดสำหรับโครงการดังกล่าวจะมองเห็นได้ แต่คุณสามารถใส่เพียงครั้งเดียวสำหรับงานที่คุณจะได้รับมอบหมายใน มอบหมายงานให้คุณถ้าคุณต้องการที่จะป้อนเวลากับมัน
@@ -29,7 +30,9 @@ OfficerProject=เจ้าหน้าที่โครงการ
 LastProjects=โครงการ% s ล่าสุด
 AllProjects=ทุกโครงการ
 OpenedProjects=เปิดโครงการ
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=รายการของโครงการ
 ShowProject=แสดงโครงการ
 SetProject=โครงการตั้ง
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=งาน% s การแก้ไข
 TaskDeletedInDolibarr=งาน% s ลบ
 OpportunityStatus=สถานะโอกาส
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=จำนวนเงินที่มีโอกาส
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=โครงการที่มีผู้ใ
 TasksWithThisUserAsContact=Tasks ได้รับมอบหมายให้ผู้ใช้รายนี้
 ResourceNotAssignedToProject=ไม่ได้กำหนดโครงการ
 ResourceNotAssignedToTask=ไม่ได้กำหนดให้กับงาน
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=มอบหมายงานให้ฉัน
 AssignTask=กำหนด
 ProjectOverview=ภาพรวม
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=โครงการเปิดโดย thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/th_TH/propal.lang b/htdocs/langs/th_TH/propal.lang
index 4041ef90bdb40bdc7622e49f406193c1c1bed865..cbe5b2ed79a5565f7cf5e4c739541d61cd5b4fc6 100644
--- a/htdocs/langs/th_TH/propal.lang
+++ b/htdocs/langs/th_TH/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=% ล่าสุดของข้อเสนอกา
 AllPropals=ข้อเสนอทั้งหมด
 LastProposals=ข้อเสนอที่ผ่านมา
 SearchAProposal=ค้นหาข้อเสนอ
+NoProposal=No proposal
 ProposalsStatistics=สถิติข้อเสนอในเชิงพาณิชย์
 NumberOfProposalsByMonth=จำนวนเดือน
 AmountOfProposalsByMonthHT=จำนวนเดือน (สุทธิจากภาษี)
@@ -62,7 +63,8 @@ DatePropal=วันของข้อเสนอ
 DateEndPropal=ตั้งแต่วันที่วันที่สิ้นสุด
 DateEndPropalShort=สิ้นสุดวันที่
 ValidityDuration=ระยะเวลาตั้งแต่วันที่
-CloseAs=ใกล้ชิดกับสถานะ
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=แบ่งประเภทเรียกเก็บเงิน
 BuildBill=สร้างใบแจ้งหนี้
 ErrorPropalNotFound=Propal% s ไม่พบ
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=เริ่มต้นการสร้างแบ
 DefaultModelPropalToBill=แม่แบบเริ่มต้นเมื่อปิดข้อเสนอทางธุรกิจ (ที่จะออกใบแจ้งหนี้)
 DefaultModelPropalClosed=แม่แบบเริ่มต้นเมื่อปิดข้อเสนอทางธุรกิจ (ยังไม่เรียกเก็บ)
 ProposalCustomerSignature=ยอมรับเขียนประทับ บริษัท วันและลายเซ็น
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/th_TH/salaries.lang b/htdocs/langs/th_TH/salaries.lang
index 18351b208e485bd33dbf90505d6c3d3e54bb601f..d6fc963ba6b2d579dfa76f09156467e34a1c3b59 100644
--- a/htdocs/langs/th_TH/salaries.lang
+++ b/htdocs/langs/th_TH/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=รหัสบัญชีสำหรับการชำระเงินเงินเดือน
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=รหัสบัญชีสำหรับค่าใช้จ่ายทางการเงิน
 Salary=เงินเดือน
 Salaries=เงินเดือน
-Employee=ลูกจ้าง
 NewSalaryPayment=การชำระเงินเงินเดือนใหม่
 SalaryPayment=การชำระเงินเงินเดือน
 SalariesPayments=การชำระเงินเงินเดือน
diff --git a/htdocs/langs/th_TH/sendings.lang b/htdocs/langs/th_TH/sendings.lang
index 9eb8136127837cd27b88214b4e6196e0c3c8370b..32462a0dd9846a69d6dd4246f966d6a3286d921b 100644
--- a/htdocs/langs/th_TH/sendings.lang
+++ b/htdocs/langs/th_TH/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=ทั้งหมดจัดส่ง
 Shipment=การส่งสินค้า
 Shipments=การจัดส่ง
 ShowSending=Show Shipments
-Receivings=รายรับ
+Receivings=Delivery Receipts
 SendingsArea=พื้นที่การจัดส่ง
 ListOfSendings=รายชื่อของการจัดส่ง
 SendingMethod=วิธีการจัดส่งสินค้า
diff --git a/htdocs/langs/th_TH/sms.lang b/htdocs/langs/th_TH/sms.lang
index 946f0f823aa6b0de128c99c98a805ac24150d152..23884a4efe3e35cd1de89f929103d0070f1c12e1 100644
--- a/htdocs/langs/th_TH/sms.lang
+++ b/htdocs/langs/th_TH/sms.lang
@@ -49,5 +49,6 @@ SendSms=ส่งข้อความ
 SmsInfoCharRemain=nb ของอักขระที่เหลืออยู่
 SmsInfoNumero= (รูปแบบเช่นระหว่างประเทศ: 33899701761)
 DelayBeforeSending=หน่วงเวลาก่อนที่จะส่ง (นาที)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=ไม่มีเป้าหมาย ตรวจสอบการตั้งค่าของผู้ให้บริการ SMS ของคุณ
 
diff --git a/htdocs/langs/th_TH/supplier_proposal.lang b/htdocs/langs/th_TH/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/th_TH/supplier_proposal.lang
+++ b/htdocs/langs/th_TH/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/th_TH/trips.lang b/htdocs/langs/th_TH/trips.lang
index de1eac09a0ee7b03a2e086de27bfb33352c3ba5b..31a3e7208d87fe1c402a114e1d034d42fd22db8c 100644
--- a/htdocs/langs/th_TH/trips.lang
+++ b/htdocs/langs/th_TH/trips.lang
@@ -31,7 +31,7 @@ TripNDF=ข้อมูลรายงานค่าใช้จ่าย
 PDFStandardExpenseReports=แม่แบบมาตรฐานในการสร้างเอกสาร PDF สำหรับรายงานค่าใช้จ่าย
 ExpenseReportLine=รายงานค่าใช้จ่ายสาย
 TF_OTHER=อื่น ๆ
-TF_TRANSPORTATION=การขนส่ง
+TF_TRIP=Transportation
 TF_LUNCH=อาหารกลางวัน
 TF_METRO=รถไฟฟ้าใต้ดิน
 TF_TRAIN=รถไฟ
@@ -99,4 +99,5 @@ ConfirmSaveTrip=คุณแน่ใจหรือว่าต้องกา
 NoTripsToExportCSV=ไม่มีรายงานค่าใช้จ่ายในการส่งออกในช่วงเวลานี้
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/th_TH/users.lang b/htdocs/langs/th_TH/users.lang
index caedede273cdaa2ee22be6b2fc086a48f79f48a6..5fada578a20919732a8de093aaaed95a47af8c7c 100644
--- a/htdocs/langs/th_TH/users.lang
+++ b/htdocs/langs/th_TH/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=URL OpenID
 LoginUsingOpenID=ใช้ OpenID เข้าสู่ระบบ
 WeeklyHours=สัปดาห์ชั่วโมง
 ColorUser=สีของผู้ใช้
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/tr_TR/accountancy.lang b/htdocs/langs/tr_TR/accountancy.lang
index 50c3f00d632126bfc66aecd172ee27d97e8fa8a4..397054d93dc89883a867ebdd5bd0c36d2e3c6733 100644
--- a/htdocs/langs/tr_TR/accountancy.lang
+++ b/htdocs/langs/tr_TR/accountancy.lang
@@ -1,13 +1,13 @@
 # Dolibarr language file - en_US - Accounting Expert
 ACCOUNTING_EXPORT_SEPARATORCSV=Dışaaktarma dosyası için sütun ayırıcısı
 ACCOUNTING_EXPORT_DATE=Dışaaktarma dosyası için tarih biçimi
-ACCOUNTING_EXPORT_PIECE=Export the number of piece
-ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Export with global account
-ACCOUNTING_EXPORT_LABEL=Export the label
-ACCOUNTING_EXPORT_AMOUNT=Export the amount
-ACCOUNTING_EXPORT_DEVISE=Export the devise
-Selectformat=Select the format for the file
-ACCOUNTING_EXPORT_PREFIX_SPEC=Specify the prefix for the file name
+ACCOUNTING_EXPORT_PIECE=Parça sayısını dışaaktar
+ACCOUNTING_EXPORT_GLOBAL_ACCOUNT=Genel hesapla birlikte dışaaktar
+ACCOUNTING_EXPORT_LABEL=Etiketi dışaaktar
+ACCOUNTING_EXPORT_AMOUNT=Tutarı dışaaktar
+ACCOUNTING_EXPORT_DEVISE=Cihazı dışaaktar
+Selectformat=Dosya için biçimi seçin
+ACCOUNTING_EXPORT_PREFIX_SPEC=Dosya adı için öneki belirtin
 
 Accounting=Muhasebe
 Globalparameters=Genel parametreler
@@ -26,7 +26,6 @@ Selectmodelcsv=Bir dışaaktarım modeli seç
 Modelcsv_normal=Klasik dışaaktarım
 Modelcsv_CEGID=CEGID Uzmanına yönelik dışaaktarım
 BackToChartofaccounts=Hesap planı cirosu
-Back=Ciro
 
 Definechartofaccounts=Hesap planı tanımla
 Selectchartofaccounts=Hesap planı seç
@@ -36,7 +35,7 @@ AccountAccountingSuggest=Accounting account suggest
 Ventilation=Analiz
 
 CustomersVentilation=Müşteri analizi
-SuppliersVentilation=Tedarikç analizi
+SuppliersVentilation=Tedarikçi analizi
 TradeMargin=Ticaret kar oranı
 Reports=Raporlar
 ByCustomerInvoice=Müşteri faturalarına göre
@@ -56,14 +55,14 @@ AccountingVentilationCustomer=Müşteri hesabı analizi
 CAHTF=Total purchase supplier before tax
 InvoiceLines=Analiz edilecek fatura kalemleri
 InvoiceLinesDone=Analiz edilen fatura kalemleri
-IntoAccount=Ventilate in the accounting account
+IntoAccount=Muhasebe hesapları analizi
 
 Ventilate=Analiz
 VentilationAuto=Otomatik analiz
 
 Processing=İşleme
 EndProcessing=İşleme sonu
-AnyLineVentilate=Analiz edilecek herhangi bir kalem
+AnyLineVentilate=Analiz edilecek herhangi bir satır
 SelectedLines=Seçilen satırlar
 Lineofinvoice=Fatura satırı
 VentilatedinAccount=Muhasebe hesabında başarıyla analiz edildi
@@ -109,12 +108,8 @@ DelBookKeeping=Büyük defter kayıtlarını sil
 
 DescSellsJournal=Satış günlüğü
 DescPurchasesJournal=Alış günlüğü
-BankJournal=Banka günlüğü
-DescBankJournal=Nakit dışında her türlü ödemeyi içeren banka günlüğü
-CashJournal=Kasa günlüğü
-DescCashJournal=Nakit ödeme türünü içeren kasa günlüğü
 FinanceJournal=Finance journal
-DescFinanceJournal=Finance journal including all the types of payments by bank account
+DescFinanceJournal=Banka hesabından yapılan tüm ödeme türlerini içeren finans günlüğü
 
 CashPayment=Nakit ödeme
 
@@ -139,7 +134,7 @@ Pcgsubtype=Hesap sınıfı altında
 Accountparent=Hesabın kökü
 
 DescVentilCustomer=Müşteri faturalarınızın yıllık hesap analizi için buraya danışın
-TotalVente=Total turnover before tax
+TotalVente=Vergi öncesi toplam gelir
 TotalMarge=Toplam satışlar kar oranı
 DescVentilDoneCustomer=Burada müşteri faturaları satırlarına ve onların muhasebe hesaplarının listesine bakın.
 DescVentilTodoCustomer=Bir muhasebe hesabıyla müşteri faturanızın kalemlerini analiz edin
@@ -152,22 +147,28 @@ DescVentilDoneSupplier=Burada tedarikçi faturaları ve muhasebe hesapları sat
 ValidateHistory=Otomatikman doğrula
 
 ErrorAccountancyCodeIsAlreadyUse=Hata, kullanıldığı için bu muhasebe hesabını silemezsiniz
-
+MvtNotCorrectlyBalanced=Hareket doğru denkleştirilmemiş. Alacak = %s. Borç = %s
 FicheVentilation=Analiz kartı
-GeneralLedgerIsWritten=Operations are written in the general ledger
+GeneralLedgerIsWritten=İşlemler büyük deftere yazılır
 
 ##Export Journal Feature
-ExportFormat=Format of Export
-Prefixname=Prefix of export File
-Separate=Export separator
-Textframe=Frame of text value
-Headercol=Colname in header of file
-Fieldname=Name of Field
-Headername=Name in header
-Type=Type of fields
-Param=Additionnal parameters
-EnabledProduct=In Product
-EnabledTiers=In Tiers
-EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+ExportFormat=Dışaktarım biçimi
+Prefixname=Dışaktarım dosyası öneki
+Separate=Dışaaktarım ayırıcısı
+Textframe=Metin değeri çerçevesi
+Headercol=Dosya başlığındaki kolon adı
+Fieldname=Alan Adı
+Headername=Başlıktaki ad
+Type=Alan türü
+Param=Ek parametreler
+EnabledProduct=Ürünlerde
+EnabledTiers=In third party
+EnabledVat=KDV nde
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/tr_TR/admin.lang b/htdocs/langs/tr_TR/admin.lang
index 42b02e6c5648c5ef2091ce09b4a510c7d4084d67..a06f2b65411f63c2024f53313c8751f99345fa99 100644
--- a/htdocs/langs/tr_TR/admin.lang
+++ b/htdocs/langs/tr_TR/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Oluşturulan PDF de KDV ile ilgili tüm bilgileri giz
 HideDescOnPDF=Oluşturulan PDF de ürün açıklamasını gizle
 HideRefOnPDF=Oluşturulan PDF te ürün ref. ini gizle
 HideDetailsOnPDF=Oluşturulan PDF te ürün satır ayrıntılarını gizle
-PlaceCustomerAddressToIsoLocation=Fransız satandart konumunu kullan (müşteri adres konumu için La Posteà)
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Kütüphane
 UrlGenerationParameters=URL güvenliği için parametreler
 SecurityTokenIsUnique=Her URL için benzersiz bir güvenlik anahtarı kullan
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Geçerli bütün barkod değerlerini silmek istedi
 AllBarcodeReset=Tüm barkod değerleri silinmiştir
 NoBarcodeNumberingTemplateDefined=Barkod modülü ayarlarında hiç bir barkod numaralandırma şablonu etkinleştirilmemiştir.
 NoRecordWithoutBarcodeDefined=Barkod değerli hiç kayıt tanımlanmamış.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Kullanıcılar & gruplar
@@ -439,7 +440,7 @@ Module30Desc=Müşteri faturaları ve iade faturaları yönetimi. Tedarikçi fat
 Module40Name=Tedarikçiler
 Module40Desc=Tedarikçi yönetimi ve satın alma (siparişler ve faturalar)
 Module42Name=Kütükler
-Module42Desc=Kütüközellikleri (dosya, syslog)
+Module42Desc=Kütük özellikleri (dosya, syslog, ...)
 Module49Name=Düzenleyiciler
 Module49Desc=Düzenleyici yönetimi
 Module50Name=Ürünler
@@ -499,7 +500,7 @@ Module510Desc=Çalışanların maaş ve ödeme yönetimi
 Module520Name=Borç
 Module520Desc=Borçların yönetimi
 Module600Name=Duyurlar
-Module600Desc=Üçüncü parti kişilerine bazı Dolibarr iş etkinlikleriyle ilgili Eposta bildirimleri gönderin (her üçüncü parti için ayarlar tanımlanmıştır)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Bağışlar
 Module700Desc=Bağış yönetimi
 Module770Name=Gider raporları
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Uyarı öncesi süreler
 DelaysOfToleranceBeforeWarning=Uyarı öncesi süre toleransları
 DelaysOfToleranceDesc=Bu ekran, ekranda %s resmi ile bir uyarı bildirilmeden önce tolere edilebilecek süreleri tanımlamanızı sağlar.
 Delays_MAIN_DELAY_ACTIONS_TODO=Henüz gerçekleşmemiş planlı etkinlikler için uyarı yapılmadan önceki süre toleransı (gün olarak).
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Henüz işleme konulmamış siparişler öncesi uyarı yapılmadan önceki süre toleransı (gün olarak).
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Henüz işleme konulmamış müşteri siparişleri öncesi uyarı yapılmadan önceki süre toleransı (gün olarak).
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Henüz kapatılmamış teklifler öncesi uyarı yapılmadan önceki süre toleransı (gün olarak).
@@ -1087,6 +1089,7 @@ PathDirectory=Dizin
 SendmailOptionMayHurtBuggedMTA="PHP doğrudan posta" yöntemini kullanarak postalar gönderme özelliği bazı posta alıcısı sunucuları tarafından doğru olarak çözümlenemeyen bir posta iletisi oluşturur. Sonuç ise bazı postaların hatalı platformlar tarafından barındırılan kişiler tarafından okunamaz olmasıdır. Bu durum bazı İnternet sağlayıcılarına özgüdür (Örn: Fransa’daki Orange gibi). Bu Dolibarr ya da PHP için bir sorun değildir ama alıcı posta sunucusu için sorundur. Ancak Dolibarr’ı bundan korumak için Kurulum->Diğer de MAIN_FIX_FOR_BUGGED_MTA yı 1 yapma seçeneğini ekleyebilirsiniz. Ancak SMTP standartlarına sıkıca uyan diğer servislerde sorunla karşılaşabilirsiniz. Diğer bir çözüm (önerilen) ise hiçbir sakıncası olmayan "SMTP soket kütüphanesi" ni kullanmaktır.
 TranslationSetup=Çeviri yapılandırması
 TranslationDesc=Ekran görüntüsündeki dil değiştirilebilir:<br>* Genel olarak bu menüden <strong>Giriş - Kurulum - Görünüm</strong><br>* Yalnızca <strong>User display</strong> sekmesindeki kullanıcı formundan (ekranın tepesindeki oturum aça tıklayın).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Toplam etkin özel modül sayısı: <b>%s</b>
 YouMustEnableOneModule=Enaz 1 modül etkinleştirmelisiniz
 ClassNotFoundIntoPathWarning=Sınıf %s PHP youlnda bulunamadı
@@ -1427,7 +1430,7 @@ SyslogLevel=Düzey
 SyslogSimpleFile=Dosya
 SyslogFilename=Dosya adı ve yolu
 YouCanUseDOL_DATA_ROOT=Dolibarr’daki “belgeler” dizinindeki bir log (günlük) dosyası için DOL_DATA_ROOT/dolibarr.log u kullanabilirsiniz. Bu dosyayı saklamak için farklı bir yol (path) kullanabilirsiniz.
-ErrorUnknownSyslogConstant=%s değişmezi bilinen bir syslog değişmezi değildir
+ErrorUnknownSyslogConstant=%s Değişmezi bilinen bir Syslog değişmezi değildir
 OnlyWindowsLOG_USER=Windows yalnızca LOG_USER'ı destekler
 SyslogSentryDSN=Nöbetçi DSN
 SyslogSentryFromProject=Nöbetçi projenizdeki DSN
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Dış modülün uygulama içerisinden
 ConfFileMuseContainCustom=Uygulama içerisinden dış modül kurarken modül dosyalarını  <strong>%s</strong> dizini içinde kaydedin. Bu dizinin Dolibarr tarafından işlenebilmesi için <strong>conf/conf.php</strong> nizi ayarlayın <br>- <strong>$dolibarr_main_url_root_alt</strong> seçeneğini elde etmek için değeri buna <strong>$dolibarr_main_url_root_alt="/custom"</strong> etkinleştirin <br>- <strong>$dolibarr_main_document_root_alt</strong> değerini ise <strong>"%s/custom"</strong> a etkinleştirin.
 HighlightLinesOnMouseHover=Tablo satırlarını fare üzerine geldiğinde vurgula
 HighlightLinesColor=Fare üzerinden geçerken satır rengini vurgula (vurgulanmaması için boş bırakın)
+TextTitleColor=Color of page title
 LinkColor=Bağlantıların rengi
 PressF5AfterChangingThis=Bu değeri değiştirdikten sonra etkin olması için klavyede F5 tuşuna basın
 NotSupportedByAllThemes=Yalnızca eldy teması ile çalışır ancak tüm temalar tarafından desteklenmez
diff --git a/htdocs/langs/tr_TR/agenda.lang b/htdocs/langs/tr_TR/agenda.lang
index 1e146d96a6282aa232b289b022f0634b7f9ec36b..955ecb74d8c7bead25c96a01afb1221ece6f02b4 100644
--- a/htdocs/langs/tr_TR/agenda.lang
+++ b/htdocs/langs/tr_TR/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Tüm etkinlikler/görevler
 ViewCal=Ay görünümü
 ViewDay=Gün görünümü
 ViewWeek=Hafta görünümü
+ViewYear=Year view
 ViewPerUser=Kullanıcı görünümü başına
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Öntanımlı süzgeçler ile görünüm
 AutoActions= Gündemin otomatik doldurulması
 AgendaAutoActionDesc= Burada Dolibarr'ın otomatik olarak gündemde oluşturmasını istediğiniz etkinlikleri tanımlayın. İşaretli bir şey yoksa (varsayılan olarak) sadece el ile girilen etkinlikler gündeme dahil edilecektir.
diff --git a/htdocs/langs/tr_TR/bills.lang b/htdocs/langs/tr_TR/bills.lang
index 1818a3b3fc182f33545776aecd40a1f0805f0fc3..f144dd78a3f90071618e32b8c4eff1a93234cf38 100644
--- a/htdocs/langs/tr_TR/bills.lang
+++ b/htdocs/langs/tr_TR/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Halihazırda yapılmış ödemeler
 PaymentsBackAlreadyDone=Zaten yapılmış geri ödemeler
 PaymentRule=Ödeme kuralı
 PaymentMode=Ödeme türü
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Ödeme türü
 PaymentTerm=Ödeme koşulu
 PaymentConditions=Ödeme koşulları
@@ -184,6 +186,7 @@ ShowInvoice=Fatura göster
 ShowInvoiceReplace=Değiştirilen faturayı göster
 ShowInvoiceAvoir=İade faturası göster
 ShowInvoiceDeposit=Nakit avans faturası göster
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Ödeme göster
 AlreadyPaid=Zaten ödenmiş
 AlreadyPaidBack=Zaten geri ödenmiş
@@ -221,6 +224,7 @@ NonPercuRecuperable=Kurtarılamaz
 SetConditions=Ödeme koşullarını ayarla
 SetMode=Ödeme biçimini ayarla
 Billed=Faturalanmış
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Fatura şablonu
 RepeatableInvoices=Fatura şablonları
 Repeatable=Şablon
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Bu tutardan vazgeçilmiştir (müşteri kötü bir müşt
 HelpAbandonOther=Bir hata olduğundan dolayı bu tutardan vazgeçilmiştir (örneğin yanlış müşteri ya da bir faturanın başka faturayla değiştirilmesi durumu gibi)
 IdSocialContribution=Sosyal/mali vergi ödeme kimliği
 PaymentId=Ödeme no
+PaymentRef=Payment ref.
 InvoiceId=Fatura no
 InvoiceRef=Fatura ref.
 InvoiceDateCreation=Fatura oluşturulma tarihi
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=İlgili tedarikçi faturaları
 LatestRelatedBill=Son ilgili fatura
 WarningBillExist=Uyarı, bir yada çok fatura zaten var
 MergingPDFTool=Birleştirme PDF aracı
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Derhal
@@ -393,6 +402,7 @@ Reported=Gecikmiş
 DisabledBecausePayments=Bazı ödemeler olduğundan dolayı mümkün değil
 CantRemovePaymentWithOneInvoicePaid=En az bir fatura ödenmiş olarak sınıflandırıldığı için ödemeyi silemezsiniz
 ExpectedToPay=Beklenen ödeme
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Bu ödeme ile ödenmiş
 ClosePaidInvoicesAutomatically=Tamamı ödenmiş bütün standart ve değiştirilmiş faturaları "Ödendi" olarak sınıflandır.
 ClosePaidCreditNotesAutomatically=Tamamı ödenmiş iade faturalarını "Ödendi" olarak sınıflandır.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Not: Bu liste, satış temsilcisi olarak bağlı ol
 RevenueStamp=Bandrol
 YouMustCreateInvoiceFromThird=Bu seçenek, yalnızca fatura oluştururken, üçüncü parti *müşteri* sekmesinde belirir
 PDFCrabeDescription=Fatura PDF şablonu Crabe. Tam fatura şablonu  (Önerilen şablon)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Standart faturalar için numarayı  %syymm-nnnn biçiminde ve iade faturaları için %syymm-nnnn biçiminde göster, yy yıl, mm ay ve nnnn boşluksuz ve 0 olmayan bir dizidir.
 MarsNumRefModelDesc1=Sayı biçimleri, standart faturalar için %syymm-nnnn, değiştirilen faturalar için %syymm-nnnn, nakit avans faturaları için %syymm-nnnn ve alacak dekontları için %syymm-nnnn şeklindedir. Burada yy yıl, mm ay ve nnnn boşluksuz ve 0'a dönüşmeyen bir sayıdır.
 TerreNumRefModelError=$syymm ile başlayan bir fatura hali hazırda vardır ve bu sıra dizisi için uygun değildir. Bu modülü etkinleştirmek için onu kaldırın ya da adını değiştirin.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=Bu hakediş sondur.
 CantBeLessThanMinPercent=Hakediş önceki hakedişin değerinden daha az olamaz.
 NoSituations=Açık pozisyon yok
 InvoiceSituationLast=Son ve genel fatura
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/tr_TR/boxes.lang b/htdocs/langs/tr_TR/boxes.lang
index a5fa2003f93af8fb8a67d188828c86b02e7f569e..4ded31dc4ec8b055027e879c1e4c69d44335cf80 100644
--- a/htdocs/langs/tr_TR/boxes.lang
+++ b/htdocs/langs/tr_TR/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Müşteri faturaları
 ForCustomersOrders=Müşteri siparişleri
 ForProposals=Teklifler
 LastXMonthRolling=Devreden son %s ay
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/tr_TR/categories.lang b/htdocs/langs/tr_TR/categories.lang
index 21b297acec5d56f5b0431147b299a40345f1481f..993be74c94b8a2506414375e37e75051daf9458f 100644
--- a/htdocs/langs/tr_TR/categories.lang
+++ b/htdocs/langs/tr_TR/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Ürün etiketi/kategorisi
 MembersCategoryShort=Üye etiketi/kategorisi
 SuppliersCategoriesShort=Tedarikçi etiketleri/kategorileri
 CustomersCategoriesShort=Müşteri etiketleri/kategorileri
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Müşt./aday kategorileri
 ProductsCategoriesShort=ürün etiketleri/kategorileri
 MembersCategoriesShort=Üye etiketleri/kategorileri
diff --git a/htdocs/langs/tr_TR/companies.lang b/htdocs/langs/tr_TR/companies.lang
index 16ac1ac177a52758c87f66297c4f6522ff862c93..7479b69327a81d14fc821bd65f216dab3c03c30b 100644
--- a/htdocs/langs/tr_TR/companies.lang
+++ b/htdocs/langs/tr_TR/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (RC)
 ProfId2MA=Id prof. 2 (patente)
 ProfId3MA=Id prof. 3 (IF)
 ProfId4MA=Id prof. 4 (CNSS)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof. Id 1 (RFC).
 ProfId2MX=Prof Id 2 (R.. P. IMSS)
diff --git a/htdocs/langs/tr_TR/compta.lang b/htdocs/langs/tr_TR/compta.lang
index 6a8afdc6d52fb883c55a39566e0bee2b9d0a2067..9b2f4e777e93eff3606585166a8d7b7752d0b6d8 100644
--- a/htdocs/langs/tr_TR/compta.lang
+++ b/htdocs/langs/tr_TR/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Teminat faturalarını içermez
 DepositsAreIncluded=- Teminat faturalarını içerir
 LT2ReportByCustomersInInputOutputModeES=Üçüncü parti IRPF Raporu
 LT1ReportByCustomersInInputOutputModeES=RE Üçüncü partiye göre rapor
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Müşteriye göre alınan ve ödenen KDV raporu
 VATReportByCustomersInDueDebtMode=Müşteriye göre alınan ve ödenen KDV raporu
 VATReportByQuartersInInputOutputMode=Orana göre alınan ve ödenen KDV raporu
diff --git a/htdocs/langs/tr_TR/cron.lang b/htdocs/langs/tr_TR/cron.lang
index 020bd4c4850cef270cb1116dccf711a95fbf90bc..528c9ecf9aae367a2f7d123e41a1f75093839ff5 100644
--- a/htdocs/langs/tr_TR/cron.lang
+++ b/htdocs/langs/tr_TR/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=Unix ortamında komut satırını her 5 dakikada bir ça
 CronExplainHowToRunWin=Mikrosot (tm) Windows ortamında komut satırını her 5 dakikada bir çalıştırmak için Planlanmış görev araçlarını kullanmalısınız
 # Menu
 CronJobs=Planlı işler
-CronListActive=Etkin/programlı işler listesi
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=Etkin olmayan işler listesi
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Son çalıştırma
 CronLastOutput=Son çalıştırma çıktısı
@@ -35,8 +36,8 @@ CronInfo=Planlı iş modülü planlanmış işlerin yürütülmesini sağlar
 CronWaitingJobs=İş bekliyor
 CronTask=İş
 CronNone=Hiçbiri
-CronDtStart=Başlama tarihi
-CronDtEnd=Son tarih
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Sonraki yürütme
 CronDtLastLaunch=Son yürütme
 CronFrequency=Sıklık
@@ -51,6 +52,7 @@ CronNoJobs=Kayıtlı iş yok
 CronPriority=Öncelik
 CronLabel=Açıklama
 CronNbRun=Başlatma sayısı
+CronMaxRun=Max nb. launch
 CronEach=Her
 JobFinished=İş başlatıldı ve bitirildi
 #Page card
diff --git a/htdocs/langs/tr_TR/deliveries.lang b/htdocs/langs/tr_TR/deliveries.lang
index 4d84683bc5c75060650a13370e53fc27a2081dc9..504345e0b2709c7d65dab2d4d934b692dc46d9c0 100644
--- a/htdocs/langs/tr_TR/deliveries.lang
+++ b/htdocs/langs/tr_TR/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=<b>%s</b> Teslimat fişini silmek istediğiniz emin
 DeliveryMethod=Teslimat yöntemi
 TrackingNumber=İzleme numarası
 DeliveryNotValidated=Teslimat doğrulanmadı
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Adı ve İmzası:
 ToAndDate=Teslim alan ___________________________________ Tarih _____ / _____ /__________
diff --git a/htdocs/langs/tr_TR/holiday.lang b/htdocs/langs/tr_TR/holiday.lang
index 4cccf0170f2e146d36206138a901eda69085dd9e..b3f772207fee6040d934d97d6d1a735f4582e9c1 100644
--- a/htdocs/langs/tr_TR/holiday.lang
+++ b/htdocs/langs/tr_TR/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=Bu sayfayı görmek için İzinler modülünü etkinleştirmelisi
 NotConfigModCP=Bu sayfayı görmeniz için İzinler modülünü yapılandırmalısınız. Bunu yapmak için <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> bağlantısına tıklayın </ a>.
 NoCPforUser=Hiç uygun gününüz yok.
 AddCP=Bir izin isteği yap
-Employe=Çalışan
 DateDebCP=Başlama tarihi
 DateFinCP=Bitiş tarihi
 DateCreateCP=Oluşturma tarihi
@@ -23,7 +22,7 @@ ReviewedByCP=İnceleyen
 DescCP=Açıklama
 SendRequestCP=İzin isteği oluştur
 DelayToRequestCP=İzin istekleri enaz <b>%s gün</b> önce yapolmalıdır.
-MenuConfCP=İzin bakiyelerini düzenle
+MenuConfCP=Balance of leaves
 UpdateAllCP=İzinleri güncelle
 SoldeCPUser=İzin bakiyesi <b>%s</b> gündür.
 ErrorEndDateCP=Başlama tarihinden büyük bir bitiş tarihi seçmelisiniz.
@@ -79,9 +78,9 @@ PrevSoldeCP=Önceki Bakiye
 NewSoldeCP=Yeni Bakiye
 alreadyCPexist=Bu dönem için bir izin isteği zaten yapılmış.
 UserName=Adı
-Employee=Çalışan
 FirstDayOfHoliday=Tatilin birinci günü
 LastDayOfHoliday=Tatilin son günü
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Aylık güncelleme
 ManualUpdate=Elle güncelleme
 HolidaysCancelation=İzin isteği iptali
@@ -141,4 +140,7 @@ HolidaysRefusedBody=%s - %s arası izin isteğiniz aşağıdaki nedenden dolayı
 HolidaysCanceled=İptal edilen izin istekleri
 HolidaysCanceledBody=%s - %s arası izin isteğiniz iptal edilmiştir.
 NewByMonth=Her ay eklenen
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Farklı izin türleri ayarlamak için <strong>Giriş - Ayarlar - Sözlükler - İzin türleri</strong> menüsüne git.
diff --git a/htdocs/langs/tr_TR/hrm.lang b/htdocs/langs/tr_TR/hrm.lang
index daa831abdfb492d037f73cdef1cca0f0c172d4f7..fe81d2057f0fc8eb41cced303759d16affc45a40 100644
--- a/htdocs/langs/tr_TR/hrm.lang
+++ b/htdocs/langs/tr_TR/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=İK - İşlev listesi
 ListOfEmployees=Çalışanlar listesi
 Employees=Çalışanlar
 Employee=Çalışanlar
+Employe=Employe
 NewEmployee=Yeni çalışan
 EmployeeCard=Çalışan kartı
diff --git a/htdocs/langs/tr_TR/interventions.lang b/htdocs/langs/tr_TR/interventions.lang
index 690cabab9dad47e443c16e0b9fd48f44e13e2b8f..65ebf82a5ee75fd573d7794fab2a2142f49f2c36 100644
--- a/htdocs/langs/tr_TR/interventions.lang
+++ b/htdocs/langs/tr_TR/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Sayıyı %syymm-nnnn olarak gösterir, yy: yıl, mm: ay
 PacificNumRefModelError=$syymm Başlayan bir müdahale kartı zaten var ve sıra bu dizi modeli ile uyumlu değildir. Modülü etkinleştirmek için kaldırın ya da yeniden adlandırın.
 PrintProductsOnFichinter=Müdahale kartında ürünleri yazdır
 PrintProductsOnFichinterDetails=Siparişlerden oluşturulan müdahaleler
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Müdahale kimliği
 InterRef=Müdahele ref.
diff --git a/htdocs/langs/tr_TR/mails.lang b/htdocs/langs/tr_TR/mails.lang
index 7189bbb19e0bc9e7ba3c6b6fccce1188b6da75d2..3dfab1313db703fbf097ace29071f7d8bf6cb163 100644
--- a/htdocs/langs/tr_TR/mails.lang
+++ b/htdocs/langs/tr_TR/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey="Okuma Alındısı" ve "Abonelik İptali" için kullanılan
 EMailSentToNRecipients=EMail sent to %s recipients.
 XTargetsAdded=<b>%s</b> alıcılar listesine eklendi
 EachInvoiceWillBeAttachedToEmail=Varsayılan fatura belgesi şablonu kullanan bir belge oluşturulacak ve her epostaya eklenecektir.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=%s (%s) faturası için anımsatma
 SendRemind=Anımsatmayı Eposta ile gönder
 RemindSent=%s anımsatma(lar) gönderildi
diff --git a/htdocs/langs/tr_TR/main.lang b/htdocs/langs/tr_TR/main.lang
index a2e3fb84d6fae871454f3e2acfc111c4bd8ed277..15b6749d49e5fe6b6c1351af4cd58a4fdb6df5a9 100644
--- a/htdocs/langs/tr_TR/main.lang
+++ b/htdocs/langs/tr_TR/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%d %b %Y %H:%M
 FormatDateHourText=%d %B %Y %H:%M
 DatabaseConnection=Veritabanı bağlantısı
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Çeviri yok
 NoRecordFound=Kayıt bulunamadı
 NoError=Hata yok
@@ -105,6 +106,7 @@ NotePrivate=Not (özel)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr birim fiyatlar için hassasiyeti <b>%s</b> ondalık olarak sınırlandırmıştır.
 DoTest=Deneme
 ToFilter=Süzgeç
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Uyarı, gecikme toleransını aşan en az bir var.
 yes=evet
 Yes=Evet
@@ -228,6 +230,8 @@ Now=Şimdi
 HourStart=Başlama saati
 Date=Tarih
 DateAndHour=Tarih ve saat
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Başlama tarihi
 DateEnd=Bitiş tarih
 DateCreation=Oluşturma tarihi
@@ -608,6 +612,7 @@ TotalMan=Toplam
 NeverReceived=Hiç alınmadı
 Canceled=Vazgeçildi
 YouCanChangeValuesForThisListFromDictionarySetup=Bu listedeki değerleri ayarlar - sözlük menüsünden değiştirebilirsiniz
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Renk
 Documents=Bağlı dosyalar
 DocumentsNb=Bağlı dosyalar (%s)
@@ -695,6 +700,7 @@ Test=Deneme
 Element=Unsur
 NoPhotoYet=Henüz resim yok
 HomeDashboard=Özet girişi
+Dashboard=Dashboard
 Deductible=Düşülebilir
 from=itibaren
 toward=yönünde
diff --git a/htdocs/langs/tr_TR/margins.lang b/htdocs/langs/tr_TR/margins.lang
index da3f92d7b4ce19816d257c0c0ae55f736d48bb92..32a519d43ff70a2422a8de0eafec66cb452f35c4 100644
--- a/htdocs/langs/tr_TR/margins.lang
+++ b/htdocs/langs/tr_TR/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Ürün veya hizmet seç
 StartDate=İlk tarih
 EndDate=Son tarih
 Launch=Başlat
-ForceBuyingPriceIfNull=Boşsa alış fiyatına zorla
-ForceBuyingPriceIfNullDetails=eğer "AÇIK" sa, kar oranı satırda sıfır olacaktır (alış fiyatı = satış fiyatı), aksi durumda ("KAPALI"), kar oranı satış fiyatına eşit olacaktır (alış fiyatı = 0)
+ForceBuyingPriceIfNull=Eğer tanımlanmamışsa alış/maliyet fiyatını satış fiyatına zorla
+ForceBuyingPriceIfNullDetails=Eğer alış/maliyet fiyatı tanımlanmamışsa ve bu seçenek "AÇIK" ise satırda oran sıfır olacaktır (alış/maliyet fiyatı = satış fiyatı) aksi durumda ("KAPALI") ve oran önerilen varsayılana eşit olacaktır.
 MARGIN_METHODE_FOR_DISCOUNT=Genel indirimler için kar oranı yöntemi
 UseDiscountAsProduct=Ürün olarak
 UseDiscountAsService=Hizmet olarak
@@ -35,8 +35,9 @@ MargeBrute=Ham oran
 MargeNette=Net kar oranı
 MargeType1=En iyi tedarikçi fiyatı kar oranı
 MargeType2=Ağırlıklı Ortalama Fiyatta Kar Oranı (AOF)
-MARGIN_TYPE_DETAILS=Ham kar oranı : Satış fiyatı - Alış fiyatı<br/>Net oran : Satış fiyatı - Maliyet fiyatı
-MarginTypeDesc=En iyi Satınalma fiyatı kar oranı: Satış fiyatı - Ürün kartında tanımlanan eniyi tedarikçi fiyatı<br/>Ağırlıklı Ortalama Fiyatı (AOF) : Satış fiyatı - Ürün Ağırlıklı Ortalama Fiyatı
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Maliyet fiyatı
 BuyingCost=Maliyet fiyatı
 UnitCharges=Birim masrafları
diff --git a/htdocs/langs/tr_TR/oauth.lang b/htdocs/langs/tr_TR/oauth.lang
index 9d19548fcac7d0c232a7953d9f8975295db0d763..b4fb55454b41cb00a76666ac7d86ff57c8db7eac 100644
--- a/htdocs/langs/tr_TR/oauth.lang
+++ b/htdocs/langs/tr_TR/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Belirteç silindi
 RequestAccess=Erişim ve kaydedilecek yeni bir belirteç alma isteği/yenilemesi için buraya tıklayın
 DeleteAccess=Belirteçi silmek için burayı tıkla
 UseTheFollowingUrlAsRedirectURI=OAuth sağlayıcınız üzerinde kimlik oluştururken Yönlendirme URI olarak aşağıdaki URL'yi kullanın:
-ListOfSupportedOauthProviders=Burada OAuth2 sağlayıcınız tarafından verilen kimliği girin. Yalnızca desteklenen OAuth2 sağlayıcıları burada görünebilir. Bu ayarlar OAuth2 kimlik doğrulaması gerektiren diğer modüller tarafından kullanılabilir.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Parolası
diff --git a/htdocs/langs/tr_TR/orders.lang b/htdocs/langs/tr_TR/orders.lang
index 4faf8530d7fe97644bf263d75dd750c6bd9ea025..9263f424e29f6bcb5308eca02225e9f026c03ddb 100644
--- a/htdocs/langs/tr_TR/orders.lang
+++ b/htdocs/langs/tr_TR/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=İşlenecek siparişler
 NoOpenedOrders=Açık sipariş yok
 NoOtherOpenedOrders=Başka açık sipariş yok
 NoDraftOrders=Taslak sipariş yok
-NoOrder=Sipariş yok
+NoOrder=No order
 NoSupplierOrder=Tedarikçi siparişi yok
 OtherOrders=Diğer siparişler
 LastOrders=Son %s müşteri siparişi
diff --git a/htdocs/langs/tr_TR/other.lang b/htdocs/langs/tr_TR/other.lang
index eb92f8f0e1b3416a0d8ef75ffa3960a16f8ef030..c8ed58d6a2c05901ef17cb1673c39cccd2b9c7da 100644
--- a/htdocs/langs/tr_TR/other.lang
+++ b/htdocs/langs/tr_TR/other.lang
@@ -238,3 +238,8 @@ ToExport=Dışaaktar
 NewExport=Yeni dışaaktarım
 ##### External sites #####
 ExternalSites=Dış siteler
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/tr_TR/paypal.lang b/htdocs/langs/tr_TR/paypal.lang
index 3842ebc0510f3a564f096ce4788bc7f47b69e58f..16014ed61e4d2492e71af8bd9f1a9f9410ae6484 100644
--- a/htdocs/langs/tr_TR/paypal.lang
+++ b/htdocs/langs/tr_TR/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Test/sandbox modu
 PAYPAL_API_USER=API kullanıcı adı
 PAYPAL_API_PASSWORD=API parolası
 PAYPAL_API_SIGNATURE=API imzası
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY="Dahili" (kredi kartı+paypal) ya da sadece "Paypal" ödemesi sunar
 PaypalModeIntegral=Tümlev
 PaypalModeOnlyPaypal=Yalnızca PayPal
diff --git a/htdocs/langs/tr_TR/products.lang b/htdocs/langs/tr_TR/products.lang
index 4657f608f7b7691811441cedd7f34b67424af97a..1666d45193429f671b5fe133658f954b90ed4087 100644
--- a/htdocs/langs/tr_TR/products.lang
+++ b/htdocs/langs/tr_TR/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net HAOF birimi
 CostPmpHT=Net toplam HAOF
 ProductUsedForBuild=Üretim tarafından kendiliğinden tüketilir
 ProductBuilded=Üretim tamamlandı
-ProductsMultiPrice=Ürün çoklu fiyatı
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Müşteri fiyatları (ürünlerin ya da hizmetlerin, çoklu fiyatlar)
 ProductSellByQuarterHT=Üç aylık vergi öncesi ürün cirosu
 ServiceSellByQuarterHT=Üç aylık vergi öncesi hizmet cirosu
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=PDF dosyası seç
 IncludingProductWithTag=Etiketli ürün/hizmet içerir
 DefaultPriceRealPriceMayDependOnCustomer=Varsayılan fiyat, gerçek fiyat müşteriye bağlı olabilir
 WarningSelectOneDocument=Lütfen enaz bir belge seçin
-DefaultUnitToShow=Birimler
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/tr_TR/projects.lang b/htdocs/langs/tr_TR/projects.lang
index 0941bfbd9ec9410e3934b85b1110c297b85a35fc..1975b2fc4f0afe7790ce49384b90d83f7bf778ce 100644
--- a/htdocs/langs/tr_TR/projects.lang
+++ b/htdocs/langs/tr_TR/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=Bu görünüm, okumanıza izin verilen tüm proje ve gör
 ProjectsDesc=Bu görünüm tüm projeleri içerir (size verilen kullanıcı izinleri her şeyi görmenizi sağlar).
 MyTasksDesc=Bu görünüm ilgilisi olduğunuz projelerle ya da görevlerle sınırlıdır (türü ne olursa olsun).
 OnlyOpenedProject=Yalnızca açık projeler görünür (taslak ya da kapalı durumdaki projeler görünmez)
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Bu görünüm okuma izininiz olan tüm projeleri ve görevleri içerir.
 TasksDesc=Bu görünüm tüm projeleri ve görevleri içerir (size verilen kullanıcı izinleri her şeyi görmenizi sağlar).
 AllTaskVisibleButEditIfYouAreAssigned=Böyle projeler için bütün görevler görünür, ancak; yalnızca size atanmış görevlere süre girebilirsiniz. Süre girmek istediğiniz görevi kendinize atayın.
@@ -29,7 +30,9 @@ OfficerProject=Proje sorumlusu
 LastProjects=Son %s proje
 AllProjects=Tüm projeler
 OpenedProjects=Açık projeler
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Durumuna göre açık projelerin fırsat tutarı
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Proje listesi
 ShowProject=Proje göster
 SetProject=Proje ayarla
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=%s görev değiştirildi
 TaskDeletedInDolibarr=%s görev silindi
 OpportunityStatus=Fırsat durumu
 OpportunityStatusShort=Fırs. durumu
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Fırsat tutarı
 OpportunityAmountShort=Fırs. tutarı
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=İlgili olarak bu kullanıcı olan projeler
 TasksWithThisUserAsContact=Bu kullanıcıya atanmış görevler
 ResourceNotAssignedToProject=Projeye atanmamış
 ResourceNotAssignedToTask=Göreve atanmamış
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Görevi bana ata
 AssignTask=Ata
 ProjectOverview=Genel bakış
@@ -179,7 +185,7 @@ YouCanCompleteRef=Eğer referansı bazı bilgilerle tamamlamak isterseniz (arama
 OpenedProjectsByThirdparties=Üçüncü partiye göre açık projeler
 OpportunityTotalAmount=Fırsatlar toplam tutarı
 OpportunityPonderatedAmount=Fırsatların ağırlık tutarı
-OpportunityPonderatedAmountDesc=Olabilirliği ile fırsatlar ağırlıklı tutarı (fırsatın durumuna bağlı olarak)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Araştırma
 OppStatusQUAL=Nitelendirme
 OppStatusPROPO=Teklif
diff --git a/htdocs/langs/tr_TR/propal.lang b/htdocs/langs/tr_TR/propal.lang
index dc16ed6cdb7105877fce84b3191e4770f38efb3c..4f86d05fe2c402e07e049bdd7ac0651151efeb25 100644
--- a/htdocs/langs/tr_TR/propal.lang
+++ b/htdocs/langs/tr_TR/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Değiştirilen son %s  teklif
 AllPropals=Tüm teklifler
 LastProposals=Son teklifler
 SearchAProposal=Teklif ara
+NoProposal=No proposal
 ProposalsStatistics=Teklif istatistikleri
 NumberOfProposalsByMonth=Aylara göre sayısı
 AmountOfProposalsByMonthHT=Aylık tutar (vergi hariç)
@@ -62,7 +63,8 @@ DatePropal=Teklif tarihi
 DateEndPropal=Son geçerlilik tarihi
 DateEndPropalShort=Bitiş tarihi
 ValidityDuration=Geçerlilik süresi
-CloseAs=Durumu kapalı
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Faturalanmış olarak sınıflandır
 BuildBill=Fatura oluştur
 ErrorPropalNotFound=%s teklifi bulunamadı
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Varsayılan model oluşturma
 DefaultModelPropalToBill=Bir teklifi kapatma sırasında varsayılan şablon (faturalanacak)
 DefaultModelPropalClosed=Bir teklifi kapatma sırasında varsayılan şablon (faturalanmamış)
 ProposalCustomerSignature=Yazılı kabul, firma kaşesi, tarih ve imza
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/tr_TR/salaries.lang b/htdocs/langs/tr_TR/salaries.lang
index 1b3402f130c420e54704784382c13c97a4fb9344..189ba6f0738ceb1a64d9aabd4fd690824e26969f 100644
--- a/htdocs/langs/tr_TR/salaries.lang
+++ b/htdocs/langs/tr_TR/salaries.lang
@@ -3,7 +3,6 @@ SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Ücret ödemeleri muhasebe kodu
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Mali yükümlülük için muhasebe kodu
 Salary=Ücret
 Salaries=Ücretler
-Employee=Çalışan
 NewSalaryPayment=Yeni ücret ödemesi
 SalaryPayment=Ücret ödemesi
 SalariesPayments=Ücret ödemeleri
diff --git a/htdocs/langs/tr_TR/sendings.lang b/htdocs/langs/tr_TR/sendings.lang
index 0dedf8f81edb99406f3563b17ec2db32d0d91dde..49cc77c15d280b8de441a8f8c530ffb842dc0943 100644
--- a/htdocs/langs/tr_TR/sendings.lang
+++ b/htdocs/langs/tr_TR/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=Tüm sevkiyatlar
 Shipment=Sevkiyat
 Shipments=Sevkiyatlar
 ShowSending=Sevkiyatları göster
-Receivings=Kabuller
+Receivings=Delivery Receipts
 SendingsArea=Sevkiyat alanı
 ListOfSendings=Sevkiyat listesi
 SendingMethod=Sevkiyat yöntemi
diff --git a/htdocs/langs/tr_TR/sms.lang b/htdocs/langs/tr_TR/sms.lang
index ad487cafca64a02c9be8abb884110478ec1d1652..b998f8655fd314cd5ed61da388813f29fb03af77 100644
--- a/htdocs/langs/tr_TR/sms.lang
+++ b/htdocs/langs/tr_TR/sms.lang
@@ -49,5 +49,6 @@ SendSms=SMS gönder
 SmsInfoCharRemain=Kalan karakter sayısı
 SmsInfoNumero= (Uluslar arası biçim örneği: +33899701761)
 DelayBeforeSending=Gönderimden önceki süre (Dakika)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Hedef yok. SMS sağlayıcı kurulumu kontrol edin.
 
diff --git a/htdocs/langs/tr_TR/supplier_proposal.lang b/htdocs/langs/tr_TR/supplier_proposal.lang
index 2be7c854254e59f763c79733afc121fd3c72aed8..6a4b9ade86fa8d8e6b4e28118465845199a5c938 100644
--- a/htdocs/langs/tr_TR/supplier_proposal.lang
+++ b/htdocs/langs/tr_TR/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Tedarikçi teklifleri
 supplier_proposalDESC=Tedarikçilere yapılan fiyat isteklerini yönet
-supplier_proposalMENU_LEFT_TITLE=Tedarikçi teklifleri
-supplier_proposalMENU_LEFT_TITLE_NEW=Yeni istek
-supplier_proposalMENU_LEFT_TITLE_LIST=Liste
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Fiyat isteği
 CommRequests=Fiyat istekleri
 SearchRequest=İstek ara
@@ -11,7 +10,7 @@ DraftRequests=Taslak istekler
 LastModifiedRequests=Değiştirilen son %s fiyat isteği
 RequestsOpened=Fiyat isteği aç
 SupplierProposalArea=Tedarikçi teklifleri alanı
-SupplierProposalShort=Tedarikçi teklifli
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Tedarikçi teklifleri
 NewAskPrice=Yeni fiyat isteği
 NewAsk=Yeni istek
diff --git a/htdocs/langs/tr_TR/trips.lang b/htdocs/langs/tr_TR/trips.lang
index 3f2df411c8082754ad59230522b5bfdedc3ea4df..7b70fc85c3df61bad3bc8e14ae7e9a28c3e5ffaa 100644
--- a/htdocs/langs/tr_TR/trips.lang
+++ b/htdocs/langs/tr_TR/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Gider raporu bilgileri
 PDFStandardExpenseReports=Bu gider raporu için PDF belgesi oluşturulacak standart şablon
 ExpenseReportLine=Gider rapor satırı
 TF_OTHER=Diğer
-TF_TRANSPORTATION=Nakliye
+TF_TRIP=Transportation
 TF_LUNCH=Öğle yemeği
 TF_METRO=Metro
 TF_TRAIN=Tren
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Bu gider raporunu doğrulamak istediğinizden emin misiniz?
 NoTripsToExportCSV=Bu dönem için dışaaktarılacak gider raporu yok.
 ExpenseReportPayment=Gider raporu ödemesi
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Ödenecek gider raporları
diff --git a/htdocs/langs/tr_TR/users.lang b/htdocs/langs/tr_TR/users.lang
index 572e9c6cc28f5ffe354e7bc6c9e16aef0eaf4fcf..6dc111874fc6e55f33a40961c9ca357c1353aa28 100644
--- a/htdocs/langs/tr_TR/users.lang
+++ b/htdocs/langs/tr_TR/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Oturum açmak için OpenID kullan
 WeeklyHours=Haftalık saatler
 ColorUser=Kullanıcı rengi
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/uk_UA/accountancy.lang b/htdocs/langs/uk_UA/accountancy.lang
index 5ee7e8de9f54f863782f095d33e3d4f43b2e78d2..87e3200f57c3544cb69c4a4d2a00867fbc5af632 100644
--- a/htdocs/langs/uk_UA/accountancy.lang
+++ b/htdocs/langs/uk_UA/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Return
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sells journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/uk_UA/admin.lang b/htdocs/langs/uk_UA/admin.lang
index 1f9cafaa44f2f9b2175b28f00d684fbff510ff12..5e964edc78f7452da8090fda4767f6a3aa998d2a 100644
--- a/htdocs/langs/uk_UA/admin.lang
+++ b/htdocs/langs/uk_UA/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Hide all information related to VAT on generated PDF
 HideDescOnPDF=Hide products description on generated PDF
 HideRefOnPDF=Hide products ref. on generated PDF
 HideDetailsOnPDF=Hide products lines details on generated PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Library
 UrlGenerationParameters=Parameters to secure URLs
 SecurityTokenIsUnique=Use a unique securekey parameter for each URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Users & groups
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Notifications
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Donations
 Module700Desc=Donation management
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Delays before warning
 DelaysOfToleranceBeforeWarning=Tolerance delays before warning
 DelaysOfToleranceDesc=This screen allows you to define the tolerated delays before an alert is reported on screen with picto %s for each late element.
 Delays_MAIN_DELAY_ACTIONS_TODO=Delay tolerance (in days) before alert on planned events not yet realised
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on orders not yet processed
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on suppliers orders not yet processed
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Delay tolerance (in days) before alert on proposals to close
@@ -1087,6 +1089,7 @@ PathDirectory=Directory
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/uk_UA/agenda.lang b/htdocs/langs/uk_UA/agenda.lang
index 4fe6a4f868c15cb9dce69a34e3395e3d73f1f4e0..a971f021e588d4251310970d99c1e7118dbb26cf 100644
--- a/htdocs/langs/uk_UA/agenda.lang
+++ b/htdocs/langs/uk_UA/agenda.lang
@@ -35,7 +35,9 @@ AllActions= All events/tasks
 ViewCal=Month view
 ViewDay=Day view
 ViewWeek=Week view
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= View with predefined filters
 AutoActions= Automatic filling
 AgendaAutoActionDesc= Define here events for which you want Dolibarr to create automatically an event in agenda. If nothing is checked (by default), only manual actions will be included in agenda.
diff --git a/htdocs/langs/uk_UA/bills.lang b/htdocs/langs/uk_UA/bills.lang
index 1d3d5eac39e83a764eeaa5f86d2bc75a166618c6..a61f713ac2ed4742eb10b721d1bf8e423593d1db 100644
--- a/htdocs/langs/uk_UA/bills.lang
+++ b/htdocs/langs/uk_UA/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Платежі вже зроблені
 PaymentsBackAlreadyDone=Повернення платежу вже зроблене
 PaymentRule=Правила оплати
 PaymentMode=Тип платежу
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Умови платежу
 PaymentConditions=Умови платежу
@@ -184,6 +186,7 @@ ShowInvoice=Показати рахунок-фактуру
 ShowInvoiceReplace=Показати замінюючий рахунок-фактуру
 ShowInvoiceAvoir=Показати кредитое авізо
 ShowInvoiceDeposit=Показати рахунок-фактуру на внесок
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Показати платіж
 AlreadyPaid=Вже сплачений
 AlreadyPaidBack=Already paid back
@@ -221,6 +224,7 @@ NonPercuRecuperable=Не підлягає стягненню
 SetConditions=Встановити умови оплати
 SetMode=Встановити режим оплати
 Billed=Виставлений
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Шаблон рахунку
 RepeatableInvoices=Шаблони рахунків
 Repeatable=Шаблон
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Від цієї суми відмовився Покуп
 HelpAbandonOther=Від цієї суми відмовилися через помилку (наприклад, неправильний клієнт або рахунок-фактура був замінений на іншій)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Код платежу
+PaymentRef=Payment ref.
 InvoiceId=Код рахунку-фактури
 InvoiceRef=Invoice ref.
 InvoiceDateCreation=Дата створення рахунку-фактури
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Попередження! Рахунок чи рахунки вже існують
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Негайно
@@ -393,6 +402,7 @@ Reported=Затриман
 DisabledBecausePayments=Not possible since there are some payments
 CantRemovePaymentWithOneInvoicePaid=Can't remove payment since there is at least one invoice classified paid
 ExpectedToPay=Expected payment
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Paid by this payment
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third pa
 RevenueStamp=Revenue stamp
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Invoice PDF template Crabe. A complete invoice template (recommended Template)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=A bill starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Фінальний і основний рахунок
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/uk_UA/boxes.lang b/htdocs/langs/uk_UA/boxes.lang
index 950d332346677fc11ba4fe42f790fd26da98178d..81c29fa5c96ade330644e0742ada1003808df21d 100644
--- a/htdocs/langs/uk_UA/boxes.lang
+++ b/htdocs/langs/uk_UA/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Customers invoices
 ForCustomersOrders=Замовлення клієнтів
 ForProposals=Пропозиції
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/uk_UA/categories.lang b/htdocs/langs/uk_UA/categories.lang
index 81c73356c9313f8f6b58ca91fb632a9d894f335b..ccf22bb5003ca9dd4d684ff764aeb69eef7f739b 100644
--- a/htdocs/langs/uk_UA/categories.lang
+++ b/htdocs/langs/uk_UA/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo./Prosp. categories
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/uk_UA/companies.lang b/htdocs/langs/uk_UA/companies.lang
index e31c347605e091b48daeb2403b0c36b513540c0e..292fcafe238315d5e9cb6c07e0574a9f3979f7ba 100644
--- a/htdocs/langs/uk_UA/companies.lang
+++ b/htdocs/langs/uk_UA/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (R.C.)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (R.F.C).
 ProfId2MX=Prof Id 2 (R..P. IMSS)
diff --git a/htdocs/langs/uk_UA/compta.lang b/htdocs/langs/uk_UA/compta.lang
index d73f580cc8b8a84426e53b5a0c38c03dc8511bb6..07b609a17e428435a16e70932ee1763b18a0a7fa 100644
--- a/htdocs/langs/uk_UA/compta.lang
+++ b/htdocs/langs/uk_UA/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Deposit invoices are nor included
 DepositsAreIncluded=- Deposit invoices are included
 LT2ReportByCustomersInInputOutputModeES=Report by third party IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/uk_UA/cron.lang b/htdocs/langs/uk_UA/cron.lang
index bd85715642ec700a51b7365535762b2760ae54e5..21786df66cfcf912dd12c81c03fbb604e2255c26 100644
--- a/htdocs/langs/uk_UA/cron.lang
+++ b/htdocs/langs/uk_UA/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=List of disabled jobs
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Last run
 CronLastOutput=Last run output
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Job
 CronNone=None
-CronDtStart=Start date
-CronDtEnd=End date
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Next execution
 CronDtLastLaunch=Last execution
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=No jobs registered
 CronPriority=Priority
 CronLabel=Description
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
diff --git a/htdocs/langs/uk_UA/deliveries.lang b/htdocs/langs/uk_UA/deliveries.lang
index c513f3e347c28f0df14813efd7136bc833d51445..47e210744704ae9f083d6f1cf6630f7037ad794b 100644
--- a/htdocs/langs/uk_UA/deliveries.lang
+++ b/htdocs/langs/uk_UA/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Are you sure you want to delete delivery receipt <b
 DeliveryMethod=Delivery method
 TrackingNumber=Tracking number
 DeliveryNotValidated=Delivery not validated
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Name and Signature :
 ToAndDate=To___________________________________ on ____/_____/__________
diff --git a/htdocs/langs/uk_UA/holiday.lang b/htdocs/langs/uk_UA/holiday.lang
index 4beedf7021fa5d57420d3598b776c0af633abbed..a15b2d97224d732e1eceb7b84ff0947dd62e1cff 100644
--- a/htdocs/langs/uk_UA/holiday.lang
+++ b/htdocs/langs/uk_UA/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Employee
 DateDebCP=Start date
 DateFinCP=End date
 DateCreateCP=Creation date
@@ -23,7 +22,7 @@ ReviewedByCP=Will be reviewed by
 DescCP=Description
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=You must select an end date greater than the start date.
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Name
-Employee=Employee
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Monthly update
 ManualUpdate=Manual update
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/uk_UA/hrm.lang b/htdocs/langs/uk_UA/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/uk_UA/hrm.lang
+++ b/htdocs/langs/uk_UA/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/uk_UA/interventions.lang b/htdocs/langs/uk_UA/interventions.lang
index 5c08c3063534c07d4eea4a2096402a33cccadd41..cbcba219f1139b397fa8fe54ef5292c2ddf22248 100644
--- a/htdocs/langs/uk_UA/interventions.lang
+++ b/htdocs/langs/uk_UA/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Return numero with format %syymm-nnnn where yy is year,
 PacificNumRefModelError=An intervention card starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
 PrintProductsOnFichinter=Print products on intervention card
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/uk_UA/mails.lang b/htdocs/langs/uk_UA/mails.lang
index a74e8af8d6ab5dbe26abfff1f2b12c27311b152c..81339a2c0ba26071358d6df58a31e75cd7f45b46 100644
--- a/htdocs/langs/uk_UA/mails.lang
+++ b/htdocs/langs/uk_UA/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail sent to %s recipients.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/uk_UA/main.lang b/htdocs/langs/uk_UA/main.lang
index 893835659b85531d23bca5575bd31571ec8c6edd..69bee21c3f816b8dd7ee6d2951fe2a5ddd72cd21 100644
--- a/htdocs/langs/uk_UA/main.lang
+++ b/htdocs/langs/uk_UA/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=Підключеня до Бази Данних
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Немає перекладу
 NoRecordFound=Записів не знайдено
 NoError=Немає помилок
@@ -105,6 +106,7 @@ NotePrivate=Note (private)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr was setup to limit precision of unit prices to <b>%s</b> decimals.
 DoTest=Test
 ToFilter=Filter
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Warning, you have at least one element that has exceeded the tolerance delay.
 yes=yes
 Yes=Yes
@@ -228,6 +230,8 @@ Now=Now
 HourStart=Start hour
 Date=Date
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Date start
 DateEnd=Date end
 DateCreation=Creation date
@@ -608,6 +612,7 @@ TotalMan=Total
 NeverReceived=Never received
 Canceled=Canceled
 YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Color
 Documents=Linked files
 DocumentsNb=Linked files (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=No pictures available yet
 HomeDashboard=Home summary
+Dashboard=Dashboard
 Deductible=Deductible
 from=from
 toward=toward
diff --git a/htdocs/langs/uk_UA/margins.lang b/htdocs/langs/uk_UA/margins.lang
index 7db5ea4892e47d38f81f47f47b7beb00e1177280..27bb4de9fa34bef827f4501268d659670a983767 100644
--- a/htdocs/langs/uk_UA/margins.lang
+++ b/htdocs/langs/uk_UA/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Choose product or service
 StartDate=Start date
 EndDate=End date
 Launch=Start
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=As a product
 UseDiscountAsService=As a service
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/uk_UA/oauth.lang b/htdocs/langs/uk_UA/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/uk_UA/oauth.lang
+++ b/htdocs/langs/uk_UA/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/uk_UA/orders.lang b/htdocs/langs/uk_UA/orders.lang
index 29c2a0b5e21d6c38fe10363675a1bc04bdd5b309..c0bfc3ccce39be48af6c839b61305244d9261c47 100644
--- a/htdocs/langs/uk_UA/orders.lang
+++ b/htdocs/langs/uk_UA/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=No draft orders
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Other orders
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/uk_UA/other.lang b/htdocs/langs/uk_UA/other.lang
index 5fff107fde9aef8b5b102b11516d063214201ce7..c53f32346fe31f4f3ab22fa18f5933e33d5e97e2 100644
--- a/htdocs/langs/uk_UA/other.lang
+++ b/htdocs/langs/uk_UA/other.lang
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=New export
 ##### External sites #####
 ExternalSites=External sites
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/uk_UA/paypal.lang b/htdocs/langs/uk_UA/paypal.lang
index a4204f919825385332e460f03280067caa62dbb4..c6905f2ecc4299f59205dda7302732f0f7e67666 100644
--- a/htdocs/langs/uk_UA/paypal.lang
+++ b/htdocs/langs/uk_UA/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Mode test/sandbox
 PAYPAL_API_USER=API username
 PAYPAL_API_PASSWORD=API password
 PAYPAL_API_SIGNATURE=API signature
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Offer payment "integral" (Credit card+Paypal) or "Paypal" only
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/uk_UA/products.lang b/htdocs/langs/uk_UA/products.lang
index 0faea3691b0bd0e55ac1001d24cb88993cab4347..3926759fccadd1d5d9a3e2b3caf0d17fda789b7f 100644
--- a/htdocs/langs/uk_UA/products.lang
+++ b/htdocs/langs/uk_UA/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Production completed
-ProductsMultiPrice=Product multi-price
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/uk_UA/projects.lang b/htdocs/langs/uk_UA/projects.lang
index 7c94e3eb257ae07dea71f32084407e741fd94b1b..f6f6dd8ecaf09ead7b9c5d088f9ce307da860db9 100644
--- a/htdocs/langs/uk_UA/projects.lang
+++ b/htdocs/langs/uk_UA/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=This view presents all projects (your user permissions grant you permission to view everything).
 MyTasksDesc=This view is limited to projects or tasks you are a contact for (whatever is the type).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=This view presents all projects and tasks you are allowed to read.
 TasksDesc=This view presents all projects and tasks (your user permissions grant you permission to view everything).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Officer project
 LastProjects=Last %s projects
 AllProjects=All projects
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=List of projects
 ShowProject=Show project
 SetProject=Set project
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/uk_UA/propal.lang b/htdocs/langs/uk_UA/propal.lang
index d12d7595f94d6a48a961cc635329e86ed543a7ea..79ae1f1cd50add8ebf9f9f1275481055ed84ce06 100644
--- a/htdocs/langs/uk_UA/propal.lang
+++ b/htdocs/langs/uk_UA/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Last %s modified proposals
 AllPropals=All proposals
 LastProposals=Last proposals
 SearchAProposal=Search a proposal
+NoProposal=No proposal
 ProposalsStatistics=Commercial proposal's statistics
 NumberOfProposalsByMonth=Number by month
 AmountOfProposalsByMonthHT=Amount by month (net of tax)
@@ -62,7 +63,8 @@ DatePropal=Date of proposal
 DateEndPropal=Validity ending date
 DateEndPropalShort=Date end
 ValidityDuration=Validity duration
-CloseAs=Close with status
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Classify billed
 BuildBill=Build invoice
 ErrorPropalNotFound=Propal %s not found
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Default model creation
 DefaultModelPropalToBill=Default template when closing a business proposal (to be invoiced)
 DefaultModelPropalClosed=Default template when closing a business proposal (unbilled)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/uk_UA/salaries.lang b/htdocs/langs/uk_UA/salaries.lang
index 953a9c7540cbb06d6209140b32aaa0d23261e324..da177410860fb80d4d2d0872ec3b258ed787ba0e 100644
--- a/htdocs/langs/uk_UA/salaries.lang
+++ b/htdocs/langs/uk_UA/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Salary
 Salaries=Salaries
-Employee=Employee
 NewSalaryPayment=New salary payment
 SalaryPayment=Salary payment
 SalariesPayments=Salaries payments
diff --git a/htdocs/langs/uk_UA/sendings.lang b/htdocs/langs/uk_UA/sendings.lang
index fa7da0b00794647c45f8777bbc68fb23a31e1c0e..fb7b9c08868e29621711a9651a94ed955c6b223f 100644
--- a/htdocs/langs/uk_UA/sendings.lang
+++ b/htdocs/langs/uk_UA/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Shipment
 Shipments=Shipments
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Shipments area
 ListOfSendings=List of shipments
 SendingMethod=Shipping method
diff --git a/htdocs/langs/uk_UA/sms.lang b/htdocs/langs/uk_UA/sms.lang
index 0ec0e61a588bedc541daf217d80885bddf755973..70066caac96971420d7c55b09879e200888763c2 100644
--- a/htdocs/langs/uk_UA/sms.lang
+++ b/htdocs/langs/uk_UA/sms.lang
@@ -1,53 +1,54 @@
 # Dolibarr language file - Source file is en_US - sms
-# Sms=Sms
-# SmsSetup=Sms setup
-# SmsDesc=This page allows you to define globals options on SMS features
-# SmsCard=SMS Card
-# AllSms=All SMS campains
-# SmsTargets=Targets
-# SmsRecipients=Targets
-# SmsRecipient=Target
-# SmsTitle=Description
-# SmsFrom=Sender
-# SmsTo=Target
-# SmsTopic=Topic of SMS
-# SmsText=Message
-# SmsMessage=SMS Message
-# ShowSms=Show Sms
-# ListOfSms=List SMS campains
-# NewSms=New SMS campain
-# EditSms=Edit Sms
-# ResetSms=New sending
-# DeleteSms=Delete Sms campain
-# DeleteASms=Remove a Sms campain
-# PreviewSms=Previuw Sms
-# PrepareSms=Prepare Sms
-# CreateSms=Create Sms
-# SmsResult=Result of Sms sending
-# TestSms=Test Sms
-# ValidSms=Validate Sms
-# ApproveSms=Approve Sms
-# SmsStatusDraft=Draft
-# SmsStatusValidated=Validated
-# SmsStatusApproved=Approved
-# SmsStatusSent=Sent
-# SmsStatusSentPartialy=Sent partially
-# SmsStatusSentCompletely=Sent completely
-# SmsStatusError=Error
-# SmsStatusNotSent=Not sent
-# SmsSuccessfulySent=Sms correctly sent (from %s to %s)
-# ErrorSmsRecipientIsEmpty=Number of target is empty
-# WarningNoSmsAdded=No new phone number to add to target list
-# ConfirmValidSms=Do you confirm validation of this campain ?
-# ConfirmResetMailing=Warning, if you make a reinit of Sms campain <b>%s</b>, you will allow to make a mass sending of it a second time. Is it really what you wan to do ?
-# ConfirmDeleteMailing=Do you confirm removing of campain ?
-# NbOfRecipients=Number of targets
-# NbOfUniqueSms=Nb dof unique phone numbers
-# NbOfSms=Nbre of phon numbers
-# ThisIsATestMessage=This is a test message
-# SendSms=Send SMS
-# SmsInfoCharRemain=Nb of remaining characters
-# SmsInfoNumero= (format international ie : +33899701761)
-# DelayBeforeSending=Delay before sending (minutes)
-# SmsNoPossibleRecipientFound=No target available. Check setup of your SMS provider.
+Sms=Sms
+SmsSetup=Sms setup
+SmsDesc=This page allows you to define globals options on SMS features
+SmsCard=SMS Card
+AllSms=All SMS campains
+SmsTargets=Targets
+SmsRecipients=Targets
+SmsRecipient=Target
+SmsTitle=Description
+SmsFrom=Sender
+SmsTo=Target
+SmsTopic=Topic of SMS
+SmsText=Message
+SmsMessage=SMS Message
+ShowSms=Show Sms
+ListOfSms=List SMS campains
+NewSms=New SMS campain
+EditSms=Edit Sms
+ResetSms=New sending
+DeleteSms=Delete Sms campain
+DeleteASms=Remove a Sms campain
+PreviewSms=Previuw Sms
+PrepareSms=Prepare Sms
+CreateSms=Create Sms
+SmsResult=Result of Sms sending
+TestSms=Test Sms
+ValidSms=Validate Sms
+ApproveSms=Approve Sms
+SmsStatusDraft=Draft
+SmsStatusValidated=Validated
+SmsStatusApproved=Approved
+SmsStatusSent=Sent
+SmsStatusSentPartialy=Sent partially
+SmsStatusSentCompletely=Sent completely
+SmsStatusError=Error
+SmsStatusNotSent=Not sent
+SmsSuccessfulySent=Sms correctly sent (from %s to %s)
+ErrorSmsRecipientIsEmpty=Number of target is empty
+WarningNoSmsAdded=No new phone number to add to target list
+ConfirmValidSms=Do you confirm validation of this campain ?
+ConfirmResetMailing=Warning, if you make a reinit of Sms campain <b>%s</b>, you will allow to make a mass sending of it a second time. Is it really what you wan to do ?
+ConfirmDeleteMailing=Do you confirm removing of campain ?
+NbOfRecipients=Number of targets
+NbOfUniqueSms=Nb dof unique phone numbers
+NbOfSms=Nbre of phon numbers
+ThisIsATestMessage=This is a test message
+SendSms=Send SMS
+SmsInfoCharRemain=Nb of remaining characters
+SmsInfoNumero= (format international ie : +33899701761)
+DelayBeforeSending=Delay before sending (minutes)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
+SmsNoPossibleRecipientFound=No target available. Check setup of your SMS provider.
 
diff --git a/htdocs/langs/uk_UA/supplier_proposal.lang b/htdocs/langs/uk_UA/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/uk_UA/supplier_proposal.lang
+++ b/htdocs/langs/uk_UA/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/uk_UA/trips.lang b/htdocs/langs/uk_UA/trips.lang
index ce9f0970e7c331996ee194c7613983060795a647..5ccdf8d0e37dcf680cc33691fdce1fd5644f2d53 100644
--- a/htdocs/langs/uk_UA/trips.lang
+++ b/htdocs/langs/uk_UA/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Other
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Lunch
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/uk_UA/users.lang b/htdocs/langs/uk_UA/users.lang
index 5b85ec80cf7e8a65d24d83c7359f831f9d150669..8a7dfcfe78753c5bda61b8d82208350a9e362652 100644
--- a/htdocs/langs/uk_UA/users.lang
+++ b/htdocs/langs/uk_UA/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Use OpenID to login
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/uz_UZ/accountancy.lang b/htdocs/langs/uz_UZ/accountancy.lang
index 5ee7e8de9f54f863782f095d33e3d4f43b2e78d2..87e3200f57c3544cb69c4a4d2a00867fbc5af632 100644
--- a/htdocs/langs/uz_UZ/accountancy.lang
+++ b/htdocs/langs/uz_UZ/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Return
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sells journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/uz_UZ/admin.lang b/htdocs/langs/uz_UZ/admin.lang
index c81fe4c28afda6683163ea69aba69202b77179ec..9cff117f74abd2a9b1a059a41efe0b7e74134f95 100644
--- a/htdocs/langs/uz_UZ/admin.lang
+++ b/htdocs/langs/uz_UZ/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Hide all information related to VAT on generated PDF
 HideDescOnPDF=Hide products description on generated PDF
 HideRefOnPDF=Hide products ref. on generated PDF
 HideDetailsOnPDF=Hide products lines details on generated PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Library
 UrlGenerationParameters=Parameters to secure URLs
 SecurityTokenIsUnique=Use a unique securekey parameter for each URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Users & groups
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=Notifications
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Donations
 Module700Desc=Donation management
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Delays before warning
 DelaysOfToleranceBeforeWarning=Tolerance delays before warning
 DelaysOfToleranceDesc=This screen allows you to define the tolerated delays before an alert is reported on screen with picto %s for each late element.
 Delays_MAIN_DELAY_ACTIONS_TODO=Delay tolerance (in days) before alert on planned events not yet realised
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on orders not yet processed
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on suppliers orders not yet processed
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Delay tolerance (in days) before alert on proposals to close
@@ -1087,6 +1089,7 @@ PathDirectory=Directory
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/uz_UZ/agenda.lang b/htdocs/langs/uz_UZ/agenda.lang
index d8776508edcf523910ab3b06f56e1c9feb947af3..a0ccdfd26ea417d55219526b58c9ec073df47938 100644
--- a/htdocs/langs/uz_UZ/agenda.lang
+++ b/htdocs/langs/uz_UZ/agenda.lang
@@ -35,7 +35,9 @@ AllActions= All events/tasks
 ViewCal=Month view
 ViewDay=Day view
 ViewWeek=Week view
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= View with predefined filters
 AutoActions= Automatic filling
 AgendaAutoActionDesc= Define here events for which you want Dolibarr to create automatically an event in agenda. If nothing is checked (by default), only manual actions will be included in agenda.
diff --git a/htdocs/langs/uz_UZ/bills.lang b/htdocs/langs/uz_UZ/bills.lang
index 6a474886ee903714c336a4cec9f301bc999b989d..a4f919a6f49bb096b27addc8ef61adb5ebf42c9a 100644
--- a/htdocs/langs/uz_UZ/bills.lang
+++ b/htdocs/langs/uz_UZ/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Payments already done
 PaymentsBackAlreadyDone=Payments back already done
 PaymentRule=Payment rule
 PaymentMode=Payment type
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=Show invoice
 ShowInvoiceReplace=Show replacing invoice
 ShowInvoiceAvoir=Show credit note
 ShowInvoiceDeposit=Show deposit invoice
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Show payment
 AlreadyPaid=Already paid
 AlreadyPaidBack=Already paid back
@@ -221,6 +224,7 @@ NonPercuRecuperable=Non-recoverable
 SetConditions=Set payment terms
 SetMode=Set payment mode
 Billed=Billed
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=This amount has been abandoned (customer said to be a bad
 HelpAbandonOther=This amount has been abandoned since it was an error (wrong customer or invoice replaced by an other for example)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=Payment id
+PaymentRef=Payment ref.
 InvoiceId=Invoice id
 InvoiceRef=Invoice ref.
 InvoiceDateCreation=Invoice creation date
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Immediate
@@ -393,6 +402,7 @@ Reported=Delayed
 DisabledBecausePayments=Not possible since there are some payments
 CantRemovePaymentWithOneInvoicePaid=Can't remove payment since there is at least one invoice classified paid
 ExpectedToPay=Expected payment
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Paid by this payment
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third pa
 RevenueStamp=Revenue stamp
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=Invoice PDF template Crabe. A complete invoice template (recommended Template)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=A bill starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/uz_UZ/boxes.lang b/htdocs/langs/uz_UZ/boxes.lang
index 634b058f6d40f39c5434322b8c1ee431c6efccfa..8595403dc30264fc25e0890343920207a3b2fcc2 100644
--- a/htdocs/langs/uz_UZ/boxes.lang
+++ b/htdocs/langs/uz_UZ/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Customers invoices
 ForCustomersOrders=Customers orders
 ForProposals=Proposals
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/uz_UZ/categories.lang b/htdocs/langs/uz_UZ/categories.lang
index 81c73356c9313f8f6b58ca91fb632a9d894f335b..ccf22bb5003ca9dd4d684ff764aeb69eef7f739b 100644
--- a/htdocs/langs/uz_UZ/categories.lang
+++ b/htdocs/langs/uz_UZ/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo./Prosp. categories
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/uz_UZ/companies.lang b/htdocs/langs/uz_UZ/companies.lang
index e31c347605e091b48daeb2403b0c36b513540c0e..292fcafe238315d5e9cb6c07e0574a9f3979f7ba 100644
--- a/htdocs/langs/uz_UZ/companies.lang
+++ b/htdocs/langs/uz_UZ/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (R.C.)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (R.F.C).
 ProfId2MX=Prof Id 2 (R..P. IMSS)
diff --git a/htdocs/langs/uz_UZ/compta.lang b/htdocs/langs/uz_UZ/compta.lang
index d73f580cc8b8a84426e53b5a0c38c03dc8511bb6..07b609a17e428435a16e70932ee1763b18a0a7fa 100644
--- a/htdocs/langs/uz_UZ/compta.lang
+++ b/htdocs/langs/uz_UZ/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Deposit invoices are nor included
 DepositsAreIncluded=- Deposit invoices are included
 LT2ReportByCustomersInInputOutputModeES=Report by third party IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/uz_UZ/cron.lang b/htdocs/langs/uz_UZ/cron.lang
index bd85715642ec700a51b7365535762b2760ae54e5..21786df66cfcf912dd12c81c03fbb604e2255c26 100644
--- a/htdocs/langs/uz_UZ/cron.lang
+++ b/htdocs/langs/uz_UZ/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=List of disabled jobs
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Last run
 CronLastOutput=Last run output
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Job
 CronNone=None
-CronDtStart=Start date
-CronDtEnd=End date
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Next execution
 CronDtLastLaunch=Last execution
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=No jobs registered
 CronPriority=Priority
 CronLabel=Description
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
diff --git a/htdocs/langs/uz_UZ/deliveries.lang b/htdocs/langs/uz_UZ/deliveries.lang
index c513f3e347c28f0df14813efd7136bc833d51445..47e210744704ae9f083d6f1cf6630f7037ad794b 100644
--- a/htdocs/langs/uz_UZ/deliveries.lang
+++ b/htdocs/langs/uz_UZ/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Are you sure you want to delete delivery receipt <b
 DeliveryMethod=Delivery method
 TrackingNumber=Tracking number
 DeliveryNotValidated=Delivery not validated
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Name and Signature :
 ToAndDate=To___________________________________ on ____/_____/__________
diff --git a/htdocs/langs/uz_UZ/holiday.lang b/htdocs/langs/uz_UZ/holiday.lang
index 4beedf7021fa5d57420d3598b776c0af633abbed..a15b2d97224d732e1eceb7b84ff0947dd62e1cff 100644
--- a/htdocs/langs/uz_UZ/holiday.lang
+++ b/htdocs/langs/uz_UZ/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=Make a leave request
-Employe=Employee
 DateDebCP=Start date
 DateFinCP=End date
 DateCreateCP=Creation date
@@ -23,7 +22,7 @@ ReviewedByCP=Will be reviewed by
 DescCP=Description
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=You must select an end date greater than the start date.
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=Name
-Employee=Employee
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Monthly update
 ManualUpdate=Manual update
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/uz_UZ/interventions.lang b/htdocs/langs/uz_UZ/interventions.lang
index 5c08c3063534c07d4eea4a2096402a33cccadd41..cbcba219f1139b397fa8fe54ef5292c2ddf22248 100644
--- a/htdocs/langs/uz_UZ/interventions.lang
+++ b/htdocs/langs/uz_UZ/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Return numero with format %syymm-nnnn where yy is year,
 PacificNumRefModelError=An intervention card starting with $syymm already exists and is not compatible with this model of sequence. Remove it or rename it to activate this module.
 PrintProductsOnFichinter=Print products on intervention card
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/uz_UZ/mails.lang b/htdocs/langs/uz_UZ/mails.lang
index 87a1bd3c4d77c148a4c9554f25e94c5ca4becd9e..fbd7a14cd0471869ac1a1a0f1ec364a41ab9a244 100644
--- a/htdocs/langs/uz_UZ/mails.lang
+++ b/htdocs/langs/uz_UZ/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail sent to %s recipients.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/uz_UZ/main.lang b/htdocs/langs/uz_UZ/main.lang
index 7607fef02b1eeeedda000c886002c11aaa30b793..a0e5df748020b4c725232d7998dd3b7a24379b66 100644
--- a/htdocs/langs/uz_UZ/main.lang
+++ b/htdocs/langs/uz_UZ/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%d.%m.%Y %H:%M:%S
 FormatDateHourTextShort=%d %b %Y %H:%M
 FormatDateHourText=%d %B %Y %H:%M
 DatabaseConnection=Database connection
+NoTemplateDefined=No template defined for this email type
 NoTranslation=No translation
 NoRecordFound=No record found
 NoError=No error
@@ -105,6 +106,7 @@ NotePrivate=Note (private)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr was setup to limit precision of unit prices to <b>%s</b> decimals.
 DoTest=Test
 ToFilter=Filter
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Warning, you have at least one element that has exceeded the tolerance delay.
 yes=yes
 Yes=Yes
@@ -228,6 +230,8 @@ Now=Now
 HourStart=Start hour
 Date=Date
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Date start
 DateEnd=Date end
 DateCreation=Creation date
@@ -608,6 +612,7 @@ TotalMan=Total
 NeverReceived=Never received
 Canceled=Canceled
 YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Color
 Documents=Linked files
 DocumentsNb=Linked files (%s)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=No pictures available yet
 HomeDashboard=Home summary
+Dashboard=Dashboard
 Deductible=Deductible
 from=from
 toward=toward
diff --git a/htdocs/langs/uz_UZ/margins.lang b/htdocs/langs/uz_UZ/margins.lang
index 7db5ea4892e47d38f81f47f47b7beb00e1177280..27bb4de9fa34bef827f4501268d659670a983767 100644
--- a/htdocs/langs/uz_UZ/margins.lang
+++ b/htdocs/langs/uz_UZ/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Choose product or service
 StartDate=Start date
 EndDate=End date
 Launch=Start
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=As a product
 UseDiscountAsService=As a service
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/uz_UZ/orders.lang b/htdocs/langs/uz_UZ/orders.lang
index 29c2a0b5e21d6c38fe10363675a1bc04bdd5b309..c0bfc3ccce39be48af6c839b61305244d9261c47 100644
--- a/htdocs/langs/uz_UZ/orders.lang
+++ b/htdocs/langs/uz_UZ/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=No draft orders
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Other orders
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/uz_UZ/other.lang b/htdocs/langs/uz_UZ/other.lang
index 5fff107fde9aef8b5b102b11516d063214201ce7..c53f32346fe31f4f3ab22fa18f5933e33d5e97e2 100644
--- a/htdocs/langs/uz_UZ/other.lang
+++ b/htdocs/langs/uz_UZ/other.lang
@@ -238,3 +238,8 @@ ToExport=Export
 NewExport=New export
 ##### External sites #####
 ExternalSites=External sites
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/uz_UZ/paypal.lang b/htdocs/langs/uz_UZ/paypal.lang
index a4204f919825385332e460f03280067caa62dbb4..c6905f2ecc4299f59205dda7302732f0f7e67666 100644
--- a/htdocs/langs/uz_UZ/paypal.lang
+++ b/htdocs/langs/uz_UZ/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Mode test/sandbox
 PAYPAL_API_USER=API username
 PAYPAL_API_PASSWORD=API password
 PAYPAL_API_SIGNATURE=API signature
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Offer payment "integral" (Credit card+Paypal) or "Paypal" only
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/uz_UZ/products.lang b/htdocs/langs/uz_UZ/products.lang
index 0faea3691b0bd0e55ac1001d24cb88993cab4347..3926759fccadd1d5d9a3e2b3caf0d17fda789b7f 100644
--- a/htdocs/langs/uz_UZ/products.lang
+++ b/htdocs/langs/uz_UZ/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Production completed
-ProductsMultiPrice=Product multi-price
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/uz_UZ/projects.lang b/htdocs/langs/uz_UZ/projects.lang
index 7c94e3eb257ae07dea71f32084407e741fd94b1b..f6f6dd8ecaf09ead7b9c5d088f9ce307da860db9 100644
--- a/htdocs/langs/uz_UZ/projects.lang
+++ b/htdocs/langs/uz_UZ/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=This view presents all projects (your user permissions grant you permission to view everything).
 MyTasksDesc=This view is limited to projects or tasks you are a contact for (whatever is the type).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=This view presents all projects and tasks you are allowed to read.
 TasksDesc=This view presents all projects and tasks (your user permissions grant you permission to view everything).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Officer project
 LastProjects=Last %s projects
 AllProjects=All projects
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=List of projects
 ShowProject=Show project
 SetProject=Set project
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/uz_UZ/propal.lang b/htdocs/langs/uz_UZ/propal.lang
index d12d7595f94d6a48a961cc635329e86ed543a7ea..79ae1f1cd50add8ebf9f9f1275481055ed84ce06 100644
--- a/htdocs/langs/uz_UZ/propal.lang
+++ b/htdocs/langs/uz_UZ/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=Last %s modified proposals
 AllPropals=All proposals
 LastProposals=Last proposals
 SearchAProposal=Search a proposal
+NoProposal=No proposal
 ProposalsStatistics=Commercial proposal's statistics
 NumberOfProposalsByMonth=Number by month
 AmountOfProposalsByMonthHT=Amount by month (net of tax)
@@ -62,7 +63,8 @@ DatePropal=Date of proposal
 DateEndPropal=Validity ending date
 DateEndPropalShort=Date end
 ValidityDuration=Validity duration
-CloseAs=Close with status
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Classify billed
 BuildBill=Build invoice
 ErrorPropalNotFound=Propal %s not found
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Default model creation
 DefaultModelPropalToBill=Default template when closing a business proposal (to be invoiced)
 DefaultModelPropalClosed=Default template when closing a business proposal (unbilled)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/uz_UZ/salaries.lang b/htdocs/langs/uz_UZ/salaries.lang
index 953a9c7540cbb06d6209140b32aaa0d23261e324..da177410860fb80d4d2d0872ec3b258ed787ba0e 100644
--- a/htdocs/langs/uz_UZ/salaries.lang
+++ b/htdocs/langs/uz_UZ/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Salary
 Salaries=Salaries
-Employee=Employee
 NewSalaryPayment=New salary payment
 SalaryPayment=Salary payment
 SalariesPayments=Salaries payments
diff --git a/htdocs/langs/uz_UZ/sendings.lang b/htdocs/langs/uz_UZ/sendings.lang
index fa7da0b00794647c45f8777bbc68fb23a31e1c0e..fb7b9c08868e29621711a9651a94ed955c6b223f 100644
--- a/htdocs/langs/uz_UZ/sendings.lang
+++ b/htdocs/langs/uz_UZ/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Shipment
 Shipments=Shipments
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Shipments area
 ListOfSendings=List of shipments
 SendingMethod=Shipping method
diff --git a/htdocs/langs/uz_UZ/sms.lang b/htdocs/langs/uz_UZ/sms.lang
index 4e89bb247308eb692eef9e40892f306dda5dd27b..70066caac96971420d7c55b09879e200888763c2 100644
--- a/htdocs/langs/uz_UZ/sms.lang
+++ b/htdocs/langs/uz_UZ/sms.lang
@@ -49,5 +49,6 @@ SendSms=Send SMS
 SmsInfoCharRemain=Nb of remaining characters
 SmsInfoNumero= (format international ie : +33899701761)
 DelayBeforeSending=Delay before sending (minutes)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=No target available. Check setup of your SMS provider.
 
diff --git a/htdocs/langs/uz_UZ/trips.lang b/htdocs/langs/uz_UZ/trips.lang
index ce9f0970e7c331996ee194c7613983060795a647..5ccdf8d0e37dcf680cc33691fdce1fd5644f2d53 100644
--- a/htdocs/langs/uz_UZ/trips.lang
+++ b/htdocs/langs/uz_UZ/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Other
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Lunch
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/uz_UZ/users.lang b/htdocs/langs/uz_UZ/users.lang
index 5b85ec80cf7e8a65d24d83c7359f831f9d150669..8a7dfcfe78753c5bda61b8d82208350a9e362652 100644
--- a/htdocs/langs/uz_UZ/users.lang
+++ b/htdocs/langs/uz_UZ/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Use OpenID to login
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/vi_VN/accountancy.lang b/htdocs/langs/vi_VN/accountancy.lang
index e5caddd34040225b24da8f48184c9b24618d664c..5dca6ae1be8376dbbeab240678d71e0af9938777 100644
--- a/htdocs/langs/vi_VN/accountancy.lang
+++ b/htdocs/langs/vi_VN/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Chọn một mô hình xuất khẩu
 Modelcsv_normal=Cổ điển xuất khẩu
 Modelcsv_CEGID=Xuất khẩu theo hướng CEGID chuyên gia
 BackToChartofaccounts=Quay trở lại biểu đồ của tài khoản
-Back=Quay trở lại
 
 Definechartofaccounts=Xác định một biểu đồ của tài khoản
 Selectchartofaccounts=Chọn một biểu đồ của tài khoản
@@ -109,10 +108,6 @@ DelBookKeeping=Xóa các bản ghi của sổ kế toán tổng
 
 DescSellsJournal=Bán tạp chí
 DescPurchasesJournal=Mua tạp chí
-BankJournal=Tạp chí Ngân hàng
-DescBankJournal=Tạp chí Ngân hàng bao gồm tất cả các loại chi phí khác hơn tiền mặt
-CashJournal=Tạp chí Tiền
-DescCashJournal=Tiền tạp chí bao gồm cả các loại tiền thanh toán
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Tham khảo ý kiến ​​ở đây là danh sách các
 ValidateHistory=Tự động xác nhận
 
 ErrorAccountancyCodeIsAlreadyUse=Lỗi, bạn không thể xóa tài khoản kế toán này bởi vì nó được sử dụng
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/vi_VN/admin.lang b/htdocs/langs/vi_VN/admin.lang
index 4da3fea3a712a44415945ca0d2474094ee2da064..8ddfba3918e85275f0e2f0a72ccfe225f209cd57 100644
--- a/htdocs/langs/vi_VN/admin.lang
+++ b/htdocs/langs/vi_VN/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=Ẩn tất cả các thông tin liên quan đến thu
 HideDescOnPDF=Ẩn mô tả sản phẩm vào PDF được tạo ra
 HideRefOnPDF=Ẩn các sản phẩm tham chiếu trên PDF được tạo ra
 HideDetailsOnPDF=Ẩn chi tiết sản phẩm trên PDF được tạo ra
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=Thư viện
 UrlGenerationParameters=Các thông số để bảo mật URL
 SecurityTokenIsUnique=Sử dụng một tham số securekey duy nhất cho mỗi URL
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Bạn có chắc muốn xóa tất cả các giá
 AllBarcodeReset=Tất cả giá trị mã vạch đã được loại bỏ
 NoBarcodeNumberingTemplateDefined=Không có mẫu mã vạch đánh số được kích hoạt trong cài đặt mô-đun mã vạch.
 NoRecordWithoutBarcodeDefined=Không có bản ghi với không có mã vạch được xác định giá trị.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=Người dùng & nhóm
@@ -499,7 +500,7 @@ Module510Desc=Quản lý lương nhân viên và thanh toán
 Module520Name=Cho vay
 Module520Desc=Quản lý cho vay
 Module600Name=Thông báo
-Module600Desc=Gửi thông báo EMail trên một số sự kiện kinh doanh Dolibarr để liên hệ của bên thứ ba (thiết lập được xác định trên mỗi thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=Tài trợ
 Module700Desc=Quản lý tài trợ
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=Trì hoãn trước cảnh báo
 DelaysOfToleranceBeforeWarning=Khoảng trì hoãn trước cảnh báo
 DelaysOfToleranceDesc=Màn hình này cho phép bạn xác định trì hoãn trước khi chấp nhận một cảnh báo được báo cáo trên màn hình với Picto %s cho mỗi phần tử cuối.
 Delays_MAIN_DELAY_ACTIONS_TODO=Khoảng trì hoãn (theo ngày) trước khi cảnh báo về các sự kiện theo kế hoạch chưa thực hiện
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Khoảng trì hoãn (theo ngày) trước khi cảnh báo về đơn hàng chưa được xử lý
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Khoảng trì hoãn (theo ngày) trước khi cảnh báo trên đơn hàng nhà cung cấp chưa được xử lý
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Khoảng trì hoãn (theo ngày) trước khi cảnh báo về đơn hàng đề xuất để đóng
@@ -1087,6 +1089,7 @@ PathDirectory=Thư mục
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=Bạn phải có ít nhất 1 mô-đun cho phép
 ClassNotFoundIntoPathWarning=Lớp %s không tìm thấy con đường vào PHP
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Cài đặt các module bên ngoài t
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/vi_VN/agenda.lang b/htdocs/langs/vi_VN/agenda.lang
index 4cc79213136656b191257eec382af9b4918d34ec..24e6ab9434a98919427f45196cb17e54c71b9e64 100644
--- a/htdocs/langs/vi_VN/agenda.lang
+++ b/htdocs/langs/vi_VN/agenda.lang
@@ -35,7 +35,9 @@ AllActions= Tất cả các sự kiện / nhiệm vụ
 ViewCal=Xem tháng
 ViewDay=Ngày xem
 ViewWeek=Xem theo tuần
+ViewYear=Year view
 ViewPerUser=Trung bình mỗi người dùng xem
+ViewPerType=Per type view
 ViewWithPredefinedFilters= Xem với các bộ lọc được xác định trước
 AutoActions= Tự động điền
 AgendaAutoActionDesc= Xác định đây sự kiện mà bạn muốn Dolibarr để tạo ra tự động một sự kiện trong chương trình nghị sự. Nếu không có gì được kiểm tra (theo mặc định), chỉ có hành động thủ công sẽ được đưa vào chương trình nghị sự.
diff --git a/htdocs/langs/vi_VN/bills.lang b/htdocs/langs/vi_VN/bills.lang
index 24aa8e66863af674e7af9c7ae97ba9cd6e471251..78bd7ff8ca416c2b66b90a43e97ec508620190ce 100644
--- a/htdocs/langs/vi_VN/bills.lang
+++ b/htdocs/langs/vi_VN/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=Đã thanh toán
 PaymentsBackAlreadyDone=Đã thanh toán lại
 PaymentRule=Quy tắc thanh toán
 PaymentMode=Loại thanh toán
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Điều khoản thanh toán
 PaymentConditions=Điều khoản thanh toán
@@ -184,6 +186,7 @@ ShowInvoice=Hiển thị hóa đơn
 ShowInvoiceReplace=Hiển thị hóa đơn thay thế
 ShowInvoiceAvoir=Xem giấy báo có
 ShowInvoiceDeposit=Hiển thị hóa đơn ứng trước
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=Hiển thị thanh toán
 AlreadyPaid=Đã trả
 AlreadyPaidBack=Đã trả lại
@@ -221,6 +224,7 @@ NonPercuRecuperable=Không thể thu hồi
 SetConditions=Thiết lập điều khoản thanh toán
 SetMode=Thiết lập chế độ thanh toán
 Billed=Đã ra hóa đơn
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Hóa đơn mẫu
 RepeatableInvoices=Hoá đơn mẫu
 Repeatable=Mẫu
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=Số tiền này đã bị loại bỏ (khách hàng đư
 HelpAbandonOther=Số tiền này đã bị loại bỏ vì đó là một lỗi (ví dụ khách hàng sai hoặc hóa đơn được thay thế bằng hóa đơn khác)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=ID thanh toán
+PaymentRef=Payment ref.
 InvoiceId=ID hóa đơn
 InvoiceRef=Hóa đơn tham chiếu
 InvoiceDateCreation=Ngày tạo hóa đơn
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Hóa đơn nhà cung cấp liên quan
 LatestRelatedBill=Hóa đơn liên quan mới nhất
 WarningBillExist=Cảnh báo, một hoặc nhiều hóa đơn đã tồn tại
 MergingPDFTool=Công cụ sáp nhập PDF
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=Ngay lập tức
@@ -393,6 +402,7 @@ Reported=Bị trễ
 DisabledBecausePayments=Không được khi có nhiều khoản thanh toán
 CantRemovePaymentWithOneInvoicePaid=Không thể xóa bỏ thanh toán khi có ít nhất một hóa đơn được phân loại đã trả
 ExpectedToPay=Thanh toán dự kiến
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=Đã trả bởi khoản thanh toán này
 ClosePaidInvoicesAutomatically=Phân loại "Đã trả" tất cả các hóa đơn chuẩn, hóa đơn tình huống hoặc hóa đơn thay thế đã trả đủ.
 ClosePaidCreditNotesAutomatically=Phân loại các "Đã trả" tất cả các giấy báo có đã trả đủ trở lại.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Ghi chú: Danh sách này chỉ chứa các hoá đ
 RevenueStamp=Doanh thu đóng dấu
 YouMustCreateInvoiceFromThird=Tùy chọn này chỉ có sẵn khi tạo hóa đơn từ tab "khách hàng" của của bên thứ ba
 PDFCrabeDescription=Hóa đơn mẫu PDF Crabe. Một mẫu hóa đơn đầy đủ (mẫu đề nghị)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Quay về số với định dạng %ssyymm-nnnn cho hóa đơn chuẩn và %syymm-nnnn cho các giấy báo có nơi mà yy là năm, mm là tháng và nnnn là một chuỗi ngắt và không trở về 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=Bắt đầu ra một hóa đơn với $syymm mà đã tồn tại thì không tương thích với mô hình này của chuỗi. Xóa bỏ nó hoặc đổi tên nó để kích hoạt module này.
@@ -433,3 +444,11 @@ DisabledBecauseFinal=Tình huống này là cuối cùng
 CantBeLessThanMinPercent=Tiến trình này không thể nhỏ hơn giá trị của nó trong tình huống trước.
 NoSituations=No open situations
 InvoiceSituationLast=Hóa đơn cuối cùng và tổng hợp
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/vi_VN/boxes.lang b/htdocs/langs/vi_VN/boxes.lang
index 22852637d4dce6940e068fe8af21d33970c8ee2a..7f97a76e819effe189dd57451d53acffd05dece0 100644
--- a/htdocs/langs/vi_VN/boxes.lang
+++ b/htdocs/langs/vi_VN/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=Khách hàng hoá đơn
 ForCustomersOrders=Khách hàng đặt hàng
 ForProposals=Đề xuất
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/vi_VN/categories.lang b/htdocs/langs/vi_VN/categories.lang
index 98475983edd00171d5ef0f30ab77391137def01c..97ae2be2a0428471d0d8efdd8b54473602b220a1 100644
--- a/htdocs/langs/vi_VN/categories.lang
+++ b/htdocs/langs/vi_VN/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo. / Prosp. loại
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/vi_VN/companies.lang b/htdocs/langs/vi_VN/companies.lang
index 42761d98ccab4816a07f10a67cbb1e18b7ee097b..996cb3a8ea40424a2d0e294e08f0f21595dfa163 100644
--- a/htdocs/langs/vi_VN/companies.lang
+++ b/htdocs/langs/vi_VN/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=Id prof. 1 (R.C.)
 ProfId2MA=Id prof. 2 (Patente)
 ProfId3MA=Id prof. 3 (I.F.)
 ProfId4MA=Id prof. 4 (C.N.S.S.)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=Prof Id 1 (R.F.C).
 ProfId2MX=Prof Id 2 (R..P. IMSS)
diff --git a/htdocs/langs/vi_VN/compta.lang b/htdocs/langs/vi_VN/compta.lang
index cbb81077bbbd28924004cf4977b0d73072ba1330..3e6a5e833cc1c8020cd1db88c77171cb2f7d6fc3 100644
--- a/htdocs/langs/vi_VN/compta.lang
+++ b/htdocs/langs/vi_VN/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- Hóa đơn tiền gửi cũng không được bao gồm
 DepositsAreIncluded=- Hóa đơn tiền gửi mới có
 LT2ReportByCustomersInInputOutputModeES=Báo cáo của bên thứ ba IRPF
 LT1ReportByCustomersInInputOutputModeES=Báo cáo của bên thứ ba RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Báo cáo của thuế GTGT của khách hàng thu thập và trả
 VATReportByCustomersInDueDebtMode=Báo cáo của thuế GTGT của khách hàng thu thập và trả
 VATReportByQuartersInInputOutputMode=Báo cáo của tỷ lệ thuế GTGT thu, nộp
diff --git a/htdocs/langs/vi_VN/cron.lang b/htdocs/langs/vi_VN/cron.lang
index 6a8e32eddeeabaf8f0ec9eb8edfb3290246c23f8..2622d29ff89cdda4229a5fb29a9752990f3da880 100644
--- a/htdocs/langs/vi_VN/cron.lang
+++ b/htdocs/langs/vi_VN/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Việc theo lịch trình
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=Danh sách việc làm người khuyết tật
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Chạy cuối
 CronLastOutput=Bài đầu ra chạy
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Công việc
 CronNone=Không
-CronDtStart=Ngày bắt đầu
-CronDtEnd=Ngày kết thúc
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Thực hiện tiếp theo
 CronDtLastLaunch=Thực hiện cuối
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=Không có công ăn việc làm đăng ký
 CronPriority=Ưu tiên
 CronLabel=Mô tả
 CronNbRun=Nb. ra mắt
+CronMaxRun=Max nb. launch
 CronEach=Mỗi
 JobFinished=Việc đưa ra và hoàn thành
 #Page card
diff --git a/htdocs/langs/vi_VN/deliveries.lang b/htdocs/langs/vi_VN/deliveries.lang
index 61048ee147d419a3d22495f9aedf3052080b4d28..59086a5b7b4b6e70a319843ccfabe698daf834ee 100644
--- a/htdocs/langs/vi_VN/deliveries.lang
+++ b/htdocs/langs/vi_VN/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=Bạn có chắc muốn xóa chứng từ giao hàn
 DeliveryMethod=Phương thức giao hàng
 TrackingNumber=Số theo dõi
 DeliveryNotValidated=Giao hàng chưa được xác nhận
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=Tên và chữ ký:
 ToAndDate=Gửi___________________________________ vào ____ / _____ / __________
diff --git a/htdocs/langs/vi_VN/holiday.lang b/htdocs/langs/vi_VN/holiday.lang
index 3ad131e70681b7a2df31e7727d96ffaffc0dde9b..d083309db62be8d52feedc0cb5c72310c55d41e7 100644
--- a/htdocs/langs/vi_VN/holiday.lang
+++ b/htdocs/langs/vi_VN/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=Bạn phải kích hoạt Leaves mô đun để xem trang này.
 NotConfigModCP=Bạn phải cấu hình các module Nghỉ phép để xem trang này. Để làm điều này, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;">nhấn vào đây</a> </ a> <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;">.</a>
 NoCPforUser=Bạn không có bất kỳ ngày nào có sẵn.
 AddCP=Thực hiện một yêu cầu nghỉ phép
-Employe=Nhân viên
 DateDebCP=Ngày bắt đầu
 DateFinCP=Ngày kết thúc
 DateCreateCP=Ngày tạo
@@ -23,7 +22,7 @@ ReviewedByCP=Sẽ được xem xét bởi
 DescCP=Mô tả
 SendRequestCP=Tạo yêu cầu nghỉ phép
 DelayToRequestCP=Để lại yêu cầu phải được thực hiện vào <b>ngày</b> thứ nhất <b>là% s (s)</b> trước họ.
-MenuConfCP=Sửa cân bằng của nghỉ phép
+MenuConfCP=Balance of leaves
 UpdateAllCP=Cập nhật các nghỉ phép
 SoldeCPUser=Nghỉ phép số dư <b>là% s</b> ngày.
 ErrorEndDateCP=Bạn phải chọn ngày kết thúc lớn hơn ngày bắt đầu.
@@ -79,9 +78,9 @@ PrevSoldeCP=Cân bằng trước
 NewSoldeCP=New Balance
 alreadyCPexist=Một yêu cầu nghỉ phép đã được thực hiện vào thời gian này.
 UserName=Tên
-Employee=Nhân viên
 FirstDayOfHoliday=Ngày đầu tiên của kỳ nghỉ
 LastDayOfHoliday=Ngày cuối cùng của kỳ nghỉ
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Cập nhật hàng tháng
 ManualUpdate=Cập nhật thủ công
 HolidaysCancelation=Để lại yêu cầu hủy bỏ
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Yêu cầu nghỉ phép của bạn cho% s đến% s đã b
 HolidaysCanceled=Yêu cầu hủy bỏ nghỉ phép
 HolidaysCanceledBody=Yêu cầu nghỉ phép của bạn cho% s đến% s đã được hủy bỏ.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/vi_VN/hrm.lang b/htdocs/langs/vi_VN/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/vi_VN/hrm.lang
+++ b/htdocs/langs/vi_VN/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/vi_VN/interventions.lang b/htdocs/langs/vi_VN/interventions.lang
index 7eb7d23eaeda26a9577cbbca9de0b8a95bab6d0c..1a7ea906a840f9dcb01becb9dc0292b9e4f356fb 100644
--- a/htdocs/langs/vi_VN/interventions.lang
+++ b/htdocs/langs/vi_VN/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=Quay trở lại với các định dạng numero% syymm
 PacificNumRefModelError=Thẻ can thiệp bắt đầu với $ syymm đã tồn tại và không tương thích với mô hình này của chuỗi. Loại bỏ nó hoặc đổi tên nó để kích hoạt module này.
 PrintProductsOnFichinter=Sản phẩm in trên thẻ can thiệp
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/vi_VN/mails.lang b/htdocs/langs/vi_VN/mails.lang
index 8c3f601caa59a0877e3e57db8ee4e537d0a1f476..b8079fa3bfb396b48d9edbaa8b6d248bc2d969ea 100644
--- a/htdocs/langs/vi_VN/mails.lang
+++ b/htdocs/langs/vi_VN/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=Thư điện tử gửi đến người nhận %s.
 XTargetsAdded=Người nhận <b>%s</b> thêm vào danh sách mục tiêu
 EachInvoiceWillBeAttachedToEmail=Một tài liệu mặc định sử dụng hóa đơn mẫu tài liệu sẽ được tạo ra và gắn liền với mỗi email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Nhắc nhở các hóa đơn %s (%s)
 SendRemind=Gửi lời nhắc nhở bằng email
 RemindSent=Nhắc nhở %s (các) gửi
diff --git a/htdocs/langs/vi_VN/main.lang b/htdocs/langs/vi_VN/main.lang
index be95acb178b187aa9808ee9161eb6024b97d2f22..35c0f8c3cbcf10c3e99353c0e1bb580b43bffeca 100644
--- a/htdocs/langs/vi_VN/main.lang
+++ b/htdocs/langs/vi_VN/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=Kết nối cơ sở dữ liệu
+NoTemplateDefined=No template defined for this email type
 NoTranslation=Không dịch
 NoRecordFound=Không tìm thấy bản ghi
 NoError=Không có lỗi
@@ -105,6 +106,7 @@ NotePrivate=Ghi chú (cá nhân)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr đã được thiết lập để giới hạn độ chính xác của các đơn giá cho <b>%s</b> theo thập phân.
 DoTest=Kiểm tra
 ToFilter=Bộ lọc
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=Cảnh báo, bạn có ít nhất một yếu tố đó đã vượt quá dung sai cho phép.
 yes=có
 Yes=Có
@@ -228,6 +230,8 @@ Now=Bây giờ
 HourStart=Start hour
 Date=Ngày
 DateAndHour=Ngày và giờ
+DateToday=Today's date
+DateReference=Reference date
 DateStart=Ngày bắt đầu
 DateEnd=Ngày kết thúc
 DateCreation=Ngày tạo
@@ -608,6 +612,7 @@ TotalMan=Tổng
 NeverReceived=Chưa từng nhận
 Canceled=Đã hủy
 YouCanChangeValuesForThisListFromDictionarySetup=Bạn có thể thay đổi giá trị cho danh sách này từ menu thiết lập-từ điển
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=Màu
 Documents=Tập tin liên kết
 DocumentsNb=Các tập tin liên kết (%s)
@@ -695,6 +700,7 @@ Test=Kiểm tra
 Element=Yếu tố
 NoPhotoYet=Chưa có ảnh chưa
 HomeDashboard=Trang chủ tóm tắt
+Dashboard=Dashboard
 Deductible=Giảm trừ doanh thu
 from=từ
 toward=hướng
diff --git a/htdocs/langs/vi_VN/margins.lang b/htdocs/langs/vi_VN/margins.lang
index ba3782a1cdb5a63958d3fcd69aba38db17d71bf4..e8d491194350020f0e25cedcc40d7ecb9811ff0b 100644
--- a/htdocs/langs/vi_VN/margins.lang
+++ b/htdocs/langs/vi_VN/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Chọn sản phẩm hoặc dịch vụ
 StartDate=Ngày bắt đầu
 EndDate=Ngày kết thúc
 Launch=Bắt đầu
-ForceBuyingPriceIfNull=Giá mua vũ lực nếu rỗng
-ForceBuyingPriceIfNullDetails=nếu "ON", biên lợi nhuận sẽ bằng không trên đường (giá mua = giá bán), nếu không ("OFF"), Marge sẽ bằng giá bán (giá mua = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Phương pháp biên giảm giá toàn cầu
 UseDiscountAsProduct=Là một sản phẩm
 UseDiscountAsService=Là một dịch vụ
@@ -35,8 +35,9 @@ MargeBrute=Biên liệu
 MargeNette=Tỷ suất biên lợi nhuận
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Biên liệu: Giá bán - giá mua <br/> Tỷ suất biên lợi nhuận: Giá bán - Giá vốn
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Giá thành
 BuyingCost=Giá thành
 UnitCharges=Chi phí đơn vị
diff --git a/htdocs/langs/vi_VN/oauth.lang b/htdocs/langs/vi_VN/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/vi_VN/oauth.lang
+++ b/htdocs/langs/vi_VN/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/vi_VN/orders.lang b/htdocs/langs/vi_VN/orders.lang
index 28c983b44593dd16859625e149d15e6e3c6c6f97..467b8b885af3646285fc1b67c51d5ec27817e5cd 100644
--- a/htdocs/langs/vi_VN/orders.lang
+++ b/htdocs/langs/vi_VN/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=Không có đơn hàng dự thảo
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=Đơn hàng khác
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/vi_VN/other.lang b/htdocs/langs/vi_VN/other.lang
index 90314fae47d737b6e89e3bd1682fbd47a007ec7a..e8ced6be802304362faee518cef448513bee82b2 100644
--- a/htdocs/langs/vi_VN/other.lang
+++ b/htdocs/langs/vi_VN/other.lang
@@ -238,3 +238,8 @@ ToExport=Xuất khẩu
 NewExport=Xuất khẩu mới
 ##### External sites #####
 ExternalSites=Các trang web bên ngoài
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/vi_VN/paypal.lang b/htdocs/langs/vi_VN/paypal.lang
index a4204f919825385332e460f03280067caa62dbb4..c6905f2ecc4299f59205dda7302732f0f7e67666 100644
--- a/htdocs/langs/vi_VN/paypal.lang
+++ b/htdocs/langs/vi_VN/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=Mode test/sandbox
 PAYPAL_API_USER=API username
 PAYPAL_API_PASSWORD=API password
 PAYPAL_API_SIGNATURE=API signature
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Offer payment "integral" (Credit card+Paypal) or "Paypal" only
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/vi_VN/products.lang b/htdocs/langs/vi_VN/products.lang
index 3c9f3140351ac35d3d0e17cc9f75853304e6433c..76a2cfb9af1629228a8c85a06aa358b9f5faba01 100644
--- a/htdocs/langs/vi_VN/products.lang
+++ b/htdocs/langs/vi_VN/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Được tiêu thụ tự động bởi sản xuất
 ProductBuilded=Sản xuất hoàn thành
-ProductsMultiPrice=Sản phẩm nhiều giá
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/vi_VN/projects.lang b/htdocs/langs/vi_VN/projects.lang
index 6dade888f22e1c336d05b687581afa1016573efa..bca6bb36a89d05469b12e7ff019f2e1b454ecbff 100644
--- a/htdocs/langs/vi_VN/projects.lang
+++ b/htdocs/langs/vi_VN/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=Phần xem này hiển thị tất cả dự án và tác
 ProjectsDesc=Phần xem này hiển thị tất cả các dự án (quyền người dùng cấp cho bạn được phép xem mọi thứ).
 MyTasksDesc=Phần xem này bị giới hạn với các dự án hoặc tác vụ mà bạn có mối liên hệ với (bất kỳ loại dự án nào).
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=Phần xem này hiển thị tất cả dự án và tác vụ mà bạn được phép đọc.
 TasksDesc=Phần xem này hiển thị tất cả các dự án và tác vụ (quyền người dùng của bạn hiện đang cho phép bạn xem tất cả thông tin).
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=Nhân viên dự án
 LastProjects=% dự án cuối
 AllProjects=Tất cả dự án
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=Danh sách dự án
 ShowProject=Hiển thị dự án
 SetProject=Lập dự án
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Tác vụ %s đã chỉnh sửa
 TaskDeletedInDolibarr=Tác vụ %s đã xóa
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/vi_VN/propal.lang b/htdocs/langs/vi_VN/propal.lang
index c6c345ce530cd9ed0cd0b6e2eda370804603de0c..09749611013e5a32f6452a1f356edec1d155215a 100644
--- a/htdocs/langs/vi_VN/propal.lang
+++ b/htdocs/langs/vi_VN/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=%s đơn hàng đề xuất đã chỉnh sửa cuối
 AllPropals=Tất cả đơn hàng đề xuất
 LastProposals=Đơn hàng đề xuất cuối
 SearchAProposal=Tìm kiếm đơn hàng đề xuất
+NoProposal=No proposal
 ProposalsStatistics=Thống kê đơn hàng đề xuất
 NumberOfProposalsByMonth=Số lượng theo tháng
 AmountOfProposalsByMonthHT=Số tiền theo tháng (chưa thuế)
@@ -62,7 +63,8 @@ DatePropal=Ngày đề xuất
 DateEndPropal=Ngày hết hiệu lực
 DateEndPropalShort=Ngày kết thúc
 ValidityDuration=Thời hạn hiệu lực
-CloseAs=Đóng với trạng thái
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=Xác định đã ra hóa đơn
 BuildBill=Tạo hóa đơn
 ErrorPropalNotFound=Đơn hàng đề xuất %s không tìm thấy
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Tạo mô hình mặc định
 DefaultModelPropalToBill=Mặc định mẫu khi đóng cửa một đề xuất kinh doanh (được lập hoá đơn)
 DefaultModelPropalClosed=Mặc định mẫu khi đóng cửa một đề xuất kinh doanh (chưa lập hoá đơn)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/vi_VN/salaries.lang b/htdocs/langs/vi_VN/salaries.lang
index 0ccf5ca5d62b372ed096d211fc50a24c4086470a..2f41cebd4049dcb0ec739af848ba2e61c26551f3 100644
--- a/htdocs/langs/vi_VN/salaries.lang
+++ b/htdocs/langs/vi_VN/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Kế toán mã cho các khoản thanh toán tiền lương
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Kế toán mã cho phụ trách tài chính
 Salary=Mức lương
 Salaries=Tiền lương
-Employee=Nhân viên
 NewSalaryPayment=Thanh toán tiền lương mới
 SalaryPayment=Thanh toán tiền lương
 SalariesPayments=Lương thanh toán
diff --git a/htdocs/langs/vi_VN/sendings.lang b/htdocs/langs/vi_VN/sendings.lang
index 0f047af0018d02c5c4d9e45fdb49e78bc648822f..a6a4c1fcec9ce0dd9b332adc4bb82b2cbebcfd6d 100644
--- a/htdocs/langs/vi_VN/sendings.lang
+++ b/htdocs/langs/vi_VN/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=Lô hàng
 Shipments=Lô hàng
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=Diện tích lô hàng
 ListOfSendings=Danh sách các lô hàng
 SendingMethod=Phương thức vận chuyển
diff --git a/htdocs/langs/vi_VN/sms.lang b/htdocs/langs/vi_VN/sms.lang
index a6a78549842abd6dea0148ba009088b5072fe618..9270857ca322de7073fa551d92313403c80fe4e4 100644
--- a/htdocs/langs/vi_VN/sms.lang
+++ b/htdocs/langs/vi_VN/sms.lang
@@ -49,5 +49,6 @@ SendSms=Gửi tin nhắn SMS
 SmsInfoCharRemain=Nb ký tự còn lại
 SmsInfoNumero= (Tức là định dạng quốc tế: 33899701761)
 DelayBeforeSending=Chậm trễ trước khi gửi (phút)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=Không có mục tiêu có sẵn. Kiểm tra thiết lập của nhà cung cấp tin nhắn SMS của bạn.
 
diff --git a/htdocs/langs/vi_VN/supplier_proposal.lang b/htdocs/langs/vi_VN/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/vi_VN/supplier_proposal.lang
+++ b/htdocs/langs/vi_VN/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/vi_VN/trips.lang b/htdocs/langs/vi_VN/trips.lang
index dd6aa1eb8598b2076a9c7f490227fa229e73a0ea..0bd521a6a3aadb0145a1dd3b6fbe1baecbd2f500 100644
--- a/htdocs/langs/vi_VN/trips.lang
+++ b/htdocs/langs/vi_VN/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=Khác
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=Ăn trưa
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/vi_VN/users.lang b/htdocs/langs/vi_VN/users.lang
index e05823e50099bee8b4418eeaffa4bfa687235e45..6b2109ad1d02253be72d290b6748d866a5844745 100644
--- a/htdocs/langs/vi_VN/users.lang
+++ b/htdocs/langs/vi_VN/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Sử dụng OpenID để đăng nhập
 WeeklyHours=Giờ hàng tuần
 ColorUser=Màu của người dùng
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/zh_CN/accountancy.lang b/htdocs/langs/zh_CN/accountancy.lang
index 5fcad4c1ff72b2e1f93b212986dda63d24e10d5a..99028bf966640b14feaa4899b77201abb22c4357 100644
--- a/htdocs/langs/zh_CN/accountancy.lang
+++ b/htdocs/langs/zh_CN/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=选择一个导出模型
 Modelcsv_normal=典型的导出
 Modelcsv_CEGID=出口对Cegid的专家
 BackToChartofaccounts=返回科目表
-Back=返回
 
 Definechartofaccounts=定义会计科目表
 Selectchartofaccounts=选择会计科目表
@@ -109,10 +108,6 @@ DelBookKeeping=删除总帐的记录
 
 DescSellsJournal=出售的”日记帐“
 DescPurchasesJournal=购买的”日记帐“
-BankJournal=银行日记账
-DescBankJournal=银行日记账,包括支付现金以外的所有类型
-CashJournal=现金日记账
-DescCashJournal=现金日记账,包括支付现金的类型
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=在这里请教发票的供应商的线条和其会计帐
 ValidateHistory=自动验证
 
 ErrorAccountancyCodeIsAlreadyUse=错误,你不能删除这个会计帐户,因为它是用来
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=击穿卡
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/zh_CN/admin.lang b/htdocs/langs/zh_CN/admin.lang
index 52944ad7198cacd3835a97388fb61bab9342d67e..ea9785d112be3ef481c46a4aa80afe17cbe4abbc 100644
--- a/htdocs/langs/zh_CN/admin.lang
+++ b/htdocs/langs/zh_CN/admin.lang
@@ -281,8 +281,8 @@ ModuleSetup=模块设置
 ModulesSetup=模块设置
 ModuleFamilyBase=系统
 ModuleFamilyCrm=客户关系管理(CRM)
-ModuleFamilyProducts=Products Management (PM)
-ModuleFamilyHr=Human Resource Management (HR)
+ModuleFamilyProducts=产品管理
+ModuleFamilyHr=人力资源
 ModuleFamilyProjects=项目/协同工作
 ModuleFamilyOther=其他
 ModuleFamilyTechnic=多模块工具
@@ -329,7 +329,7 @@ UMaskExplanation=定义服务器上 Dolibarr 创建文件的默认权限(例如
 SeeWikiForAllTeam=全部行动者及其机构的完整列表参见wiki页面
 UseACacheDelay= 缓存导出响应的延迟时间(0或留空表示禁用缓存)
 DisableLinkToHelpCenter=隐藏登陆页面中的“<b>需要帮助或支持</b>”链接
-DisableLinkToHelp=Hide link to online help "<b>%s</b>"
+DisableLinkToHelp=隐藏在线帮助链接 "<b>%s</b>"
 AddCRIfTooLong=注意:没有自动换行功能,所以如果一行文字太长会超出纸张,请务必按下Enter键换行。
 ModuleDisabled=模块禁用
 ModuleDisabledSoNoEvent=模块已禁用,事件未创建
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=生成的PDF中隐藏所有有关增值税的信息
 HideDescOnPDF=生成 PDF 中隐藏产品描述信息
 HideRefOnPDF=隐藏生成 PDF 中的产品编号
 HideDetailsOnPDF=隐藏生成的 PDF 中的产品行信息
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=资料库
 UrlGenerationParameters=URL地址的保护参数
 SecurityTokenIsUnique=为每个URL使用独特的securekey参数
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=你确定要抹掉现存所有条码值?
 AllBarcodeReset=所有现存条码值已经被抹掉
 NoBarcodeNumberingTemplateDefined=条码编号模版在条形码模块中没有被启用。
 NoRecordWithoutBarcodeDefined=未找到没有条形码的记录。
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=用户和组
@@ -446,7 +447,7 @@ Module50Name=产品
 Module50Desc=产品管理
 Module51Name=批量邮寄
 Module51Desc=批量邮寄文件管理
-Module52Name=库存
+Module52Name=仓库
 Module52Desc=产品库存的管理
 Module53Name=服务
 Module53Desc=服务的管理
@@ -499,7 +500,7 @@ Module510Desc=职员薪酬及支付管理
 Module520Name=贷款
 Module520Desc=贷款管理
 Module600Name=通知
-Module600Desc=向 Dolibarr 商务活动的第三方联系人发送 Email (设置取决于不同的第三方)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=捐赠
 Module700Desc=捐款的管理
 Module770Name=开支报告
@@ -740,7 +741,7 @@ Permission774=读取所有开支报告(即使用户没有下属)
 Permission775=通过开支报告
 Permission776=支付开支报告
 Permission779=导出开支报告
-Permission1001=读取库存资讯
+Permission1001=读取仓库信息
 Permission1002=创建/修改仓库
 Permission1003=删除仓库
 Permission1004=读取库存转让
@@ -963,6 +964,7 @@ DelaysBeforeWarning=超时警告阀值
 DelaysOfToleranceBeforeWarning=超时警告前延迟的阀值
 DelaysOfToleranceDesc=这里您可以设置主看板区出现逾期提醒 (带有%s图标) 前的逾期时间。
 Delays_MAIN_DELAY_ACTIONS_TODO=计划待办事件最大逾期时间 (天)
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=未处理订单最大逾期时间 (天)
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=未处理采购订单最大逾期时间 (天)
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=合同逾期未关闭最大逾期时间 (天)
@@ -1087,6 +1089,7 @@ PathDirectory=目录
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=已启用的模块数: <b>%s</b>
 YouMustEnableOneModule=您必须至少启用 1 个模块
 ClassNotFoundIntoPathWarning=PHP 路径中未发现 类 %s
@@ -1492,7 +1495,7 @@ FCKeditorForMailing= 以所见即所得方式创建/编辑群发邮件(工具->
 FCKeditorForUserSignature=以所见即所得方式创建/编辑用户签名
 FCKeditorForMail=以所见即所得方式创建/编辑所有邮件(工具->电邮寄送 除外)
 ##### OSCommerce 1 #####
-OSCommerceErrorConnectOkButWrongDatabase=数据库连接成功,似乎并非 oscommerce 的数据库 (键 % 在表 %s 中不存在)。
+OSCommerceErrorConnectOkButWrongDatabase=虽然数据库连上了,但是看起来这个不是电子商城的数据库(在 table %s 里没看到Key %s )。
 OSCommerceTestOk=成功连接到服务器'%s'的数据库'%s'上,身份用户 '%s'。
 OSCommerceTestKo1=服务器'%s'连接成功,但无法打开数据库'%s'。
 OSCommerceTestKo2=以用户身份'%s'连接至服务器'%s' 失败。
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=改变这个值后按F5来刷新页面使其生效
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/zh_CN/agenda.lang b/htdocs/langs/zh_CN/agenda.lang
index d7f7f630f47d4d66bfc5f74b3fd9e14818f34901..f26e86b1b6a41a6535942bc0823fb2164506a0c1 100644
--- a/htdocs/langs/zh_CN/agenda.lang
+++ b/htdocs/langs/zh_CN/agenda.lang
@@ -35,7 +35,9 @@ AllActions= 所有/任务行动
 ViewCal=查看日历
 ViewDay=日视图
 ViewWeek=周视图
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= 查看与预定义的过滤器
 AutoActions= 全自动灌装议程
 AgendaAutoActionDesc= 这里定义Dolibarr会为其自动创建待办事项的活动。如果没有被选\n中(默认情况下),只有手动操作被列入待办事项。
diff --git a/htdocs/langs/zh_CN/banks.lang b/htdocs/langs/zh_CN/banks.lang
index 3e08f0320bd37b818739366d9d2e8aa5997e5c1f..1f7175c91a368277d56f09a76fc97fde56632731 100644
--- a/htdocs/langs/zh_CN/banks.lang
+++ b/htdocs/langs/zh_CN/banks.lang
@@ -94,12 +94,12 @@ Conciliate=调和
 Conciliation=和解
 ConciliationForAccount=此帐户核对
 IncludeClosedAccount=包括关闭账户
-OnlyOpenedAccount=Only open accounts
+OnlyOpenedAccount=仅开户
 AccountToCredit=帐户信用
 AccountToDebit=帐户转帐
 DisableConciliation=此帐户的禁用和解功能
 ConciliationDisabled=和解功能禁用
-StatusAccountOpened=Open
+StatusAccountOpened=打开
 StatusAccountClosed=关闭
 AccountIdShort=数
 EditBankRecord=编辑记录
diff --git a/htdocs/langs/zh_CN/bills.lang b/htdocs/langs/zh_CN/bills.lang
index 555d3089420371d790f1cad39a41b8d4e13399d1..68410da169a7e4a8eb60d9fbc582d8d9b5f0d5d9 100644
--- a/htdocs/langs/zh_CN/bills.lang
+++ b/htdocs/langs/zh_CN/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=付款已完成
 PaymentsBackAlreadyDone=付款已完成
 PaymentRule=付款规则
 PaymentMode=付款方式
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=付款协议
 PaymentConditions=付款协议
@@ -184,6 +186,7 @@ ShowInvoice=显示发票
 ShowInvoiceReplace=显示替换发票
 ShowInvoiceAvoir=显示信用记录
 ShowInvoiceDeposit=显示发票保证金
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=显示支付
 AlreadyPaid=已支付
 AlreadyPaidBack=已支付
@@ -215,12 +218,13 @@ DateEcheance=截止日期
 DateInvoice=发票日期
 NoInvoice=没有发票
 ClassifyBill=分类发票
-SupplierBillsToPay=Unpaid supplier invoices
-CustomerBillsUnpaid=Unpaid customer invoices
+SupplierBillsToPay=未付供应商发票
+CustomerBillsUnpaid=客户未付发票
 NonPercuRecuperable=非可收回
 SetConditions=设置付款协议
 SetMode=设置支付方式
 Billed=帐单
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=模板发票
 RepeatableInvoices=模板发票
 Repeatable=模板
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=这一数额已被放弃(客户说是一个坏的客户
 HelpAbandonOther=这一数额已被放弃,因为这是一个错误(错误的顾客或由其他替代例如发票)
 IdSocialContribution=财政税/增值税代码
 PaymentId=付款编号
+PaymentRef=Payment ref.
 InvoiceId=发票编号
 InvoiceRef=发票编号
 InvoiceDateCreation=发票的创建日期
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=关联供应商发票
 LatestRelatedBill=Latest related invoice
 WarningBillExist=警告,一个或多个发票已经存在
 MergingPDFTool=PDF 合并工具
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=即时
@@ -327,8 +336,8 @@ PaymentTypeCB=信用卡
 PaymentTypeShortCB=信用卡
 PaymentTypeCHQ=支票
 PaymentTypeShortCHQ=支票
-PaymentTypeTIP=Interbank Payment
-PaymentTypeShortTIP=Interbank Payment
+PaymentTypeTIP=跨行付款
+PaymentTypeShortTIP=跨行付款
 PaymentTypeVAD=在线支付
 PaymentTypeShortVAD=在线支付
 PaymentTypeTRA=Traite
@@ -393,6 +402,7 @@ Reported=延迟
 DisabledBecausePayments=不可操作,因为已经接收了付款
 CantRemovePaymentWithOneInvoicePaid=无法删除,因为至少有一份发票被归类为已支付
 ExpectedToPay=预期付款
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=已由此付款来支付
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=分类“付费”的所有信贷注意到完全支付。
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=注:此清单只包含链接到您作为一个销
 RevenueStamp=印花税票
 YouMustCreateInvoiceFromThird=该选项仅可用于在第三方的‘用户’页所创建的发票
 PDFCrabeDescription=发票模型Crabe。一个完整的发票模式(支援增值税选项,折扣,付款条件,标识等..)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=返回号码格式%s yy mm-NNNN标准和更换发票%s yy mm-NNNN信贷票据以及%s yy mm-NNNN其中yy是年,mm是月和nnnn是一个没有空格不为0的序列,
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=美元的法案syymm起已经存在,而不是与此序列模型兼容。删除或重新命名它激活该模块。
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/zh_CN/boxes.lang b/htdocs/langs/zh_CN/boxes.lang
index f75ef32136adae04cdae5d02ea3cc227abf0e977..9eb803c9a9821df2cc48910b8d1ebef1699a46d1 100644
--- a/htdocs/langs/zh_CN/boxes.lang
+++ b/htdocs/langs/zh_CN/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=客户的发票
 ForCustomersOrders=客户订单
 ForProposals=报价
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/zh_CN/categories.lang b/htdocs/langs/zh_CN/categories.lang
index 8981a54379fc4197fbab84a6c8ea891deea0bd8e..57a000b42853114f72a68e332f94b56ef2111fd5 100644
--- a/htdocs/langs/zh_CN/categories.lang
+++ b/htdocs/langs/zh_CN/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=Custo. / Prosp。类别
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/zh_CN/companies.lang b/htdocs/langs/zh_CN/companies.lang
index 6d1cc0d650901b75f2d9e07532a209e0186ad237..3a76b1fb0979b513b7ccd5a0caac7b479c049689 100644
--- a/htdocs/langs/zh_CN/companies.lang
+++ b/htdocs/langs/zh_CN/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=ID教授。 1(RC)的
 ProfId2MA=ID教授。 2(Patente)
 ProfId3MA=ID教授。 3(如果)
 ProfId4MA=ID教授。 4(CNSS)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=(RFC)的ID 1教授。
 ProfId2MX=ID 2教授(体育IMSS的河。)
diff --git a/htdocs/langs/zh_CN/compta.lang b/htdocs/langs/zh_CN/compta.lang
index 881a0b0f1ffa7b45474c60efd6f5a1f165713144..be1467fb7e33ba2a8ee1ccfe3ef6535db249a109 100644
--- a/htdocs/langs/zh_CN/compta.lang
+++ b/htdocs/langs/zh_CN/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- 不包括存款发票
 DepositsAreIncluded=- 包括存款发票
 LT2ReportByCustomersInInputOutputModeES=按第三方IRPF的报表
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=每客户增值税征收和支付的报表
 VATReportByCustomersInDueDebtMode=每客户增值税报表征收和支付的报表
 VATReportByQuartersInInputOutputMode=按征收和支出的增值税率的报表
diff --git a/htdocs/langs/zh_CN/cron.lang b/htdocs/langs/zh_CN/cron.lang
index 38a87982d23aaed02ed425d34e5d662c064b5d19..dbbef3a92ca01cf7d9d096e21a2a94ff66095b8f 100644
--- a/htdocs/langs/zh_CN/cron.lang
+++ b/htdocs/langs/zh_CN/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=List of disabled jobs
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=最后运行
 CronLastOutput=最后运行结果
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=工作
 CronNone=无
-CronDtStart=开始日期
-CronDtEnd=结束日期
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=接下来执行
 CronDtLastLaunch=最后执行
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=No jobs registered
 CronPriority=优先
 CronLabel=描述
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
@@ -85,5 +87,5 @@ CronType_method=一个Dolibarr类的调用方法
 CronType_command=Shell command
 CronMenu=Cron
 CronCannotLoadClass=Cannot load class %s or object %s
-UseMenuModuleToolsToAddCronJobs=Go into menu "Home - Modules tools - Job list" to see and edit scheduled jobs.
+UseMenuModuleToolsToAddCronJobs=点击菜单 "主页 - 模块工具 - 工作列表" 来查看并编辑任务列表。
 TaskDisabled=Job disabled
diff --git a/htdocs/langs/zh_CN/deliveries.lang b/htdocs/langs/zh_CN/deliveries.lang
index b2792dfd41ba82e7669d12f3304aecfc81fce009..4d504da12bb6b56bced588b734e22f1832c2564e 100644
--- a/htdocs/langs/zh_CN/deliveries.lang
+++ b/htdocs/langs/zh_CN/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=你确定要删除送达回执<b>%s</b>吗?
 DeliveryMethod=送货方式
 TrackingNumber=追踪号码
 DeliveryNotValidated=交付未验证
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=姓名及签署:
 ToAndDate=To___________________________________对____ / _____ / __________
diff --git a/htdocs/langs/zh_CN/holiday.lang b/htdocs/langs/zh_CN/holiday.lang
index 8ee5b3f911cace6c51c27c73ac42388b403824d5..7c3a8af9e41041a364dcbb98de248504d56a50ac 100644
--- a/htdocs/langs/zh_CN/holiday.lang
+++ b/htdocs/langs/zh_CN/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=You must enable the module Leaves to view this page.
 NotConfigModCP=You must configure the module Leaves to view this page. To do this, <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> click here </ a>.
 NoCPforUser=You don't have any available day.
 AddCP=做一个请假申请
-Employe=雇员
 DateDebCP=开始日期
 DateFinCP=结束日期
 DateCreateCP=创建日期
@@ -23,7 +22,7 @@ ReviewedByCP=将审查
 DescCP=描述
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=编辑剩余假期数
+MenuConfCP=Balance of leaves
 UpdateAllCP=更新假期
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=你必须选择结束日期大于起始日期。
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=名称
-Employee=雇员
 FirstDayOfHoliday=假期第一天
 LastDayOfHoliday=假期最后一天
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=每月更新
 ManualUpdate=手动更新
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
-GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
+GoIntoDictionaryHolidayTypes=点击 <strong>主页 - 设置 - 词汇表 - 请假类型表</strong> 设置请假类型不同的事由。
diff --git a/htdocs/langs/zh_CN/hrm.lang b/htdocs/langs/zh_CN/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/zh_CN/hrm.lang
+++ b/htdocs/langs/zh_CN/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/zh_CN/interventions.lang b/htdocs/langs/zh_CN/interventions.lang
index 4642d04cb5fbac0f7418cc5b0d1b54262d198dc8..1b6ba4dbce02d52cbae7e6a1ce34831e2f3b8b7d 100644
--- a/htdocs/langs/zh_CN/interventions.lang
+++ b/htdocs/langs/zh_CN/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=返回格式%syymm,其中yy是二○○一年numero,
 PacificNumRefModelError=干预卡$ syymm起已经存在,而不是与此序列模型兼容。删除或重新命名它激活该模块。
 PrintProductsOnFichinter=干预卡上的打印产品
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/zh_CN/loan.lang b/htdocs/langs/zh_CN/loan.lang
index cc7f19037aa878bec1fd11f490d81e736fa18715..3c9838c3ea5a2ce51028153a37b45f614e3c7ee1 100644
--- a/htdocs/langs/zh_CN/loan.lang
+++ b/htdocs/langs/zh_CN/loan.lang
@@ -31,7 +31,7 @@ ExplainCalculations=Explain Calculations
 ShowMeCalculationsAndAmortization=Show me the calculations and amortization
 MortgagePaymentInformation=Mortgage Payment Information
 DownPayment=Down Payment
-DownPaymentDesc=The <b>down payment</b> = The price of the home multiplied by the percentage down divided by 100 (for 5% down becomes 5/100 or 0.05)
+DownPaymentDesc=这个 <b>预付订金</b>(注:订金,根据中国现行法律的有关规定,其不具有定金,不是订金哦,其不具有定金的性质,只是单方行为,不具有明显的担保性质。交付订金的一方主张定金权利的,人民法院不予支持。 = The price of the home multiplied by the percentage down divided by 100 (for 5% down becomes 5/100 or 0.05)这句数学没学好不译了:)
 InterestRateDesc=The <b>interest rate</b> = The annual interest percentage divided by 100
 MonthlyFactorDesc=The <b>monthly factor</b> = The result of the following formula
 MonthlyInterestRateDesc=The <b>monthly interest rate</b> = The annual interest rate divided by 12 (for the 12 months in a year)
diff --git a/htdocs/langs/zh_CN/mails.lang b/htdocs/langs/zh_CN/mails.lang
index 03b918511bfc5c1471e84b8b5f5ee48f20fd7f9c..23bf4028b7e5ba3c91f7ba809aa5e9c632bac1ef 100644
--- a/htdocs/langs/zh_CN/mails.lang
+++ b/htdocs/langs/zh_CN/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=电子邮件发送到 %s 的收件人。
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
@@ -141,7 +142,7 @@ AddNewNotification=Activate a new email notification target
 ListOfActiveNotifications=List all active email notification targets
 ListOfNotificationsDone=列出所有发送电子邮件通知
 MailSendSetupIs=Configuration of email sending has been setup to '%s'. This mode can't be used to send mass emailing.
-MailSendSetupIs2=You must first go, with an admin account, into menu %sHome - Setup - EMails%s to change parameter <strong>'%s'</strong> to use mode '%s'. With this mode, you can enter setup of the SMTP server provided by your Internet Service Provider and use Mass emailing feature.
+MailSendSetupIs2=首先您得这么地, 得先有个管理员账号吧 admin , 进入菜单 %s主页 - 设置 - EMails%s 修改参数 <strong>'%s'</strong> 用 '%s'模式。 在此模式下, 您才可输入一个 SMTP 服务器地址 来供您收发邮件。
 MailSendSetupIs3=If you have any questions on how to setup your SMTP server, you can ask to %s.
 YouCanAlsoUseSupervisorKeyword=You can also add the keyword <strong>__SUPERVISOREMAIL__</strong> to have email being sent to the supervisor of user (works only if an email is defined for this supervisor)
 NbOfTargetedContacts=Current number of targeted contact emails
diff --git a/htdocs/langs/zh_CN/main.lang b/htdocs/langs/zh_CN/main.lang
index 252a65ad589627c299c78854f4ad2847d048e230..ee247a7f786a766f5c346c53793caf3c2bb2f502 100644
--- a/htdocs/langs/zh_CN/main.lang
+++ b/htdocs/langs/zh_CN/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%Y/%m/%d %I:%M:%S %p
 FormatDateHourTextShort=%b %d, %Y, %I:%M %p
 FormatDateHourText=%B %d, %Y, %I:%M %p
 DatabaseConnection=数据库连接
+NoTemplateDefined=No template defined for this email type
 NoTranslation=没有翻译
 NoRecordFound=没有找到记录
 NoError=没有错误
@@ -83,7 +84,7 @@ Administrator=管理员
 Undefined=未定义
 PasswordForgotten=忘记密码?
 SeeAbove=见上文
-HomeArea=首页区
+HomeArea=信息状态
 LastConnexion=最后一个连接
 PreviousConnexion=前连接
 ConnectedOnMultiCompany=对实体连接
@@ -105,6 +106,7 @@ NotePrivate=注(私人)
 PrecisionUnitIsLimitedToXDecimals=Dolibarr是安装精度的限制价格单位为<b>%s</b>小数。
 DoTest=测试
 ToFilter=过滤器
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=警告,你有至少一个任务,超出了容忍的延误。
 yes=是的
 Yes=是的
@@ -112,7 +114,7 @@ no=没有
 No=没有
 All=所有
 Alls=All
-Home=首页
+Home=主页
 Help=帮助
 OnlineHelp=在线帮助
 PageWiki=维基页面
@@ -228,6 +230,8 @@ Now=现在
 HourStart=Start hour
 Date=日期
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=开始日期
 DateEnd=结束日期
 DateCreation=创建日期
@@ -431,7 +435,7 @@ Reportings=报告
 Draft=草案
 Drafts=草稿
 Validated=验证
-Opened=Open
+Opened=打开
 New=新
 Discount=折扣
 Unknown=未知
@@ -608,6 +612,7 @@ TotalMan=总
 NeverReceived=从未收到
 Canceled=取消
 YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=彩色
 Documents=链接的文件
 DocumentsNb=(%s的链接文件)
@@ -695,6 +700,7 @@ Test=测试
 Element=元素
 NoPhotoYet=还没有图片
 HomeDashboard=首页摘要
+Dashboard=Dashboard
 Deductible=可抵扣
 from=从
 toward=往
@@ -713,7 +719,7 @@ AddBox=Add box
 SelectElementAndClickRefresh=Select an element and click Refresh
 PrintFile=Print File %s
 ShowTransaction=Show transaction on bank account
-GoIntoSetupToChangeLogo=Go into Home - Setup - Company to change logo or go into Home - Setup - Display to hide.
+GoIntoSetupToChangeLogo=点击菜单 主页 -> 设置 -> 公司 来修改LOGO或 主页 -> 设置 -> 显示菜单隐藏它。
 Deny=Deny
 Denied=Denied
 ListOfTemplates=List of templates
diff --git a/htdocs/langs/zh_CN/margins.lang b/htdocs/langs/zh_CN/margins.lang
index 82c45a06754d3755d5c05dc5f6553cc258ce4ad1..79f744cd64d2c523156f957483049af17a503641 100644
--- a/htdocs/langs/zh_CN/margins.lang
+++ b/htdocs/langs/zh_CN/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Choose product or service
 StartDate=开始日期
 EndDate=结束日期
 Launch=开始
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=As a product
 UseDiscountAsService=As a service
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/zh_CN/oauth.lang b/htdocs/langs/zh_CN/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/zh_CN/oauth.lang
+++ b/htdocs/langs/zh_CN/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/zh_CN/orders.lang b/htdocs/langs/zh_CN/orders.lang
index d1b333e9a82ce9d2e4924f01e0cdc9ea98873811..c4365eb3b7edbf0b331d2c5d4e83e7c93585cf67 100644
--- a/htdocs/langs/zh_CN/orders.lang
+++ b/htdocs/langs/zh_CN/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=没有订单草案
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=其他订单
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/zh_CN/other.lang b/htdocs/langs/zh_CN/other.lang
index 95d7045038872b36358743225fb6cd3dae495c09..e6abec91351525593968b7e68e8e84d56e735eb3 100644
--- a/htdocs/langs/zh_CN/other.lang
+++ b/htdocs/langs/zh_CN/other.lang
@@ -238,3 +238,8 @@ ToExport=出口
 NewExport=新的出口
 ##### External sites #####
 ExternalSites=外部网站
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/zh_CN/paypal.lang b/htdocs/langs/zh_CN/paypal.lang
index b6bbe11a591eb32573ef19d86dac904769353caf..ee113181fe19bc98e131b7e8d299c5fc7c2ddcc4 100644
--- a/htdocs/langs/zh_CN/paypal.lang
+++ b/htdocs/langs/zh_CN/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=测试/沙箱模式
 PAYPAL_API_USER=API的用户名
 PAYPAL_API_PASSWORD=API密码
 PAYPAL_API_SIGNATURE=API签名
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=优惠“不可分割的”支付(信用卡+贝宝)或“贝宝”只
 PaypalModeIntegral=积分
 PaypalModeOnlyPaypal=支付宝
diff --git a/htdocs/langs/zh_CN/products.lang b/htdocs/langs/zh_CN/products.lang
index c174db2c526e2da0f7038b8656d907a28b858e0b..3720b4817a7b237bc90fac910e00a012f9a24f31 100644
--- a/htdocs/langs/zh_CN/products.lang
+++ b/htdocs/langs/zh_CN/products.lang
@@ -50,7 +50,7 @@ Warehouses=仓库
 WarehouseOpened=Warehouse open
 WarehouseClosed=仓库已关闭
 Stock=库存
-Stocks=库存
+Stocks=仓库
 Movement=库间移动
 Movements=库间转移
 Sell=销售
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=因生产自动消耗
 ProductBuilded=生产完成
-ProductsMultiPrice=产品多重价格
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/zh_CN/projects.lang b/htdocs/langs/zh_CN/projects.lang
index 968d8760c10a80d85f39d11c19bbc287d14dadca..d2faf9e2eab10225be4e0d70ad0bbc577289f6a1 100644
--- a/htdocs/langs/zh_CN/projects.lang
+++ b/htdocs/langs/zh_CN/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=这种观点提出的所有项目(你的用户权限批准你认为一切)。
 MyTasksDesc=这种观点是有限的项目或任务你是一个接触(不管是类型)。
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=这种观点提出的所有项目,您可阅读任务。
 TasksDesc=这种观点提出的所有项目和任务(您的用户权限批准你认为一切)。
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=项目主任
 LastProjects=上次%s的项目
 AllProjects=所有项目
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=项目名单
 ShowProject=显示项目
 SetProject=设置项目
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/zh_CN/propal.lang b/htdocs/langs/zh_CN/propal.lang
index a1114fa74067e8aa04b6b19b93abe044d5a831b0..322f9216d9c0b2f64d7864c0971a66b90c397865 100644
--- a/htdocs/langs/zh_CN/propal.lang
+++ b/htdocs/langs/zh_CN/propal.lang
@@ -25,13 +25,14 @@ LastModifiedProposals=最近更新的 %s 个报价单
 AllPropals=全部报价单
 LastProposals=最近的报价单
 SearchAProposal=搜索报价单
+NoProposal=No proposal
 ProposalsStatistics=报价单统计
 NumberOfProposalsByMonth=月数量
 AmountOfProposalsByMonthHT=金额 (税前)/每月
 NbOfProposals=报价单数量
 ShowPropal=显示报价
 PropalsDraft=草稿
-PropalsOpened=Open
+PropalsOpened=打开
 PropalsNotBilled=已关闭未付款
 PropalStatusDraft=草案(需要验证)
 PropalStatusValidated=已确定(打开的报价单)
@@ -42,7 +43,7 @@ PropalStatusNotSigned=未签署(已关闭)
 PropalStatusBilled=已到账
 PropalStatusDraftShort=草稿
 PropalStatusValidatedShort=已确定
-PropalStatusOpenedShort=Open
+PropalStatusOpenedShort=打开
 PropalStatusClosedShort=已关闭
 PropalStatusSignedShort=已签署
 PropalStatusNotSignedShort=未签署
@@ -62,7 +63,8 @@ DatePropal=报价日期
 DateEndPropal=有效期截至日期
 DateEndPropalShort=截至日期
 ValidityDuration=有效时间
-CloseAs=关闭时的状态
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=归为已付款
 BuildBill=建立账单
 ErrorPropalNotFound=未发现报价单 %s
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=设置默认模板
 DefaultModelPropalToBill=关闭订单时使用的默认模板(待生成账单)
 DefaultModelPropalClosed=关闭订单时使用的默认模板(待付款)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/zh_CN/salaries.lang b/htdocs/langs/zh_CN/salaries.lang
index 7159127cf3214749686f469c09dc90af32b46dae..da177410860fb80d4d2d0872ec3b258ed787ba0e 100644
--- a/htdocs/langs/zh_CN/salaries.lang
+++ b/htdocs/langs/zh_CN/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Salary
 Salaries=Salaries
-Employee=雇员
 NewSalaryPayment=New salary payment
 SalaryPayment=Salary payment
 SalariesPayments=Salaries payments
diff --git a/htdocs/langs/zh_CN/sendings.lang b/htdocs/langs/zh_CN/sendings.lang
index 102d19af81f5b70923df4cbb24bd51f1f2b354b9..6efce9dba4acd37314c89f6a36175b0decf33d90 100644
--- a/htdocs/langs/zh_CN/sendings.lang
+++ b/htdocs/langs/zh_CN/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=装船
 Shipments=出货
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=出货面积
 ListOfSendings=名单sendings
 SendingMethod=送货方式
diff --git a/htdocs/langs/zh_CN/sms.lang b/htdocs/langs/zh_CN/sms.lang
index 18f5d97e18045289f5f5cfc22f32174eb42a2281..9f205aab0ab557bf5cbef94aab03512f9935df1b 100644
--- a/htdocs/langs/zh_CN/sms.lang
+++ b/htdocs/langs/zh_CN/sms.lang
@@ -49,5 +49,6 @@ SendSms=发送短信
 SmsInfoCharRemain=铌的剩余字符
 SmsInfoNumero= (国际格式如:33899701761)
 DelayBeforeSending=延迟发送前(分钟)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=没有目标。检查您的SMS提供商的设置。
 
diff --git a/htdocs/langs/zh_CN/stocks.lang b/htdocs/langs/zh_CN/stocks.lang
index fb586bea382013758978b97eabf284b799813b30..1691d6dee50fc954b3ec0f6246b084fca7588f18 100644
--- a/htdocs/langs/zh_CN/stocks.lang
+++ b/htdocs/langs/zh_CN/stocks.lang
@@ -15,8 +15,8 @@ ValidateSending=删除发送
 CancelSending=取消发送
 DeleteSending=删除发送
 Stock=股票
-Stocks=股票
-StocksByLotSerial=Stock by lot/serial
+Stocks=仓库
+StocksByLotSerial=Stocks by lot/serial
 Movement=运动
 Movements=运动
 ErrorWarehouseRefRequired=仓库引用的名称是必需的
@@ -34,9 +34,9 @@ LastMovements=最后动作
 Units=单位
 Unit=单位
 StockCorrection=正确的股票
-StockTransfer=库存转移
-StockMovement=转让
-StockMovements=股票转让
+StockTransfer=Stock movement
+StockMovement=Stock movement
+StockMovements=Stock movements
 LabelMovement=转移标签
 NumberOfUnit=单位数目
 UnitPurchaseValue=采购单价
@@ -53,11 +53,11 @@ QtyDispatched=派出数量
 QtyDispatchedShort=Qty dispatched
 QtyToDispatchShort=Qty to dispatch
 OrderDispatch=联合调度
-RuleForStockManagementDecrease=为减少库存管理规则
-RuleForStockManagementIncrease=增加的库存管理规则
-DeStockOnBill=减少对客户的实际库存发票/信用票据验证(警告在此版本,它只有在仓库数1,股票被修改)
-DeStockOnValidateOrder=减少对客户的订单确认(警告在此版本中,真正的股票,它只有在仓库数1,股票被修改)
-DeStockOnShipment=Decrease real stocks on shipping validation
+RuleForStockManagementDecrease=Rule for automatic stock management decrease (manual decrease is always possible, even if an automatic decrease rule is activated)
+RuleForStockManagementIncrease=Rule for automatic stock management increase (manual increase is always possible, even if an automatic increase rule is activated)
+DeStockOnBill=减少来自客户发票或信用凭证中实际库存的验证
+DeStockOnValidateOrder=Decrease real stocks on customers orders validation
+DeStockOnShipment=减少实际库存出货验证
 ReStockOnBill=增加对供应商发票的实际库存/信用票据验证(警告在此版本中,它只有在仓库数1,股票被修改)
 ReStockOnValidateOrder=对供应商的订单增加赞许(警告在此版本中,真正的股票,它只有在仓库数1,股票被修改)
 ReStockOnDispatchOrder=增加人工调度到仓库供应商接到订单后,实时股票
@@ -83,8 +83,8 @@ WarehousesAndProductsBatchDetail=Warehouses and products (with detail per lot/se
 AverageUnitPricePMPShort=投入品平均价格
 AverageUnitPricePMP=投入品平均价格
 SellPriceMin=销售单价
-EstimatedStockValueSellShort=销售值
-EstimatedStockValueSell=销售值
+EstimatedStockValueSellShort=Value for sell
+EstimatedStockValueSell=Value for sell
 EstimatedStockValueShort=估计值的股票
 EstimatedStockValue=估计值的股票
 DeleteAWarehouse=删除仓库
@@ -113,7 +113,7 @@ AlertOnly= Alerts only
 WarehouseForStockDecrease=The warehouse <b>%s</b> will be used for stock decrease
 WarehouseForStockIncrease=The warehouse <b>%s</b> will be used for stock increase
 ForThisWarehouse=For this warehouse
-ReplenishmentStatusDesc=This is a list of all products with a stock lower than desired stock (or lower than alert value if checkbox "alert only" is checked), and suggest you to create supplier orders to fill the difference.
+ReplenishmentStatusDesc=This is a list of all products with a stock lower than desired stock (or lower than alert value if checkbox "alert only" is checked). Using the checkbox, you can create supplier orders to fill the difference.
 ReplenishmentOrdersDesc=This is a list of all opened supplier orders including predefined products. Only opened orders with predefined products, so orders that may affect stocks, are visible here.
 Replenishments=Replenishments
 NbOfProductBeforePeriod=Quantity of product %s in stock before selected period (< %s)
diff --git a/htdocs/langs/zh_CN/supplier_proposal.lang b/htdocs/langs/zh_CN/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..2b4e770d139935b662579eabe537a69d007ed89d 100644
--- a/htdocs/langs/zh_CN/supplier_proposal.lang
+++ b/htdocs/langs/zh_CN/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
@@ -27,7 +26,7 @@ DeleteAsk=Delete request
 ValidateAsk=Validate request
 AddAsk=Create a request
 SupplierProposalDraft=Drafts
-SupplierProposalOpened=Open
+SupplierProposalOpened=打开
 SupplierProposalStatusDraft=Draft (needs to be validated)
 SupplierProposalStatusValidated=Validated (request is open)
 SupplierProposalStatusOpened=Validated (request is open)
@@ -37,7 +36,7 @@ SupplierProposalStatusNotSigned=Refused
 SupplierProposalStatusBilled=Billed
 SupplierProposalStatusDraftShort=Draft
 SupplierProposalStatusValidatedShort=Validated
-SupplierProposalStatusOpenedShort=Open
+SupplierProposalStatusOpenedShort=打开
 SupplierProposalStatusClosedShort=Closed
 SupplierProposalStatusSignedShort=Accepted
 SupplierProposalStatusNotSignedShort=Refused
diff --git a/htdocs/langs/zh_CN/trips.lang b/htdocs/langs/zh_CN/trips.lang
index 1b5cebdd1cb58ded131b50941dc685eb8f0f2d54..52840280ce60b62508e371c661f31c2cba0e0da4 100644
--- a/htdocs/langs/zh_CN/trips.lang
+++ b/htdocs/langs/zh_CN/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=其他
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=午餐
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/zh_CN/users.lang b/htdocs/langs/zh_CN/users.lang
index 9e47527cf918ea410ed2c75988b80febe5c9e5fc..16d2c2fa76f5dab8f8bdce0a63e546055c308e44 100644
--- a/htdocs/langs/zh_CN/users.lang
+++ b/htdocs/langs/zh_CN/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Use OpenID to login
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/langs/zh_TW/accountancy.lang b/htdocs/langs/zh_TW/accountancy.lang
index 5ee7e8de9f54f863782f095d33e3d4f43b2e78d2..87e3200f57c3544cb69c4a4d2a00867fbc5af632 100644
--- a/htdocs/langs/zh_TW/accountancy.lang
+++ b/htdocs/langs/zh_TW/accountancy.lang
@@ -26,7 +26,6 @@ Selectmodelcsv=Select a model of export
 Modelcsv_normal=Classic export
 Modelcsv_CEGID=Export towards CEGID Expert
 BackToChartofaccounts=Return chart of accounts
-Back=Return
 
 Definechartofaccounts=Define a chart of accounts
 Selectchartofaccounts=Select a chart of accounts
@@ -109,10 +108,6 @@ DelBookKeeping=Delete the records of the general ledger
 
 DescSellsJournal=Sells journal
 DescPurchasesJournal=Purchases journal
-BankJournal=Bank journal
-DescBankJournal=Bank journal including all the types of payments other than cash
-CashJournal=Cash journal
-DescCashJournal=Cash journal including the type of payment cash
 FinanceJournal=Finance journal
 DescFinanceJournal=Finance journal including all the types of payments by bank account
 
@@ -152,7 +147,7 @@ DescVentilDoneSupplier=Consult here the list of the lines of invoices supplier a
 ValidateHistory=Validate Automatically
 
 ErrorAccountancyCodeIsAlreadyUse=Error, you cannot delete this accounting account because it is used
-
+MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
 FicheVentilation=Breakdown card
 GeneralLedgerIsWritten=Operations are written in the general ledger
 
@@ -167,7 +162,13 @@ Headername=Name in header
 Type=Type of fields
 Param=Additionnal parameters
 EnabledProduct=In Product
-EnabledTiers=In Tiers
+EnabledTiers=In third party
 EnabledVat=In Vat
-
-MvtNotCorrectlyBalanced=Mouvement not correctly balanced. Credit = %s. Debit = %s
+## Tools - Init accounting account on product / service
+InitAccountancy=Init accountancy
+InitAccountancyDesc=This page can be used to initialize an accounting account on products and services that does not have accountancy account defined for sales and purchases. Check before that setup of module accountancy is complete.
+Options=Options
+OptionModeProductSell=Mode sales
+OptionModeProductBuy=Mode purchases
+OptionModeProductSellDesc=Show all products with no accounting account defined for sales.
+OptionModeProductBuyDesc=Show all products with no accounting account defined for purchases.
diff --git a/htdocs/langs/zh_TW/admin.lang b/htdocs/langs/zh_TW/admin.lang
index 01bc466e0f6416fcecdc7179bdba7799f86285ab..2591bd868b34fb3c65d6f8e7e2cdb7ba5590becc 100644
--- a/htdocs/langs/zh_TW/admin.lang
+++ b/htdocs/langs/zh_TW/admin.lang
@@ -362,7 +362,7 @@ HideAnyVATInformationOnPDF=隱藏所有有關增值稅生成的PDF信息
 HideDescOnPDF=Hide products description on generated PDF
 HideRefOnPDF=Hide products ref. on generated PDF
 HideDetailsOnPDF=Hide products lines details on generated PDF
-PlaceCustomerAddressToIsoLocation=Use french standard position (La Posteà for customer address position
+PlaceCustomerAddressToIsoLocation=Use french standard position (La Poste) for customer address position
 Library=程式庫
 UrlGenerationParameters=參數,以確保網址
 SecurityTokenIsUnique=每個URL使用獨特的securekey參數
@@ -416,6 +416,7 @@ ConfirmEraseAllCurrentBarCode=Are you sure you want to erase all current barcode
 AllBarcodeReset=All barcode values have been removed
 NoBarcodeNumberingTemplateDefined=No numbering barcode template enabled into barcode module setup.
 NoRecordWithoutBarcodeDefined=No record with no barcode value defined.
+EnableFileCache=Enable file cache
 
 # Modules
 Module0Name=用戶和組
@@ -499,7 +500,7 @@ Module510Desc=Management of employees salaries and payments
 Module520Name=Loan
 Module520Desc=Management of loans
 Module600Name=通知
-Module600Desc=Send EMail notifications on some Dolibarr business events to third-party contacts (setup defined on each thirdparty)
+Module600Desc=Send EMail notifications (triggered by some business events) to third-party contacts (setup defined on each thirdparty) or fixed emails
 Module700Name=捐贈
 Module700Desc=捐款的管理
 Module770Name=Expense reports
@@ -963,6 +964,7 @@ DelaysBeforeWarning=時滯前警告
 DelaysOfToleranceBeforeWarning=前警告性延誤
 DelaysOfToleranceDesc=這個屏幕允許你定義的警報之前不能容忍拖延是與象形%s的屏幕報晚元素。
 Delays_MAIN_DELAY_ACTIONS_TODO=Delay tolerance (in days) before alert on planned events not yet realised
+Delays_MAIN_DELAY_TASKS_TODO=Delay tolerance (in days) before alert on planned tasks not yet realised
 Delays_MAIN_DELAY_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on orders not yet processed
 Delays_MAIN_DELAY_SUPPLIER_ORDERS_TO_PROCESS=Delay tolerance (in days) before alert on suppliers orders not yet processed
 Delays_MAIN_DELAY_PROPALS_TO_CLOSE=Delay tolerance (in days) before alert on proposals to close
@@ -1087,6 +1089,7 @@ PathDirectory=目錄
 SendmailOptionMayHurtBuggedMTA=Feature to send mails using method "PHP mail direct" will generate a mail message that might be not correctly parsed by some receiving mail servers. Result is that some mails can't be read by people hosted by those bugged platforms. It's case for some Internet providers (Ex: Orange in France). This is not a problem into Dolibarr nor into PHP but onto receiving mail server. You can however add option MAIN_FIX_FOR_BUGGED_MTA to 1 into setup - other to modify Dolibarr to avoid this. However, you may experience problem with other servers that respect strictly the SMTP standard. The other solution (recommended) is to use the method "SMTP socket library" that has no disadvantages.
 TranslationSetup=Configuration de la traduction
 TranslationDesc=Choice of language visible on screen can be modified:<br>* Globally from menu <strong>Home - Setup - Display</strong><br>* For user only from tab <strong>User display</strong> of user card (click on login on top of screen).
+TranslationOverwriteDesc=You can also overwrite some value by completing/editing the following table. You must use for "%s" the language code, for "%s" the key found into file langs/xx_XX/somefile.lang and "%s" the new value you want to use as new translation.
 TotalNumberOfActivatedModules=Total number of activated feature modules: <b>%s</b>
 YouMustEnableOneModule=You must at least enable 1 module
 ClassNotFoundIntoPathWarning=Class %s not found into PHP path
@@ -1664,6 +1667,7 @@ InstallModuleFromWebHasBeenDisabledByFile=Install of external module from applic
 ConfFileMuseContainCustom=Installing an external module from application save the module files into directory <strong>%s</strong>. To have this directory processed by Dolibarr, you must setup your <strong>conf/conf.php</strong> to have option<br>- <strong>$dolibarr_main_url_root_alt</strong> enabled to value <strong>$dolibarr_main_url_root_alt="/custom"</strong><br>- <strong>$dolibarr_main_document_root_alt</strong> enabled to value <strong>"%s/custom"</strong>
 HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over
 HighlightLinesColor=Highlight color of the line when the mouse passes over (keep empty for no highlight)
+TextTitleColor=Color of page title
 LinkColor=Color of links
 PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective
 NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes
diff --git a/htdocs/langs/zh_TW/agenda.lang b/htdocs/langs/zh_TW/agenda.lang
index a7c1c1282959da207b84f4fd61ef979d61a8fc80..b1abfa190157f3a04f90bf5a8753f0bdb6d88a58 100644
--- a/htdocs/langs/zh_TW/agenda.lang
+++ b/htdocs/langs/zh_TW/agenda.lang
@@ -35,7 +35,9 @@ AllActions= 所有/任務行動
 ViewCal=查看日歷
 ViewDay=日視圖
 ViewWeek=周視圖
+ViewYear=Year view
 ViewPerUser=Per user view
+ViewPerType=Per type view
 ViewWithPredefinedFilters= 查看與預定義的篩選器
 AutoActions= 全自動灌裝議程
 AgendaAutoActionDesc= 在此事件定義為要Dolibarr自動創建一個議程的行動。如果沒有被選中(默認情況下),只有手動操作將被列入議程。
diff --git a/htdocs/langs/zh_TW/bills.lang b/htdocs/langs/zh_TW/bills.lang
index 8383ad8f534cc0d3f581859d10a5fff6cac98617..a11cdef42239c4b1fd1309dfb73311680477595b 100644
--- a/htdocs/langs/zh_TW/bills.lang
+++ b/htdocs/langs/zh_TW/bills.lang
@@ -73,6 +73,8 @@ PaymentsAlreadyDone=付款已完成
 PaymentsBackAlreadyDone=Payments back already done
 PaymentRule=付款規則
 PaymentMode=付款方式
+IdPaymentMode=Payment type (id)
+LabelPaymentMode=Payment type (label)
 PaymentModeShort=Payment type
 PaymentTerm=Payment term
 PaymentConditions=Payment terms
@@ -184,6 +186,7 @@ ShowInvoice=顯示發票
 ShowInvoiceReplace=顯示發票取代
 ShowInvoiceAvoir=顯示信貸說明
 ShowInvoiceDeposit=顯示發票保證金
+ShowInvoiceSituation=Show situation invoice
 ShowPayment=顯示支付
 AlreadyPaid=已支付
 AlreadyPaidBack=Already paid back
@@ -221,6 +224,7 @@ NonPercuRecuperable=非可收回
 SetConditions=設置付款條件
 SetMode=設置支付方式
 Billed=帳單
+RecurringInvoices=Recurring invoices
 RepeatableInvoice=Template invoice
 RepeatableInvoices=Template invoices
 Repeatable=Template
@@ -269,6 +273,7 @@ HelpAbandonBadCustomer=這一數額已被放棄(客戶說是一個壞的客戶
 HelpAbandonOther=這一數額已被放棄,因為這是一個錯誤(錯誤的顧客或由其他替代例如發票)
 IdSocialContribution=Social/fiscal tax payment id
 PaymentId=付款編號
+PaymentRef=Payment ref.
 InvoiceId=發票編號
 InvoiceRef=發票編號。
 InvoiceDateCreation=發票的建立日期
@@ -296,6 +301,10 @@ RelatedSupplierInvoices=Related supplier invoices
 LatestRelatedBill=Latest related invoice
 WarningBillExist=Warning, one or more invoice already exist
 MergingPDFTool=Merging PDF tool
+AmountPaymentDistributedOnInvoice=Payment amount distributed on invoice
+PaymentNote=Payment note
+ListOfPreviousSituationInvoices=List of previous situation invoices
+ListOfNextSituationInvoices=List of next situation invoices
 
 # PaymentConditions
 PaymentConditionShortRECEP=即時
@@ -351,7 +360,7 @@ ChequeNumber=檢查ñ °
 ChequeOrTransferNumber=支票/轉賬ñ °
 ChequeMaker=Check/Transfer transmitter
 ChequeBank=銀行檢查
-CheckBank=Check
+CheckBank=查詢
 NetToBePaid=網,以支付
 PhoneNumber=電話
 FullPhoneNumber=電話
@@ -393,6 +402,7 @@ Reported=延遲
 DisabledBecausePayments=不可能的,因為有一些付款
 CantRemovePaymentWithOneInvoicePaid=無法刪除,因為至少有付款發票分類所許
 ExpectedToPay=預期付款
+CantRemoveConciliatedPayment=Can't remove conciliated payment
 PayedByThisPayment=氟離子選擇電極通過此付款
 ClosePaidInvoicesAutomatically=Classify "Paid" all standard, situation or replacement invoices entirely paid.
 ClosePaidCreditNotesAutomatically=Classify "Paid" all credit notes entirely paid back.
@@ -404,6 +414,7 @@ NoteListOfYourUnpaidInvoices=Note: This list contains only invoices for third pa
 RevenueStamp=Revenue stamp
 YouMustCreateInvoiceFromThird=This option is only available when creating invoice from tab "customer" of thirdparty
 PDFCrabeDescription=一個完整的PDF發票(invoice)文件範本(支援營業稅選項,折扣,付款條件..)
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
 TerreNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 MarsNumRefModelDesc1=Return number with format %syymm-nnnn for standard invoices, %syymm-nnnn for replacement invoices, %syymm-nnnn for deposit invoices and %syymm-nnnn for credit notes where yy is year, mm is month and nnnn is a sequence with no break and no return to 0
 TerreNumRefModelError=美元的法案syymm起已經存在,而不是與此序列模型兼容。刪除或重新命名它激活該模塊。
@@ -433,3 +444,11 @@ DisabledBecauseFinal=This situation is final.
 CantBeLessThanMinPercent=The progress can't be smaller than its value in the previous situation.
 NoSituations=No open situations
 InvoiceSituationLast=Final and general invoice
+PDFCrevetteSituationNumber=Situation N°%s
+PDFCrevetteSituationInvoiceLineDecompte=Situation invoice - COUNT
+PDFCrevetteSituationInvoiceTitle=Situation invoice
+PDFCrevetteDescription=Invoice PDF template Crevette. A complete invoice template for invoice situation
+PDFCrevetteSituationInvoiceLine=Situation N°%s : Inv. N°%s on %s
+TotalSituationInvoice=Total situation
+invoiceLineProgressError=Invoice line progress can't be egal or upper the next invoice line
+updatePriceNextInvoiceErrorUpdateline=Error : update price on invoice line : %s
diff --git a/htdocs/langs/zh_TW/boxes.lang b/htdocs/langs/zh_TW/boxes.lang
index 5562a5589188f51a4938d33e27114793bef9bed0..7fbb0b4647941fe715c2634bcd4bc9a3d8e7f563 100644
--- a/htdocs/langs/zh_TW/boxes.lang
+++ b/htdocs/langs/zh_TW/boxes.lang
@@ -95,3 +95,4 @@ ForCustomersInvoices=客戶的發票
 ForCustomersOrders=Customers orders
 ForProposals=建議
 LastXMonthRolling=The last %s month rolling
+ChooseBoxToAdd=Choose a box to add
diff --git a/htdocs/langs/zh_TW/categories.lang b/htdocs/langs/zh_TW/categories.lang
index 5ff1443382f63a1c5500ca83ebf2ebf098bdc270..be05cd05a39fdc470c7116dec21328ce973eba0f 100644
--- a/htdocs/langs/zh_TW/categories.lang
+++ b/htdocs/langs/zh_TW/categories.lang
@@ -76,6 +76,7 @@ ProductsCategoryShort=Products tag/category
 MembersCategoryShort=Members tag/category
 SuppliersCategoriesShort=Suppliers tags/categories
 CustomersCategoriesShort=Customers tags/categories
+ProspectsCategoriesShort=Prospects tags/categories
 CustomersProspectsCategoriesShort=客戶/潛在分類標籤
 ProductsCategoriesShort=Products tags/categories
 MembersCategoriesShort=Members tags/categories
diff --git a/htdocs/langs/zh_TW/companies.lang b/htdocs/langs/zh_TW/companies.lang
index 573fc6120e337474571015961a8eccf816fcb36b..750dfc72a9fe9385e4cd21df4c0be2d728ab6c94 100644
--- a/htdocs/langs/zh_TW/companies.lang
+++ b/htdocs/langs/zh_TW/companies.lang
@@ -206,7 +206,7 @@ ProfId1MA=ID教授。 1(RC)的
 ProfId2MA=ID教授。 2(Patente)
 ProfId3MA=ID教授。 3(如果)
 ProfId4MA=ID教授。 4(CNSS)
-ProfId5MA=-
+ProfId5MA=Id prof. 5 (C.I.C.E.)
 ProfId6MA=-
 ProfId1MX=(RFC)的ID 1教授。
 ProfId2MX=ID 2教授(體育IMSS的河。)
@@ -328,12 +328,12 @@ CapitalOf=資本 %s
 EditCompany=編輯公司
 EditDeliveryAddress=修改送貨地址
 ThisUserIsNot=這個用戶不是一個潛在客戶、客戶或供應商
-VATIntraCheck=支票
+VATIntraCheck=查詢
 VATIntraCheckDesc=<b>%s</b>連結允許連上"歐盟營業稅檢查服務"網頁。連上此網頁需具有外部網際網路連線能力。
 VATIntraCheckURL=http://ec.europa.eu/taxation_customs/vies/vieshome.do
 VATIntraCheckableOnEUSite=在"歐盟營業稅檢查服務"網頁,查詢 Intracomunnautary 營業稅
 VATIntraManualCheck=您也可以自行到"歐盟營業稅檢查服務"網頁 <a href="%s" target="_blank">%s</a> 手動檢查
-ErrorVATCheckMS_UNAVAILABLE=檢查不可能的。檢查服務是沒有提供的會員國(%s)中。
+ErrorVATCheckMS_UNAVAILABLE=無法查詢。檢查服務是沒有提供的會員國(%s)中。
 NorProspectNorCustomer=非潛在,也非客戶(亦即供應商)
 JuridicalStatus=法律地位
 Staff=員工人數
diff --git a/htdocs/langs/zh_TW/compta.lang b/htdocs/langs/zh_TW/compta.lang
index f825f017c7f47d2f3e1f7eb92477975dabc1bb35..b73b8043d57b766754354519f4888da2e418a4f7 100644
--- a/htdocs/langs/zh_TW/compta.lang
+++ b/htdocs/langs/zh_TW/compta.lang
@@ -155,6 +155,7 @@ DepositsAreNotIncluded=- 存款發票,也不包括
 DepositsAreIncluded=- 存款發票
 LT2ReportByCustomersInInputOutputModeES=報告由第三方IRPF
 LT1ReportByCustomersInInputOutputModeES=Report by third party RE
+VATReport=VAT report
 VATReportByCustomersInInputOutputMode=Report by the customer VAT collected and paid
 VATReportByCustomersInDueDebtMode=Report by the customer VAT collected and paid
 VATReportByQuartersInInputOutputMode=Report by rate of the VAT collected and paid
diff --git a/htdocs/langs/zh_TW/cron.lang b/htdocs/langs/zh_TW/cron.lang
index 07c73c0f7011e759bcd3d1e3246d7c993c0fe236..37d2f27be457b5e3dbddea9cbadf8fb60fa1517c 100644
--- a/htdocs/langs/zh_TW/cron.lang
+++ b/htdocs/langs/zh_TW/cron.lang
@@ -18,8 +18,9 @@ CronExplainHowToRunUnix=On Unix environment you should use the following crontab
 CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
 # Menu
 CronJobs=Scheduled jobs
-CronListActive=List of active/scheduled jobs
+CronListActive=List of enabled/scheduled jobs
 CronListInactive=List of disabled jobs
+EnabledAndDisabled=Enabled and disabled
 # Page list
 CronDateLastRun=Last run
 CronLastOutput=Last run output
@@ -35,8 +36,8 @@ CronInfo=Scheduled job module allow to execute job that have been planned
 CronWaitingJobs=Waiting jobs
 CronTask=Job
 CronNone=無
-CronDtStart=開始日期
-CronDtEnd=結束日期
+CronDtStart=Not before
+CronDtEnd=Not after
 CronDtNextLaunch=Next execution
 CronDtLastLaunch=Last execution
 CronFrequency=Frequency
@@ -51,6 +52,7 @@ CronNoJobs=No jobs registered
 CronPriority=優先
 CronLabel=描述
 CronNbRun=Nb. launch
+CronMaxRun=Max nb. launch
 CronEach=Every
 JobFinished=Job launched and finished
 #Page card
diff --git a/htdocs/langs/zh_TW/deliveries.lang b/htdocs/langs/zh_TW/deliveries.lang
index 2e4845d4bbaa3f1cb203bbaf7baa1c943ea37061..50c03303226259ba3377c2bc226eca66967b80cf 100644
--- a/htdocs/langs/zh_TW/deliveries.lang
+++ b/htdocs/langs/zh_TW/deliveries.lang
@@ -17,6 +17,9 @@ DeleteDeliveryReceiptConfirm=你確定要刪除送達回執<b>%s</b>嗎?
 DeliveryMethod=送貨方式
 TrackingNumber=追蹤號碼
 DeliveryNotValidated=交付未驗證
+StatusDeliveryCanceled=Canceled
+StatusDeliveryDraft=Draft
+StatusDeliveryValidated=Received
 # merou PDF model
 NameAndSignature=姓名及簽署:
 ToAndDate=To___________________________________對____ / _____ / __________
diff --git a/htdocs/langs/zh_TW/holiday.lang b/htdocs/langs/zh_TW/holiday.lang
index eca05f79d321781fd9d70868539a90e4fad70aa9..623a9f86609c115f6434d8cbfb2e9dd6a9919a8e 100644
--- a/htdocs/langs/zh_TW/holiday.lang
+++ b/htdocs/langs/zh_TW/holiday.lang
@@ -8,7 +8,6 @@ NotActiveModCP=您必須要啟用排休模組才能看到此頁面
 NotConfigModCP=若要啟用 <a href="./admin/holiday.php?leftmenu=setup&mainmenu=home" style="font-weight: normal; color: red; text-decoration: underline;"> 前往此頁面</ a>.
 NoCPforUser=你的休假日已經全部用完
 AddCP=提出假單
-Employe=Employee
 DateDebCP=開始日期
 DateFinCP=結束日期
 DateCreateCP=建立日期
@@ -23,7 +22,7 @@ ReviewedByCP=Will be reviewed by
 DescCP=描述
 SendRequestCP=Create leave request
 DelayToRequestCP=Leave requests must be made at least <b>%s day(s)</b> before them.
-MenuConfCP=Edit balance of leaves
+MenuConfCP=Balance of leaves
 UpdateAllCP=Update the leaves
 SoldeCPUser=Leaves balance is <b>%s</b> days.
 ErrorEndDateCP=You must select an end date greater than the start date.
@@ -79,9 +78,9 @@ PrevSoldeCP=Previous Balance
 NewSoldeCP=New Balance
 alreadyCPexist=A leave request has already been done on this period.
 UserName=名稱
-Employee=Employee
 FirstDayOfHoliday=First day of vacation
 LastDayOfHoliday=Last day of vacation
+BoxTitleLastLeaveRequests=Last %s modified leave requests
 HolidaysMonthlyUpdate=Monthly update
 ManualUpdate=Manual update
 HolidaysCancelation=Leave request cancelation
@@ -141,4 +140,7 @@ HolidaysRefusedBody=Your leave request for %s to %s has been denied for the foll
 HolidaysCanceled=Canceled leaved request
 HolidaysCanceledBody=Your leave request for %s to %s has been canceled.
 NewByMonth=Added per month
+Affect=Followed by a counter
+FollowedByACounter=1: This type of leave need to be followed by a counter. Counter is incremented manually or automatically and when a leave request is validated, counter is decremented.<br>0: Not followed by a counter.
+NoLeaveWithCounterDefined=There is no leave types defined that need to be followed by a counter
 GoIntoDictionaryHolidayTypes=Go into <strong>Home - Setup - Dictionaries - Type of leaves</strong> to setup the different types of leaves.
diff --git a/htdocs/langs/zh_TW/hrm.lang b/htdocs/langs/zh_TW/hrm.lang
index 1d03a8ebbf9bb4db8fbc747188bd83cfb7042d7f..1c6ec8e61fcb2b97eed854ec9145666992e5d568 100644
--- a/htdocs/langs/zh_TW/hrm.lang
+++ b/htdocs/langs/zh_TW/hrm.lang
@@ -15,5 +15,6 @@ DictionaryFunction=HRM - Function list
 ListOfEmployees=List of employees
 Employees=Employees
 Employee=Employee
+Employe=Employe
 NewEmployee=New employee
 EmployeeCard=Employee card
diff --git a/htdocs/langs/zh_TW/interventions.lang b/htdocs/langs/zh_TW/interventions.lang
index 6aa4dfdb9d217e6b9faecee03c5c48fa7fd0d0bf..35c2efa310dc34494543445f217ece7546a779a4 100644
--- a/htdocs/langs/zh_TW/interventions.lang
+++ b/htdocs/langs/zh_TW/interventions.lang
@@ -54,6 +54,9 @@ PacificNumRefModelDesc1=用以下固定的方式回傳編號:<br> %syymm-nnnn <b
 PacificNumRefModelError=錯誤編號一個以 $syymm 為起始的 intervention card 已經存在,且不相容於此序號模型。請刪除或重新命名以便啟用這個模塊。
 PrintProductsOnFichinter=Print products on intervention card
 PrintProductsOnFichinterDetails=interventions generated from orders
+InterventionStatistics=Statistics of interventions
+NbOfinterventions=Nb of intervention cards
+NumberOfInterventionsByMonth=Nb of intervention cards by month (date of validation)
 ##### Exports #####
 InterId=Intervention id
 InterRef=Intervention ref.
diff --git a/htdocs/langs/zh_TW/mails.lang b/htdocs/langs/zh_TW/mails.lang
index 4e9d1c6a1466fcfcc24bd5735abfaeba8a03cc07..4f4e28ce29355b7baf674d4bc7461b01478c1df5 100644
--- a/htdocs/langs/zh_TW/mails.lang
+++ b/htdocs/langs/zh_TW/mails.lang
@@ -81,6 +81,7 @@ ActivateCheckReadKey=Key used to encrypt URL used for "Read Receipt" and "Unsubc
 EMailSentToNRecipients=EMail sent to %s recipients.
 XTargetsAdded=<b>%s</b> recipients added into target list
 EachInvoiceWillBeAttachedToEmail=A document using default invoice document template will be created and attached to each email.
+OnlyPDFattachmentSupported=If the PDF document was already generated for the invoice, it will be attached to email. If not, no email will be sent (also, note that only pdf invoice are supported as attachment in mass sending in this version).
 MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s)
 SendRemind=Send reminder by EMails
 RemindSent=%s reminder(s) sent
diff --git a/htdocs/langs/zh_TW/main.lang b/htdocs/langs/zh_TW/main.lang
index c4b6eb67bf519e123128d4a6802a446bb681a3ae..f90eb0ce70c4c0ff504905a006eb663572f70701 100644
--- a/htdocs/langs/zh_TW/main.lang
+++ b/htdocs/langs/zh_TW/main.lang
@@ -24,6 +24,7 @@ FormatDateHourSecShort=%m/%d/%Y %I:%M:%S %p
 FormatDateHourTextShort=%Y %b %d, %I:%M %p
 FormatDateHourText=%Y %B %d, , %I:%M %p
 DatabaseConnection=資料庫連接
+NoTemplateDefined=No template defined for this email type
 NoTranslation=No translation
 NoRecordFound=No record found
 NoError=沒有發生錯誤
@@ -105,6 +106,7 @@ NotePrivate=備註(私人)
 PrecisionUnitIsLimitedToXDecimals=小數位數可到 <b>%s</b> 位。
 DoTest=測試
 ToFilter=篩選器
+NoFilter=No filter
 WarningYouHaveAtLeastOneTaskLate=警告,你有至少一個元素,超出了容忍的延誤。
 yes=Yes
 Yes=Yes
@@ -228,6 +230,8 @@ Now=現在
 HourStart=Start hour
 Date=日期
 DateAndHour=Date and hour
+DateToday=Today's date
+DateReference=Reference date
 DateStart=開始日期
 DateEnd=結束日期
 DateCreation=建立日期
@@ -608,6 +612,7 @@ TotalMan=全部
 NeverReceived=從未收到
 Canceled=取消
 YouCanChangeValuesForThisListFromDictionarySetup=You can change values for this list from menu setup - dictionary
+YouCanSetDefaultValueInModuleSetup=You can set the default value used when creating a new record into module setup
 Color=彩色
 Documents=附件(文件)
 DocumentsNb=(%s的鏈接文件)
@@ -695,6 +700,7 @@ Test=Test
 Element=Element
 NoPhotoYet=No pictures available yet
 HomeDashboard=Home summary
+Dashboard=Dashboard
 Deductible=Deductible
 from=from
 toward=toward
diff --git a/htdocs/langs/zh_TW/margins.lang b/htdocs/langs/zh_TW/margins.lang
index df6d4d931508310dfdb109d5029565d5ac51de20..dd72da7314910e0ca9afa52258e3abf2edf1d0af 100644
--- a/htdocs/langs/zh_TW/margins.lang
+++ b/htdocs/langs/zh_TW/margins.lang
@@ -23,8 +23,8 @@ ChooseProduct/Service=Choose product or service
 StartDate=開始日期
 EndDate=結束日期
 Launch=開始
-ForceBuyingPriceIfNull=Force buying price if null
-ForceBuyingPriceIfNullDetails=if "ON", margin will be zero on line (buying price = selling price), otherwise ("OFF"), marge will be equal to selling price (buying price = 0)
+ForceBuyingPriceIfNull=Force buying/cost price to selling price if not defined
+ForceBuyingPriceIfNullDetails=If buying/cost price not defined, and this option "ON", margin will be zero on line (buying/cost price = selling price), otherwise ("OFF"), marge will be equal to suggested default.
 MARGIN_METHODE_FOR_DISCOUNT=Margin method for global discounts
 UseDiscountAsProduct=As a product
 UseDiscountAsService=As a service
@@ -35,8 +35,9 @@ MargeBrute=Raw margin
 MargeNette=Net margin
 MargeType1=Margin on Best supplier price
 MargeType2=Margin on Weighted Average Price (WAP)
-MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br/>Net margin : Selling price - Cost price
-MarginTypeDesc=Margin on best buying price : Selling price - Best supplier price defined on product card<br/>Margin on Weighted Average Price (WAP) : Selling price - Product Weighted Average Price
+MargeType3=Margin on Cost Price
+MARGIN_TYPE_DETAILS=Raw margin : Selling price - Buying price<br>Net margin : Selling price - Cost price
+MarginTypeDesc=* Margin on best buying price = Selling price - Best supplier price defined on product card<br>* Margin on Weighted Average Price (WAP) = Selling price - Product Weighted Average Price (WAP) or best supplier price if WAP not yet defined<br>* Margin on Cost price = Selling price - Cost price defined on product card or WAP if cost price not defined, or best supplier price if WAP not yet defined
 CostPrice=Cost price
 BuyingCost=Cost price
 UnitCharges=Unit charges
diff --git a/htdocs/langs/zh_TW/oauth.lang b/htdocs/langs/zh_TW/oauth.lang
index 4cc08b058c698c60ae5e97eb9ba3ad80e838907d..260c0e1f902930ac839a21e196ce0d434f4616d9 100644
--- a/htdocs/langs/zh_TW/oauth.lang
+++ b/htdocs/langs/zh_TW/oauth.lang
@@ -8,7 +8,7 @@ TokenDeleted=Token deleted
 RequestAccess=Click here to request/renew access and receive a new token to save
 DeleteAccess=Click here to delete token
 UseTheFollowingUrlAsRedirectURI=Use the following URL as the Redirect URI when creating your credential on your OAuth provider:
-ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules than need OAuth2 authentication.
+ListOfSupportedOauthProviders=Enter here credential provided by your OAuth2 provider. Only supported OAuth2 providers are visible here. This setup may be used by other modules that need OAuth2 authentication.
 OAUTH_GOOGLE_NAME=Api Google
 OAUTH_GOOGLE_ID=Api Google Id
 OAUTH_GOOGLE_SECRET=Api Google Secret
diff --git a/htdocs/langs/zh_TW/orders.lang b/htdocs/langs/zh_TW/orders.lang
index f067ab794784abee7418cf72da686252f0871d5b..2bead1f2dca48acb30e29d423d1740561d022c3e 100644
--- a/htdocs/langs/zh_TW/orders.lang
+++ b/htdocs/langs/zh_TW/orders.lang
@@ -82,7 +82,7 @@ OrdersOpened=Orders to process
 NoOpenedOrders=No open orders
 NoOtherOpenedOrders=No other open orders
 NoDraftOrders=No draft orders
-NoOrder=No Order
+NoOrder=No order
 NoSupplierOrder=No supplier order
 OtherOrders=其他命令
 LastOrders=Last %s customer orders
diff --git a/htdocs/langs/zh_TW/other.lang b/htdocs/langs/zh_TW/other.lang
index 4c208a568d18706032c2d50454338d49361e6d3f..4ab358c293991cdc6a5d8670e8632ee2c6f3bf72 100644
--- a/htdocs/langs/zh_TW/other.lang
+++ b/htdocs/langs/zh_TW/other.lang
@@ -238,3 +238,8 @@ ToExport=匯出
 NewExport=建立新的匯出
 ##### External sites #####
 ExternalSites=外部網站
+WebsiteSetup=Setup of module website
+WEBSITE_PAGEURL=URL of page
+WEBSITE_TITLE=Title
+WEBSITE_DESCRIPTION=Description
+WEBSITE_KEYWORDS=Keywords
diff --git a/htdocs/langs/zh_TW/paypal.lang b/htdocs/langs/zh_TW/paypal.lang
index eff8d130cc117b479a144b880541d0a8161aa572..03f149bed350e71403edd16848d60f772f2bd7ff 100644
--- a/htdocs/langs/zh_TW/paypal.lang
+++ b/htdocs/langs/zh_TW/paypal.lang
@@ -8,6 +8,7 @@ PAYPAL_API_SANDBOX=測試/沙箱模式
 PAYPAL_API_USER=API的用戶名
 PAYPAL_API_PASSWORD=API密碼
 PAYPAL_API_SIGNATURE=API簽名
+PAYPAL_SSLVERSION=Curl SSL Version
 PAYPAL_API_INTEGRAL_OR_PAYPALONLY=優惠“不可分割的”支付(信用卡+貝寶)或“貝寶”只
 PaypalModeIntegral=Integral
 PaypalModeOnlyPaypal=PayPal only
diff --git a/htdocs/langs/zh_TW/products.lang b/htdocs/langs/zh_TW/products.lang
index bcc4e2f577b43192b43923eaf3b8cd1625ce5b92..937013628a51446e3595a40df91b94eb60768098 100644
--- a/htdocs/langs/zh_TW/products.lang
+++ b/htdocs/langs/zh_TW/products.lang
@@ -252,7 +252,7 @@ UnitPmp=Net unit VWAP
 CostPmpHT=Net total VWAP
 ProductUsedForBuild=Auto consumed by production
 ProductBuilded=Production completed
-ProductsMultiPrice=Product multi-price
+ProductsMultiPrice=Products and prices for each price level
 ProductsOrServiceMultiPrice=Customer prices (of products or services, multi-prices)
 ProductSellByQuarterHT=Products turnover quarterly before tax
 ServiceSellByQuarterHT=Services turnover quarterly before tax
@@ -311,4 +311,5 @@ PropalMergePdfProductChooseFile=Select PDF files
 IncludingProductWithTag=Including product/service with tag
 DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
 WarningSelectOneDocument=Please select at least one document
-DefaultUnitToShow=Units
+DefaultUnitToShow=Unit
+NbOfQtyInProposals=Qty in proposals
diff --git a/htdocs/langs/zh_TW/projects.lang b/htdocs/langs/zh_TW/projects.lang
index a26c32287f1f3b4c19725588a246a34f289411b1..184201afe31ab9ad24cf152f9d3d0a739a810fc3 100644
--- a/htdocs/langs/zh_TW/projects.lang
+++ b/htdocs/langs/zh_TW/projects.lang
@@ -14,6 +14,7 @@ ProjectsPublicTaskDesc=This view presents all projects and tasks you are allowed
 ProjectsDesc=這種觀點提出的所有項目(你的用戶權限批準你認為一切)。
 MyTasksDesc=這種觀點是有限的項目或任務你是一個接觸(不管是類型)。
 OnlyOpenedProject=Only open projects are visible (projects in draft or closed status are not visible).
+ClosedProjectsAreHidden=Closed projects are not visible.
 TasksPublicDesc=這種觀點提出的所有項目,您可閱讀任務。
 TasksDesc=這種觀點提出的所有項目和任務(您的用戶權限批準你認為一切)。
 AllTaskVisibleButEditIfYouAreAssigned=All tasks for such project are visible, but you can enter time only for task you are assigned on. Assign task to you if you want to enter time on it.
@@ -29,7 +30,9 @@ OfficerProject=項目主任
 LastProjects=上次%s的項目
 AllProjects=所有項目
 OpenedProjects=Opened projects
+OpenedTasks=Opened tasks
 OpportunitiesStatusForOpenedProjects=Opportunities amount of opened projects by status
+OpportunitiesStatusForProjects=Opportunities amount of projects by status
 ProjectsList=項目名單
 ShowProject=顯示項目
 SetProject=設置項目
@@ -129,6 +132,8 @@ TaskModifiedInDolibarr=Task %s modified
 TaskDeletedInDolibarr=Task %s deleted
 OpportunityStatus=Opportunity status
 OpportunityStatusShort=Opp. status
+OpportunityProbability=Opportunity probability
+OpportunityProbabilityShort=Opp. probab.
 OpportunityAmount=Opportunity amount
 OpportunityAmountShort=Opp. amount
 ##### Types de contacts #####
@@ -163,6 +168,7 @@ ProjectsWithThisUserAsContact=Projects with this user as contact
 TasksWithThisUserAsContact=Tasks assigned to this user
 ResourceNotAssignedToProject=Not assigned to project
 ResourceNotAssignedToTask=Not assigned to task
+ResourceNotAssignedToTheTask=Not assigned to the task
 AssignTaskToMe=Assign task to me
 AssignTask=Assign
 ProjectOverview=Overview
@@ -179,7 +185,7 @@ YouCanCompleteRef=If you want to complete the ref with some information (to use
 OpenedProjectsByThirdparties=Opened projects by thirdparties
 OpportunityTotalAmount=Opportunities total amount
 OpportunityPonderatedAmount=Opportunities weighted amount
-OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability (depending on status of opportunity)
+OpportunityPonderatedAmountDesc=Opportunities amount weighted with probability
 OppStatusPROSP=Prospection
 OppStatusQUAL=Qualification
 OppStatusPROPO=Proposal
diff --git a/htdocs/langs/zh_TW/propal.lang b/htdocs/langs/zh_TW/propal.lang
index b32d5ab21e44e3c67664a32cbac9cc98a079cbe6..93cc8634ada7504fdf6070983185a9c329e7f334 100644
--- a/htdocs/langs/zh_TW/propal.lang
+++ b/htdocs/langs/zh_TW/propal.lang
@@ -25,6 +25,7 @@ LastModifiedProposals=最後%s的修訂建議
 AllPropals=所有提案
 LastProposals=最後建議
 SearchAProposal=搜尋建議
+NoProposal=No proposal
 ProposalsStatistics=商業建議的統計數字
 NumberOfProposalsByMonth=按月份數
 AmountOfProposalsByMonthHT=按月份金額(稅後)
@@ -62,7 +63,8 @@ DatePropal=日期的建議
 DateEndPropal=有效期結束日期
 DateEndPropalShort=結束日期
 ValidityDuration=有效期
-CloseAs=密切與地位
+CloseAs=Set status to
+SetAcceptedRefused=Set accepted/refused
 ClassifyBilled=分類計費
 BuildBill=建立發票
 ErrorPropalNotFound=Propal%s不符合
@@ -100,3 +102,4 @@ DefaultModelPropalCreate=Default model creation
 DefaultModelPropalToBill=Default template when closing a business proposal (to be invoiced)
 DefaultModelPropalClosed=Default template when closing a business proposal (unbilled)
 ProposalCustomerSignature=Written acceptance, company stamp, date and signature
+ProposalsStatisticsSuppliers=Supplier proposals statistics
diff --git a/htdocs/langs/zh_TW/salaries.lang b/htdocs/langs/zh_TW/salaries.lang
index 953a9c7540cbb06d6209140b32aaa0d23261e324..da177410860fb80d4d2d0872ec3b258ed787ba0e 100644
--- a/htdocs/langs/zh_TW/salaries.lang
+++ b/htdocs/langs/zh_TW/salaries.lang
@@ -1,9 +1,8 @@
-# Dolibarr language file - Source file is en_US - users
+# Dolibarr language file - Source file is en_US - salaries
 SALARIES_ACCOUNTING_ACCOUNT_PAYMENT=Accountancy code for salaries payments
 SALARIES_ACCOUNTING_ACCOUNT_CHARGE=Accountancy code for financial charge
 Salary=Salary
 Salaries=Salaries
-Employee=Employee
 NewSalaryPayment=New salary payment
 SalaryPayment=Salary payment
 SalariesPayments=Salaries payments
diff --git a/htdocs/langs/zh_TW/sendings.lang b/htdocs/langs/zh_TW/sendings.lang
index 07a5d5ccc1e747249715b06d753af21feb1f3a48..3001cb8c8f85670e095ab9b53ae2cd8d8fd2e466 100644
--- a/htdocs/langs/zh_TW/sendings.lang
+++ b/htdocs/langs/zh_TW/sendings.lang
@@ -6,7 +6,7 @@ AllSendings=All Shipments
 Shipment=出貨
 Shipments=出貨
 ShowSending=Show Shipments
-Receivings=Receipts
+Receivings=Delivery Receipts
 SendingsArea=出貨
 ListOfSendings=出貨清單列表
 SendingMethod=送貨方式
diff --git a/htdocs/langs/zh_TW/sms.lang b/htdocs/langs/zh_TW/sms.lang
index fb6bdc432611dce96cecc204b0ed3fc06bfa5049..7861da8af313bff8e253be1cc5bc55fbdf0205ac 100644
--- a/htdocs/langs/zh_TW/sms.lang
+++ b/htdocs/langs/zh_TW/sms.lang
@@ -49,5 +49,6 @@ SendSms=發送短信
 SmsInfoCharRemain=鈮的剩余字符
 SmsInfoNumero= (國際格式如:33899701761)
 DelayBeforeSending=延遲發送前(分鐘)
+SmsNoPossibleSenderFound=No sender available. Check setup of your SMS provider.
 SmsNoPossibleRecipientFound=沒有目標。檢查您的SMS提供商的設置。
 
diff --git a/htdocs/langs/zh_TW/supplier_proposal.lang b/htdocs/langs/zh_TW/supplier_proposal.lang
index c90b7abeba23d63c7e688e73c99610b79b6b1864..b95e9f17180769387d5a6876abc1db18093c51a0 100644
--- a/htdocs/langs/zh_TW/supplier_proposal.lang
+++ b/htdocs/langs/zh_TW/supplier_proposal.lang
@@ -1,9 +1,8 @@
 # Dolibarr language file - Source file is en_US - supplier_proposal
 SupplierProposal=Supplier commercial proposals
 supplier_proposalDESC=Manage price requests to suppliers
-supplier_proposalMENU_LEFT_TITLE=Supplier proposals
-supplier_proposalMENU_LEFT_TITLE_NEW=New request
-supplier_proposalMENU_LEFT_TITLE_LIST=List
+SupplierProposalShort=Supplier proposals
+SupplierProposalNew=New request
 CommRequest=Price request
 CommRequests=Price requests
 SearchRequest=Find a request
@@ -11,7 +10,7 @@ DraftRequests=Draft requests
 LastModifiedRequests=Last %s modified price requests
 RequestsOpened=Open price requests
 SupplierProposalArea=Supplier proposals area
-SupplierProposalShort=Supplier proposal
+SupplierProposalShort=Supplier proposals
 SupplierProposals=Supplier proposals
 NewAskPrice=New price request
 NewAsk=New request
diff --git a/htdocs/langs/zh_TW/trips.lang b/htdocs/langs/zh_TW/trips.lang
index cd18e8f5983d53bf5fdbc239fb32c952719f4649..10109ee5a7e0ca1ba8b60733bcd6883d3c205812 100644
--- a/htdocs/langs/zh_TW/trips.lang
+++ b/htdocs/langs/zh_TW/trips.lang
@@ -31,7 +31,7 @@ TripNDF=Informations expense report
 PDFStandardExpenseReports=Standard template to generate a PDF document for expense report
 ExpenseReportLine=Expense report line
 TF_OTHER=其他
-TF_TRANSPORTATION=Transportation
+TF_TRIP=Transportation
 TF_LUNCH=午餐
 TF_METRO=Metro
 TF_TRAIN=Train
@@ -99,4 +99,5 @@ ConfirmSaveTrip=Are you sure you want to validate this expense report ?
 NoTripsToExportCSV=No expense report to export for this period.
 ExpenseReportPayment=Expense report payment
 
+ExpenseReportsToApprove=Expense reports to approve
 ExpenseReportsToPay=Expense reports to pay
diff --git a/htdocs/langs/zh_TW/users.lang b/htdocs/langs/zh_TW/users.lang
index 9760a584b2620c3506639251be7ca1c222b1d01f..082e94f09c07dc801d3e58ed62f1a46c5de2374c 100644
--- a/htdocs/langs/zh_TW/users.lang
+++ b/htdocs/langs/zh_TW/users.lang
@@ -121,3 +121,4 @@ OpenIDURL=OpenID URL
 LoginUsingOpenID=Use OpenID to login
 WeeklyHours=Weekly hours
 ColorUser=Color of the user
+DisabledInMonoUserMode=Disabled in maintenance mode
diff --git a/htdocs/product/class/product.class.php b/htdocs/product/class/product.class.php
index c1c8ef9b05543915f312ac97f5006d0ac75fc61e..79bb7900edc193233e16c875a23be1c0f9e3ce58 100644
--- a/htdocs/product/class/product.class.php
+++ b/htdocs/product/class/product.class.php
@@ -12,6 +12,7 @@
  * Copyright (C) 2014		Henry Florian			<florian.henry@open-concept.pro>
  * Copyright (C) 2014		Philippe Grand			<philippe.grand@atoo-net.com>
  * Copyright (C) 2014		Ion agorria			<ion@agorria.com>
+ * Copyright (C) 2016		Ferran Marcet			<fmarcet@2byte.es>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -1675,7 +1676,7 @@ class Product extends CommonObject
 						$sql.= " WHERE entity IN (".getEntity('productprice', 1).")";
 						$sql.= " AND price_level=".$i;
 						$sql.= " AND fk_product = '".$this->id."'";
-						$sql.= " ORDER BY date_price, rowid DESC";
+						$sql.= " ORDER BY date_price DESC, rowid DESC";
 						$sql.= " LIMIT 1";
 						$resql = $this->db->query($sql);
 						if ($resql)
@@ -1736,7 +1737,7 @@ class Product extends CommonObject
 					$sql.= " price_base_type, tva_tx, tosell, price_by_qty, rowid";
 					$sql.= " FROM ".MAIN_DB_PREFIX."product_price";
 					$sql.= " WHERE fk_product = '".$this->id."'";
-					$sql.= " ORDER BY date_price, rowid DESC";
+					$sql.= " ORDER BY date_price DESC, rowid DESC";
 					$sql.= " LIMIT 1";
 					$resql = $this->db->query($sql);
 					if ($resql)
diff --git a/htdocs/product/fournisseurs.php b/htdocs/product/fournisseurs.php
index 1f5e35a043a1351fadb821ec79a522e80daa2a84..0fe2769803d76ee637e12f8e302de90b65d00d6f 100644
--- a/htdocs/product/fournisseurs.php
+++ b/htdocs/product/fournisseurs.php
@@ -7,6 +7,7 @@
  * Copyright (C) 2012      Christophe Battarel  <christophe.battarel@altairis.fr>
  * Copyright (C) 2014      Ion Agorria          <ion@agorria.com>
  * Copyright (C) 2015      Alexandre Spangaro   <aspangaro.dolibarr@gmail.com>
+ * Copyright (C) 2016      Ferran Marcet		<fmarcet@2byte.es>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -46,7 +47,7 @@ $rowid=GETPOST('rowid','int');
 $action=GETPOST('action', 'alpha');
 $cancel=GETPOST('cancel', 'alpha');
 $socid=GETPOST('socid', 'int');
-$cost_price=GETPOST('cost_price', 'int');
+$cost_price=GETPOST('cost_price', 'alpha');
 $backtopage=GETPOST('backtopage','alpha');
 $error=0;
 
diff --git a/htdocs/product/price.php b/htdocs/product/price.php
index 622eb263f7a85b4d63d0e6d3e63b07ca95ddc91e..1f635a962622b174feec584287713e9287f1addf 100644
--- a/htdocs/product/price.php
+++ b/htdocs/product/price.php
@@ -1026,7 +1026,7 @@ $sql .= " WHERE fk_product = " . $object->id;
 $sql .= " AND p.entity IN (" . getEntity('productprice', 1) . ")";
 $sql .= " AND p.fk_user_author = u.rowid";
 if (! empty($socid) && ! empty($conf->global->PRODUIT_MULTIPRICES)) $sql .= " AND p.price_level = " . $soc->price_level;
-$sql .= " ORDER BY p.date_price, p.rowid DESC, p.price_level ASC";
+$sql .= " ORDER BY p.date_price DESC, p.rowid DESC, p.price_level ASC";
 // $sql .= $db->plimit();
 
 $result = $db->query($sql);
@@ -1063,7 +1063,7 @@ if ($result)
 		}
 
 		print '<td align="center">' . $langs->trans("PriceBase") . '</td>';
-		if (! empty($conf->global->PRODUIT_MULTIPRICES_USE_VAT_PER_LEVEL) || ! empty($conf->global->PRODUIT_CUSTOMER_PRICES_BY_QTY)) print '<td align="right">' . $langs->trans("VATRate") . '</td>';
+		if (! empty($conf->global->PRODUIT_CUSTOMER_PRICES) || ! empty($conf->global->PRODUIT_MULTIPRICES_USE_VAT_PER_LEVEL) || ! empty($conf->global->PRODUIT_CUSTOMER_PRICES_BY_QTY)) print '<td align="right">' . $langs->trans("VATRate") . '</td>';
 		print '<td align="right">' . $langs->trans("HT") . '</td>';
 		print '<td align="right">' . $langs->trans("TTC") . '</td>';
 		if (! empty($conf->dynamicprices->enabled)) {
@@ -1098,7 +1098,7 @@ if ($result)
 			}
 
 			print '<td align="center">' . $langs->trans($objp->price_base_type) . "</td>";
-			if (! empty($conf->global->PRODUIT_MULTIPRICES_USE_VAT_PER_LEVEL) || ! empty($conf->global->PRODUIT_CUSTOMER_PRICES_BY_QTY)) print '<td align="right">' . vatrate($objp->tva_tx, true, $objp->recuperableonly) . "</td>";
+			if (! empty($conf->global->PRODUIT_CUSTOMER_PRICES) || ! empty($conf->global->PRODUIT_MULTIPRICES_USE_VAT_PER_LEVEL) || ! empty($conf->global->PRODUIT_CUSTOMER_PRICES_BY_QTY)) print '<td align="right">' . vatrate($objp->tva_tx, true, $objp->recuperableonly) . "</td>";
 
 			//Price
 			if (! empty($objp->fk_price_expression) && ! empty($conf->dynamicprices->enabled))
diff --git a/htdocs/societe/class/societe.class.php b/htdocs/societe/class/societe.class.php
index 1184a490495ef2d59242b6d9a048acc412c8eb15..935591258746916bd4760e7aee71a19bbd3587ce 100644
--- a/htdocs/societe/class/societe.class.php
+++ b/htdocs/societe/class/societe.class.php
@@ -3026,7 +3026,7 @@ class Societe extends CommonObject
     }
 
     /**
-     *  Check if we must use localtax feature or not according to country (country of $mysocin most cases).
+     *  Check if we must use localtax feature or not according to country (country of $mysoc in most cases).
      *
      *	@param		int		$localTaxNum	To get info for only localtax1 or localtax2
      *  @return		boolean					true or false
@@ -3050,6 +3050,27 @@ class Societe extends CommonObject
     	else return false;
     }
 
+    /**
+     *  Check if we must use NPR Vat (french stupid rule) or not according to country (country of $mysoc in most cases).
+     *
+     *  @return		boolean					true or false
+     */
+    function useNPR()
+    {
+        $sql  = "SELECT t.rowid";
+        $sql .= " FROM ".MAIN_DB_PREFIX."c_tva as t, ".MAIN_DB_PREFIX."c_country as c";
+        $sql .= " WHERE t.fk_pays = c.rowid AND c.code = '".$this->country_code."'";
+        $sql .= " AND t.active = 1 AND t.recuperableonly = 1";
+
+        dol_syslog("useNPR", LOG_DEBUG);
+        $resql=$this->db->query($sql);
+        if ($resql)
+        {
+            return ($this->db->num_rows($resql) > 0);
+        }
+        else return false;
+    }
+    
     /**
      *  Check if we must use revenue stamps feature or not according to country (country of $mysocin most cases).
      *