From: Bernd Bleßmann Date: Mon, 8 Nov 2021 14:50:41 +0000 (+0100) Subject: Anzahlungs-Rg.: Texte in der Maske anpassen X-Git-Tag: kivitendo-mebil_0.1-0~10^2~2^2~217^2~51 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=b70a9f43bc70d17f86ff443f234b6191b39c8cf0;p=kivitendo-erp.git Anzahlungs-Rg.: Texte in der Maske anpassen --- diff --git a/bin/mozilla/is.pl b/bin/mozilla/is.pl index 12deb267b..e199bcadf 100644 --- a/bin/mozilla/is.pl +++ b/bin/mozilla/is.pl @@ -89,6 +89,10 @@ sub add { if ($form->{storno}) { $form->{title} = $locale->text('Add Storno Credit Note'); } + + } elsif ($form->{type} eq "invoice_for_advance_payment") { + $form->{title} = $locale->text('Add Invoice for Advance Payment'); + } else { $form->{title} = $locale->text('Add Sales Invoice'); @@ -132,6 +136,11 @@ sub edit { if ($form->{type} eq "credit_note") { $form->{title} = $locale->text('Edit Credit Note'); $form->{title} = $locale->text('Edit Storno Credit Note') if $form->{storno}; + + } elsif ($form->{type} eq "invoice_for_advance_payment") { + $form->{title} = $locale->text('Edit Invoice for Advance Payment'); + $form->{title} = $locale->text('Edit Storno Invoice for Advance Payment') if $form->{storno}; + } else { $form->{title} = $locale->text('Edit Sales Invoice'); $form->{title} = $locale->text('Edit Storno Invoice') if $form->{storno}; diff --git a/locale/de/all b/locale/de/all index 7bd894777..1cbbfd229 100755 --- a/locale/de/all +++ b/locale/de/all @@ -1249,6 +1249,7 @@ $self->{texts} = { 'Edit Follow-Up' => 'Wiedervorlage bearbeiten', 'Edit Follow-Up for #1' => 'Wiedervorlage für #1 bearbeiten', 'Edit General Ledger Transaction' => 'Buchung im Hauptbuch bearbeiten', + 'Edit Invoice for Advance Payment' => 'Anzahlungsrechnung bearbeiten', 'Edit Letter' => 'Brief bearbeiten', 'Edit Part' => 'Ware bearbeiten', 'Edit Preferences for #1' => 'Einstellungen von #1 bearbeiten', @@ -1265,6 +1266,7 @@ $self->{texts} = { 'Edit Service' => 'Dienstleistung bearbeiten', 'Edit Storno Credit Note' => 'Storno Gutschrift bearbeiten', 'Edit Storno Invoice' => 'Stornorechnung bearbeiten', + 'Edit Storno Invoice for Advance Payment' => 'Storno-Anzahlungsrechnung bearbeiten', 'Edit User' => 'Benutzerdaten bearbeiten', 'Edit User Group' => 'Benutzergruppe bearbeiten', 'Edit Vendor' => 'Lieferant editieren', diff --git a/locale/en/all b/locale/en/all index 38597d4ec..9df7a6e2e 100644 --- a/locale/en/all +++ b/locale/en/all @@ -1249,6 +1249,7 @@ $self->{texts} = { 'Edit Follow-Up' => '', 'Edit Follow-Up for #1' => '', 'Edit General Ledger Transaction' => '', + 'Edit Invoice for Advance Payment' => '', 'Edit Letter' => '', 'Edit Part' => '', 'Edit Preferences for #1' => '', @@ -1265,6 +1266,7 @@ $self->{texts} = { 'Edit Service' => '', 'Edit Storno Credit Note' => '', 'Edit Storno Invoice' => '', + 'Edit Storno Invoice for Advance Payment' => '', 'Edit User' => '', 'Edit User Group' => '', 'Edit Vendor' => '',