From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: Re: [PATCH] log.dat: Added 'squid' and 'snort', fixes quotation for ddns Date: Mon, 23 May 2016 12:58:36 +0100 Message-ID: <1464004716.19435.129.camel@ipfire.org> In-Reply-To: <20160522232123.2454-1-matthias.fischer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7079176858162340205==" List-Id: --===============7079176858162340205== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable On Mon, 2016-05-23 at 01:21 +0200, Matthias Fischer wrote: > Two again (sorry): > While adding 'squid' and 'snort' (with translation), I found that > 'ddns'-translation missed quotation marks. >=20 > Signed-off-by: Matthias Fischer > --- > =C2=A0html/cgi-bin/logs.cgi/log.dat | 10 +++++++--- > =C2=A01 file changed, 7 insertions(+), 3 deletions(-) >=20 > diff --git a/html/cgi-bin/logs.cgi/log.dat b/html/cgi-bin/logs.cgi/log.dat > index 99c033e..2cbabfc 100644 > --- a/html/cgi-bin/logs.cgi/log.dat > +++ b/html/cgi-bin/logs.cgi/log.dat > @@ -65,14 +65,16 @@ my %sections =3D ( > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0'ipsec' =3D> '(ipsec_= [\w_]+: |pluto\[.*\]: |charon: |vpnwatch: )', > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0'openvpn' =3D> '(open= vpnserver\[.*\]: |.*n2n\[.*\]: )', > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0'pakfire' =3D> '(pakf= ire:) ', > -=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0'wireless' =3D> '(hostapd:= |kernel: ath.*:|kernel: wifi[0-9]:) ' > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0'wireless' =3D> '(hostapd:= |kernel: ath.*:|kernel: wifi[0-9]:) ', > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0'squid' =3D> '(squid\[.*\]= : |squid: )', > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0'snort' =3D> '(snort\[.*\]= : )' > =C2=A0 =C2=A0); > =C2=A0 > =C2=A0# Translations for the %sections array. > =C2=A0my %trsections =3D ( > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0'ipfire' =3D> 'IPFire= ', > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0'red' =3D> 'RED', > -=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0'ddns' =3D> $Lang::tr{'dyn= amic dns'}, > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0'ddns' =3D> "$Lang::tr{'dy= namic dns'}", > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0'dns' =3D> 'DNS', > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0'dma' =3D> 'Mail', > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0'dhcp' =3D> "$Lang::t= r{'dhcp server'}", > @@ -86,7 +88,9 @@ my %trsections =3D ( > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0'ipsec' =3D> 'IPSec', > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0'openvpn' =3D> 'OpenV= PN', > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0'pakfire' =3D> 'Pakfi= re', > -=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0'wireless' =3D> 'Wireless' > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0'wireless' =3D> 'Wireless', > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0'squid' =3D> 'Webproxy', > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0'snort' =3D> "$Lang::tr{'i= ntrusion detection'}" > =C2=A0 ); Why is "Webproxy" not translated? This is also two words. I just saw that a ton of other things isn't translated either. Fancy sending = an other patch for that, too? -Michael > =C2=A0 > =C2=A0 --===============7079176858162340205== Content-Type: application/pgp-signature Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="signature.asc" MIME-Version: 1.0 LS0tLS1CRUdJTiBQR1AgU0lHTkFUVVJFLS0tLS0KVmVyc2lvbjogR251UEcgdjIKCmlRSWNCQUFC Q2dBR0JRSlhRdkJzQUFvSkVJQjU4UDl2a0FrSGRac1AvMDNLOFhsUnNvdW5PcjI5YmtsU00ybWkK bGRPVmxITmhGeDBZZkRpSWJIZnBlWE90alEzeGxzMXpUREdJanh6RnU0bzA1TjFLNWRlVm1wVXp3 eTJsOWVHSgpqUWM3OGtFOXFvdWd2N2xoR3pXb1VFZGV5NWl0R3d3SlRLREJmOTNDMldLRitRa1Ni M1ZnQzFFQVBGK091YnpkClZJMHV0MjAwS3NlY1VKeXd5bk01QVFvTXQvYVUwcWg2MVZpM0MwL0Nq QWIxak02VXpEUGttMUhQc2ZRMDcyb2gKa0owdTBpMmxGQ1A0UGc0aE1rV2pRN2Z6TFJaa09jTmJa VStWRC9kZUtJZWtBKzQvNFdaT2xlMGppOURXODl0MApZTmZoV3I0Z01WL2hHMExXNXNxTU13Zmlt Qi83cFpsSVQwYmpwYW9ubCtSa3lUT3JBV0I3UkQ0YW5WRjR1a3hqCm5SSVEzMVNPUXgxOHBhUU5G ZTF4TTNZN0ltVGoxSXh0QVRiMFBieTBRQmVHZ05JTlRiM2Z0N2dyUSszeUgzZEYKbHdNalVyUWl3 OFNRTEdrUksrV1JoVXI1Q3BuR0ZXU2FGY0hTYlkyVmNHb0RmaDlIbExGODRKTlB0ZEFURXRGUgpy c3dsUGI4dXVYVll4QXljVzE3VE5qTkVBYW1UaHc1bjFQeXhPVEt0cGE0RFFnM0NkbytwRmx6Ukpa UHFFTHZlCmRTMVRIMjFqdzhBMHNRMHZUSFdHOFV1UnY5akVYS0FvTTg1aXJoMU9HUHBKcFlpVFF4 WnArMTRXSjZwZXFYRDcKa1JOWE5OME1HcE5qYktGY2d6NXU4bXFNMVBlL2Y2TWlIWkQ3L0RtMzVt alhldzdZckVjeWhOK2dubHFZSDNXTgpYaENSa2Z6OWxPOHVIZDY3Y1hENQo9b3BjcQotLS0tLUVO RCBQR1AgU0lHTkFUVVJFLS0tLS0K --===============7079176858162340205==--