Interface plus homogène, on remplace Affiche par Rechercher

This commit is contained in:
Dany De Bontridder 2014-06-28 15:36:30 +02:00
parent a7d5e8de89
commit 563dea8c8b
5 changed files with 5 additions and 5 deletions

View file

@ -4,7 +4,7 @@
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once('class_anc_acc_list.php');
echo '<div style="content">';
echo '<div class="content">';
$tab = new Anc_Acc_List($cn);
$tab->get_request();
echo '<form method="get">';

View file

@ -16,7 +16,7 @@ $grandLivre->get_request();
*/
echo '<form method="get" >';
echo $grandLivre->display_form();
echo '<p>' . HtmlInput::submit('Recherche', _('Recherche')) . '</p>';
echo '<p>' . HtmlInput::submit('Recherche', _('Rechercher')) . '</p>';
echo HtmlInput::request_to_hidden(array('sa','ac','gDossier'));
echo '</form>';

View file

@ -339,7 +339,7 @@ class Anc_Balance_Double extends Anc_Print
'</span>';
$r.='</span>';
$r.=HtmlInput::submit('Affiche','Affiche');
$r.=HtmlInput::submit('Affiche', _('Rechercher'));
return $r;
}
/*!

View file

@ -166,7 +166,7 @@ class Anc_Balance_Simple extends Anc_Print
{
$r=parent::display_form($p_string);
$r.= HtmlInput::submit('Affiche','Affiche');
$r.= HtmlInput::submit('Affiche', _('Rechercher'));
return $r;
}

View file

@ -39,7 +39,7 @@ class Anc_Listing extends Anc_Print
{
echo '<form method="get">';
$r=parent::display_form($p_string);
$r.=HtmlInput::submit('result','Afficher');
$r.=HtmlInput::submit('result', _('Rechercher'));
$r.= '</form>';
return $r;