diff --git a/htdocs/compta/stats/index.php b/htdocs/compta/stats/index.php
index 6b1da1bec9d..8eddb548449 100644
--- a/htdocs/compta/stats/index.php
+++ b/htdocs/compta/stats/index.php
@@ -92,7 +92,7 @@ print '';
print '
';
for ($annee = $year_start ; $annee <= $year_end ; $annee++)
{
- print '| Valeur | ';
+ print 'Montant | ';
print 'Delta | ';
}
print '
';
@@ -109,7 +109,7 @@ for ($annee = $year_start ; $annee <= $year_end ; $annee++)
$case = strftime("%Y-%m",mktime(1,1,1,$mois,1,$annee));
$caseprev = strftime("%Y-%m",mktime(1,1,1,$mois,1,$annee-1));
- // Valeur CA
+ // Montant CA
print '';
if ($cum[$case])
{
|