diff options
Diffstat (limited to 'applications/luci-app-watchcat')
35 files changed, 3159 insertions, 1535 deletions
diff --git a/applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js b/applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js index c3863604f0..dc9e0084bc 100644 --- a/applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js +++ b/applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js @@ -22,29 +22,49 @@ return view.extend({ _('Mode'), _("Ping Reboot: Reboot this device if a ping to a specified host fails for a specified duration of time. <br /> \ Periodic Reboot: Reboot this device after a specified interval of time. <br /> \ - Restart Interface: Restart a network interface if a ping to a specified host fails for a specified duration of time.")); + Restart Interface: Restart a network interface if a ping to a specified host fails for a specified duration of time. <br />\ + Run Script: Run a script if a ping to a specified host fails for a specified duration of time. <br />")); o.value('ping_reboot', _('Ping Reboot')); o.value('periodic_reboot', _('Periodic Reboot')); o.value('restart_iface', _('Restart Interface')); + o.value('run_script', _('Run Script')); + + o = s.taboption('general', form.Value, 'script', + _('Script to run'), + _(`Script to run when the host has not responded for the specified duration of time. The script is passed the interface name as $1`)); + o.datatype = 'file'; + o.default = "/etc/watchcat.user.sh"; + o.depends({ mode: "run_script" }); o = s.taboption('general', form.Value, 'period', _('Period'), _("In Periodic Reboot mode, it defines how often to reboot. <br /> \ In Ping Reboot mode, it defines the longest period of \ time without a reply from the Host To Check before a reboot is engaged. <br /> \ - In Network Restart mode, it defines the longest period of \ - time without a reply from the Host to Check before the interface is restarted. \ + In Network Restart or Run Script mode, it defines the longest period of \ + time without a reply from the Host to Check before the interface is restarted or the script is run. \ <br /><br />The default unit is seconds, without a suffix, but you can use the \ suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> \ for days. <br /><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></li><li> \ 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></li><ul>")); o.default = '6h'; - o = s.taboption('general', form.Value, 'pinghosts', _('Host To Check'), _(`IPv4 address or hostname to ping.`)); - o.datatype = 'host(1)'; + o = s.taboption('general', form.Value, 'pinghosts', _('Host To Check'), _(`IP address or hostname to ping.`)); + o.datatype = 'host'; o.default = '8.8.8.8'; o.depends({ mode: "ping_reboot" }); o.depends({ mode: "restart_iface" }); + o.depends({ mode: "run_script" }); + + o = s.taboption('general', form.ListValue, 'addressfamily', + _('Address family for pinging the host')); + o.default = 'any'; + o.depends({ mode: 'ping_reboot' }); + o.depends({ mode: 'restart_iface' }); + o.depends({ mode: "run_script" }); + o.value('any'); + o.value('ipv4'); + o.value('ipv6'); o = s.taboption('general', form.Value, 'pingperiod', _('Check Interval'), @@ -54,6 +74,7 @@ return view.extend({ o.default = '30s'; o.depends({ mode: "ping_reboot" }); o.depends({ mode: "restart_iface" }); + o.depends({ mode: "run_script" }); o = s.taboption('general', form.ListValue, 'pingsize', _('Ping Packet Size')); @@ -66,6 +87,7 @@ return view.extend({ o.default = 'standard'; o.depends({ mode: 'ping_reboot' }); o.depends({ mode: 'restart_iface' }); + o.depends({ mode: "run_script" }); o = s.taboption('general', form.Value, 'forcedelay', _('Force Reboot Delay'), @@ -79,9 +101,10 @@ return view.extend({ o = s.taboption('general', widgets.DeviceSelect, 'interface', _('Interface'), _('Interface to monitor and/or restart'), - _('<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the interface to monitor and restart if a ping over it fails.')); + _('<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /> Specify the interface to monitor and react if a ping over it fails.')); o.depends({ mode: 'ping_reboot' }); o.depends({ mode: 'restart_iface' }); + o.depends({ mode: 'run_script' }); o = s.taboption('general', widgets.NetworkSelect, 'mmifacename', _('Name of ModemManager Interface'), diff --git a/applications/luci-app-watchcat/po/ar/watchcat.po b/applications/luci-app-watchcat/po/ar/watchcat.po index ebb54f9e1b..b3201c259c 100644 --- a/applications/luci-app-watchcat/po/ar/watchcat.po +++ b/applications/luci-app-watchcat/po/ar/watchcat.po @@ -13,13 +13,17 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Weblate 4.5.1\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -28,22 +32,22 @@ msgid "" "0 to disable the forced reboot delay." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "تحقق الفاصل" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "" @@ -62,11 +66,11 @@ msgid "" "up more than one action." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -76,43 +80,43 @@ msgid "" "li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "" @@ -120,23 +124,23 @@ msgstr "" msgid "Mode" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "" @@ -146,18 +150,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "" @@ -165,7 +184,7 @@ msgstr "" msgid "These rules will govern how this device reacts to network events." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "" @@ -175,6 +194,6 @@ msgstr "" msgid "Watchcat" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "" diff --git a/applications/luci-app-watchcat/po/bg/watchcat.po b/applications/luci-app-watchcat/po/bg/watchcat.po index 5757db6fea..d671d5b81b 100644 --- a/applications/luci-app-watchcat/po/bg/watchcat.po +++ b/applications/luci-app-watchcat/po/bg/watchcat.po @@ -12,13 +12,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -27,22 +31,22 @@ msgid "" "0 to disable the forced reboot delay." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "" @@ -61,11 +65,11 @@ msgid "" "up more than one action." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -75,43 +79,43 @@ msgid "" "li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "Интерфейс" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "" @@ -119,23 +123,23 @@ msgstr "" msgid "Mode" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "" @@ -145,18 +149,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "" @@ -164,7 +183,7 @@ msgstr "" msgid "These rules will govern how this device reacts to network events." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "" @@ -174,6 +193,6 @@ msgstr "" msgid "Watchcat" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "" diff --git a/applications/luci-app-watchcat/po/bn_BD/watchcat.po b/applications/luci-app-watchcat/po/bn_BD/watchcat.po index c410a3c4a6..c075e05004 100644 --- a/applications/luci-app-watchcat/po/bn_BD/watchcat.po +++ b/applications/luci-app-watchcat/po/bn_BD/watchcat.po @@ -12,13 +12,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -27,22 +31,22 @@ msgid "" "0 to disable the forced reboot delay." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "" @@ -61,11 +65,11 @@ msgid "" "up more than one action." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -75,43 +79,43 @@ msgid "" "li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "ইন্টারফেস" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "" @@ -119,23 +123,23 @@ msgstr "" msgid "Mode" msgstr "মোড" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "" @@ -145,18 +149,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "" @@ -164,7 +183,7 @@ msgstr "" msgid "These rules will govern how this device reacts to network events." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "" @@ -174,6 +193,6 @@ msgstr "" msgid "Watchcat" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "" diff --git a/applications/luci-app-watchcat/po/ca/watchcat.po b/applications/luci-app-watchcat/po/ca/watchcat.po index 588efbe1dd..8675c483db 100644 --- a/applications/luci-app-watchcat/po/ca/watchcat.po +++ b/applications/luci-app-watchcat/po/ca/watchcat.po @@ -12,13 +12,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.5.1\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -27,22 +31,22 @@ msgid "" "0 to disable the forced reboot delay." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "" @@ -61,11 +65,11 @@ msgid "" "up more than one action." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -75,43 +79,43 @@ msgid "" "li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "" @@ -119,23 +123,23 @@ msgstr "" msgid "Mode" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "Període" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "" @@ -145,18 +149,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "" @@ -164,7 +183,7 @@ msgstr "" msgid "These rules will govern how this device reacts to network events." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "" @@ -174,7 +193,7 @@ msgstr "" msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "" diff --git a/applications/luci-app-watchcat/po/cs/watchcat.po b/applications/luci-app-watchcat/po/cs/watchcat.po index 1b72375aa6..a1dba4aaac 100644 --- a/applications/luci-app-watchcat/po/cs/watchcat.po +++ b/applications/luci-app-watchcat/po/cs/watchcat.po @@ -12,13 +12,17 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -27,22 +31,22 @@ msgid "" "0 to disable the forced reboot delay." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "Interval kontroly" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "" @@ -61,11 +65,11 @@ msgid "" "up more than one action." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -75,43 +79,43 @@ msgid "" "li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "" @@ -119,23 +123,23 @@ msgstr "" msgid "Mode" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "Perioda" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "" @@ -145,18 +149,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "" @@ -164,7 +183,7 @@ msgstr "" msgid "These rules will govern how this device reacts to network events." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "" @@ -174,7 +193,7 @@ msgstr "" msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "" @@ -189,8 +208,8 @@ msgstr "" #~ "you use the suffix 'm' for minutes, 'h' for hours or 'd' for days" #~ msgstr "" #~ "Perioda testování připojení; výchozí časovou jednotkou jsou sekundy, " -#~ "avšak použitím přípony \"m\" lze určit minuty, pomocí \"h\" hodiny a \"d" -#~ "\" dny" +#~ "avšak použitím přípony \"m\" lze určit minuty, pomocí \"h\" hodiny a " +#~ "\"d\" dny" #~ msgid "" #~ "In periodic mode, it defines the reboot period. In internet mode, it " diff --git a/applications/luci-app-watchcat/po/da/watchcat.po b/applications/luci-app-watchcat/po/da/watchcat.po new file mode 100644 index 0000000000..2d0089e181 --- /dev/null +++ b/applications/luci-app-watchcat/po/da/watchcat.po @@ -0,0 +1,339 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2022-09-10 07:18+0000\n" +"Last-Translator: drax red <drax@outlook.dk>\n" +"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationswatchcat/da/>\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.14.1-dev\n" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 +msgid "" +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" +"<i>Gælder for Ping Reboot, Genstart Interface og Run Script-tilstande</i> " +"<br /> Angiv den grænseflade, der skal overvåges og reagere, hvis et ping " +"over det mislykkes." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" +msgstr "Adressefamilie til pinging af værten" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +msgid "" +"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " +"the router, the service will trigger a soft reboot. Entering a non-zero " +"value here will trigger a delayed hard reboot if the soft reboot were to " +"fail. Enter the number of seconds to wait for the soft reboot to fail or use " +"0 to disable the forced reboot delay." +msgstr "" +"Gælder for Ping-genstart og periodisk genstart</i> <br /> Ved genstart af " +"routeren vil tjenesten udløse en blød genstart. Indtastning af en værdi, der " +"ikke er nul her, vil udløse en forsinket hård genstart, hvis den bløde " +"genstart mislykkes. Indtast det antal sekunder, der skal vente på, at den " +"bløde genstart mislykkes, eller brug 0 for at deaktivere den tvungne " +"genstartsforsinkelse." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 +msgid "" +"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " +"ModemManager, you can have Watchcat restart your ModemManger interface by " +"specifying its name." +msgstr "" +"Gælder for Ping Genstart og Genstart Interface-tilstande</i> <br /> Hvis du " +"bruger ModemManager, kan du få Watchcat til at genstarte din ModemManger-" +"interface ved at angive dens navn." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 +msgid "Big: 248 bytes" +msgstr "Stor: 248 bytes" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 +msgid "Check Interval" +msgstr "Tjek interval" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 +msgid "Force Reboot Delay" +msgstr "Tving genstartsforsinkelse" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" +msgstr "Generelle indstillinger" + +#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 +msgid "Grant access to LuCI app watchcat" +msgstr "Giv adgang til LuCI app watchcat" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12 +msgid "" +"Here you can set up several checks and actions to take in the event that a " +"host becomes unreachable. Click the <b>Add</b> button at the bottom to set " +"up more than one action." +msgstr "" +"Her kan du opsætte flere kontroller og handlinger, der skal tages i tilfælde " +"af, at en vært bliver utilgængelig. Klik på knappen <b>Tilføj</b> nederst " +"for at konfigurere mere end én handling." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "Host To Check" +msgstr "Vært at tjekke" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "" +"How often to ping the host specified above. <br /><br />The default unit is " +"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " +"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 " +"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</" +"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" +"li><ul>" +msgstr "" +"Hvor ofte skal man pinge værten specificeret ovenfor. <br /><br /" +">Standardenheden er sekunder uden suffiks, men du kan bruge suffikset <b>m</" +"b> i minutter, <b>h</b> i timer eller <b>d </b> i dagevis. <br /><br /> " +"Eksempler:<ul><li>10 sekunder ville være: <b>10</b> eller <b>10s</b></" +"li><li>5 minutter ville være: <b>5m</b></li><li>1 time ville være: <b>1t</" +"b></li><li>1 uge ville være: <b>7d</b></ li><ul>" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 +msgid "Huge: 1492 bytes" +msgstr "Kæmpe: 1492 bytes" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." +msgstr "IP-adresse eller værtsnavn, der skal pinges." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 +msgid "" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." +msgstr "" +"Hvis du bruger ModemManager, så før du genstarter interface, skal du " +"indstille modemmet til at have lov til at bruge et hvilket som helst bånd." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 +msgid "" +"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " +"Reboot mode, it defines the longest period of time without a reply from the " +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" +msgstr "" +"I tilstanden Periodisk genstart defineres det, hvor ofte der skal " +"genstartes. <br /> I tilstanden Ping-genstart defineres det længste tidsrum " +"uden svar fra værten til kontrol, før der foretages en genstart. <br /> I " +"tilstanden Netværksgenstart eller Kør script defineres det længste tidsrum " +"uden svar fra værten til kontrol, før grænsefladen genstartes, eller " +"scriptet køres. <br /><br />Standard enheden er sekunder, uden suffiks, men " +"du kan bruge suffiks <b>m</b> for minutter, <b>h</b> for timer eller <b>d</" +"b> for dage. <br /><br />Eksempler:<ul><li>10 sekunder ville være: <b>10</b> " +"eller <b>10s</b></li><li>5 minutter ville være: <b>10</b> eller <b>10s</b></" +"li><li>5 minutter ville være: <b>5m</b></li><li> 1 time ville være: " +"<b>1h</b></li><li>1 uge ville være: <b>7d</b></li></li><ul>" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 +msgid "Interface" +msgstr "Interface" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 +msgid "Interface to monitor and/or restart" +msgstr "Interface til overvågning og/eller genstart" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 +msgid "Jumbo: 9000 bytes" +msgstr "Jumbo: 9000 bytes" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "Mode" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 +msgid "Name of ModemManager Interface" +msgstr "Navn på ModemManager Interface" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 +msgid "Period" +msgstr "Periode" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Periodic Reboot" +msgstr "Periodisk genstart" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +msgid "Ping Packet Size" +msgstr "Ping-pakkestørrelse" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Ping Reboot" +msgstr "Ping genstart" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 +msgid "" +"Ping Reboot: Reboot this device if a ping to a specified host fails for a " +"specified duration of time. <br /> Periodic Reboot: Reboot this device after " +"a specified interval of time. <br /> Restart Interface: Restart a network " +"interface if a ping to a specified host fails for a specified duration of " +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" +msgstr "" +"Ping Reboot: Genstart denne enhed, hvis en ping til en angivet vært " +"mislykkes i et angivet tidsrum. <br /> Periodisk genstart: Genstart denne " +"enhed efter et angivet tidsinterval. <br /> Genstart Interface: Genstart en " +"netværks Interface, hvis en ping til en angivet vært mislykkes i et angivet " +"tidsrum. <br /> Run Script (Kør script): Kør et script, hvis en ping til en " +"angivet vært mislykkes i et angivet tidsrum. <br />" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 +msgid "Restart Interface" +msgstr "Genstart interface" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "Kør script" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "Script til at køre" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" +"Script, der skal køres, når værten ikke har svaret i den angivne " +"tidsperiode. Scriptet får interface navnet som $1" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Small: 1 byte" +msgstr "Lille: 1 byte" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 +msgid "Standard: 56 bytes" +msgstr "Standard: 56 bytes" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15 +msgid "These rules will govern how this device reacts to network events." +msgstr "" +"Disse regler styrer, hvordan denne enhed reagerer på netværkshændelser." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 +msgid "Unlock Modem Bands" +msgstr "Lås modembånd op" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15 +#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 +msgid "Watchcat" +msgstr "Watchcat" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +msgid "Windows: 32 bytes" +msgstr "Windows: 32 bytes" + +#~ msgid "" +#~ "<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify " +#~ "the interface to monitor and restart if a ping over it fails." +#~ msgstr "" +#~ "<i>Gælder for Ping Genstart og Genstart Interface-tilstande</i> <br /> " +#~ "Angiv den grænseflade, der skal overvåges og genstartes, hvis et ping " +#~ "over det mislykkes." + +#~ msgid "IPv4 address or hostname to ping." +#~ msgstr "IPv4-adresse eller værtsnavn, der skal pinges." + +#~ msgid "" +#~ "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " +#~ "Reboot mode, it defines the longest period of time without a reply from " +#~ "the Host To Check before a reboot is engaged. <br /> In Network Restart " +#~ "mode, it defines the longest period of time without a reply from the Host " +#~ "to Check before the interface is restarted. <br /><br />The default unit " +#~ "is seconds, without a suffix, but you can use the suffix <b>m</b> for " +#~ "minutes, <b>h</b> for hours or <b>d</b> for days. <br /><br />Examples:" +#~ "<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes " +#~ "would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></li><li>1 week " +#~ "would be: <b>7d</b></li><ul>" +#~ msgstr "" +#~ "I periodisk genstartstilstand definerer den, hvor ofte der skal " +#~ "genstartes. <br /> I Ping-genstartstilstand definerer den længste " +#~ "tidsperiode uden svar fra Vært at tjekke, før en genstart aktiveres. <br /" +#~ "> I netværksgenstartstilstand definerer den længste periode uden svar fra " +#~ "værten til tjek, før interface genstartes. <br /><br />Standardenheden er " +#~ "sekunder uden suffiks, men du kan bruge suffikset <b>m</b> i minutter, " +#~ "<b>h</b> i timer eller <b>d </b> i dagevis. <br /><br />Eksempler:" +#~ "<ul><li>10 sekunder ville være: <b>10</b> eller <b>10s</b></li><li>5 " +#~ "minutter ville være: <b>5m</b></li><li> 1 time ville være: <b>1t</b></" +#~ "li><li>1 uge ville være: <b>7d</b></ li><ul>" + +#~ msgid "" +#~ "Ping Reboot: Reboot this device if a ping to a specified host fails for a " +#~ "specified duration of time. <br /> Periodic Reboot: Reboot this device " +#~ "after a specified interval of time. <br /> Restart Interface: Restart a " +#~ "network interface if a ping to a specified host fails for a specified " +#~ "duration of time." +#~ msgstr "" +#~ "Ping Genstart: genstart denne enhed, hvis et ping til en specificeret " +#~ "vært mislykkes i et bestemt tidsrum. <br /> Periodisk genstart: Genstart " +#~ "denne enhed efter et bestemt tidsinterval. <br /> Genstart interface: " +#~ "Genstart netværks interface , hvis et ping til en specificeret vært " +#~ "mislykkes i et bestemt tidsrum." + +#~ msgid "Forced reboot delay" +#~ msgstr "Forced reboot delay" + +#~ msgid "Host address to ping" +#~ msgstr "Host address to ping" + +#~ msgid "" +#~ "How often to check internet connection. Default unit is seconds, you can " +#~ "you use the suffix 'm' for minutes, 'h' for hours or 'd' for days" +#~ msgstr "" +#~ "How often to check internet connection. Default unit is seconds, you can " +#~ "you use the suffix 'm' for minutes, 'h' for hours or 'd' for days" + +#~ msgid "" +#~ "In periodic mode, it defines the reboot period. In internet mode, it " +#~ "defines the longest period of time without internet access before a " +#~ "reboot is engaged.Default unit is seconds, you can use the suffix 'm' for " +#~ "minutes, 'h' for hours or 'd' for days" +#~ msgstr "" +#~ "In periodic mode, it defines the reboot period. In internet mode, it " +#~ "defines the longest period of time without internet access before a " +#~ "reboot is engaged.Default unit is seconds, you can use the suffix 'm' for " +#~ "minutes, 'h' for hours or 'd' for days" + +#~ msgid "Operating mode" +#~ msgstr "Operating mode" + +#~ msgid "Ping host" +#~ msgstr "Ping host" + +#~ msgid "Ping period" +#~ msgstr "Ping period" + +#, fuzzy +#~ msgid "" +#~ "Watchcat allows configuring a periodic reboot when the Internet " +#~ "connection has been lost for a certain period of time." +#~ msgstr "" +#~ "Watchcat allows to configure a periodic reboot and/or when internet " +#~ "connection has been lost for a certain period of time." + +#, fuzzy +#~ msgid "" +#~ "When rebooting the system, the watchcat will trigger a soft reboot. " +#~ "Entering a non zero value here will trigger a delayed hard reboot if the " +#~ "soft reboot fails. Enter a number of seconds to enable, use 0 to disable" +#~ msgstr "" +#~ "When rebooting the system the watchcat will trigger a soft reboot, " +#~ "Entering a non zero value here, will trigger a delayed hard reboot if the " +#~ "soft reboot fails. Enter a number of seconds to enable, use 0 to disable" diff --git a/applications/luci-app-watchcat/po/de/watchcat.po b/applications/luci-app-watchcat/po/de/watchcat.po index 5ea4d7a06f..0f56a79091 100644 --- a/applications/luci-app-watchcat/po/de/watchcat.po +++ b/applications/luci-app-watchcat/po/de/watchcat.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2021-03-24 15:29+0000\n" -"Last-Translator: Dirk Brenken <dev@brenken.org>\n" +"PO-Revision-Date: 2022-10-23 17:26+0000\n" +"Last-Translator: Zeik0s <zeik0s@zeik0s.at>\n" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/" "luciapplicationswatchcat/de/>\n" "Language: de\n" @@ -10,15 +10,22 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.5.2-dev\n" +"X-Generator: Weblate 4.14.2-dev\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." msgstr "" +"<i>Trifft auf Ping Neustart, Reaktivieren der Schnittstelle und Skript " +"ausführende Modi zu</i><br /> Nenne die zu überwachende Schnittstelle und " +"reagiere, falls ein Ping darauf fehlschlägt." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" +msgstr "Adressfamilie für pingen des Hosts" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -26,25 +33,35 @@ msgid "" "fail. Enter the number of seconds to wait for the soft reboot to fail or use " "0 to disable the forced reboot delay." msgstr "" - -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +"Gilt für die Modi \"Ping Reboot und regelmäßiger Reboot\"</i> <br /> Wenn " +"der Router neu gestartet wird, löst der Dienst einen Soft Reboot aus. Wenn " +"Sie hier einen Wert ungleich Null eingeben, wird ein verzögerter Hard Reboot " +"ausgelöst, wenn der Soft Reboot fehlschlägt. Geben Sie die Anzahl der " +"Sekunden ein, die gewartet werden sollen, bis der Soft-Reboot fehlschlägt, " +"oder verwenden Sie 0, um die Verzögerung des erzwungenen Neustarts zu " +"deaktivieren." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" +"Gilt für die Modi \"Ping Reboot und Restart Schnittstelle<\"/i> <br /> Wenn " +"Sie den ModemManager verwenden, können Sie Watchcat veranlassen,um das " +"ModemManger-Interface neu zu starten, indem Sie dessen Namen angeben." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" -msgstr "" +msgstr "Groß: 248 Bytes" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" -msgstr "" +msgstr "Kontrollintervall" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" -msgstr "" +msgstr "Neustartverzögerung erzwingen" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 msgid "General Settings" @@ -52,7 +69,7 @@ msgstr "Allgemeine Einstellungen" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 msgid "Grant access to LuCI app watchcat" -msgstr "" +msgstr "Zugriff auf die LuCI-App watchcat gewähren" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12 msgid "" @@ -60,12 +77,16 @@ msgid "" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set " "up more than one action." msgstr "" +"Hier können verschiedene Prüfungen und Aktionen für den Fall durchgeführt " +"werden, falls ein Host nicht mehr erreicht werden kann. Klicken Sie auf die " +"Schaltfläche <b>Hinzufügen</b> am unteren Rand, um mehr als eine Aktion " +"einzurichten." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" -msgstr "" +msgstr "Host zu überprüfen" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -74,70 +95,78 @@ msgid "" "b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" "li><ul>" msgstr "" - -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +"Wie oft der oben angegebene Host angepingt werden soll. <br /><br />Der " +"Standardwert ist in Sekunden, ohne suffix, aber du kannst Suffix <b>m</b> " +"für Minuten, <b>h</b> für Stunden oder <b>d</b> für Tage. <br /><br " +"/>Beispiele: <ul><li>zehn Sekunden wären: <b>10</b> oder <b>10s</b></" +"li><li>fünf Minuten wären: <b>5m</b></li><li>eine Stunde wäre: <b>1h</b></" +"li><li>eine Woche wäre: <b>7d</b></li><ul>" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" -msgstr "" +msgstr "Riesig: 1492 bytes" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" +"Wenn Sie ModemManager verwenden, stellen Sie das Modem vor dem Neustart der " +"Schnittstelle so ein, dass es jedes Band verwenden darf." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" -msgstr "" +msgstr "Schnittstelle" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" -msgstr "" +msgstr "Schnittstelle zum überwachen und/oder neustarten" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" -msgstr "" +msgstr "Jumbo: 9000 bytes" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 msgid "Mode" -msgstr "" +msgstr "Modus" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" -msgstr "" +msgstr "Name der ModemManager Schnittstelle" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "Periode" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" -msgstr "" +msgstr "Regelmäßiger Neustart" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" -msgstr "" +msgstr "Ping Paket größe" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" -msgstr "" +msgstr "Ping neustart" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 msgid "" @@ -145,28 +174,43 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" +msgstr "Schnittstelle neustarten" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 -msgid "Small: 1 byte" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 -msgid "Standard: 56 bytes" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" msgstr "" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Small: 1 byte" +msgstr "Klein: 1 byte" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 +msgid "Standard: 56 bytes" +msgstr "Standard: 56 bytes" + #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15 msgid "These rules will govern how this device reacts to network events." -msgstr "" +msgstr "Diese Regeln bestimmen, wie das Gerät auf Netzwerkereignisse reagiert." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" -msgstr "" +msgstr "Modem-Bänder freischalten" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15 @@ -174,9 +218,58 @@ msgstr "" msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" -msgstr "" +msgstr "Windows: 32 bytes" + +#~ msgid "" +#~ "<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify " +#~ "the interface to monitor and restart if a ping over it fails." +#~ msgstr "" +#~ "<i>Gilt für die Modi \"Ping Reboot\" und \"Restart Interface\" </i> <br /" +#~ "> Geben Sie die Schnittstelle an, die überwacht und neu gestartet werden " +#~ "soll, wenn ein Ping fehlschlägt." + +#~ msgid "IPv4 address or hostname to ping." +#~ msgstr "IPv4-Adresse oder Hostname zum anpingen." + +#, fuzzy +#~ msgid "" +#~ "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " +#~ "Reboot mode, it defines the longest period of time without a reply from " +#~ "the Host To Check before a reboot is engaged. <br /> In Network Restart " +#~ "mode, it defines the longest period of time without a reply from the Host " +#~ "to Check before the interface is restarted. <br /><br />The default unit " +#~ "is seconds, without a suffix, but you can use the suffix <b>m</b> for " +#~ "minutes, <b>h</b> for hours or <b>d</b> for days. <br /><br />Examples:" +#~ "<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes " +#~ "would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></li><li>1 week " +#~ "would be: <b>7d</b></li><ul>" +#~ msgstr "" +#~ "Im Modus \"Periodischer Neustart\" legt er fest, wie oft neu gestartet " +#~ "werden soll. <br /> Im Modus \"Ping-Neustart\" legt er die längste " +#~ "Zeitspanne fest, in der keine Antwort vom zu überprüfenden Host kommt, " +#~ "bevor ein Neustart durchgeführt wird. <br /> Im Modus \"Netzwerk-" +#~ "Neustart\" legt er die längste Zeitspanne fest, in der keine Antwort vom " +#~ "zu überprüfenden Host kommt, bevor die Schnittstelle neu gestartet wird. " +#~ "<br /><br />Die Standardeinheit ist Sekunden, ohne Suffix, aber Sie " +#~ "können das Suffix <b>m</b> für Minuten, <b>h</b> für Stunden oder <b>d</" +#~ "b> für Tage verwenden. <br /><br />Beispiele:<ul><li>10 Sekunden wären: " +#~ "<b>10</b> oder <b>10s</b></li><li>5 Minuten wären: <b>5m</b></li><li>1 " +#~ "Stunde wäre: <b>1h</b></li><li>1 Woche wäre: <b>7d</b></li><ul>" + +#~ msgid "" +#~ "Ping Reboot: Reboot this device if a ping to a specified host fails for a " +#~ "specified duration of time. <br /> Periodic Reboot: Reboot this device " +#~ "after a specified interval of time. <br /> Restart Interface: Restart a " +#~ "network interface if a ping to a specified host fails for a specified " +#~ "duration of time." +#~ msgstr "" +#~ "Ping-Neustart: Startet das Gerät neu, wenn ein Ping zu einem bestimmten " +#~ "Host für eine bestimmte Zeitspanne fehlschlägt. <br /> Regelmäßiger " +#~ "Neustart: Startet das Gerät nach einem bestimmten Zeitintervall neu. <br /" +#~ "> Schnittstelle neu starten: Startet eine Netzwerkschnittstelle neu, wenn " +#~ "ein Ping zu einem bestimmten Host für eine bestimmte Zeit fehlschlägt." #~ msgid "Forced reboot delay" #~ msgstr "Erzwungenen Neustart verzögern um" diff --git a/applications/luci-app-watchcat/po/el/watchcat.po b/applications/luci-app-watchcat/po/el/watchcat.po index 12722ab783..c0af8fd7a8 100644 --- a/applications/luci-app-watchcat/po/el/watchcat.po +++ b/applications/luci-app-watchcat/po/el/watchcat.po @@ -8,13 +8,17 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -23,22 +27,22 @@ msgid "" "0 to disable the forced reboot delay." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "" @@ -57,11 +61,11 @@ msgid "" "up more than one action." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -71,43 +75,43 @@ msgid "" "li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "" @@ -115,23 +119,23 @@ msgstr "" msgid "Mode" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "" @@ -141,18 +145,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "" @@ -160,7 +179,7 @@ msgstr "" msgid "These rules will govern how this device reacts to network events." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "" @@ -170,6 +189,6 @@ msgstr "" msgid "Watchcat" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "" diff --git a/applications/luci-app-watchcat/po/en/watchcat.po b/applications/luci-app-watchcat/po/en/watchcat.po index ed11054ca8..ce1160b358 100644 --- a/applications/luci-app-watchcat/po/en/watchcat.po +++ b/applications/luci-app-watchcat/po/en/watchcat.po @@ -8,13 +8,17 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -23,22 +27,22 @@ msgid "" "0 to disable the forced reboot delay." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "" @@ -57,11 +61,11 @@ msgid "" "up more than one action." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -71,43 +75,43 @@ msgid "" "li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "" @@ -115,23 +119,23 @@ msgstr "" msgid "Mode" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "Period" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "" @@ -141,18 +145,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "" @@ -160,7 +179,7 @@ msgstr "" msgid "These rules will govern how this device reacts to network events." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "" @@ -170,7 +189,7 @@ msgstr "" msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "" diff --git a/applications/luci-app-watchcat/po/es/watchcat.po b/applications/luci-app-watchcat/po/es/watchcat.po index 4f4819bc29..9d1e2a774d 100644 --- a/applications/luci-app-watchcat/po/es/watchcat.po +++ b/applications/luci-app-watchcat/po/es/watchcat.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2021-08-02 05:59+0000\n" +"PO-Revision-Date: 2022-07-13 06:46+0000\n" "Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationswatchcat/es/>\n" @@ -11,17 +11,19 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.8-dev\n" +"X-Generator: Weblate 4.14-dev\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." msgstr "" -"<i>Se aplica a los modos Reinicio por Ping y Reiniciar interfaz</i> <br /> " -"Especifique la interfaz a monitorear y reiniciar si falla un ping sobre ella." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -36,7 +38,7 @@ msgstr "" "que hay que esperar a que el reinicio suave falle o use 0 para desactivar el " "retraso de reinicio forzado." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " @@ -46,15 +48,15 @@ msgstr "" "usa ModemManager, puede hacer que Watchcat reinicie su interfaz ModemManger " "especificando su nombre." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "Grande: 248 bytes" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "Intervalo de comprobación" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "Forzar Retraso de Reinicio" @@ -76,11 +78,11 @@ msgstr "" "de que no se pueda contactar con un host. Haga clic en el botón <b>Agregar</" "b> en la parte inferior para configurar más de una acción." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "Host para comprobar" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 #, fuzzy msgid "" "How often to ping the host specified above. <br /><br />The default unit is " @@ -97,15 +99,15 @@ msgstr "" "b></li><li>5 minutos sería: <b>5m</b></li><li>1 hora sería: <b>1h</b></" "li><li>1 semana sería: <b>7d</b></ li><ul>" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "Enorme: 1492 bytes" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." -msgstr "Dirección IPv4 o nombre de host para hacer ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." +msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." @@ -113,40 +115,29 @@ msgstr "" "Si usa ModemManager, antes de reiniciar la interfaz, configure el módem para " "que pueda usar cualquier banda." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -"En el modo de Reinicio periódico, se define la frecuencia con la que " -"reiniciar. <br /> En el modo Reinicio por Ping, se define el período de " -"tiempo más largo sin una respuesta desde el Host, que hay que comprobar " -"antes de que se inicie un reinicio. <br /> En el modo Reinicio por Red, se " -"define el período de tiempo más largo sin una respuesta desde el host, que " -"hay que comprobar antes de que se reinicie la interfaz. <br /> <br /> La " -"unidad predeterminada es segundos, sin llevar sufijo, pero puede usar el " -"sufijo <b>m</b> para minutos, <b>h</b> para horas o <b>d</b> para días. <br /" -"> <br /> Ejemplos: <ul> <li>10 segundos sería: <b>10</b> o <b>10s</b></li> " -"<li>5 minutos sería: <b>5m</b></li> <li>1 hora sería: <b>1h</b></li><li>1 " -"semana sería: <b>7d</b></ li><ul>" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "Interfaz" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "Interfaz para monitorear y/o reiniciar" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "Jumbo: 9000 bytes" @@ -154,23 +145,23 @@ msgstr "Jumbo: 9000 bytes" msgid "Mode" msgstr "Modo" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "Nombre de la interfaz de ModemManager" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "Período" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "Reinicio periódico" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "Tamaño del paquete de ping" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 #, fuzzy msgid "Ping Reboot" msgstr "Reinicio por Ping" @@ -181,23 +172,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -"Reinicio por ping: reinicia este dispositivo si falla un ping a un host " -"especificado durante un período de tiempo especificado. <br /> Reinicio " -"periódico: reinicia este dispositivo después de un intervalo de tiempo " -"especificado. <br /> Reiniciar interfaz: reinicia una interfaz de red si un " -"ping a un host especificado falla durante un período de tiempo especificado." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "Reiniciar interfaz" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "Pequeño: 1 byte" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "Estándar: 56 bytes" @@ -206,7 +207,7 @@ msgid "These rules will govern how this device reacts to network events." msgstr "" "Estas reglas regirán cómo reacciona este dispositivo a los eventos de la red." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "Desbloquear bandas de módem" @@ -216,12 +217,61 @@ msgstr "Desbloquear bandas de módem" msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 #, fuzzy msgid "Windows: 32 bytes" msgstr "Windows: 32 bytes" #~ msgid "" +#~ "<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify " +#~ "the interface to monitor and restart if a ping over it fails." +#~ msgstr "" +#~ "<i> Se aplica a los modos Reiniciar por Ping y Reiniciar Interfaz </i> " +#~ "<br /> Especifique la interfaz a monitorizar y reiniciar si falla un ping " +#~ "sobre ella." + +#~ msgid "IPv4 address or hostname to ping." +#~ msgstr "Dirección IPv4 o nombre de host para hacer ping." + +#~ msgid "" +#~ "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " +#~ "Reboot mode, it defines the longest period of time without a reply from " +#~ "the Host To Check before a reboot is engaged. <br /> In Network Restart " +#~ "mode, it defines the longest period of time without a reply from the Host " +#~ "to Check before the interface is restarted. <br /><br />The default unit " +#~ "is seconds, without a suffix, but you can use the suffix <b>m</b> for " +#~ "minutes, <b>h</b> for hours or <b>d</b> for days. <br /><br />Examples:" +#~ "<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes " +#~ "would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></li><li>1 week " +#~ "would be: <b>7d</b></li><ul>" +#~ msgstr "" +#~ "En el modo de Reinicio periódico, se define la frecuencia con la que " +#~ "reiniciar. <br /> En el modo Reinicio por Ping, se define el período de " +#~ "tiempo más largo sin una respuesta desde el Host, que hay que comprobar " +#~ "antes de que se inicie un reinicio. <br /> En el modo Reinicio por Red, " +#~ "se define el período de tiempo más largo sin una respuesta desde el host, " +#~ "que hay que comprobar antes de que se reinicie la interfaz. <br /> <br /> " +#~ "La unidad predeterminada es segundos, sin llevar sufijo, pero puede usar " +#~ "el sufijo <b>m</b> para minutos, <b>h</b> para horas o <b>d</b> para " +#~ "días. <br /> <br /> Ejemplos: <ul> <li>10 segundos sería: <b>10</b> o " +#~ "<b>10s</b></li> <li>5 minutos sería: <b>5m</b></li> <li>1 hora sería: " +#~ "<b>1h</b></li><li>1 semana sería: <b>7d</b></ li><ul>" + +#~ msgid "" +#~ "Ping Reboot: Reboot this device if a ping to a specified host fails for a " +#~ "specified duration of time. <br /> Periodic Reboot: Reboot this device " +#~ "after a specified interval of time. <br /> Restart Interface: Restart a " +#~ "network interface if a ping to a specified host fails for a specified " +#~ "duration of time." +#~ msgstr "" +#~ "Reinicio por ping: reinicia este dispositivo si falla un ping a un host " +#~ "especificado durante un período de tiempo especificado. <br /> Reinicio " +#~ "periódico: reinicia este dispositivo después de un intervalo de tiempo " +#~ "especificado. <br /> Reiniciar interfaz: reinicia una interfaz de red si " +#~ "un ping a un host especificado falla durante un período de tiempo " +#~ "especificado." + +#~ msgid "" #~ "<i>Applies to Ping Reboot and Restart Interface modes</i> <br> Specify " #~ "the interface to monitor and restart if a ping over it fails." #~ msgstr "" diff --git a/applications/luci-app-watchcat/po/fi/watchcat.po b/applications/luci-app-watchcat/po/fi/watchcat.po index 606e6e14e8..7027a83bf1 100644 --- a/applications/luci-app-watchcat/po/fi/watchcat.po +++ b/applications/luci-app-watchcat/po/fi/watchcat.po @@ -1,21 +1,28 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2022-03-12 13:29+0000\n" +"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" +"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationswatchcat/fi/>\n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.12-dev\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -24,28 +31,28 @@ msgid "" "0 to disable the forced reboot delay." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" -msgstr "" +msgstr "Tarkistusväli" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 msgid "General Settings" -msgstr "" +msgstr "Yleiset asetukset" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 msgid "Grant access to LuCI app watchcat" @@ -58,11 +65,11 @@ msgid "" "up more than one action." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -72,43 +79,43 @@ msgid "" "li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "" @@ -116,23 +123,23 @@ msgstr "" msgid "Mode" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "" @@ -142,18 +149,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "" @@ -161,7 +183,7 @@ msgstr "" msgid "These rules will govern how this device reacts to network events." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "" @@ -171,6 +193,6 @@ msgstr "" msgid "Watchcat" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "" diff --git a/applications/luci-app-watchcat/po/fr/watchcat.po b/applications/luci-app-watchcat/po/fr/watchcat.po index 11ce878741..f5b3335ca8 100644 --- a/applications/luci-app-watchcat/po/fr/watchcat.po +++ b/applications/luci-app-watchcat/po/fr/watchcat.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2021-04-11 16:26+0000\n" -"Last-Translator: SRay <seb@isostorm.com>\n" +"PO-Revision-Date: 2022-10-23 17:26+0000\n" +"Last-Translator: Amaury <y0da@live.fr>\n" "Language-Team: French <https://hosted.weblate.org/projects/openwrt/" "luciapplicationswatchcat/fr/>\n" "Language: fr\n" @@ -10,15 +10,22 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.6-dev\n" +"X-Generator: Weblate 4.14.2-dev\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" +"<i>S'applique aux modes de redémarrage par ping et de redémarrage " +"périodique</i> <br/>Indiquer l'interface à monitorer et corriger en cas " +"d'échec de ping." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -26,25 +33,34 @@ msgid "" "fail. Enter the number of seconds to wait for the soft reboot to fail or use " "0 to disable the forced reboot delay." msgstr "" - -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +"S'applique aux modes de redémarrage par ping et de redémarrage périodique</" +"i> <br />Lorsque le service redémarre le routeur, il déclenche un " +"redémarrage en douceur. La saisie d'une valeur non nulle ici déclenchera un " +"redémarrage dur différé si le redémarrage progressif devait échouer. Entrez " +"le nombre de secondes à attendre pour que le redémarrage progressif échoue " +"ou utilisez 0 pour désactiver le délai de redémarrage forcé." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" +"S'applique aux modes d'interface Ping Reboot et Restart</i> <br />Si vous " +"utilisez ModemManager, vous pouvez demander à Watchcat de redémarrer votre " +"interface ModemManger en spécifiant son nom." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" -msgstr "" +msgstr "Grand : 248 octets" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" -msgstr "" +msgstr "Intervalle de contrôle" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" -msgstr "" +msgstr "Délai de redémarrage forcé" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 msgid "General Settings" @@ -52,7 +68,7 @@ msgstr "Paramètres généraux" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 msgid "Grant access to LuCI app watchcat" -msgstr "" +msgstr "Accorder l'accès à l'application LuCI watchcat" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12 msgid "" @@ -60,12 +76,15 @@ msgid "" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set " "up more than one action." msgstr "" +"Ici, vous pouvez configurer plusieurs vérifications et actions à " +"entreprendre dans le cas où un hôte devient inaccessible. Cliquez sur le " +"bouton <b>Add</b> en bas pour configurer plusieurs actions." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" -msgstr "" +msgstr "Hôte à vérifier" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -74,70 +93,79 @@ msgid "" "b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" "li><ul>" msgstr "" +"La fréquence à laquelle il faut envoyer un ping à l'hôte spécifié ci-dessus. " +"<br /><br />L'unité par défaut est la seconde, sans suffixe, mais vous " +"pouvez utiliser le suffixe <b>m</b> pour les minutes, <b>h</b> pour les " +"heures ou <b>d</b> pour les jours. <br /><br /> Exemples:<ul><li>10 secondes " +"seraient : <b>10</b> ou <b>10s</b></li><li>5 minutes seraient : <b>5m</b></" +"li><li>1 heure serait : <b>1h</b></li><li>1 semaine serait : <b>7j</b></" +"li><ul>" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" -msgstr "" +msgstr "Énorme : 1492 octets" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" +"Si vous utilisez ModemManager, avant de redémarrer l'interface, configurez " +"le modem pour qu'il soit autorisé à utiliser n'importe quelle bande." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "Interface" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" -msgstr "" +msgstr "Interface à surveiller et/ou redémarrer" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" -msgstr "" +msgstr "Jumbo : 9000 octets" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 msgid "Mode" msgstr "Mode" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" -msgstr "" +msgstr "Nom de l'interface ModemManager" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "Période" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" -msgstr "" +msgstr "Redémarrage périodique" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" -msgstr "" +msgstr "Taille du paquet Ping" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" -msgstr "" +msgstr "Ping de redémarrage" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 msgid "" @@ -145,28 +173,45 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" +msgstr "Redémarrer l'interface" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 -msgid "Small: 1 byte" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 -msgid "Standard: 56 bytes" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" msgstr "" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Small: 1 byte" +msgstr "Petit : 1 octet" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 +msgid "Standard: 56 bytes" +msgstr "Standard : 56 octets" + #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15 msgid "These rules will govern how this device reacts to network events." msgstr "" +"Ces règles régissent la façon dont cet appareil réagit aux événements du " +"réseau." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" -msgstr "" +msgstr "Déverrouiller les bandes du modem" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15 @@ -174,9 +219,57 @@ msgstr "" msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" -msgstr "" +msgstr "Windows : 32 octets" + +#~ msgid "" +#~ "<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify " +#~ "the interface to monitor and restart if a ping over it fails." +#~ msgstr "" +#~ "<i>S'applique aux modes d'interface Ping Reboot et Restart</i> <br /> " +#~ "Spécifiez l'interface à surveiller et à redémarrer en cas d'échec d'un " +#~ "ping sur celle-ci." + +#~ msgid "IPv4 address or hostname to ping." +#~ msgstr "Adresse IPv4 ou nom d'hôte sur lequel envoyer un ping." + +#~ msgid "" +#~ "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " +#~ "Reboot mode, it defines the longest period of time without a reply from " +#~ "the Host To Check before a reboot is engaged. <br /> In Network Restart " +#~ "mode, it defines the longest period of time without a reply from the Host " +#~ "to Check before the interface is restarted. <br /><br />The default unit " +#~ "is seconds, without a suffix, but you can use the suffix <b>m</b> for " +#~ "minutes, <b>h</b> for hours or <b>d</b> for days. <br /><br />Examples:" +#~ "<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes " +#~ "would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></li><li>1 week " +#~ "would be: <b>7d</b></li><ul>" +#~ msgstr "" +#~ "En mode Redémarrage périodique, elle définit la fréquence de redémarrage. " +#~ "<br />En mode Redémarrage par ping, elle définit la plus longue période " +#~ "sans réponse de l'hôte à vérifier avant qu'un redémarrage ne soit engagé. " +#~ "<br />En mode Redémarrage du réseau, elle définit la plus longue période " +#~ "sans réponse de l'hôte à vérifier avant que l'interface ne soit " +#~ "redémarrée. <br /><br />L'unité par défaut est la seconde, sans suffixe, " +#~ "mais vous pouvez utiliser le suffixe <b>m</b> pour les minutes, <b>h</b> " +#~ "pour les heures ou <b>d</b> pour les jours. <br /><br />Exemples :" +#~ "<ul><li>10 secondes seraient : <b>10</b> ou <b>10s</b></li><li>5 minutes " +#~ "seraient : <b>5m</b></li><li><li>1 heure serait : <b>1h</b></li><li>1 " +#~ "semaine serait : <b>7j</b></li><ul>" + +#~ msgid "" +#~ "Ping Reboot: Reboot this device if a ping to a specified host fails for a " +#~ "specified duration of time. <br /> Periodic Reboot: Reboot this device " +#~ "after a specified interval of time. <br /> Restart Interface: Restart a " +#~ "network interface if a ping to a specified host fails for a specified " +#~ "duration of time." +#~ msgstr "" +#~ "Ping Reboot : Redémarrer ce périphérique si un ping vers un hôte spécifié " +#~ "échoue pendant une durée déterminée. <br /> Redémarrage périodique : " +#~ "Redémarrer ce périphérique après un intervalle de temps spécifié. <br /> " +#~ "Restart Interface : Redémarrer une interface réseau si un ping vers un " +#~ "hôte spécifié échoue pendant une durée déterminée." #~ msgid "Forced reboot delay" #~ msgstr "Délai pour le reboot forcé" @@ -204,8 +297,8 @@ msgstr "" #~ "En mode périodique, définit la période de redémarrage. En mode internet, " #~ "définit la plus longue période de temps sans accès à internet avant qu'un " #~ "redémarrage soit engagé. L'unité par défaut est la seconde, vous pouvez " -#~ "utiliser le suffixe \"m\" pour les minutes, \"h\" pour les heures ou \"d" -#~ "\" pour les jours" +#~ "utiliser le suffixe \"m\" pour les minutes, \"h\" pour les heures ou " +#~ "\"d\" pour les jours" #~ msgid "Operating mode" #~ msgstr "Mode de fonctionnement" diff --git a/applications/luci-app-watchcat/po/he/watchcat.po b/applications/luci-app-watchcat/po/he/watchcat.po index 12722ab783..c0af8fd7a8 100644 --- a/applications/luci-app-watchcat/po/he/watchcat.po +++ b/applications/luci-app-watchcat/po/he/watchcat.po @@ -8,13 +8,17 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -23,22 +27,22 @@ msgid "" "0 to disable the forced reboot delay." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "" @@ -57,11 +61,11 @@ msgid "" "up more than one action." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -71,43 +75,43 @@ msgid "" "li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "" @@ -115,23 +119,23 @@ msgstr "" msgid "Mode" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "" @@ -141,18 +145,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "" @@ -160,7 +179,7 @@ msgstr "" msgid "These rules will govern how this device reacts to network events." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "" @@ -170,6 +189,6 @@ msgstr "" msgid "Watchcat" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "" diff --git a/applications/luci-app-watchcat/po/hi/watchcat.po b/applications/luci-app-watchcat/po/hi/watchcat.po index 2f564d0283..4a1ef968bf 100644 --- a/applications/luci-app-watchcat/po/hi/watchcat.po +++ b/applications/luci-app-watchcat/po/hi/watchcat.po @@ -9,13 +9,17 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -24,22 +28,22 @@ msgid "" "0 to disable the forced reboot delay." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "" @@ -58,11 +62,11 @@ msgid "" "up more than one action." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -72,43 +76,43 @@ msgid "" "li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "" @@ -116,23 +120,23 @@ msgstr "" msgid "Mode" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "" @@ -142,18 +146,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "" @@ -161,7 +180,7 @@ msgstr "" msgid "These rules will govern how this device reacts to network events." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "" @@ -171,6 +190,6 @@ msgstr "" msgid "Watchcat" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "" diff --git a/applications/luci-app-watchcat/po/hu/watchcat.po b/applications/luci-app-watchcat/po/hu/watchcat.po index b263876842..9d75e66a2d 100644 --- a/applications/luci-app-watchcat/po/hu/watchcat.po +++ b/applications/luci-app-watchcat/po/hu/watchcat.po @@ -12,13 +12,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.8-dev\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -27,22 +31,22 @@ msgid "" "0 to disable the forced reboot delay." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "Nagy: 248 bájt" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "" @@ -61,11 +65,11 @@ msgid "" "up more than one action." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -75,43 +79,43 @@ msgid "" "li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "Csatoló" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "Jumbo: 9000 bájt" @@ -119,23 +123,23 @@ msgstr "Jumbo: 9000 bájt" msgid "Mode" msgstr "Mód" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "ModemManager csatoló neve" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "Periódus" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "" @@ -145,18 +149,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "Kicsi: 1 bájt" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "Normál: 56 bájt" @@ -164,7 +183,7 @@ msgstr "Normál: 56 bájt" msgid "These rules will govern how this device reacts to network events." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "" @@ -174,7 +193,7 @@ msgstr "" msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "Windows: 32 bájt" diff --git a/applications/luci-app-watchcat/po/it/watchcat.po b/applications/luci-app-watchcat/po/it/watchcat.po index 3eac6a1dad..f3d4ac0a3b 100644 --- a/applications/luci-app-watchcat/po/it/watchcat.po +++ b/applications/luci-app-watchcat/po/it/watchcat.po @@ -12,13 +12,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.8.1-dev\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -27,22 +31,22 @@ msgid "" "0 to disable the forced reboot delay." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "Grande: 248 byte" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "Intervallo di Controllo" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "Ritardo del riavvio forzato" @@ -61,11 +65,11 @@ msgid "" "up more than one action." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "Host da controllare" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -75,43 +79,43 @@ msgid "" "li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "Enorme: 1492 byte" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "Interfaccia" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "Interfaccia da monitorare e/o riavviare" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "Gigante: 9000 bytes" @@ -119,24 +123,24 @@ msgstr "Gigante: 9000 bytes" msgid "Mode" msgstr "Modalità" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "Periodo" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "Riavvio periodico" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 #, fuzzy msgid "Ping Packet Size" msgstr "Dimensione del pacchetto Ping" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "Riavvio ping" @@ -146,18 +150,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "Riavvia interfaccia" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "Piccolo: 1 byte" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "Normale: 56 bytes" @@ -167,7 +186,7 @@ msgstr "" "Queste regole regolano il modo in cui questo dispositivo reagisce agli " "eventi di rete." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "Sblocca le bande del modem" @@ -177,7 +196,7 @@ msgstr "Sblocca le bande del modem" msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "Windows: 32 bytes" diff --git a/applications/luci-app-watchcat/po/ja/watchcat.po b/applications/luci-app-watchcat/po/ja/watchcat.po index 117d9550f2..81cfd93913 100644 --- a/applications/luci-app-watchcat/po/ja/watchcat.po +++ b/applications/luci-app-watchcat/po/ja/watchcat.po @@ -12,13 +12,17 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -27,22 +31,22 @@ msgid "" "0 to disable the forced reboot delay." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "チェック間隔" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "" @@ -61,11 +65,11 @@ msgid "" "up more than one action." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -75,43 +79,43 @@ msgid "" "li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "インターフェース" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "" @@ -119,23 +123,23 @@ msgstr "" msgid "Mode" msgstr "モード" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "周期" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "" @@ -145,18 +149,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "" @@ -164,7 +183,7 @@ msgstr "" msgid "These rules will govern how this device reacts to network events." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "" @@ -174,7 +193,7 @@ msgstr "" msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "" diff --git a/applications/luci-app-watchcat/po/ko/watchcat.po b/applications/luci-app-watchcat/po/ko/watchcat.po index 4110d8f4a1..af01f4c756 100644 --- a/applications/luci-app-watchcat/po/ko/watchcat.po +++ b/applications/luci-app-watchcat/po/ko/watchcat.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2021-03-21 14:31+0000\n" -"Last-Translator: asdf1234 <cydyellowgreen@gmail.com>\n" +"PO-Revision-Date: 2022-08-01 05:54+0000\n" +"Last-Translator: somni <me@somni.one>\n" "Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/" "luciapplicationswatchcat/ko/>\n" "Language: ko\n" @@ -10,15 +10,19 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.5.2-dev\n" +"X-Generator: Weblate 4.14-dev\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -27,22 +31,22 @@ msgid "" "0 to disable the forced reboot delay." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" -msgstr "" +msgstr "확인 간격" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "" @@ -61,11 +65,11 @@ msgid "" "up more than one action." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -75,43 +79,43 @@ msgid "" "li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "" @@ -119,23 +123,23 @@ msgstr "" msgid "Mode" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "" @@ -145,18 +149,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "" @@ -164,7 +183,7 @@ msgstr "" msgid "These rules will govern how this device reacts to network events." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "" @@ -174,6 +193,6 @@ msgstr "" msgid "Watchcat" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "" diff --git a/applications/luci-app-watchcat/po/mr/watchcat.po b/applications/luci-app-watchcat/po/mr/watchcat.po index 383778d47c..5b2262c82a 100644 --- a/applications/luci-app-watchcat/po/mr/watchcat.po +++ b/applications/luci-app-watchcat/po/mr/watchcat.po @@ -12,13 +12,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -27,22 +31,22 @@ msgid "" "0 to disable the forced reboot delay." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "" @@ -61,11 +65,11 @@ msgid "" "up more than one action." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -75,43 +79,43 @@ msgid "" "li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "" @@ -119,23 +123,23 @@ msgstr "" msgid "Mode" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "" @@ -145,18 +149,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "" @@ -164,7 +183,7 @@ msgstr "" msgid "These rules will govern how this device reacts to network events." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "" @@ -174,7 +193,7 @@ msgstr "" msgid "Watchcat" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "" diff --git a/applications/luci-app-watchcat/po/ms/watchcat.po b/applications/luci-app-watchcat/po/ms/watchcat.po index a6ede3d7c3..36541e5108 100644 --- a/applications/luci-app-watchcat/po/ms/watchcat.po +++ b/applications/luci-app-watchcat/po/ms/watchcat.po @@ -7,13 +7,17 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -22,22 +26,22 @@ msgid "" "0 to disable the forced reboot delay." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "" @@ -56,11 +60,11 @@ msgid "" "up more than one action." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -70,43 +74,43 @@ msgid "" "li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "" @@ -114,23 +118,23 @@ msgstr "" msgid "Mode" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "" @@ -140,18 +144,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "" @@ -159,7 +178,7 @@ msgstr "" msgid "These rules will govern how this device reacts to network events." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "" @@ -169,6 +188,6 @@ msgstr "" msgid "Watchcat" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "" diff --git a/applications/luci-app-watchcat/po/nb_NO/watchcat.po b/applications/luci-app-watchcat/po/nb_NO/watchcat.po index e613fced5d..fb729b8b0f 100644 --- a/applications/luci-app-watchcat/po/nb_NO/watchcat.po +++ b/applications/luci-app-watchcat/po/nb_NO/watchcat.po @@ -12,13 +12,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.5\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -27,22 +31,22 @@ msgid "" "0 to disable the forced reboot delay." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "" @@ -61,11 +65,11 @@ msgid "" "up more than one action." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -75,43 +79,43 @@ msgid "" "li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "" @@ -119,25 +123,25 @@ msgstr "" msgid "Mode" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "" "Watchcat tillater oppsett av periodisk omstart når tilknytningen til " "Internett har gått tapt en gitt periode." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "" @@ -147,18 +151,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "" @@ -166,7 +185,7 @@ msgstr "" msgid "These rules will govern how this device reacts to network events." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "" @@ -176,7 +195,7 @@ msgstr "" msgid "Watchcat" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "" "Ved omstart av systemet vil watchcat utløse en myk omstart. Å skrive inn et " diff --git a/applications/luci-app-watchcat/po/pl/watchcat.po b/applications/luci-app-watchcat/po/pl/watchcat.po index 4c11a3cf24..759eec3d71 100644 --- a/applications/luci-app-watchcat/po/pl/watchcat.po +++ b/applications/luci-app-watchcat/po/pl/watchcat.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2021-08-12 12:55+0000\n" +"PO-Revision-Date: 2022-08-29 20:13+0000\n" "Last-Translator: Matthaiks <kitynska@gmail.com>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationswatchcat/pl/>\n" @@ -11,18 +11,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.8-dev\n" +"X-Generator: Weblate 4.14.1-dev\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." msgstr "" -"<i> Dotyczy trybów ponownego uruchamiania i ponownego restartu interfejsu " -"ping</i> <br /> Określ interfejs do monitorowania i ponownego uruchamiania, " -"jeśli ping nie powiedzie się." +"<i>Dotyczy trybów restartu na podstawie pingu, restartu interfejsu i " +"uruchamiania skrytpu</i> <br /> Określ interfejs do monitorowania i " +"reagowania w przypadku niepowodzenia pingowania." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" +msgstr "Rodzina adresów do pingowania hosta" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -30,32 +34,32 @@ msgid "" "fail. Enter the number of seconds to wait for the soft reboot to fail or use " "0 to disable the forced reboot delay." msgstr "" -"Dotyczy trybów ponownego uruchamiania pingu i okresowego ponownego " +"Dotyczy trybów restartu na podstawie pingu i okresowego ponownego " "uruchamiania</i> <br /> Po ponownym uruchomieniu routera usługa uruchomi " "miękki restart. Wprowadzenie wartości niezerowej spowoduje opóźniony twardy " "restart, jeśli miękki ponowny rozruch nie powiedzie się. Wprowadź liczbę " "sekund oczekiwania na niepowodzenie miękkiego ponownego uruchomienia lub " "użyj 0, aby wyłączyć wymuszone opóźnienie ponownego uruchomienia." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -"Dotyczy trybów ponownego uruchamiania i restartu interfejsu ping</i> <br /> " +"Dotyczy trybów restartu na podstawie pingu i restartu interfejsu</i> <br /> " "Jeśli używasz ModemManager, program Watchcat może ponownie uruchomić " "interfejs ModemManger, określając jego nazwę." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "Duży: 248 bajtów" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "Interwał sprawdzania" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "Wymuś opóźnienie restartu" @@ -77,11 +81,11 @@ msgstr "" "przypadku, gdy host staje się nieosiągalny. Kliknij przycisk<b>Dodaj</b>na " "dole, aby skonfigurować więcej niż jedną akcję." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "Host do sprawdzenia" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -97,15 +101,15 @@ msgstr "" "li><li>1 godzina byłaby: <b>1h</b></li><li>1 tydzień wynosiłby: <b>7d</b></" "li><ul>" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "Ogromny: 1492 bajtów" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." -msgstr "Adres IPv4 lub nazwa hosta do pingowania." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." +msgstr "Adres IP lub nazwa hosta do pingowania." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." @@ -113,39 +117,40 @@ msgstr "" "Jeśli używasz ModemManagera, to przed restartem interfejsu ustaw modem by " "mógł używać dowolnego pasma." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -"W trybie okresowego ponownego uruchamiania określa częstotliwość ponownego " -"uruchamiania. <br /> W trybie ponownego uruchamiania ping definiuje " -"najdłuższy okres czasu bez odpowiedzi z hosta do sprawdzenia przed ponownym " -"uruchomieniem. <br /> W trybie Network Restart określa najdłuższy okres " -"czasu bez odpowiedzi od hosta do sprawdzenia przed ponownym uruchomieniem " -"interfejsu. <br /> <br /> Domyślną jednostką są sekundy, bez przyrostka, ale " -"możesz użyć przyrostka <b> m </b> dla minut, <b> h </b> dla godzin lub <b> d " -"</b> przez dni. <br /> <br /> Przykłady: <ul> <li> 10 sekund to: <b> 10 </b> " -"lub <b> 10s</b></li> <li> 5 minut to: <b>5m</b></li> <li> 1 godzina to: " -"<b>1godz</b></li> <li> 1 tydzień to: <b> 7 dni </b> </ li> <ul>" - -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +"W trybie restartu okresowego określa, jak często ma być wykonywany " +"restart.<br /> W trybie restartu na podstawie pingu określa najdłuższy okres " +"czasu bez odpowiedzi od hosta do sprawdzenia przed ponownym " +"uruchomieniem.<br /> W trybie ponownego uruchomienia sieci lub uruchomienia " +"skryptu określa najdłuższy okres czasu bez odpowiedzi od hosta do " +"sprawdzenia przed ponownym uruchomieniem interfejsu lub uruchomieniem " +"skryptu.<br /><br />Domyślną jednostką są sekundy, bez przyrostka, ale można " +"użyć przyrostka <b>m</b> dla minut, <b>h</b> dla godzin lub <b>d</b> dla " +"dni. <br /><br />Przykłady:<ul><li>10 sekund to: <b>10</b> lub <b>10s</b></" +"li><li>5 minut to: <b>5m</b></li><li> 1 godzina to: <b>1h</b></li><li>1 " +"tydzień to: <b>7d</b></li><ul>" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "Interfejs" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "Interfejs do monitorowania i/lub restartu" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "Jumbo: 9000 bajtów" @@ -153,23 +158,23 @@ msgstr "Jumbo: 9000 bajtów" msgid "Mode" msgstr "Tryb" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "Nazwa interfejsu ModemManager" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "Okres" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "Restart okresowy" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "Rozmiar pakietu ping" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "Restart na podstawie pingu" @@ -179,32 +184,51 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -"Restart na podstawie pingu: Uruchom ponownie to urządzenie, jeśli ping do " +"Restart na podstawie pingu: uruchom ponownie to urządzenie, jeśli ping do " "określonego hosta nie powiedzie się przez określony czas. <br /> Restart " -"okresowy: Ponowne uruchomienie tego urządzenia po określonym przedziale " -"czasu. <br /> Restart interfejsu: Uruchom ponownie interfejs sieciowy, jeśli " -"ping do określonego hosta nie powiedzie się przez określony czas." +"okresowy: uruchom ponownie to urządzenie po określonym czasie. <br />Restart " +"interfejsu: zrestartuj interfejs sieciowy, jeśli ping do określonego hosta " +"nie powiedzie się przez określony czas. <br /> Uruchom skrypt: uruchom " +"skrypt, jeśli ping do określonego hosta nie powiedzie się przez określony " +"czas. <br />" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" -msgstr "Uruchom ponownie interfejs" +msgstr "Restart interfejsu" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "Uruchom skrypt" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "Skrypt do uruchomienia" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" +"Skrypt do uruchomienia, gdy host nie odpowiada przez określony czas. Do " +"skryptu przekazywana jest nazwa interfejsu jako $1" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "Mały: 1 bajt" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" -msgstr "Standard: 56 bajtów" +msgstr "Standardowy: 56 bajtów" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15 msgid "These rules will govern how this device reacts to network events." msgstr "" "Reguły te określają sposób, w jaki urządzenie reaguje na zdarzenia w sieci." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "Odblokuj pasma modemu" @@ -214,11 +238,59 @@ msgstr "Odblokuj pasma modemu" msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "Windows: 32 bajty" #~ msgid "" +#~ "<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify " +#~ "the interface to monitor and restart if a ping over it fails." +#~ msgstr "" +#~ "<i> Dotyczy trybów ponownego uruchamiania i ponownego restartu interfejsu " +#~ "ping</i> <br /> Określ interfejs do monitorowania i ponownego " +#~ "uruchamiania, jeśli ping nie powiedzie się." + +#~ msgid "IPv4 address or hostname to ping." +#~ msgstr "Adres IPv4 lub nazwa hosta do pingowania." + +#~ msgid "" +#~ "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " +#~ "Reboot mode, it defines the longest period of time without a reply from " +#~ "the Host To Check before a reboot is engaged. <br /> In Network Restart " +#~ "mode, it defines the longest period of time without a reply from the Host " +#~ "to Check before the interface is restarted. <br /><br />The default unit " +#~ "is seconds, without a suffix, but you can use the suffix <b>m</b> for " +#~ "minutes, <b>h</b> for hours or <b>d</b> for days. <br /><br />Examples:" +#~ "<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes " +#~ "would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></li><li>1 week " +#~ "would be: <b>7d</b></li><ul>" +#~ msgstr "" +#~ "W trybie okresowego ponownego uruchamiania określa częstotliwość " +#~ "ponownego uruchamiania. <br /> W trybie ponownego uruchamiania ping " +#~ "definiuje najdłuższy okres czasu bez odpowiedzi z hosta do sprawdzenia " +#~ "przed ponownym uruchomieniem. <br /> W trybie Network Restart określa " +#~ "najdłuższy okres czasu bez odpowiedzi od hosta do sprawdzenia przed " +#~ "ponownym uruchomieniem interfejsu. <br /> <br /> Domyślną jednostką są " +#~ "sekundy, bez przyrostka, ale możesz użyć przyrostka <b> m </b> dla minut, " +#~ "<b> h </b> dla godzin lub <b> d </b> przez dni. <br /> <br /> Przykłady: " +#~ "<ul> <li> 10 sekund to: <b> 10 </b> lub <b> 10s</b></li> <li> 5 minut to: " +#~ "<b>5m</b></li> <li> 1 godzina to: <b>1godz</b></li> <li> 1 tydzień to: " +#~ "<b> 7 dni </b> </ li> <ul>" + +#~ msgid "" +#~ "Ping Reboot: Reboot this device if a ping to a specified host fails for a " +#~ "specified duration of time. <br /> Periodic Reboot: Reboot this device " +#~ "after a specified interval of time. <br /> Restart Interface: Restart a " +#~ "network interface if a ping to a specified host fails for a specified " +#~ "duration of time." +#~ msgstr "" +#~ "Restart na podstawie pingu: Uruchom ponownie to urządzenie, jeśli ping do " +#~ "określonego hosta nie powiedzie się przez określony czas. <br /> Restart " +#~ "okresowy: Ponowne uruchomienie tego urządzenia po określonym przedziale " +#~ "czasu. <br /> Restart interfejsu: Uruchom ponownie interfejs sieciowy, " +#~ "jeśli ping do określonego hosta nie powiedzie się przez określony czas." + +#~ msgid "" #~ "<i>Applies to Ping Reboot and Restart Interface modes</i> <br> Specify " #~ "the interface to monitor and restart if a ping over it fails." #~ msgstr "" diff --git a/applications/luci-app-watchcat/po/pt/watchcat.po b/applications/luci-app-watchcat/po/pt/watchcat.po index e8b69730a3..257f4af51d 100644 --- a/applications/luci-app-watchcat/po/pt/watchcat.po +++ b/applications/luci-app-watchcat/po/pt/watchcat.po @@ -12,15 +12,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." msgstr "" -"<i>Se aplica ao Ping Reboot e os modos de reinício da Interface</i> <br /> " -"Defina a interface que será monitorada e reinicie caso o ping falhe." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -35,7 +37,7 @@ msgstr "" "segundos para esperar a falha da reinicialização suave ou use 0 para " "desativar o atraso de reinicialização forçada." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " @@ -46,15 +48,15 @@ msgstr "" "Watchcat reinicie a sua interface ModemManger através da definição do seu " "nome." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "Grande: 248 bytes" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "Intervalo de verificação" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "Atraso da reinicialização forçada" @@ -76,11 +78,11 @@ msgstr "" "caso um host se torne inalcançável. Clique no botão <b>Adicionar</b> na " "parte inferior para configurar mais de uma ação." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "O host que será verificado" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -96,15 +98,15 @@ msgstr "" "seriam: <b>5m</b></li><li>1 hora seria: <b>1h</b></li><li>1 semana seria: " "<b>7d</b></li><ul>" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "Enorme: 1492 bytes" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." -msgstr "Endereço IPv4 ou nome do host para enviar um ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." +msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." @@ -112,39 +114,29 @@ msgstr "" "Caso use o ModemManager antes de reiniciar a interface, defina o modem para " "poder utilizar qualquer banda." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -"No modo reboot periódico, é definido com que frequência reiniciar. <br /> No " -"modo ping reboot, é definido o período mais longo de tempo sem uma resposta " -"do host antes que uma reinicialização seja feita. <br /> No modo de " -"reinicialização da rede, é definido o período mais longo de tempo sem uma " -"resposta do host antes que uma reinicialização da interface seja feita. <br /" -"><br />A unidade padrão é em segundos, sem sufixo, porém é possível usar o " -"sufixo <b>m</b> para minutos, <b>h</b> para horas ou <b>d</b> para dias. " -"<br /><br />Examplos:<ul><li>10 segundos seriam: <b>10</b> ou <b>10s</b></" -"li><li>5 minutos seriam: <b>5m</b></li><li> 1 hora seria: <b>1h</b></" -"li><li>1 semana seria: <b>7d</b></li><ul>" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "Interface" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "Interface para monitorar e/ou reiniciar" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "Jumbo: 9000 bytes" @@ -152,23 +144,23 @@ msgstr "Jumbo: 9000 bytes" msgid "Mode" msgstr "Modo" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "Nome da interface do ModemManager" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "Periodo" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "Reinício periódico" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "Tamanho do Pacote Ping" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "Reiniciar com Ping" @@ -178,23 +170,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -"Ping reboot: Reinicie este aparelho caso um ping para um determinado host " -"falhe por um determinado período de tempo. <br /> Reinicialização periódica: " -"Reinicie este aparelho após um determinado período de tempo . <br /> " -"Interface de reinicialização: Reinicie uma interface de rede caso um ping " -"para um determinado host falhe por um determinado período de tempo." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "Interface de reinicialização" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "Pequeno: 1 byte" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "Padrão: 56 bytes" @@ -202,7 +204,7 @@ msgstr "Padrão: 56 bytes" msgid "These rules will govern how this device reacts to network events." msgstr "Essas regras regem como este aparelho reage aos eventos de rede." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "Desbloqueie as bandas do modem" @@ -212,11 +214,58 @@ msgstr "Desbloqueie as bandas do modem" msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "Windows: 32 bytes" #~ msgid "" +#~ "<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify " +#~ "the interface to monitor and restart if a ping over it fails." +#~ msgstr "" +#~ "<i>Se aplica ao Ping Reboot e os modos de reinício da Interface</i> <br /" +#~ "> Defina a interface que será monitorada e reinicie caso o ping falhe." + +#~ msgid "IPv4 address or hostname to ping." +#~ msgstr "Endereço IPv4 ou nome do host para enviar um ping." + +#~ msgid "" +#~ "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " +#~ "Reboot mode, it defines the longest period of time without a reply from " +#~ "the Host To Check before a reboot is engaged. <br /> In Network Restart " +#~ "mode, it defines the longest period of time without a reply from the Host " +#~ "to Check before the interface is restarted. <br /><br />The default unit " +#~ "is seconds, without a suffix, but you can use the suffix <b>m</b> for " +#~ "minutes, <b>h</b> for hours or <b>d</b> for days. <br /><br />Examples:" +#~ "<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes " +#~ "would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></li><li>1 week " +#~ "would be: <b>7d</b></li><ul>" +#~ msgstr "" +#~ "No modo reboot periódico, é definido com que frequência reiniciar. <br /> " +#~ "No modo ping reboot, é definido o período mais longo de tempo sem uma " +#~ "resposta do host antes que uma reinicialização seja feita. <br /> No modo " +#~ "de reinicialização da rede, é definido o período mais longo de tempo sem " +#~ "uma resposta do host antes que uma reinicialização da interface seja " +#~ "feita. <br /><br />A unidade padrão é em segundos, sem sufixo, porém é " +#~ "possível usar o sufixo <b>m</b> para minutos, <b>h</b> para horas ou " +#~ "<b>d</b> para dias. <br /><br />Examplos:<ul><li>10 segundos seriam: " +#~ "<b>10</b> ou <b>10s</b></li><li>5 minutos seriam: <b>5m</b></li><li> 1 " +#~ "hora seria: <b>1h</b></li><li>1 semana seria: <b>7d</b></li><ul>" + +#~ msgid "" +#~ "Ping Reboot: Reboot this device if a ping to a specified host fails for a " +#~ "specified duration of time. <br /> Periodic Reboot: Reboot this device " +#~ "after a specified interval of time. <br /> Restart Interface: Restart a " +#~ "network interface if a ping to a specified host fails for a specified " +#~ "duration of time." +#~ msgstr "" +#~ "Ping reboot: Reinicie este aparelho caso um ping para um determinado host " +#~ "falhe por um determinado período de tempo. <br /> Reinicialização " +#~ "periódica: Reinicie este aparelho após um determinado período de tempo . " +#~ "<br /> Interface de reinicialização: Reinicie uma interface de rede caso " +#~ "um ping para um determinado host falhe por um determinado período de " +#~ "tempo." + +#~ msgid "" #~ "<i>Applies to Ping Reboot and Restart Interface modes</i> <br> Specify " #~ "the interface to monitor and restart if a ping over it fails." #~ msgstr "" diff --git a/applications/luci-app-watchcat/po/pt_BR/watchcat.po b/applications/luci-app-watchcat/po/pt_BR/watchcat.po index da18562ef4..1cd4fe22c9 100644 --- a/applications/luci-app-watchcat/po/pt_BR/watchcat.po +++ b/applications/luci-app-watchcat/po/pt_BR/watchcat.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2021-08-12 12:55+0000\n" +"PO-Revision-Date: 2022-09-05 01:37+0000\n" "Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationswatchcat/pt_BR/>\n" @@ -11,17 +11,22 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.8-dev\n" +"X-Generator: Weblate 4.14.1-dev\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." msgstr "" -"<i>Se aplica ao Ping Reboot e os modos de reinício da Interface</i> <br /> " -"Defina a interface que será monitorada e reinicie caso o ping falhe." +"<i>Aplica-se ao Ping Reboot, Reiniciar Interface, e Executar os modos " +"Script</i> <br /> Especifica a interface para monitorizar e reagir caso um " +"ping falhe sobre ela." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" +msgstr "Família de endereços para pingar o host" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -36,7 +41,7 @@ msgstr "" "para esperar a falha da reinicialização suave ou use 0 para desativar o " "atraso de reinicialização forçada." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " @@ -47,15 +52,15 @@ msgstr "" "Watchcat reinicie a sua interface ModemManger através da definição do seu " "nome." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "Grande: 248 bytes" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "Intervalo de verificação" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "Atraso da reinicialização forçada" @@ -77,11 +82,11 @@ msgstr "" "caso um host se torne inalcançável. Clique no botão <b>Adicionar</b> na " "parte inferior para configurar mais de uma ação." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "O host que será verificado" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -97,15 +102,15 @@ msgstr "" "seriam: <b>5m</b></li><li>1 hora seria: <b>1h</b></li><li>1 semana seria: " "<b>7d</b></li><ul>" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "Enorme: 1492 bytes" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." -msgstr "Um endereço IPv4 ou o nome de um host para fazer o ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." +msgstr "Endereço IP ou o nome do host para pingar." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." @@ -113,39 +118,40 @@ msgstr "" "Caso use o ModemManager antes de reiniciar a interface, defina o modem para " "poder utilizar qualquer banda." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -"No modo reboot periódico, é definido com que frequência reiniciar. <br /> No " -"modo ping reboot, é definido o período mais longo de tempo sem uma resposta " -"do host antes que uma reinicialização seja feita. <br /> No modo de " -"reinicialização da rede, é definido o período mais longo de tempo sem uma " -"resposta do host antes que uma reinicialização da interface seja feita. <br /" -"><br />A unidade padrão é em segundos, sem sufixo, porém é possível usar o " -"sufixo <b>m</b> para minutos, <b>h</b> para horas ou <b>d</b> para dias. " -"<br /><br />Examplos:<ul><li>10 segundos seriam: <b>10</b> ou <b>10s</b></" -"li><li>5 minutos seriam: <b>5m</b></li><li> 1 hora seria: <b>1h</b></" -"li><li>1 semana seria: <b>7d</b></li><ul>" - -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +"No modo de reinicialização periódica, é definido a frequência de " +"reinicialização. <br /> No modo Ping Reboot, é definido o maior período de " +"tempo sem uma resposta do host de verificação antes que uma reinicialização " +"seja iniciada. <br /> No modo reinicio da rede ou executar script, é " +"definido o maior período de tempo sem uma resposta do host de verificação " +"antes que a interface seja reiniciada ou o script seja executado. <br /><br /" +">A unidade padrão é em segundos, sem sufixo, porém é possível usar o sufixo " +"<b>m</b> para minutos, <b>h</b> para horas ou <b>d </b> por dias. <br /><br " +"/>Exemplos:<ul><li>10 segundos seriam: <b>10</b> ou <b>10s</b></li><li>5 " +"minutos seriam: <b>5m</b></li><li> 1 hora seria: <b>1h</b></li><li>1 semana " +"seria: <b>7d</b></ li><ul>" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "Interface" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "Interface para monitorar e/ou reiniciar" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "Jumbo: 9000 bytes" @@ -153,23 +159,23 @@ msgstr "Jumbo: 9000 bytes" msgid "Mode" msgstr "Modo" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "Nome da interface do ModemManager" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "Período" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "Reinício periódico" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "Tamanho do Pacote Ping" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "Reiniciar com Ping" @@ -179,23 +185,42 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -"Ping reboot: Reinicie este dispositivo caso um ping para um determinado host " -"falhe por um determinado período de tempo. <br /> Reinicialização periódica: " -"Reinicie este dispositivo após um determinado período de tempo . <br /> " -"Interface de reinicialização: Reinicie uma interface de rede caso um ping " -"para um determinado host falhe por um determinado período de tempo." - -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +"Ping de reinicialização: Reinicializa este dispositivo caso um ping para um " +"determinado host falhe por um período de tempo determinado. <br /> Reinicio " +"periódico: Reinicializa este dispositivo após um determinado intervalo de " +"tempo. <br /> Reinicia a interface: Reinicia uma interface de rede caso um " +"ping para um determinado host falhe por um período de tempo determinado. <br " +"/> Executa script: executa um script caso um ping para um determinado host " +"falhe por um período de tempo determinado. <br />" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "Reinicie a interface" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "Executa script" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "Script que será executado" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" +"O script que será executado quando o host não responder por período de tempo " +"determinado. O script recebe o nome da interface como $1" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "Pequeno: 1 byte" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "Padrão: 56 bytes" @@ -203,7 +228,7 @@ msgstr "Padrão: 56 bytes" msgid "These rules will govern how this device reacts to network events." msgstr "Essas regras regem como este dispositivo reage aos eventos de rede." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "Desbloqueie as bandas do modem" @@ -213,11 +238,58 @@ msgstr "Desbloqueie as bandas do modem" msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "Windows: 32 bytes" #~ msgid "" +#~ "<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify " +#~ "the interface to monitor and restart if a ping over it fails." +#~ msgstr "" +#~ "<i>Se aplica ao Ping Reboot e os modos de reinício da Interface</i> <br /" +#~ "> Defina a interface que será monitorada e reinicie caso o ping falhe." + +#~ msgid "IPv4 address or hostname to ping." +#~ msgstr "Um endereço IPv4 ou o nome de um host para fazer o ping." + +#~ msgid "" +#~ "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " +#~ "Reboot mode, it defines the longest period of time without a reply from " +#~ "the Host To Check before a reboot is engaged. <br /> In Network Restart " +#~ "mode, it defines the longest period of time without a reply from the Host " +#~ "to Check before the interface is restarted. <br /><br />The default unit " +#~ "is seconds, without a suffix, but you can use the suffix <b>m</b> for " +#~ "minutes, <b>h</b> for hours or <b>d</b> for days. <br /><br />Examples:" +#~ "<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes " +#~ "would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></li><li>1 week " +#~ "would be: <b>7d</b></li><ul>" +#~ msgstr "" +#~ "No modo reboot periódico, é definido com que frequência reiniciar. <br /> " +#~ "No modo ping reboot, é definido o período mais longo de tempo sem uma " +#~ "resposta do host antes que uma reinicialização seja feita. <br /> No modo " +#~ "de reinicialização da rede, é definido o período mais longo de tempo sem " +#~ "uma resposta do host antes que uma reinicialização da interface seja " +#~ "feita. <br /><br />A unidade padrão é em segundos, sem sufixo, porém é " +#~ "possível usar o sufixo <b>m</b> para minutos, <b>h</b> para horas ou " +#~ "<b>d</b> para dias. <br /><br />Examplos:<ul><li>10 segundos seriam: " +#~ "<b>10</b> ou <b>10s</b></li><li>5 minutos seriam: <b>5m</b></li><li> 1 " +#~ "hora seria: <b>1h</b></li><li>1 semana seria: <b>7d</b></li><ul>" + +#~ msgid "" +#~ "Ping Reboot: Reboot this device if a ping to a specified host fails for a " +#~ "specified duration of time. <br /> Periodic Reboot: Reboot this device " +#~ "after a specified interval of time. <br /> Restart Interface: Restart a " +#~ "network interface if a ping to a specified host fails for a specified " +#~ "duration of time." +#~ msgstr "" +#~ "Ping reboot: Reinicie este dispositivo caso um ping para um determinado " +#~ "host falhe por um determinado período de tempo. <br /> Reinicialização " +#~ "periódica: Reinicie este dispositivo após um determinado período de " +#~ "tempo . <br /> Interface de reinicialização: Reinicie uma interface de " +#~ "rede caso um ping para um determinado host falhe por um determinado " +#~ "período de tempo." + +#~ msgid "" #~ "<i>Applies to Ping Reboot and Restart Interface modes</i> <br> Specify " #~ "the interface to monitor and restart if a ping over it fails." #~ msgstr "" diff --git a/applications/luci-app-watchcat/po/ro/watchcat.po b/applications/luci-app-watchcat/po/ro/watchcat.po index cfe9baaeee..b36934d9f9 100644 --- a/applications/luci-app-watchcat/po/ro/watchcat.po +++ b/applications/luci-app-watchcat/po/ro/watchcat.po @@ -1,24 +1,32 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2014-06-28 19:23+0200\n" -"Last-Translator: xxvirusxx <condor20_05@yahoo.it>\n" -"Language-Team: none\n" +"PO-Revision-Date: 2022-10-07 17:18+0000\n" +"Last-Translator: Simona Iacob <s@zp1.net>\n" +"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationswatchcat/ro/>\n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " -"20)) ? 1 : 2);;\n" -"X-Generator: Pootle 2.0.6\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 4.14.1\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." msgstr "" +"<i>Se aplică în modurile Ping Reboot, Restart Interface și Run Script</i> " +"<br /> Specificați interfața care trebuie monitorizată și reacționează în " +"cazul în care un ping pe aceasta eșuează." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" +msgstr "Familia de adrese pentru ping la gazdă" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -26,33 +34,42 @@ msgid "" "fail. Enter the number of seconds to wait for the soft reboot to fail or use " "0 to disable the forced reboot delay." msgstr "" +"Se aplică la modurile Ping Reboot și Reboot periodic</i> <br /> La " +"repornirea routerului, serviciul va declanșa o repornire ușoară. " +"Introducerea unei valori diferite de zero aici va declanșa o repornire dură " +"întârziată în cazul în care repornirea soft ar eșua. Introduceți numărul de " +"secunde de așteptare pentru ca repornirea soft să eșueze sau utilizați 0 " +"pentru a dezactiva întârzierea repornirii forțate." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" +"Se aplică la modurile Ping Reboot și Restart Interface</i> <br /> Dacă " +"folosiți ModemManager, puteți face ca Watchcat să repornească interfața " +"ModemManger prin specificarea numelui acesteia." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" -msgstr "" +msgstr "Mare: 248 bytes" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" -msgstr "" +msgstr "Interval de verificare" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" -msgstr "" +msgstr "Întârziere forțată a repornirii" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 msgid "General Settings" -msgstr "" +msgstr "Setări generale" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 msgid "Grant access to LuCI app watchcat" -msgstr "" +msgstr "Acordarea accesului la aplicația LuCI watchcat" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12 msgid "" @@ -60,12 +77,16 @@ msgid "" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set " "up more than one action." msgstr "" +"Aici puteți configura mai multe verificări și acțiuni care trebuie " +"întreprinse în cazul în care o gazdă devine inaccesibilă. Faceți clic pe " +"butonul <b>Add</b> (Adăugare) din partea de jos pentru a configura mai multe " +"acțiuni." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" -msgstr "" +msgstr "Gazdă de verificat" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -74,70 +95,89 @@ msgid "" "b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" "li><ul>" msgstr "" +"Cât de des să faceți ping la gazda specificată mai sus. <br /><br />Unitatea " +"implicită sunt secundele, fără sufix, dar puteți folosi sufixul <b>m</b> " +"pentru minute, <b>h</b> pentru ore sau <b>d </b> zile întregi. <br /><br /> " +"Exemple:<ul><li>10 secunde ar fi: <b>10</b> sau <b>10s</b></li><li>5 minute " +"ar fi: <b>5m</b></li><li>1 oră ar fi: <b>1h</b></li><li>1 săptămână ar fi: " +"<b>7d</b></li><ul>" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" -msgstr "" +msgstr "Imens: 1492 bytes" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." -msgstr "" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." +msgstr "Adresa IP sau numele de gazdă pentru ping." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" +"În cazul în care se utilizează ModemManager, înainte de a reporni interfața, " +"setați modemul pentru a fi autorizat să utilizeze orice bandă." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" -msgstr "" - -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" +msgstr "" +"În modul Repornire periodică, se definește cât de des trebuie să se " +"repornească. <br /> În modul Ping Reboot, definește cea mai lungă perioadă " +"de timp fără un răspuns din partea gazdei de verificat înainte de repornire. " +"<br /> În modul Repornire rețea sau Executare script, definește cea mai " +"lungă perioadă de timp fără un răspuns din partea gazdei la Check înainte ca " +"interfața să fie repornită sau scriptul să fie executat. <br /><br /" +">Unitatea implicită este secundele, fără sufix, dar se poate folosi sufixul " +"<b>m</b> pentru minute, <b>h</b> pentru ore sau <b>d</b> pentru zile. <br /" +"><br />Examples:<ul><li>10 secunde ar fi: <b>10</b> or <b>10s</b></li><li>5 " +"minute ar fi: <b>5m</b></li><li> 1 oră ar fi: <b>1h</b></li><li>1 săptămână " +"ar fi: <b>7d</b></li><ul>" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" -msgstr "" +msgstr "Interfață" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" -msgstr "" +msgstr "Interfața de monitorizare și/sau repornire" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" -msgstr "" +msgstr "Jumbo: 9000 octeți" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 msgid "Mode" -msgstr "" +msgstr "Mod" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" -msgstr "" +msgstr "Numele interfeței ModemManager" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "Perioadă" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" -msgstr "" +msgstr "Repornire periodică" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" -msgstr "" +msgstr "Dimensiunea pachetului Ping" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" -msgstr "" +msgstr "Repornire Ping" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 msgid "" @@ -145,35 +185,110 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." -msgstr "" - -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" +msgstr "" +"Ping Reboot: Reporniți acest dispozitiv în cazul în care un ping către o " +"gazdă specificată eșuează pentru o anumită perioadă de timp. <br /> " +"Repornire periodică: Reporniți acest dispozitiv după un interval de timp " +"specificat. <br /> Reporniți interfața: Reporniți o interfață de rețea dacă " +"un ping către o gazdă specificată nu reușește pentru o anumită perioadă de " +"timp. <br /> Rulați scriptul: Executați un script dacă un ping către o gazdă " +"specificată eșuează pentru o anumită perioadă de timp. <br />" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" +msgstr "Reporniți interfața" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "Rulați scriptul" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "Script pentru a rula" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" msgstr "" +"Script care se execută atunci când gazda nu a răspuns pentru o perioadă de " +"timp specificată. Scriptului i se transmite numele interfeței ca $1" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" -msgstr "" +msgstr "Mic: 1 octet" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" -msgstr "" +msgstr "Standard: 56 octeți" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15 msgid "These rules will govern how this device reacts to network events." msgstr "" +"Aceste reguli vor guverna modul în care acest dispozitiv reacționează la " +"evenimentele din rețea." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" -msgstr "" +msgstr "Deblocarea benzilor de modem" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 msgid "Watchcat" -msgstr "" +msgstr "Priveștepisica" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" -msgstr "" +msgstr "Ferestre: 32 octeți" + +#~ msgid "" +#~ "<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify " +#~ "the interface to monitor and restart if a ping over it fails." +#~ msgstr "" +#~ "<i>Se aplică la modurile Ping Reboot și Restart Interface</i> <br /> " +#~ "Specificați interfața care urmează să fie monitorizată și repornită în " +#~ "cazul în care un ping pe aceasta eșuează." + +#~ msgid "IPv4 address or hostname to ping." +#~ msgstr "Adresa IPv4 sau numele de gazdă pentru ping." + +#~ msgid "" +#~ "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " +#~ "Reboot mode, it defines the longest period of time without a reply from " +#~ "the Host To Check before a reboot is engaged. <br /> In Network Restart " +#~ "mode, it defines the longest period of time without a reply from the Host " +#~ "to Check before the interface is restarted. <br /><br />The default unit " +#~ "is seconds, without a suffix, but you can use the suffix <b>m</b> for " +#~ "minutes, <b>h</b> for hours or <b>d</b> for days. <br /><br />Examples:" +#~ "<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes " +#~ "would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></li><li>1 week " +#~ "would be: <b>7d</b></li><ul>" +#~ msgstr "" +#~ "În modul Periodic Reboot (Repornire periodică), se definește frecvența de " +#~ "repornire. <br /> În modul Ping Reboot (Repornire prin ping), definește " +#~ "cea mai lungă perioadă de timp fără răspuns de la Host To Check (Gazdă de " +#~ "verificat) înainte de a se angaja o repornire. <br /> În modul Repornire " +#~ "rețea, definește cea mai lungă perioadă de timp fără răspuns din partea " +#~ "Gazdei de verificat înainte ca interfața să fie repornită. <br /><br /" +#~ ">Unitatea implicită este secundele, fără sufix, dar se poate folosi " +#~ "sufixul <b>m</b> for minutes, <b>h</b> timp de câteva ore sau <b>d</b> " +#~ "pentru zile. <br /><br />Exemple:<ul><li>10 secunde pot fi: <b>10</b> or " +#~ "<b>10s</b></li><li>5 minute ar fi: <b>5m</b></li><li> 1 oră ar fi: <b>1h</" +#~ "b></li><li>1 săptămână ar fi: <b>7d</b></li><ul>" + +#~ msgid "" +#~ "Ping Reboot: Reboot this device if a ping to a specified host fails for a " +#~ "specified duration of time. <br /> Periodic Reboot: Reboot this device " +#~ "after a specified interval of time. <br /> Restart Interface: Restart a " +#~ "network interface if a ping to a specified host fails for a specified " +#~ "duration of time." +#~ msgstr "" +#~ "Ping Reboot: Reporniți acest dispozitiv în cazul în care un ping către o " +#~ "gazdă specificată eșuează pentru o anumită perioadă de timp. <br /> " +#~ "Repornire periodică: Reporniți acest dispozitiv după un interval de timp " +#~ "specificat. <br /> Repornire interfață: Reporniți o interfață de rețea " +#~ "dacă un ping către o gazdă specificată eșuează pentru o durată de timp " +#~ "specificată." diff --git a/applications/luci-app-watchcat/po/ru/watchcat.po b/applications/luci-app-watchcat/po/ru/watchcat.po index bbd951dd11..b46cc06e80 100644 --- a/applications/luci-app-watchcat/po/ru/watchcat.po +++ b/applications/luci-app-watchcat/po/ru/watchcat.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: LuCI: watchcat\n" "POT-Creation-Date: 2013-10-06 11:15+0300\n" -"PO-Revision-Date: 2021-07-05 20:29+0000\n" -"Last-Translator: Artem <KovalevArtem.ru@gmail.com>\n" +"PO-Revision-Date: 2022-10-19 10:29+0000\n" +"Last-Translator: sergio <sergio+it@outerface.net>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationswatchcat/ru/>\n" "Language: ru\n" @@ -12,17 +12,23 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.8-dev\n" +"X-Generator: Weblate 4.14.2-dev\n" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." msgstr "" +"<i>Используется для Ping Reboot, перезапуска интерфейса, и запуска скриптов</" +"i> <br /> Укажите интерфейс для мониторинга и реакции на отсуствие пинга." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" +msgstr "Семейство адресов что бы пинговать хост" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -31,22 +37,22 @@ msgid "" "0 to disable the forced reboot delay." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "Большой: 248 байт" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "Интервал проверки" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "Задержка принудительной перезагрузки" @@ -65,11 +71,11 @@ msgid "" "up more than one action." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "Хост для проверки" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -79,43 +85,43 @@ msgid "" "li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "Огромный: 1492 байта" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "Интерфейс" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "Интерфейс для мониторинга и/или перезапуска" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "Гигантский: 9000 байт" @@ -123,23 +129,23 @@ msgstr "Гигантский: 9000 байт" msgid "Mode" msgstr "Режим" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "Период" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "Периодическая перезагрузка" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "Размер пакета Ping" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "" @@ -149,18 +155,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "Перезагрузить интерфейс" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "Маленький: 1 байт" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "Стандартный: 56 байт" @@ -168,7 +189,7 @@ msgstr "Стандартный: 56 байт" msgid "These rules will govern how this device reacts to network events." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "" @@ -178,10 +199,13 @@ msgstr "" msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "Windows: 32 байта" +#~ msgid "IPv4 address or hostname to ping." +#~ msgstr "IPv4 адрес или имя узла для пингования." + #~ msgid "Forced reboot delay" #~ msgstr "Задержка<br />принудительной<br />перезагрузки" diff --git a/applications/luci-app-watchcat/po/sk/watchcat.po b/applications/luci-app-watchcat/po/sk/watchcat.po index 213f7465ab..fb565aa4d9 100644 --- a/applications/luci-app-watchcat/po/sk/watchcat.po +++ b/applications/luci-app-watchcat/po/sk/watchcat.po @@ -1,20 +1,28 @@ msgid "" msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2021-12-06 14:03+0000\n" +"Last-Translator: Dušan Kazik <prescott66@gmail.com>\n" +"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationswatchcat/sk/>\n" +"Language: sk\n" "MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Weblate 4.10-dev\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -23,22 +31,22 @@ msgid "" "0 to disable the forced reboot delay." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" -msgstr "" +msgstr "Interval kontroly" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "" @@ -57,11 +65,11 @@ msgid "" "up more than one action." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -71,43 +79,43 @@ msgid "" "li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "" @@ -115,23 +123,23 @@ msgstr "" msgid "Mode" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "" @@ -141,18 +149,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "" @@ -160,7 +183,7 @@ msgstr "" msgid "These rules will govern how this device reacts to network events." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "" @@ -170,6 +193,6 @@ msgstr "" msgid "Watchcat" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "" diff --git a/applications/luci-app-watchcat/po/sv/watchcat.po b/applications/luci-app-watchcat/po/sv/watchcat.po index 0a0cd964d7..60e54c1f02 100644 --- a/applications/luci-app-watchcat/po/sv/watchcat.po +++ b/applications/luci-app-watchcat/po/sv/watchcat.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2019-11-19 16:05+0000\n" -"Last-Translator: Mattias Münster <mattiasmun@gmail.com>\n" +"PO-Revision-Date: 2022-08-28 23:17+0000\n" +"Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n" "Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationswatchcat/sv/>\n" "Language: sv\n" @@ -10,15 +10,19 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.10-dev\n" +"X-Generator: Weblate 4.14.1-dev\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" +msgstr "Adress-familjen för att pinga värden" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -27,28 +31,28 @@ msgid "" "0 to disable the forced reboot delay." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" -msgstr "" +msgstr "Stor: 248 bytes" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" -msgstr "" +msgstr "Kontrollintervall" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" -msgstr "" +msgstr "Påtvinga fördröjning av omstart" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 msgid "General Settings" -msgstr "" +msgstr "Generella inställningar" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 msgid "Grant access to LuCI app watchcat" @@ -61,11 +65,11 @@ msgid "" "up more than one action." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" -msgstr "" +msgstr "Värd att kontrollera" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -75,67 +79,67 @@ msgid "" "li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" -msgstr "" +msgstr "Jättestor: 1492 bytes" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." -msgstr "" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." +msgstr "IP-adress eller värdnamn att pinga." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" -msgstr "" +msgstr "Gränssnitt" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" -msgstr "" +msgstr "Gränssnitt att bevaka och/eller starta om" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" -msgstr "" +msgstr "Jumbo: 9000 bytes" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 msgid "Mode" -msgstr "" +msgstr "Läge" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" -msgstr "" +msgstr "Namn på gränssnittet för ModemManager" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "Period" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" -msgstr "" +msgstr "Periodisk omstart" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" -msgstr "" +msgstr "Paketstorlek för pingning" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "" @@ -145,28 +149,45 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" +msgstr "Starta om gränssnitt" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "Kör skript" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "Skript att köra" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" -msgstr "" +msgstr "Liten: 1 byte" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" -msgstr "" +msgstr "Standard: 56 bytes" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15 msgid "These rules will govern how this device reacts to network events." msgstr "" +"De här reglerna kommer att styra hur den här enheten reagerar på " +"nätverkshändelser." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" -msgstr "" +msgstr "Lås upp modemband" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15 @@ -174,9 +195,9 @@ msgstr "" msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" -msgstr "" +msgstr "Fönster: 32 bytes" #~ msgid "Forced reboot delay" #~ msgstr "Fördröjning av påtvingad omstart" diff --git a/applications/luci-app-watchcat/po/templates/watchcat.pot b/applications/luci-app-watchcat/po/templates/watchcat.pot index 07582a9e7e..dfb4c9dc9b 100644 --- a/applications/luci-app-watchcat/po/templates/watchcat.pot +++ b/applications/luci-app-watchcat/po/templates/watchcat.pot @@ -1,13 +1,17 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -16,22 +20,22 @@ msgid "" "0 to disable the forced reboot delay." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "" @@ -50,11 +54,11 @@ msgid "" "up more than one action." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -64,43 +68,43 @@ msgid "" "li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "" @@ -108,23 +112,23 @@ msgstr "" msgid "Mode" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "" @@ -134,18 +138,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "" @@ -153,7 +172,7 @@ msgstr "" msgid "These rules will govern how this device reacts to network events." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "" @@ -163,6 +182,6 @@ msgstr "" msgid "Watchcat" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "" diff --git a/applications/luci-app-watchcat/po/tr/watchcat.po b/applications/luci-app-watchcat/po/tr/watchcat.po index f4f8f7a2a9..a8e9a53ca4 100644 --- a/applications/luci-app-watchcat/po/tr/watchcat.po +++ b/applications/luci-app-watchcat/po/tr/watchcat.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2021-05-28 17:32+0000\n" -"Last-Translator: Oğuz Ersen <oguzersen@protonmail.com>\n" +"PO-Revision-Date: 2022-09-25 14:22+0000\n" +"Last-Translator: semih <semiht@gmail.com>\n" "Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationswatchcat/tr/>\n" "Language: tr\n" @@ -10,18 +10,22 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.7-dev\n" +"X-Generator: Weblate 4.14.1\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." msgstr "" -"<i> Ping Yeniden Başlatma ve Yeniden Başlatma Arayüzü modları için " -"geçerlidir </i> <br /> Ping işlemi başarısız olursa izlemek ve yeniden " -"başlatmak için kullanılacak arayüzü belirtin." +"<i>Ping Yeniden Başlatma, Arabirimi Yeniden Başlatma ve Komut Dosyasını " +"Çalıştırma modları için geçerlidir</i> <br /> Üzerinde bir ping başarısız " +"olursa izlenecek ve tepki verecek arabirimi belirt." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" +msgstr "Ana bilgisayara ping atmak için adres ailesi" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -37,7 +41,7 @@ msgstr "" "beklenecek saniye sayısını girin veya zorunlu yeniden başlatma gecikmesini " "devre dışı bırakmak için 0'ı kullanın." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " @@ -47,15 +51,15 @@ msgstr "" "i> <br /> ModemManager kullanıyorsanız, Watchcat'in adını belirterek " "ModemManger arayüzünüzü yeniden başlatmasını sağlayabilirsiniz." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "Büyük: 248 bayt" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "Kontrol etme aralığı" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "Zorla Yeniden Başlatma Gecikmesi" @@ -77,11 +81,11 @@ msgstr "" "gerçekleştirilecek çeşitli kontroller ve eylemler ayarlayabilirsiniz. Birden " "fazla eylem ayarlamak için alttaki <b>Ekle</b> düğmesini tıklayın." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "Kontrol Edilecek Alan Adı" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -97,15 +101,15 @@ msgstr "" "li><li>5 dakika şöyle olur: <b>5m</b></li><li>1 saat: <b>1h</b></li><li>1 " "hafta: <b>7d</b></li><ul>" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "Çok Büyük: 1492 bayt" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." -msgstr "Ping atılacak IPv4 adresi veya ana makine adı." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." +msgstr "Ping için IP adresi veya ana bilgisayar adı." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." @@ -113,39 +117,40 @@ msgstr "" "ModemManager kullanılıyorsa, arayüzü yeniden başlatmadan önce modemin " "herhangi bir bandı kullanmasına izin verilecek şekilde ayarlayın." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -"Periyodik Yeniden Başlatma modunda, ne sıklıkla yeniden başlatılacağını " -"tanımlar. <br /> Pinge dayalı yeniden başlatma modunda, yeniden başlatma " -"devreye girmeden önce kontrol edilecek alanadından bir cevap olmadan " -"geçebileck en uzun süreyi tanımlar. <br /> Ağ Yeniden Başlatma modunda, " -"arayüz yeniden başlatılmadan önce kontrol edilecek adresten bir yanıt " -"olmaksızın en geçecek uzun süreyi tanımlar. <br /><br />Varsayılan birim son " -"ek olmadan saniyedir, ancak son ek kullanabilirsiniz. <b>m</b> Dakika için, " -"<b>h</b> Saat için veya <b>d</b> Gün için. <br /><br />Örnekler:<ul><li>10 " -"saniye için: <b>10</b> veya<b>10s</b></li><li>5 Dakika için: <b>5m</b></" -"li><li> 1 saat için: <b>1h</b></li><li>1 hafta için: <b>7d</b></li><ul>" - -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +"Periyodik Yeniden Başlatma modunda, ne sıklıkta yeniden başlatılacağı " +"tanımlanır. <br /> Ping Yeniden Başlatma modunda, yeniden başlatma " +"yapılmadan önce Kontrol Edilecek Ana Bilgisayardan yanıt alınmaksızın en " +"uzun süreyi tanımlar. <br /> Ağ Yeniden Başlatma veya Komut Dosyasını " +"Çalıştırma modunda, arayüz yeniden başlatılmadan veya komut dosyası " +"çalıştırılmadan önce Ana Bilgisayardan Kontrol edilecek en uzun süreyi " +"tanımlar. <br /><br />Varsayılan birim saniyedir, son ek yoktur, ancak " +"dakika için <b>m</b>, saat için <b>h</b> veya gün için <b>d</b> son ekini " +"kullanabilirsiniz. <br /><br />Örnekler:<ul><li>10 saniye: <b>10</b> veya " +"<b>10s</b></li><li>5 dakika: <b>5m</b></li><li> 1 saat: <b>1h</b></li><li>1 " +"hafta: <b>7d</b></ li><ul>" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "Arayüz" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "İzlenenecek ve/ya yeniden başlatılacak arayüz" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "Jumbo: 9000 bayt" @@ -153,23 +158,23 @@ msgstr "Jumbo: 9000 bayt" msgid "Mode" msgstr "Mod" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "ModemManager Arayüzünün Adı" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "Periyot" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "Periyodik Yeniden Başlatma" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "Ping Paketi Boyutu" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "Ping tabanlı yeniden başlatma" @@ -179,23 +184,42 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -"Ping Yeniden Başlatma: Belirli bir ana bilgisayara gönderilen ping belirli " -"bir süre başarısız olursa bu cihazı yeniden başlatır. <br /> Periyodik " -"Yeniden Başlatma: Bu cihazı belirli bir süre sonra yeniden başlatır. <br /> " -"Arayüzü Yeniden Başlat: Belirli bir ana bilgisayara gönderilen ping belirli " -"bir süre başarısız olursa bir ağ arayüzünü yeniden başlatır." - -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +"Ping Yeniden Başlatma: Belirtilen bir ana bilgisayara ping belirli bir süre " +"boyunca başarısız olursa bu cihazı yeniden başlat. <br /> Periyodik Yeniden " +"Başlatma: Belirli bir zaman aralığından sonra bu cihazı yeniden başlat. <br /" +"> Arabirimi Yeniden Başlat: Belirtilen bir ana bilgisayara ping belirli bir " +"süre boyunca başarısız olursa, bir ağ arabirimini yeniden başlat. <br /> " +"Komut Dosyasını Çalıştır: Belirtilen bir ana bilgisayara ping belirli bir " +"süre boyunca başarısız olursa bir komut dosyası çalıştır. <br />" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "Arayüzü yeniden başlat" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "Komut Dosyasını Çalıştır" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "Çalıştırılacak komut dosyası" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" +"Ana bilgisayar belirtilen süre boyunca yanıt vermediğinde çalıştırılacak " +"komut dosyası. Komut dosyası, arabirim adına $1 olarak iletilir" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "Küçük: 1 bayt" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "Standart: 56 bayt" @@ -204,7 +228,7 @@ msgid "These rules will govern how this device reacts to network events." msgstr "" "Bu kurallar cihazın ağ olaylarına hangi şekilde tepki vereceğini yönetir." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "Modem Bantlarının Kilidini Açın" @@ -214,10 +238,59 @@ msgstr "Modem Bantlarının Kilidini Açın" msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "Windows: 32 bayt" +#~ msgid "" +#~ "<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify " +#~ "the interface to monitor and restart if a ping over it fails." +#~ msgstr "" +#~ "<i> Ping Yeniden Başlatma ve Yeniden Başlatma Arayüzü modları için " +#~ "geçerlidir </i> <br /> Ping işlemi başarısız olursa izlemek ve yeniden " +#~ "başlatmak için kullanılacak arayüzü belirtin." + +#~ msgid "IPv4 address or hostname to ping." +#~ msgstr "Ping atılacak IPv4 adresi veya ana makine adı." + +#~ msgid "" +#~ "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " +#~ "Reboot mode, it defines the longest period of time without a reply from " +#~ "the Host To Check before a reboot is engaged. <br /> In Network Restart " +#~ "mode, it defines the longest period of time without a reply from the Host " +#~ "to Check before the interface is restarted. <br /><br />The default unit " +#~ "is seconds, without a suffix, but you can use the suffix <b>m</b> for " +#~ "minutes, <b>h</b> for hours or <b>d</b> for days. <br /><br />Examples:" +#~ "<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes " +#~ "would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></li><li>1 week " +#~ "would be: <b>7d</b></li><ul>" +#~ msgstr "" +#~ "Periyodik Yeniden Başlatma modunda, ne sıklıkla yeniden başlatılacağını " +#~ "tanımlar. <br /> Pinge dayalı yeniden başlatma modunda, yeniden başlatma " +#~ "devreye girmeden önce kontrol edilecek alanadından bir cevap olmadan " +#~ "geçebileck en uzun süreyi tanımlar. <br /> Ağ Yeniden Başlatma modunda, " +#~ "arayüz yeniden başlatılmadan önce kontrol edilecek adresten bir yanıt " +#~ "olmaksızın en geçecek uzun süreyi tanımlar. <br /><br />Varsayılan birim " +#~ "son ek olmadan saniyedir, ancak son ek kullanabilirsiniz. <b>m</b> Dakika " +#~ "için, <b>h</b> Saat için veya <b>d</b> Gün için. <br /><br />Örnekler:" +#~ "<ul><li>10 saniye için: <b>10</b> veya<b>10s</b></li><li>5 Dakika için: " +#~ "<b>5m</b></li><li> 1 saat için: <b>1h</b></li><li>1 hafta için: <b>7d</" +#~ "b></li><ul>" + +#~ msgid "" +#~ "Ping Reboot: Reboot this device if a ping to a specified host fails for a " +#~ "specified duration of time. <br /> Periodic Reboot: Reboot this device " +#~ "after a specified interval of time. <br /> Restart Interface: Restart a " +#~ "network interface if a ping to a specified host fails for a specified " +#~ "duration of time." +#~ msgstr "" +#~ "Ping Yeniden Başlatma: Belirli bir ana bilgisayara gönderilen ping " +#~ "belirli bir süre başarısız olursa bu cihazı yeniden başlatır. <br /> " +#~ "Periyodik Yeniden Başlatma: Bu cihazı belirli bir süre sonra yeniden " +#~ "başlatır. <br /> Arayüzü Yeniden Başlat: Belirli bir ana bilgisayara " +#~ "gönderilen ping belirli bir süre başarısız olursa bir ağ arayüzünü " +#~ "yeniden başlatır." + #~ msgid "Forced reboot delay" #~ msgstr "Zorla yeniden başlatma gecikmesi" diff --git a/applications/luci-app-watchcat/po/uk/watchcat.po b/applications/luci-app-watchcat/po/uk/watchcat.po index 3ab850678e..060990b4e4 100644 --- a/applications/luci-app-watchcat/po/uk/watchcat.po +++ b/applications/luci-app-watchcat/po/uk/watchcat.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2021-04-04 07:26+0000\n" -"Last-Translator: Yurii Petrashko <yuripet@gmail.com>\n" +"PO-Revision-Date: 2022-04-15 15:09+0000\n" +"Last-Translator: Vladdrako <vladdrako007@gmail.com>\n" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationswatchcat/uk/>\n" "Language: uk\n" @@ -11,15 +11,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.6-dev\n" +"X-Generator: Weblate 4.12-dev\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -27,25 +31,35 @@ msgid "" "fail. Enter the number of seconds to wait for the soft reboot to fail or use " "0 to disable the forced reboot delay." msgstr "" - -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +"Застосовується до режимів Ping-перезавантаження та Періодичного " +"перезавантаження</i> <br /> Під час перезавантаження маршрутизатора служба " +"запускає м’яке перезапуск. Якщо ввести значення, відмінне від нуля - викличе " +"відкладене жорсткий перезапуск, якщо м’який буде невдалим. Введіть кількість " +"секунд, протягом яких необхідно чекати, поки програмне перезавантаження не " +"завершиться, або використовуйте 0, щоб вимкнути затримку примусового " +"перезавантаження." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" +"Застосовується до режимів Ping-перезавантаження та Перезапуску інтерфейсу </" +"i> <br /> Якщо використовується ModemManager, ви можете попросити Watchcat " +"перезапустити інтерфейс ModemManger, вказавши його назву." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" -msgstr "" +msgstr "Великий: 248 байт" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" -msgstr "" +msgstr "Інтервал перевірки" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" -msgstr "" +msgstr "Затримка примусового перезавантаження" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 msgid "General Settings" @@ -53,7 +67,7 @@ msgstr "Загальні налаштування" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 msgid "Grant access to LuCI app watchcat" -msgstr "" +msgstr "Надати доступ LuCI до програми watchcat" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12 msgid "" @@ -61,12 +75,15 @@ msgid "" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set " "up more than one action." msgstr "" +"Тут ви можете налаштувати декілька перевірок і дій, які потрібно виконати на " +"випадок, якщо хост стане недоступним. Натисніть кнопку <b>Додати</b> знизу, " +"щоб налаштувати більш ніж одну дію." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" -msgstr "" +msgstr "Хост для перевірки" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -75,70 +92,78 @@ msgid "" "b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" "li><ul>" msgstr "" - -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +"Як часто виконувати ping до хоста, визначеному вище. <br /><br />Одиницями " +"за промовчанням є секунди без суфікса, але ви можете використовувати суфікс " +"<b>m</b> для хвилин, <b>h</b> для годин або <b>d </b> для днів. <br /><br /> " +"Приклади:<ul><li>10 секунд буде: <b>10</b> або <b>10 секунд</b></li><li>5 " +"хвилин буде: <b>5 хв</b></li><li>1 година буде: <b>1 год</b></li><li>1 " +"тиждень: <b>7 дн</b></ li><ul>" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" -msgstr "" +msgstr "Величезний: 1492 байта" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" +"Якщо ви користуєтесь ModemManager, то перед перезапуском інтерфейсу " +"налаштуйте модем так, щоб він міг використовувати будь-який діапазон." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" -msgstr "" +msgstr "Інтерфейс" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" -msgstr "" +msgstr "Інтерфейс для моніторингу та/або перезапуску" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" -msgstr "" +msgstr "Гігантський: 9000 байт" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 msgid "Mode" -msgstr "" +msgstr "Режим" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" -msgstr "" +msgstr "Назва інтерфейса ModemManager-а" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "Період" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" -msgstr "" +msgstr "Періодичне перезавантаження" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" -msgstr "" +msgstr "Розмір Ping-пакета" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" -msgstr "" +msgstr "Ping-перезавантаження" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 msgid "" @@ -146,28 +171,44 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" +msgstr "Перезапустити інтерфейс" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 -msgid "Small: 1 byte" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 -msgid "Standard: 56 bytes" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" msgstr "" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Small: 1 byte" +msgstr "Маленький: 1 байт" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 +msgid "Standard: 56 bytes" +msgstr "Стандартний: 56 байт" + #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15 msgid "These rules will govern how this device reacts to network events." msgstr "" +"Ці правила регулюватимуть те, як цей пристрій реагуватиме на події мережі." -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" -msgstr "" +msgstr "Розблокувати діапазони модема" #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15 @@ -175,9 +216,56 @@ msgstr "" msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" -msgstr "" +msgstr "Windows: 32 байти" + +#~ msgid "" +#~ "<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify " +#~ "the interface to monitor and restart if a ping over it fails." +#~ msgstr "" +#~ "<i>Застосовується до режимів інтерфейсу перезавантаження та перезапуску " +#~ "Ping</i> <br /> Вкажіть інтерфейс для моніторингу та перезапуску, якщо не " +#~ "вдається виконати ping." + +#~ msgid "IPv4 address or hostname to ping." +#~ msgstr "IPv4-адреса або ім'я хоста для пінгу." + +#~ msgid "" +#~ "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " +#~ "Reboot mode, it defines the longest period of time without a reply from " +#~ "the Host To Check before a reboot is engaged. <br /> In Network Restart " +#~ "mode, it defines the longest period of time without a reply from the Host " +#~ "to Check before the interface is restarted. <br /><br />The default unit " +#~ "is seconds, without a suffix, but you can use the suffix <b>m</b> for " +#~ "minutes, <b>h</b> for hours or <b>d</b> for days. <br /><br />Examples:" +#~ "<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes " +#~ "would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></li><li>1 week " +#~ "would be: <b>7d</b></li><ul>" +#~ msgstr "" +#~ "У режимі періодичного перезавантаження він визначає його частоту. <br /> " +#~ "У режимі Ping-перезавантаження він визначає найдовший період часу без " +#~ "відповіді від хоста для перевірки перед перезавантаженням. <br /> У " +#~ "режимі перезапуску мережі він визначає найдовший період часу без " +#~ "відповіді від хоста для перевірки перед перезапуском інтерфейсу. <br /" +#~ "><br />Одиницею за промовчанням є секунди без суфікса, але ви можете " +#~ "використовувати суфікс <b>m</b> для хвилин, <b>h</b> для годин або <b>d </" +#~ "b> для днів. <br /><br />Приклади:<ul><li>10 секунд буде: <b>10</b> або " +#~ "<b>10 секунд</b></li><li>5 хвилин буде: <b>5 хв</b></li><li> 1 година " +#~ "буде: <b>1 год</b></li><li>1 тиждень буде: <b>7 дн</b></ li><ul>" + +#~ msgid "" +#~ "Ping Reboot: Reboot this device if a ping to a specified host fails for a " +#~ "specified duration of time. <br /> Periodic Reboot: Reboot this device " +#~ "after a specified interval of time. <br /> Restart Interface: Restart a " +#~ "network interface if a ping to a specified host fails for a specified " +#~ "duration of time." +#~ msgstr "" +#~ "Ping-перезавантаження : перезавантажте цей пристрій, якщо ping на " +#~ "вказаний хост не вдається протягом певного часу. <br /> Періодичне " +#~ "перезавантаження: перезавантажте цей пристрій через певний проміжок часу. " +#~ "<br /> Інтерфейс перезапуску: перезавантажте мережевий інтерфейс, якщо " +#~ "ping на вказаний хост не вдається протягом певного часу." #~ msgid "Forced reboot delay" #~ msgstr "Затримка примусового перезавантаження" diff --git a/applications/luci-app-watchcat/po/vi/watchcat.po b/applications/luci-app-watchcat/po/vi/watchcat.po index a743d57243..1d18c8fd55 100644 --- a/applications/luci-app-watchcat/po/vi/watchcat.po +++ b/applications/luci-app-watchcat/po/vi/watchcat.po @@ -8,13 +8,17 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -23,22 +27,22 @@ msgid "" "0 to disable the forced reboot delay." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "" @@ -57,11 +61,11 @@ msgid "" "up more than one action." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -71,43 +75,43 @@ msgid "" "li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "" @@ -115,23 +119,23 @@ msgstr "" msgid "Mode" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "" @@ -141,18 +145,33 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "" @@ -160,7 +179,7 @@ msgstr "" msgid "These rules will govern how this device reacts to network events." msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "" @@ -170,6 +189,6 @@ msgstr "" msgid "Watchcat" msgstr "" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "" diff --git a/applications/luci-app-watchcat/po/zh_Hans/watchcat.po b/applications/luci-app-watchcat/po/zh_Hans/watchcat.po index e82338abe3..0bd2318554 100644 --- a/applications/luci-app-watchcat/po/zh_Hans/watchcat.po +++ b/applications/luci-app-watchcat/po/zh_Hans/watchcat.po @@ -4,8 +4,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2021-08-12 12:55+0000\n" -"Last-Translator: Eric <spice2wolf@gmail.com>\n" +"PO-Revision-Date: 2022-08-29 20:13+0000\n" +"Last-Translator: MkQtS <onewordwrong@aliyun.com>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationswatchcat/zh_Hans/>\n" "Language: zh_Hans\n" @@ -13,17 +13,20 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.8-dev\n" +"X-Generator: Weblate 4.14.1-dev\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." -msgstr "" -"<i>应用于 Ping Reboot 和 Restart 接口模式</i><br />指定监视接口并在对该接口" -"的 ping 失败时重新启动。" +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "<i>应用于 Ping重启、重启接口 和 执行脚本 模式</i> <br />指定要监视的接口并在 " +"ping 失败时做出反应。" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" +msgstr "Ping 主机的地址簇" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -31,28 +34,28 @@ msgid "" "fail. Enter the number of seconds to wait for the soft reboot to fail or use " "0 to disable the forced reboot delay." msgstr "" -"应用于 Ping Reboot 和定期 Rebbot 模式</i> <br />当重新启动路由器时,该服务将" -"触发软重启。如果软重启失败,在这里输入非零值将触发延迟的硬重启。输入等待软重" -"启失败的秒数或使用 0 来禁用强制重启延迟。" +"应用于 Ping 重启 和 定时重启 模式</i> <br />当重新启动路由器时,该服务将触发" +"软重启。如果软重启失败,在这里输入非零值将触发延迟的硬重启。输入等待软重启失" +"败的秒数或使用 0 来禁用强制重启延迟。" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " "specifying its name." msgstr "" -"应用于 Ping Reboot 和 Restart 接口模式</i> <br />如果使用 ModemManager,你可" -"以通过指定名称让 Watchcat 重新启动你的 ModemManager 接口。" +"应用于 Ping 重启 和 重启接口 模式</i> <br />如果使用 ModemManager,你可以通过" +"指定名称让 Watchcat 重新启动你的 ModemManager 接口。" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "大:248 字节" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "检查间隔" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "强制重启延迟" @@ -69,15 +72,14 @@ msgid "" "Here you can set up several checks and actions to take in the event that a " "host becomes unreachable. Click the <b>Add</b> button at the bottom to set " "up more than one action." -msgstr "" -"你可以在此处设置几个在一个主机变得不可访问时采取的检查和操作。点击底部的<b>添" -"加</b>按钮来设置一个以上的操作。" +msgstr "你可以在此处设置数个检查以及在特定主机变得不可访问时要采取的操作。点击底部的<" +"b>新增</b>按钮可以设置多条规则。" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "要检查的主机" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -87,19 +89,19 @@ msgid "" "li><ul>" msgstr "" "多长时间 ping 一次上面指定的主机。<br /><br />默认单位是秒,不带后缀,但你可" -"以使用后缀<b>m</b>代表分钟, <b>h</b> 代表小时或 <b>d</b>代表天数。<br /" -"><br />样例:<ul><li>10秒是:<b>10</b> o或<b>10s</b></li><li>5 分钟是:: " -"<b>5m</b></li><li>1 小时是:<b>1h</b></li><li>1 周是:<b>7d</b></li><ul>" +"以使用后缀<b>m</b>代表分钟, <b>h</b>代表小时或<b>d</b>代表天数。<br /><br />" +"示例:<ul><li>10秒是:<b>10</b> 或 <b>10s</b></li><li>5 分钟是:<b>5m</b></" +"li><li>1 小时是:<b>1h</b></li><li>1 周是:<b>7d</b></li><ul>" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "巨大:1492 字节" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." -msgstr "要执行 ping 操作的 IPv4 地址或主机名。" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." +msgstr "要 ping 的 IP 地址或主机名。" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." @@ -107,36 +109,37 @@ msgstr "" "如果使用 ModemManager,则在重新启动接口之前,将调制解调器设置为允许使用任何频" "段。" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -"在定期重启模式下,它定义重启的间隔。 <br />在 Ping 重启模式下,它定义在重启前" -"没有收到来自要检查的主机的回复的最长时间。<br />在网络重启模式下,它定义接口" -"重启前,没有收到要检查的主机的回复的最长时间。<br /><br />默认单位是秒,不带" -"后缀,但你可以使用后缀<b>m</b>代表分钟, <b>h</b> 代表小时或 <b>d</b>代表天" -"数。<br /><br />样例:<ul><li>10秒是:<b>10</b> o或<b>10s</b></li><li>5 分钟" -"是:: <b>5m</b></li><li>1 小时是:<b>1h</b></li><li>1 周是:<b>7d</b></" -"li><ul>" - -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +"对于 定时重启 模式,它定义了重启的频率。<br />对于 Ping 重启 " +"模式,它定义了在重启前未收到来自要检查的主机的回复的最长时间。<br />对于 " +"重启接口 或 执行脚本 " +"模式,它定义了在重启接口或执行脚本前未收到要检查的主机的回复的最长时间。<br /" +"><br />默认单位是秒,不带后缀,但你可以使用后缀 <b>m</b> 代表分钟, <b>h</b> " +"代表小时或 <b>d</b> 代表天。<br /><br />示例:<ul><li>10秒是:<b>10</b> 或 " +"<b>10s</b></li><li>5 分钟是:<b>5m</b></li><li>1 小时是:<b>1h</b></li><li>1 " +"周是:<b>7d</b></li><ul>" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "接口" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "要监视和/或重启的接口" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "巨无霸:9000 字节" @@ -144,23 +147,23 @@ msgstr "巨无霸:9000 字节" msgid "Mode" msgstr "模式" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "ModemManager 接口的名称" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "周期" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" -msgstr "定期重启" +msgstr "定时重启" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "Ping 包大小" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "Ping 重启" @@ -170,21 +173,38 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -"Ping 重启:如果在指定的一段时间内,ping 指定主机始终失败,则重新启动该设备。" -"<br />定期重启:在指定的时间间隔后重新启动该设备。<br />重启接口:如果在指定" -"的时间内,ping 指定主机始终失败,则重新启动网络接口。" +"Ping 重启:如果在指定的时间内,ping 指定主机始终失败,则重新启动本设备。<br " +"/>定时重启:在指定的时间间隔后重新启动本设备。<br " +"/>重启接口:如果在指定的时间内,ping " +"指定主机始终失败,则重新启动特定网络接口。<br " +"/>执行脚本:如果在指定的时间内,ping 指定主机始终失败,则执行特定脚本。<br />" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" -msgstr "重启实例" +msgstr "重启接口" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "执行脚本" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "要执行的脚本" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "当特定主机在指定的时间内未回复时要执行的脚本。脚本将接口名称作为 $1 传递" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "小:1 字节" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "标准:56 字节" @@ -192,7 +212,7 @@ msgstr "标准:56 字节" msgid "These rules will govern how this device reacts to network events." msgstr "这些规则将控制此设备如何对网络事件做出反应。" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "解锁调制解调器频段" @@ -202,9 +222,50 @@ msgstr "解锁调制解调器频段" msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" -msgstr "窗口:32 字节" +msgstr "Windows:32 字节" + +#~ msgid "" +#~ "<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify " +#~ "the interface to monitor and restart if a ping over it fails." +#~ msgstr "" +#~ "<i>应用于 Ping 重启 和 重启接口 模式</i><br />指定监视接口并在对该接口的 " +#~ "ping 失败时重新启动。" + +#~ msgid "IPv4 address or hostname to ping." +#~ msgstr "要执行 ping 操作的 IPv4 地址或主机名。" + +#~ msgid "" +#~ "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " +#~ "Reboot mode, it defines the longest period of time without a reply from " +#~ "the Host To Check before a reboot is engaged. <br /> In Network Restart " +#~ "mode, it defines the longest period of time without a reply from the Host " +#~ "to Check before the interface is restarted. <br /><br />The default unit " +#~ "is seconds, without a suffix, but you can use the suffix <b>m</b> for " +#~ "minutes, <b>h</b> for hours or <b>d</b> for days. <br /><br />Examples:" +#~ "<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes " +#~ "would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></li><li>1 week " +#~ "would be: <b>7d</b></li><ul>" +#~ msgstr "" +#~ "在 定时重启 模式下,它定义重启的间隔。<br />在 Ping 重启 模式下,它定义在" +#~ "重启前没有收到来自要检查的主机的回复的最长时间。<br />在 重启接口 模式下," +#~ "它定义在重启接口前没有收到要检查的主机的回复的最长时间。<br /><br />默认单" +#~ "位是秒,不带后缀,但你可以使用后缀<b>m</b>代表分钟, <b>h</b>代表小时或" +#~ "<b>d</b>代表天数。<br /><br />示例:<ul><li>10秒是:<b>10</b> 或 <b>10s</" +#~ "b></li><li>5 分钟是:<b>5m</b></li><li>1 小时是:<b>1h</b></li><li>1 周" +#~ "是:<b>7d</b></li><ul>" + +#~ msgid "" +#~ "Ping Reboot: Reboot this device if a ping to a specified host fails for a " +#~ "specified duration of time. <br /> Periodic Reboot: Reboot this device " +#~ "after a specified interval of time. <br /> Restart Interface: Restart a " +#~ "network interface if a ping to a specified host fails for a specified " +#~ "duration of time." +#~ msgstr "" +#~ "Ping 重启:如果在指定的一段时间内,ping 指定主机始终失败,则重新启动该设" +#~ "备。<br />定时重启:在指定的时间间隔后重新启动该设备。<br />重启接口:如果" +#~ "在指定的时间内,ping 指定主机始终失败,则重新启动网络接口。" #~ msgid "" #~ "<i>Applies to Ping Reboot and Restart Interface modes</i> <br> Specify " diff --git a/applications/luci-app-watchcat/po/zh_Hant/watchcat.po b/applications/luci-app-watchcat/po/zh_Hant/watchcat.po index 7427250e7a..ed86fd4575 100644 --- a/applications/luci-app-watchcat/po/zh_Hant/watchcat.po +++ b/applications/luci-app-watchcat/po/zh_Hant/watchcat.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2021-08-14 14:43+0000\n" +"PO-Revision-Date: 2022-09-07 14:22+0000\n" "Last-Translator: Hulen <shift0106@gmail.com>\n" "Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationswatchcat/zh_Hant/>\n" @@ -13,17 +13,20 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.8-dev\n" +"X-Generator: Weblate 4.14.1-dev\n" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104 msgid "" -"<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify the " -"interface to monitor and restart if a ping over it fails." -msgstr "" -"<i>應用於 Ping Reboot 和 Restart 介面模式</i><br />指定監視介面並在對該介面" -"的 ping 失敗時重新啟動。" +"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /" +"> Specify the interface to monitor and react if a ping over it fails." +msgstr "<i>應用於 Ping重新啟動、重新啟動介面 和 執行指令碼 模式</i> <br /" +">指定要監視的介面並在 ping 失敗時做出反應。" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Address family for pinging the host" +msgstr "Ping 主機的位址家族" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 msgid "" "Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting " "the router, the service will trigger a soft reboot. Entering a non-zero " @@ -31,11 +34,11 @@ msgid "" "fail. Enter the number of seconds to wait for the soft reboot to fail or use " "0 to disable the forced reboot delay." msgstr "" -"應用於 Ping Reboot 和定期 Rebbot 模式</i> <br />當重新啟動路由器時,該服務將" -"觸發軟開機。如果軟開機失敗,在這裡輸入非零值將觸發延遲的硬開機。輸入等待軟開" -"機失敗的秒數或使用 0 來停用強制重新啟動延遲。" +"應用於 Ping 重新啟動 和 定時重新啟動 模式</i> <br />當重新啟動路由器時,該服" +"務將觸發軟重新啟動。如果軟重新啟動失敗,在這裡輸入非零值將觸發延遲的硬重新啟" +"動。輸入等待軟重新啟動失敗的秒數或使用 0 來停用強制重新啟動延遲。" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111 msgid "" "Applies to Ping Reboot and Restart Interface modes</i> <br /> If using " "ModemManager, you can have Watchcat restart your ModemManger interface by " @@ -44,15 +47,15 @@ msgstr "" "應用於 Ping Reboot 和 Restart 介面模式</i> <br />如果使用 ModemManager,您可" "以透過指定名稱讓 Watchcat 重新啟動您的 ModemManager 介面。" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84 msgid "Big: 248 bytes" msgstr "大:248 位元組" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70 msgid "Check Interval" msgstr "檢查間隔時間" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93 msgid "Force Reboot Delay" msgstr "強制重新啟動延遲" @@ -73,11 +76,11 @@ msgstr "" "您可以在此處設定幾個在主機變得不可存取時採取的檢查和操作。按下底部的<b>加入</" "b>按鈕來設定一個以上的操作。" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 msgid "Host To Check" msgstr "要檢查的主機" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 msgid "" "How often to ping the host specified above. <br /><br />The default unit is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, " @@ -86,56 +89,58 @@ msgid "" "b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" "li><ul>" msgstr "" -"多長時間 ping 一次上面指定的主機。<br /><br />預設單位是秒,不帶尾碼,但您可" -"以使用尾碼<b>m</b>代表分鐘, <b>h</b> 代表小時或 <b>d</b>代表天數。<br /" -"><br />範例:<ul><li>10秒是:<b>10</b> o或<b>10s</b></li><li>5 分鐘是:: " -"<b>5m</b></li><li>1 小時是:<b>1h</b></li><li>1 週是:<b>7d</b></li><ul>" +"多長時間 ping 一次上面指定的主機。<br /><br " +"/>預設單位是秒,不帶尾碼,但您可以使用尾碼<b>m</b> 代表分鐘, <b>h</b> " +"代表小時或 <b>d</b> 代表天數。<br /><br />範例:<ul><li>10 秒是:<b>10</b> " +"或<b>10s</b></li><li>5 分鐘是:<b>5m</b></li><li>1 小時是:<b>1h</b></" +"li><li>1 週是:<b>7d</b></li><ul>" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85 msgid "Huge: 1492 bytes" msgstr "巨大:1492 位元組" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 -msgid "IPv4 address or hostname to ping." -msgstr "要執行 ping 操作的 IPv4 位址或主機名稱。" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52 +msgid "IP address or hostname to ping." +msgstr "要 ping 的 IP 位址或主機名稱。" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118 msgid "" "If using ModemManager, then before restarting the interface, set the modem " "to be allowed to use any band." msgstr "" "如果使用 ModemManager,則在重新啟動介面之前,將數據機設定為允許使用任何頻段。" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41 msgid "" "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " "Reboot mode, it defines the longest period of time without a reply from the " -"Host To Check before a reboot is engaged. <br /> In Network Restart mode, it " -"defines the longest period of time without a reply from the Host to Check " -"before the interface is restarted. <br /><br />The default unit is seconds, " -"without a suffix, but you can use the suffix <b>m</b> for minutes, <b>h</b> " -"for hours or <b>d</b> for days. <br /><br />Examples:<ul><li>10 seconds " -"would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></" -"li><li> 1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></" -"li><ul>" +"Host To Check before a reboot is engaged. <br /> In Network Restart or Run " +"Script mode, it defines the longest period of time without a reply from the " +"Host to Check before the interface is restarted or the script is run. <br /" +"><br />The default unit is seconds, without a suffix, but you can use the " +"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /" +"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></" +"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></" +"li><li>1 week would be: <b>7d</b></li><ul>" msgstr "" -"在定期重新啟動模式下,它定義重新啟動的間隔。 <br />在 Ping 重新啟動模式下,它" -"定義在重新啟動前沒有收到來自要檢查的主機的回覆的最長時間。<br />在網路重新啟" -"動模式下,它定義介面重新啟動前,沒有收到要檢查的主機的回覆的最長時間。<br /" -"><br />預設單位是秒,不帶尾碼,但您可以使用尾碼<b>m</b>代表分鐘, <b>h</b> 代" -"表小時或 <b>d</b>代表天數。<br /><br />範例:<ul><li>10秒是:<b>10</b> o或" -"<b>10s</b></li><li>5 分鐘是:: <b>5m</b></li><li>1 小時是:<b>1h</b></" -"li><li>1 週是:<b>7d</b></li><ul>" - -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +"對於 定時重新啟動 模式,它定義了重新啟動的頻率。<br />對於 Ping 重新啟動 " +"模式,它定義了在重新啟動前未收到來自要檢查的主機的回覆的最長時間。<br />對於 " +"重新啟動介面 或 執行指令碼 模式,它定義了在重新啟動介面或執行指令碼前未收到要" +"檢查的主機的回覆的最長時間。<br /><br />預設單位是秒,不帶尾碼," +"但您可以使用尾碼 <b>m</b> 代表分鐘, <b>h</b> 代表小時或 <b>d</b> 代表天。" +"<br /><br />範例:<ul><li>10秒是:<b>10</b> 或 <b>10s</b></li><li>5 " +"分鐘是:<b>5m</b></li><li>1 小時是:<b>1h</b></li><li>1 " +"週是:<b>7d</b></li><ul>" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102 msgid "Interface" msgstr "介面" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103 msgid "Interface to monitor and/or restart" msgstr "要監視和/或重新啟動的介面" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86 msgid "Jumbo: 9000 bytes" msgstr "Jumbo:9000 位元組" @@ -143,23 +148,23 @@ msgstr "Jumbo:9000 位元組" msgid "Mode" msgstr "模式" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110 msgid "Name of ModemManager Interface" msgstr "ModemManager 介面的名稱" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40 msgid "Period" msgstr "週期" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 msgid "Periodic Reboot" msgstr "定期重新啟動" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 msgid "Ping Packet Size" msgstr "Ping 封包大小" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 msgid "Ping Reboot" msgstr "Ping 重新啟動" @@ -169,21 +174,39 @@ msgid "" "specified duration of time. <br /> Periodic Reboot: Reboot this device after " "a specified interval of time. <br /> Restart Interface: Restart a network " "interface if a ping to a specified host fails for a specified duration of " -"time." +"time. <br /> Run Script: Run a script if a ping to a specified host fails " +"for a specified duration of time. <br />" msgstr "" -"Ping 重新啟動:如果在指定的一段時間內,ping 指定主機始終失敗,則重新啟動該裝" -"置。<br />定期重新啟動:在指定的時間間隔後重新啟動該裝置。<br />重新啟動介" -"面:如果在指定的時間內,ping 指定主機始終失敗,則重新啟動網路介面。" - -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +"Ping 重新啟動:如果在指定的時間內,ping 指定主機始終失敗,則重新啟動本裝置。" +"<br />定時重新啟動:在指定的時間間隔後重新啟動本裝置。<br " +"/>重新啟動介面:如果在指定的時間內,ping " +"指定主機始終失敗,則重新啟動特定網路介面。<br " +"/>執行指令碼:如果在指定的時間內,ping 指定主機始終失敗,則執行特定指令碼。" +"<br />" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29 msgid "Restart Interface" -msgstr "重啟實例" +msgstr "重新啟動介面" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30 +msgid "Run Script" +msgstr "執行指令碼" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33 +msgid "Script to run" +msgstr "要執行的指令碼" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34 +msgid "" +"Script to run when the host has not responded for the specified duration of " +"time. The script is passed the interface name as $1" +msgstr "當特定主機在指定的時間內未回覆時要執行的指令碼。指令碼將介面名稱作為 $1 傳遞" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 msgid "Small: 1 byte" msgstr "小:1 位元組" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83 msgid "Standard: 56 bytes" msgstr "標準:56 位元組" @@ -191,7 +214,7 @@ msgstr "標準:56 位元組" msgid "These rules will govern how this device reacts to network events." msgstr "這些規則將控制此裝置如何對網路事件做出反應。" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117 msgid "Unlock Modem Bands" msgstr "解鎖數據機頻段" @@ -201,11 +224,52 @@ msgstr "解鎖數據機頻段" msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 msgid "Windows: 32 bytes" msgstr "Windows:32 位元組" #~ msgid "" +#~ "<i>Applies to Ping Reboot and Restart Interface modes</i> <br /> Specify " +#~ "the interface to monitor and restart if a ping over it fails." +#~ msgstr "" +#~ "<i>應用於 Ping Reboot 和 Restart 介面模式</i><br />指定監視介面並在對該介" +#~ "面的 ping 失敗時重新啟動。" + +#~ msgid "IPv4 address or hostname to ping." +#~ msgstr "要執行 ping 操作的 IPv4 位址或主機名稱。" + +#~ msgid "" +#~ "In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping " +#~ "Reboot mode, it defines the longest period of time without a reply from " +#~ "the Host To Check before a reboot is engaged. <br /> In Network Restart " +#~ "mode, it defines the longest period of time without a reply from the Host " +#~ "to Check before the interface is restarted. <br /><br />The default unit " +#~ "is seconds, without a suffix, but you can use the suffix <b>m</b> for " +#~ "minutes, <b>h</b> for hours or <b>d</b> for days. <br /><br />Examples:" +#~ "<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes " +#~ "would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></li><li>1 week " +#~ "would be: <b>7d</b></li><ul>" +#~ msgstr "" +#~ "在定期重新啟動模式下,它定義重新啟動的間隔。 <br />在 Ping 重新啟動模式" +#~ "下,它定義在重新啟動前沒有收到來自要檢查的主機的回覆的最長時間。<br />在網" +#~ "路重新啟動模式下,它定義介面重新啟動前,沒有收到要檢查的主機的回覆的最長時" +#~ "間。<br /><br />預設單位是秒,不帶尾碼,但您可以使用尾碼<b>m</b>代表分" +#~ "鐘, <b>h</b> 代表小時或 <b>d</b>代表天數。<br /><br />範例:<ul><li>10秒" +#~ "是:<b>10</b> o或<b>10s</b></li><li>5 分鐘是:: <b>5m</b></li><li>1 小時" +#~ "是:<b>1h</b></li><li>1 週是:<b>7d</b></li><ul>" + +#~ msgid "" +#~ "Ping Reboot: Reboot this device if a ping to a specified host fails for a " +#~ "specified duration of time. <br /> Periodic Reboot: Reboot this device " +#~ "after a specified interval of time. <br /> Restart Interface: Restart a " +#~ "network interface if a ping to a specified host fails for a specified " +#~ "duration of time." +#~ msgstr "" +#~ "Ping 重新啟動:如果在指定的一段時間內,ping 指定主機始終失敗,則重新啟動該" +#~ "裝置。<br />定期重新啟動:在指定的時間間隔後重新啟動該裝置。<br />重新啟動" +#~ "介面:如果在指定的時間內,ping 指定主機始終失敗,則重新啟動網路介面。" + +#~ msgid "" #~ "<i>Applies to Ping Reboot and Restart Interface modes</i> <br> Specify " #~ "the interface to monitor and restart if a ping over it fails." #~ msgstr "" @@ -290,8 +354,8 @@ msgstr "Windows:32 位元組" #~ "How often to check internet connection. Default unit is seconds, you can " #~ "you use the suffix 'm' for minutes, 'h' for hours or 'd' for days" #~ msgstr "" -#~ "檢查網路連接的頻率;預設單位為「秒」,您還可以使用字尾 \"m\"(分鐘)、\"h" -#~ "\"(小時)、\"d\"(天)" +#~ "檢查網路連接的頻率;預設單位為「秒」,您還可以使用字尾 \"m\"(分" +#~ "鐘)、\"h\"(小時)、\"d\"(天)" #~ msgid "" #~ "In periodic mode, it defines the reboot period. In internet mode, it " |