From 36724ca5b87abfa8860c71783b037c121f33221c Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Tue, 1 Dec 2020 10:56:20 +0100 Subject: [PATCH] =?utf8?q?SEPA:=20In=20Details:=20Buttons=20=C2=BBBuchen?= =?utf8?q?=C2=AB=20und=20=C2=BBZahlungsliste=C2=AB=20immer=20anzeigen?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Sichtbare Buttons machen viel klarer, welche Funktionalität es an der Stelle gibt, auch wenn die Buttons deaktiviert sind. --- bin/mozilla/sepa.pl | 4 ++-- locale/de/all | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/bin/mozilla/sepa.pl b/bin/mozilla/sepa.pl index b78083e99..ca4ad0aa1 100755 --- a/bin/mozilla/sepa.pl +++ b/bin/mozilla/sepa.pl @@ -749,7 +749,7 @@ sub setup_sepa_edit_transfer_action_bar { accesskey => 'enter', tooltip => t8('Post payments for selected invoices'), checks => [ [ 'kivi.check_if_entries_selected', '[name="ids[]"]' ] ], - only_if => $params{show_post_payments_button}, + disabled => $params{show_post_payments_button} ? undef : t8('All payments have already been posted.'), ], action => [ t8('Payment list'), @@ -757,7 +757,7 @@ sub setup_sepa_edit_transfer_action_bar { accesskey => 'enter', tooltip => t8('Download list of payments as PDF'), checks => [ [ 'kivi.check_if_entries_selected', '[name="ids[]"]' ] ], - not_if => $params{show_post_payments_button}, + disabled => $params{show_post_payments_button} ? t8('All payments must be posted before the payment list can be downloaded.') : undef, ], ); } diff --git a/locale/de/all b/locale/de/all index 4f3384afd..be1028c9a 100755 --- a/locale/de/all +++ b/locale/de/all @@ -263,6 +263,8 @@ $self->{texts} = { 'All groups' => 'Alle Gruppen', 'All modules' => 'Alle Module', 'All partsgroups' => 'Alle Warengruppen', + 'All payments have already been posted.' => 'Es wurden bereits alle Zahlungen verbucht.', + 'All payments must be posted before the payment list can be downloaded.' => 'Alle Zahlungen müssen verbucht werden, bevor die Zahlungsliste heruntergeladen werden kann.', 'All price sources' => 'Alle Preisquellen', 'All reports' => 'Alle Berichte (Kontenübersicht, Summen- u. Saldenliste, Erfolgsrechnung, GuV, BWA, Bilanz, Projektbuchungen)', 'All the other clients will start with an empty set of WebDAV folders.' => 'Alle anderen Mandanten werden mit einem leeren Satz von Dokumenten-Ordnern ausgestattet.', -- 2.20.1