diff --git a/htdocs/compta/bank/index.php b/htdocs/compta/bank/index.php index f01e4c90659..9b144358a73 100644 --- a/htdocs/compta/bank/index.php +++ b/htdocs/compta/bank/index.php @@ -1,6 +1,6 @@ - * Copyright (C) 2004 Laurent Destailleur + * Copyright (C) 2004-2005 Laurent Destailleur * * 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 @@ -21,7 +21,7 @@ * */ -/*! +/** \file htdocs/compta/bank/index.php \ingroup banque \brief Page accueil banque @@ -33,6 +33,8 @@ require("./bank.lib.php"); require("../../tva.class.php"); require("../../chargesociales.class.php"); +$langs->load("banks"); + $user->getrights('compta'); $user->getrights('banque'); @@ -41,7 +43,7 @@ if (!$user->rights->banque->lire) llxHeader(); -print_titre ("Comptes bancaires"); +print_titre($langs->trans("BankAccounts")); print '
'; $sql = "SELECT rowid, label,number,bank FROM ".MAIN_DB_PREFIX."bank_account"; @@ -66,8 +68,8 @@ if ($result) * Comptes */ print ''; -print ''; -print ''; +print ''; +print ''; print "\n"; $total = 0; $var=True; @@ -165,8 +167,8 @@ print "
Comptes courantsBanqueNuméroSoldeClos
Comptes courants'.$langs->trans("Bank").''.$langs->trans("Numero").'Solde'.$langs->trans("Closed").'
"; */ print "
\n"; if ($user->rights->banque->configurer) { - print 'Nouveau compte'; - print 'Catégories'; + print ''.$langs->trans("NewFinancialAccount").''; + print ''.$langs->trans("Categories").''; } print "
";