diff --git a/htdocs/compta/resultat/index.php b/htdocs/compta/resultat/index.php
index b586241c11e..83ad1495a9f 100644
--- a/htdocs/compta/resultat/index.php
+++ b/htdocs/compta/resultat/index.php
@@ -22,7 +22,7 @@
/**
* \file htdocs/compta/resultat/index.php
- * \brief Page reporting resultat
+ * \brief Page reporting result
*/
require '../../main.inc.php';
@@ -570,8 +570,8 @@ print '';
print '
| '.$langs->trans("Month").' | ';
for ($annee = $year_start ; $annee <= $year_end ; $annee++)
{
- print ''.$langs->trans("Outcome").' | ';
- print ''.$langs->trans("Income").' | ';
+ print ''.$langs->trans("Outcome").' | ';
+ print ''.$langs->trans("Income").' | ';
}
print '
';
@@ -634,7 +634,7 @@ print "\n";
// Balance
$var=!$var;
-print '| '.$langs->trans("Profit").' | ';
+print '
| '.$langs->trans("AccountingResult").' | ';
for ($annee = $year_start ; $annee <= $year_end ; $annee++)
{
print ' ';
diff --git a/htdocs/compta/tva/quadri_detail.php b/htdocs/compta/tva/quadri_detail.php
index 681448e901e..f551e92cb9d 100644
--- a/htdocs/compta/tva/quadri_detail.php
+++ b/htdocs/compta/tva/quadri_detail.php
@@ -41,6 +41,7 @@ $langs->load("bills");
$langs->load("compta");
$langs->load("companies");
$langs->load("products");
+$langs->load("other");
// Date range
$year=GETPOST("year");
diff --git a/htdocs/langs/en_US/compta.lang b/htdocs/langs/en_US/compta.lang
index 89a32876dc3..116b2c52fa8 100644
--- a/htdocs/langs/en_US/compta.lang
+++ b/htdocs/langs/en_US/compta.lang
@@ -29,6 +29,7 @@ ReportTurnover=Turnover
PaymentsNotLinkedToInvoice=Payments not linked to any invoice, so not linked to any third party
PaymentsNotLinkedToUser=Payments not linked to any user
Profit=Profit
+AccountingResult=Accounting result
Balance=Balance
Debit=Debit
Credit=Credit
|