Trad: Traduction module banque
This commit is contained in:
parent
3a1093da4a
commit
6da4a6995a
@ -31,12 +31,14 @@
|
||||
require_once("../../main.inc.php");
|
||||
require_once("./account.class.php");
|
||||
|
||||
$langs->load("banks");
|
||||
|
||||
$user->getrights('banque');
|
||||
|
||||
|
||||
function llxHeader($head = "")
|
||||
{
|
||||
global $db, $user, $conf;
|
||||
global $db, $user, $conf, $langs;
|
||||
|
||||
top_menu($head);
|
||||
|
||||
@ -62,7 +64,7 @@ function llxHeader($head = "")
|
||||
}
|
||||
$db->close;
|
||||
|
||||
$menu->add(DOL_URL_ROOT."/compta/bank/index.php","Banque");
|
||||
$menu->add(DOL_URL_ROOT."/compta/bank/index.php",$langs->trans("Bank"));
|
||||
|
||||
$menu->add_submenu(DOL_URL_ROOT."/compta/bank/search.php","Recherche écriture");
|
||||
$menu->add_submenu(DOL_URL_ROOT."/compta/bank/budget.php","Budgets");
|
||||
@ -75,7 +77,7 @@ function llxHeader($head = "")
|
||||
|
||||
if ($user->rights->banque->configurer)
|
||||
{
|
||||
$menu->add_submenu(DOL_URL_ROOT."/compta/bank/config.php","Configuration");
|
||||
$menu->add_submenu(DOL_URL_ROOT."/compta/bank/config.php",$langs->trans("Setup"));
|
||||
}
|
||||
|
||||
if (defined("COMPTA_ONLINE_PAYMENT_BPLC") && COMPTA_ONLINE_PAYMENT_BPLC)
|
||||
|
||||
@ -52,8 +52,11 @@ function llxHeader($head = "") {
|
||||
$menu->add_submenu(DOL_URL_ROOT."/compta/dons/liste.php",$langs->trans("List"));
|
||||
$menu->add_submenu(DOL_URL_ROOT."/compta/dons/stats.php",$langs->trans("Statistics"));
|
||||
|
||||
$menu->add(DOL_URL_ROOT."/compta/bank/index.php",$langs->trans("Bank"));
|
||||
|
||||
if ($conf->banque->enabled) {
|
||||
$langs->load("banks");
|
||||
$menu->add(DOL_URL_ROOT."/compta/bank/index.php",$langs->trans("Bank"));
|
||||
}
|
||||
|
||||
left_menu($menu->liste);
|
||||
|
||||
}
|
||||
|
||||
6
htdocs/langs/en_US/banks.lang
Normal file
6
htdocs/langs/en_US/banks.lang
Normal file
@ -0,0 +1,6 @@
|
||||
# Dolibarr language file - en_US - banks
|
||||
Bank=Bank
|
||||
Banks=Banks
|
||||
BankAccount=Bank account
|
||||
BankAccounts=Bank accounts
|
||||
MainAccount=Main account
|
||||
6
htdocs/langs/fr_FR/banks.lang
Normal file
6
htdocs/langs/fr_FR/banks.lang
Normal file
@ -0,0 +1,6 @@
|
||||
# Dolibarr language file - fr_FR - banks
|
||||
Bank=Banque
|
||||
Banks=Banques
|
||||
BankAccount=Compte bancaire
|
||||
BankAccounts=Comptes bancaires
|
||||
MainAccount=Compte courant
|
||||
Loading…
Reference in New Issue
Block a user