From: Moritz Bunkus Date: Mon, 16 Jan 2017 11:57:16 +0000 (+0100) Subject: ActionBar: Verwendung bei Mahnungen standardisiert X-Git-Tag: release-3.5.4~1311 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=9c0b55ba6c7bee8e349920abffc3048ba480cf26;p=kivitendo-erp.git ActionBar: Verwendung bei Mahnungen standardisiert • »Weiter« → »Suchen« • »Weiter« → »Anlegen« --- diff --git a/bin/mozilla/dn.pl b/bin/mozilla/dn.pl index 0ba9d3960..c20227978 100644 --- a/bin/mozilla/dn.pl +++ b/bin/mozilla/dn.pl @@ -569,7 +569,7 @@ sub setup_dn_add_action_bar { for my $bar ($::request->layout->get('actionbar')) { $bar->add( action => [ - t8('Continue'), + t8('Search'), submit => [ '#form', { action => "show_invoices" } ], accesskey => 'enter', ], @@ -583,7 +583,7 @@ sub setup_dn_show_invoices_action_bar { for my $bar ($::request->layout->get('actionbar')) { $bar->add( action => [ - t8('Continue'), + t8('Create'), submit => [ '#form', { action => "save_dunning" } ], checks => [ [ 'kivi.check_if_entries_selected', '[name^=active_]' ] ], accesskey => 'enter', @@ -599,7 +599,7 @@ sub setup_dn_search_action_bar { for my $bar ($::request->layout->get('actionbar')) { $bar->add( action => [ - t8('Continue'), + t8('Search'), submit => [ '#form', { action => "show_dunning" } ], accesskey => 'enter', ],