diff --git a/htdocs/compta/bank/account.php b/htdocs/compta/bank/account.php index 10c52e657ab..2aff7aaaa1d 100644 --- a/htdocs/compta/bank/account.php +++ b/htdocs/compta/bank/account.php @@ -177,8 +177,9 @@ if ($action == 'confirm_delete' && $confirm == 'yes' && $user->rights->banque->m /* * View */ - -llxHeader('',$langs->trans("FinancialAccount").'-'.$langs->trans("Transactions")); +$title = $langs->trans("FinancialAccount").' - '.$langs->trans("Transactions"); +$helpurl = ""; +llxHeader('',$title,$helpurl); $societestatic=new Societe($db); $userstatic=new User($db); diff --git a/htdocs/compta/bank/annuel.php b/htdocs/compta/bank/annuel.php index f756d50ad2a..5f0dbfd10ac 100644 --- a/htdocs/compta/bank/annuel.php +++ b/htdocs/compta/bank/annuel.php @@ -53,8 +53,9 @@ else $year_end=$year_start+2; } - -llxHeader(); +$title = $langs->trans("FinancialAccount").' - '.$langs->trans("IOMonthlyReporting"); +$helpurl = ""; +llxHeader('',$title,$helpurl); $form = new Form($db); diff --git a/htdocs/compta/bank/card.php b/htdocs/compta/bank/card.php index a29a0d768bd..5f075ebf821 100644 --- a/htdocs/compta/bank/card.php +++ b/htdocs/compta/bank/card.php @@ -249,7 +249,9 @@ if (! empty($conf->accounting->enabled)) $formaccountancy = New FormVentilation( $countrynotdefined=$langs->trans("ErrorSetACountryFirst").' ('.$langs->trans("SeeAbove").')'; -llxHeader(); +$title = $langs->trans("FinancialAccount") . " - " . $langs->trans("Card"); +$helpurl = ""; +llxHeader("",$title,$helpurl); // Creation diff --git a/htdocs/compta/bank/document.php b/htdocs/compta/bank/document.php index 7320ce85f91..a014bdc5d60 100644 --- a/htdocs/compta/bank/document.php +++ b/htdocs/compta/bank/document.php @@ -139,8 +139,9 @@ else if ($action == 'confirm_deletefile' && $confirm == 'yes') { /* * View */ - -llxHeader(); +$title = $langs->trans("FinancialAccount").' - '.$langs->trans("Documents"); +$helpurl = ""; +llxHeader('',$title,$helpurl); $form = new Form($db); diff --git a/htdocs/compta/bank/graph.php b/htdocs/compta/bank/graph.php index 0764c87f5ab..6f9de0a5aac 100644 --- a/htdocs/compta/bank/graph.php +++ b/htdocs/compta/bank/graph.php @@ -53,7 +53,9 @@ $error=0; * View */ -llxHeader(); +$title = $langs->trans("FinancialAccount").' - '.$langs->trans("Graph"); +$helpurl = ""; +llxHeader('',$title,$helpurl); $form = new Form($db); diff --git a/htdocs/compta/bank/releve.php b/htdocs/compta/bank/releve.php index cc23d9a9d04..ff50b3e66e5 100644 --- a/htdocs/compta/bank/releve.php +++ b/htdocs/compta/bank/releve.php @@ -81,7 +81,9 @@ $pagenext = $page + 1; * View */ -llxHeader(); +$title = $langs->trans("FinancialAccount").' - '.$langs->trans("AccountStatements"); +$helpurl = ""; +llxHeader('',$title,$helpurl); $form = new Form($db); $societestatic=new Societe($db); diff --git a/htdocs/compta/bank/treso.php b/htdocs/compta/bank/treso.php index e9596149e4f..2b3593cd5bd 100644 --- a/htdocs/compta/bank/treso.php +++ b/htdocs/compta/bank/treso.php @@ -55,7 +55,9 @@ $page=isset($_GET["page"])?$_GET["page"]:0; * View */ -llxHeader(); +$title = $langs->trans("FinancialAccount").' - '.$langs->trans("PlannedTransactions"); +$helpurl = ""; +llxHeader('',$title,$helpurl); $societestatic = new Societe($db); $facturestatic=new Facture($db); diff --git a/htdocs/core/lib/bank.lib.php b/htdocs/core/lib/bank.lib.php index 33eac43476c..b5371e6fa53 100644 --- a/htdocs/core/lib/bank.lib.php +++ b/htdocs/core/lib/bank.lib.php @@ -38,7 +38,7 @@ function bank_prepare_head(Account $object) $head = array(); $head[$h][0] = DOL_URL_ROOT . '/compta/bank/card.php?id=' . $object->id; - $head[$h][1] = $langs->trans("AccountCard"); + $head[$h][1] = $langs->trans("Card"); $head[$h][2] = 'bankname'; $h++;