Skip to content

Commit

Permalink
Merge pull request #1076 from matsduf/merge-develop-into-master
Browse files Browse the repository at this point in the history
Merge develop into master (Backend)
  • Loading branch information
matsduf authored Jan 31, 2023
2 parents 0834c2a + c777a93 commit 90baff6
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 7 deletions.
6 changes: 6 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Release history for Zonemaster component Zonemaster-Backend

v10.0.1 2023-01-31 (public fix release)

[Fixes]
- Updates translation (#1073, #1074)
- Fixes uninitialized value warning in zm-rpcapi.log (#1072)


v10.0.0 2022-12-19 (public release version)

Expand Down
4 changes: 2 additions & 2 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ requires
'Starman' => 0,
'String::ShellQuote' => 0,
'Try::Tiny' => 0.12,
'Zonemaster::Engine' => 4.006000,
'Zonemaster::LDNS' => 3.000000,
'Zonemaster::Engine' => 4.006001,
'Zonemaster::LDNS' => 3.001000,
'Plack::Middleware::ReverseProxy' => 0,
'Locale::TextDomain' => 1.20,
;
Expand Down
2 changes: 1 addition & 1 deletion lib/Zonemaster/Backend.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package Zonemaster::Backend;

our $VERSION = '10.0.0';
our $VERSION = '10.0.1';

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion lib/Zonemaster/Backend/RPCAPI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ sub get_test_results {
$res->{message} =~ s/;/; /isg;
$res->{level} = $test_res->{level};
$res->{testcase} = $test_res->{testcase} // 'UNSPECIFIED';
$testcases{$res->{testcase}} = $translator->test_case_description($test_res->{testcase});
$testcases{$res->{testcase}} = $translator->test_case_description($res->{testcase});

if ( $test_res->{module} eq 'SYSTEM' ) {
if ( $res->{message} =~ /policy\.json/ ) {
Expand Down
6 changes: 5 additions & 1 deletion share/fr.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 1.0.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-05-02 14:21+0200\n"
"POT-Creation-Date: 2023-01-23 08:07+0100\n"
"PO-Revision-Date: 2021-10-14 11:25+0200\n"
"Last-Translator: \n"
"Language-Team: Zonemaster project\n"
Expand All @@ -24,6 +24,10 @@ msgstr ""
"Attention: Zonemaster::LDNS n'est pas compilé avec le support IDN, "
"impossible de traiter correctement les noms non ASCII."

#. BACKEND_TEST_AGENT:UNABLE_TO_FINISH_TEST
msgid "Zonemaster was unable to start or finish the test."
msgstr "Zonemaster n'a pas pu commencer ou finir le test."

msgid "Invalid digest format"
msgstr "Format de l'empreinte invalide"

Expand Down
8 changes: 6 additions & 2 deletions share/sv.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: 1.0.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-05-22 15:34+0000\n"
"PO-Revision-Date: 2022-05-22 15:23+0000\n"
"POT-Creation-Date: 2023-01-21 22:15+0000\n"
"PO-Revision-Date: 2023-01-21 22:17+0000\n"
"Last-Translator: [email protected]\n"
"Language-Team: Zonemaster project\n"
"Language: sv\n"
Expand All @@ -24,6 +24,10 @@ msgstr ""
"Varning: Zonemaster::LDNS är inte kompilerad med IDNA-stöd, så enbart ASCII-"
"namn kan hanteras."

#. BACKEND_TEST_AGENT:UNABLE_TO_FINISH_TEST
msgid "Zonemaster was unable to start or finish the test."
msgstr "Zonemaster kunde inte starta eller slutföra testen."

msgid "Invalid digest format"
msgstr "Ogiltigt format på digest-data"

Expand Down

0 comments on commit 90baff6

Please sign in to comment.