From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter =?utf-8?q?M=C3=BCller?= To: development@lists.ipfire.org Subject: [PATCH 3/4] langs: add changed strings to German and English translations Date: Tue, 03 Nov 2020 15:29:42 +0100 Message-ID: <1a62c4f6-61f7-0090-0875-76d203001a80@ipfire.org> In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6445691547714980146==" List-Id: --===============6445691547714980146== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Peter M=C3=BCller --- html/cgi-bin/dns.cgi | 2 +- html/cgi-bin/remote.cgi | 4 ++-- langs/de/cgi-bin/de.pl | 8 ++++++-- langs/en/cgi-bin/en.pl | 8 ++++++-- langs/es/cgi-bin/es.pl | 2 +- langs/fr/cgi-bin/fr.pl | 2 +- langs/it/cgi-bin/it.pl | 2 +- langs/nl/cgi-bin/nl.pl | 2 +- langs/pl/cgi-bin/pl.pl | 2 +- langs/ru/cgi-bin/ru.pl | 2 +- langs/tr/cgi-bin/tr.pl | 2 +- 11 files changed, 22 insertions(+), 14 deletions(-) diff --git a/html/cgi-bin/dns.cgi b/html/cgi-bin/dns.cgi index 0a097e2c0..fc8d65308 100755 --- a/html/cgi-bin/dns.cgi +++ b/html/cgi-bin/dns.cgi @@ -609,7 +609,7 @@ END $rdns =3D gethostbyaddr($iaddr, AF_INET); } =20 - if (!$rdns) { $rdns =3D $Lang::tr{'lookup failed'}; } + if (!$rdns) { $rdns =3D $Lang::tr{'ptr lookup failed'}; } =20 # Mark ISP name servers as disabled if ($id <=3D 2 && $enabled eq "disabled") { diff --git a/html/cgi-bin/remote.cgi b/html/cgi-bin/remote.cgi index 9c742669b..a99628aec 100644 --- a/html/cgi-bin/remote.cgi +++ b/html/cgi-bin/remote.cgi @@ -2,7 +2,7 @@ ############################################################################= ### # = # # IPFire.org - A linux based firewall = # -# Copyright (C) 2007-2019 IPFire Team = # +# Copyright (C) 2007-2020 IPFire Team = # # = # # This program is free software: you can redistribute it and/or modify = # # it under the terms of the GNU General Public License as published by = # @@ -297,7 +297,7 @@ sub printactivelogins() # get rDNS... my $iaddr =3D inet_aton($remoteip); my $rdns =3D gethostbyaddr($iaddr, AF_INET); - if (!$rdns) { $rdns =3D $Lang::tr{'lookup failed'}; }; + if (!$rdns) { $rdns =3D $Lang::tr{'ptr lookup failed'}; }; =20 my $table_colour =3D ($id++ % 2) ? $color{'color22'} : $color{'color20'}; =20 diff --git a/langs/de/cgi-bin/de.pl b/langs/de/cgi-bin/de.pl index 6ad0e02c5..63b2844ec 100644 --- a/langs/de/cgi-bin/de.pl +++ b/langs/de/cgi-bin/de.pl @@ -444,12 +444,14 @@ 'are you sure' =3D> 'Sind Sie sicher?', 'arp table entries' =3D> 'Eintr=C3=A4ge der ARP-Tabelle', 'artist' =3D> 'K=C3=BCnstler', +'asn lookup failed' =3D> 'AS-Aufl=C3=B6sung gescheitert', 'atm device' =3D> 'Device:', 'atm settings' =3D> 'ATM-Einstellungen', 'attemps' =3D> 'Versuche', 'attention' =3D> 'ACHTUNG', 'august' =3D> 'August', 'authentication' =3D> 'Authentifizierung:', +'autonomous system' =3D> 'Autonomes System', 'automatic' =3D> 'Automatisch', 'available updates' =3D> 'Verf=C3=BCgbare Updates:', 'average' =3D> 'Durchschnitt', @@ -1504,7 +1506,8 @@ 'ip alias added' =3D> 'Externer IP-Alias hinzugef=C3=BCgt', 'ip alias changed' =3D> 'Externer IP-Alias ge=C3=A4ndert', 'ip alias removed' =3D> 'Externer IP-Alias entfernt', -'ip info' =3D> 'IP-Information', +'ip info' =3D> 'IP-Informationen', +'ip info for' =3D> 'IP-Informationen f=C3=BCr', 'ipfire has now rebooted' =3D> 'IPFire wird neu gestartet.', 'ipfire has now shutdown' =3D> 'IPFire wird heruntergefahren.', 'ipfire side' =3D> 'IPFire Seite:', @@ -1596,7 +1599,6 @@ 'logging server' =3D> 'Protokollierungsserver', 'loginlogout' =3D> 'Login/Logout', 'logs' =3D> 'Protokolldateien', -'lookup failed' =3D> 'Reverse Lookup gescheitert', 'loosedirectorychecking' =3D> 'Loose directorychecking', 'low' =3D> 'Niedrig', 'ls_dhcpd' =3D> 'DHCP-Server:', @@ -2069,6 +2071,7 @@ 'proxy reports weekly' =3D> 'W=C3=B6chentliche Berichte', 'psk' =3D> 'PSK', 'ptr' =3D> 'PTR', +'ptr lookup failed' =3D> 'Reverse Lookup gescheitert', 'pulse' =3D> 'Puls', 'pulse dial' =3D> 'Pulswahl:', 'qos add subclass' =3D> 'Unterklasse hinzuf=C3=BCgen', @@ -2864,6 +2867,7 @@ 'week-graph' =3D> 'Woche', 'weekly firewallhits' =3D> 'w=C3=B6chentliche Firewalltreffer', 'weeks' =3D> 'Wochen', +'whois results from' =3D> 'WHOIS-Ergebnisse von', 'wildcards' =3D> 'Wildcards', 'wins server' =3D> 'WINS-Server', 'wins support' =3D> 'WINS-Support', diff --git a/langs/en/cgi-bin/en.pl b/langs/en/cgi-bin/en.pl index d00de3d03..1cdfe2bfd 100644 --- a/langs/en/cgi-bin/en.pl +++ b/langs/en/cgi-bin/en.pl @@ -443,12 +443,14 @@ 'are you sure' =3D> 'Are you sure?', 'arp table entries' =3D> 'ARP Table Entries', 'artist' =3D> 'Artist', +'asn lookup failed' =3D> 'AS lookup failed', 'atm device' =3D> 'Device:', 'atm settings' =3D> 'ATM settings', 'attemps' =3D> 'Attempts', 'attention' =3D> 'ATTENTION', 'august' =3D> 'August', 'authentication' =3D> 'Authentication:', +'autonomous system' =3D> 'Autonomous System', 'automatic' =3D> 'Automatic', 'available updates' =3D> 'Available updates:', 'average' =3D> 'Average', @@ -1531,7 +1533,8 @@ 'ip alias added' =3D> 'External IP alias added', 'ip alias changed' =3D> 'External IP alias changed', 'ip alias removed' =3D> 'External IP alias removed', -'ip info' =3D> 'IP Information', +'ip info' =3D> 'IP information', +'ip info' =3D> 'IP information for', 'ipfire has now rebooted' =3D> 'IPFire is rebooting now.', 'ipfire has now shutdown' =3D> 'IPFire is shutting down now.', 'ipfire side' =3D> 'IPFire side:', @@ -1623,7 +1626,6 @@ 'logging server' =3D> 'Logging Server', 'loginlogout' =3D> 'Login/Logout', 'logs' =3D> 'logs', -'lookup failed' =3D> 'Reverse lookup failed', 'loosedirectorychecking' =3D> 'Loosedirectorychecking', 'low' =3D> 'Low', 'ls_dhcpd' =3D> 'DHCP Server:', @@ -2099,6 +2101,7 @@ 'proxy reports weekly' =3D> 'Weekly reports', 'psk' =3D> 'PSK', 'ptr' =3D> 'PTR', +'ptr lookup failed' =3D> 'Reverse lookup failed', 'pulse' =3D> 'Pulse', 'pulse dial' =3D> 'Pulse dial:', 'qos add subclass' =3D> 'Add subclass', @@ -2907,6 +2910,7 @@ 'week-graph' =3D> 'Week', 'weekly firewallhits' =3D> 'weekly firewallhits', 'weeks' =3D> 'Weeks', +'whois results from' =3D> 'WHOIS results from', 'wildcards' =3D> 'Wildcards', 'winbind daemon' =3D> 'Winbind Daemon', 'wins server' =3D> 'Wins Server', diff --git a/langs/es/cgi-bin/es.pl b/langs/es/cgi-bin/es.pl index ae155d26b..0e9b13787 100644 --- a/langs/es/cgi-bin/es.pl +++ b/langs/es/cgi-bin/es.pl @@ -1096,7 +1096,7 @@ 'logging server' =3D> 'Servidor de conexi=C3=B3n', 'loginlogout' =3D> 'Login/Logout', 'logs' =3D> 'registros', -'lookup failed' =3D> 'Fall=C3=B3 la b=C3=BAsqueda reversiva', +'ptr lookup failed' =3D> 'Fall=C3=B3 la b=C3=BAsqueda reversiva', 'loosedirectorychecking' =3D> 'Chequeo de loosedirectory', 'low' =3D> 'Bajo', 'ls_dhcpd' =3D> 'Servidor DHCP:', diff --git a/langs/fr/cgi-bin/fr.pl b/langs/fr/cgi-bin/fr.pl index 00328440d..9cc4be695 100644 --- a/langs/fr/cgi-bin/fr.pl +++ b/langs/fr/cgi-bin/fr.pl @@ -1629,7 +1629,7 @@ 'logging server' =3D> 'Serveur de connexion', 'loginlogout' =3D> 'Connexion/Quitter', 'logs' =3D> 'Journaux', -'lookup failed' =3D> 'La recherche invers=C3=A9e a =C3=A9chou=C3=A9e', +'ptr lookup failed' =3D> 'La recherche invers=C3=A9e a =C3=A9chou=C3=A9e', 'loosedirectorychecking' =3D> 'Echec de la v=C3=A9rification du r=C3=A9perto= ire', 'low' =3D> 'Bas', 'ls_dhcpd' =3D> 'Serveur DHCP :', diff --git a/langs/it/cgi-bin/it.pl b/langs/it/cgi-bin/it.pl index d0e9dc4c9..b45be4207 100644 --- a/langs/it/cgi-bin/it.pl +++ b/langs/it/cgi-bin/it.pl @@ -1410,7 +1410,7 @@ 'logging server' =3D> 'Logging Server', 'loginlogout' =3D> 'Login/Logout', 'logs' =3D> 'Gestione Log', -'lookup failed' =3D> 'Reverse lookup failed', +'ptr lookup failed' =3D> 'Reverse lookup failed', 'loosedirectorychecking' =3D> 'Loosedirectorychecking', 'low' =3D> 'Basso', 'ls_dhcpd' =3D> 'DHCP Server:', diff --git a/langs/nl/cgi-bin/nl.pl b/langs/nl/cgi-bin/nl.pl index f67eb0383..4e471a597 100644 --- a/langs/nl/cgi-bin/nl.pl +++ b/langs/nl/cgi-bin/nl.pl @@ -1389,7 +1389,7 @@ 'logging server' =3D> 'Loggingserver', 'loginlogout' =3D> 'Login/Logout', 'logs' =3D> 'logs', -'lookup failed' =3D> 'Reverse lookup mislukt', +'ptr lookup failed' =3D> 'Reverse lookup mislukt', 'loosedirectorychecking' =3D> 'Loosedirectorychecking', 'low' =3D> 'Laag', 'ls_dhcpd' =3D> 'DHCP Server:', diff --git a/langs/pl/cgi-bin/pl.pl b/langs/pl/cgi-bin/pl.pl index 3f4fc0143..fb2b40787 100644 --- a/langs/pl/cgi-bin/pl.pl +++ b/langs/pl/cgi-bin/pl.pl @@ -1095,7 +1095,7 @@ 'logging server' =3D> 'Serwer logowania', 'loginlogout' =3D> 'Zalogowanie/wylogowanie', 'logs' =3D> 'logi', -'lookup failed' =3D> 'Reverse lookup failed', +'ptr lookup failed' =3D> 'Reverse lookup failed', 'loosedirectorychecking' =3D> 'Loosedirectorychecking', 'low' =3D> 'Niski', 'ls_dhcpd' =3D> 'Serwer DHCP:', diff --git a/langs/ru/cgi-bin/ru.pl b/langs/ru/cgi-bin/ru.pl index 2c91a3fee..074f0cb2f 100644 --- a/langs/ru/cgi-bin/ru.pl +++ b/langs/ru/cgi-bin/ru.pl @@ -1088,7 +1088,7 @@ 'logging server' =3D> '=D0=A1=D0=B5=D1=80=D0=B2=D0=B5=D1=80 =D0=9B=D0=BE=D0= =B3=D0=BE=D0=B2', 'loginlogout' =3D> 'Login/Logout', 'logs' =3D> '=D0=9B=D0=BE=D0=B3=D0=B8', -'lookup failed' =3D> 'Reverse lookup failed', +'ptr lookup failed' =3D> 'Reverse lookup failed', 'loosedirectorychecking' =3D> 'Loosedirectorychecking', 'low' =3D> 'Low', 'ls_dhcpd' =3D> 'DHCP =D1=81=D0=B5=D1=80=D0=B2=D0=B5=D1=80:', diff --git a/langs/tr/cgi-bin/tr.pl b/langs/tr/cgi-bin/tr.pl index b958d63fe..eeb1e13ce 100644 --- a/langs/tr/cgi-bin/tr.pl +++ b/langs/tr/cgi-bin/tr.pl @@ -1540,7 +1540,7 @@ 'logging server' =3D> 'G=C3=BCnl=C3=BCk Sunucusu', 'loginlogout' =3D> 'Giri=C5=9F/=C3=87=C4=B1k=C4=B1=C5=9F', 'logs' =3D> 'G=C3=BCnl=C3=BCkler', -'lookup failed' =3D> 'Ters arama ba=C5=9Far=C4=B1s=C4=B1z', +'ptr lookup failed' =3D> 'Ters arama ba=C5=9Far=C4=B1s=C4=B1z', 'loosedirectorychecking' =3D> 'Serbest Dizin Denetimi', 'low' =3D> 'D=C3=BC=C5=9F=C3=BCk', 'ls_dhcpd' =3D> 'DHCP Sunucusu:', --=20 2.26.2 --===============6445691547714980146==--