From 98ee9a845c12776cdde61de60e8359d457f9dc82 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sat, 7 May 2005 22:00:53 +0000 Subject: [PATCH] Trad: Et encore de la traduction --- htdocs/compta/recap-client.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/htdocs/compta/recap-client.php b/htdocs/compta/recap-client.php index 4b51e1458ee..cb87fcfb7d6 100644 --- a/htdocs/compta/recap-client.php +++ b/htdocs/compta/recap-client.php @@ -181,7 +181,7 @@ if ($socid > 0) print ' '; print ''.$langs->trans("Debit").''; print ''.$langs->trans("Credit").''; - print ''.$langs->trans("Solde").''; + print ''.$langs->trans("Balance").''; print ''; } else @@ -218,11 +218,11 @@ if ($socid > 0) print "".dolibarr_print_date($fac->date)."\n"; print "id\">".img_object($langs->trans("ShowBill"),"bill")." ".$fac->ref."\n"; - print ''.number_format($fac->total_ttc, 2, ',', ' ')."\n"; + print ''.price($fac->total_ttc)."\n"; $solde = $solde + $fac->total_ttc; print ' '; - print ''.number_format($solde, 2, ',', ' ')."\n"; + print ''.price($solde)."\n"; print "\n"; // Paiements @@ -249,7 +249,7 @@ if ($socid > 0) print " \n"; print ''.price($objp->amount).''; $solde = $solde - $objp->amount; - print ''.number_format($solde, 2, ',', ' ')."\n"; + print ''.price($solde)."\n"; print ''; $j++;