From a3139da3880c1d58aa38452628f017987e770e7b Mon Sep 17 00:00:00 2001 From: Michael Kaufmann Date: Sat, 1 Jun 2024 10:55:26 +0200 Subject: [PATCH] add/correct missing language-strings Signed-off-by: Michael Kaufmann --- lib/Froxlor/Cli/UpdateCommand.php | 2 +- lib/Froxlor/UI/Callbacks/Domain.php | 2 +- lng/de.lng.php | 1 + lng/en.lng.php | 1 + 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/Froxlor/Cli/UpdateCommand.php b/lib/Froxlor/Cli/UpdateCommand.php index bca38420..65b063e6 100644 --- a/lib/Froxlor/Cli/UpdateCommand.php +++ b/lib/Froxlor/Cli/UpdateCommand.php @@ -60,7 +60,7 @@ final class UpdateCommand extends CliCommand if ($result == self::SUCCESS) { require Froxlor::getInstallDir() . '/lib/functions.php'; if (Froxlor::hasUpdates() || Froxlor::hasDbUpdates()) { - $output->writeln('' . lng('updates.dbupdate_required') . ''); + $output->writeln('' . lng('update.dbupdate_required') . ''); if ($input->getOption('check-only')) { $output->writeln('Doing nothing because of "check-only" flag.'); } else { diff --git a/lib/Froxlor/UI/Callbacks/Domain.php b/lib/Froxlor/UI/Callbacks/Domain.php index 74a80625..b8fb3f68 100644 --- a/lib/Froxlor/UI/Callbacks/Domain.php +++ b/lib/Froxlor/UI/Callbacks/Domain.php @@ -239,7 +239,7 @@ class Domain } return $iplist; } - return lng('panel.empty'); + return lng('panel.listing_empty'); } /** diff --git a/lng/de.lng.php b/lng/de.lng.php index 45dda51b..cb0a972f 100644 --- a/lng/de.lng.php +++ b/lng/de.lng.php @@ -632,6 +632,7 @@ return [ 'title' => 'Verwende greylisting', 'description' => 'Eingehende E-Mails mittels Greylisting schützen.
Standard: Ja' ], + 'required_dkim_dns' => 'Erforderlicher DKIM DNS Eintrag', ], 'dns' => [ 'destinationip' => 'Domain-IP-Adresse(n)', diff --git a/lng/en.lng.php b/lng/en.lng.php index 27463351..64a34b69 100644 --- a/lng/en.lng.php +++ b/lng/en.lng.php @@ -681,6 +681,7 @@ return [ 'title' => 'Use greylisting', 'description' => 'Incoming emails will be protected by greylisting.
Default: yes' ], + 'required_dkim_dns' => 'Required DKIM DNS entry', ], 'dns' => [ 'destinationip' => 'Domain IP(s)',