From 52628131a63684bbf990676b0ab722e3944767f7 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 12 Feb 2008 03:25:35 +0000 Subject: [PATCH] Fix: Bad char --- htdocs/compta/paiement.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/htdocs/compta/paiement.php b/htdocs/compta/paiement.php index 9cfd3184dda..61b1ec54562 100644 --- a/htdocs/compta/paiement.php +++ b/htdocs/compta/paiement.php @@ -299,22 +299,22 @@ if ($_GET['action'] == 'create' || $_POST['action'] == 'confirm_paiement' || $_P print "\n"; print ''.$langs->trans('Numero'); - print ' (Num�ro ch�que ou virement)'; // \todo a traduire + print ' ('.$langs->trans("ChequeOrTransferNumber").')'; print ''; print ''; print ''.$langs->trans('CheckTransmitter'); - print ' (Emetteur du ch�que)'; // \todo a traduire + print ' ('.$langs->trans("ChequeMaker").')'; print ''; print ''; print ''.$langs->trans('Bank'); - print ' (Banque du ch�que)'; // \todo a traduire + print ' ('.$langs->trans("ChequeBank").')'; print ''; print ''; /* - * Liste factures impay�es + * Liste factures impayees */ $sql = 'SELECT f.rowid as facid, f.facnumber, f.total_ttc, f.type, '; $sql.= $db->pdate('f.datef').' as df, ';