diff options
Diffstat (limited to 'applications/luci-app-watchcat')
38 files changed, 6192 insertions, 1453 deletions
diff --git a/applications/luci-app-watchcat/Makefile b/applications/luci-app-watchcat/Makefile index 58e12ecbf5..c3c7aada9d 100644 --- a/applications/luci-app-watchcat/Makefile +++ b/applications/luci-app-watchcat/Makefile @@ -1,13 +1,9 @@ -# -# Copyright (C) 2008-2014 The LuCI Team <luci@lists.subsignal.org> -# # This is free software, licensed under the Apache License, Version 2.0 . -# include $(TOPDIR)/rules.mk LUCI_TITLE:=LuCI Support for Watchcat -LUCI_DEPENDS:=+luci-compat +watchcat +LUCI_DEPENDS:=+watchcat include ../../luci.mk 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 new file mode 100644 index 0000000000..c3863604f0 --- /dev/null +++ b/applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js @@ -0,0 +1,101 @@ +'use strict'; +'require view'; +'require form'; +'require tools.widgets as widgets'; + +return view.extend({ + render: function () { + var m, s, o; + + m = new form.Map('watchcat', + _('Watchcat'), + _("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.")); + + s = m.section(form.TypedSection, 'watchcat', _('Watchcat'), _('These rules will govern how this device reacts to network events.')); + s.anonymous = true; + s.addremove = true; + + s.tab('general', _('General Settings')); + + o = s.taboption('general', form.ListValue, 'mode', + _('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.")); + o.value('ping_reboot', _('Ping Reboot')); + o.value('periodic_reboot', _('Periodic Reboot')); + o.value('restart_iface', _('Restart Interface')); + + 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. \ + <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.default = '8.8.8.8'; + o.depends({ mode: "ping_reboot" }); + o.depends({ mode: "restart_iface" }); + + o = s.taboption('general', form.Value, 'pingperiod', + _('Check Interval'), + _("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>")); + o.default = '30s'; + o.depends({ mode: "ping_reboot" }); + o.depends({ mode: "restart_iface" }); + + o = s.taboption('general', form.ListValue, 'pingsize', + _('Ping Packet Size')); + o.value('small', _('Small: 1 byte')); + o.value('windows', _('Windows: 32 bytes')); + o.value('standard', _('Standard: 56 bytes')); + o.value('big', _('Big: 248 bytes')); + o.value('huge', _('Huge: 1492 bytes')); + o.value('jumbo', _('Jumbo: 9000 bytes')); + o.default = 'standard'; + o.depends({ mode: 'ping_reboot' }); + o.depends({ mode: 'restart_iface' }); + + o = s.taboption('general', form.Value, 'forcedelay', + _('Force Reboot Delay'), + _("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.")); + o.default = '1m'; + o.depends({ mode: 'ping_reboot' }); + o.depends({ mode: 'periodic_reboot' }); + + 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.')); + o.depends({ mode: 'ping_reboot' }); + o.depends({ mode: 'restart_iface' }); + + o = s.taboption('general', widgets.NetworkSelect, 'mmifacename', + _('Name of ModemManager Interface'), + _("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.")); + o.depends({ mode: 'restart_iface' }); + o.optional = true; + + o = s.taboption('general', form.Flag, 'unlockbands', + _('Unlock Modem Bands'), + _('If using ModemManager, then before restarting the interface, set the modem to be allowed to use any band.')); + o.default = '0'; + o.depends({ mode: 'restart_iface' }); + + return m.render(); + } +}); diff --git a/applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua b/applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua deleted file mode 100644 index f64370bfe3..0000000000 --- a/applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua +++ /dev/null @@ -1,53 +0,0 @@ --- Copyright 2012 Christian Gagneraud <chris@techworks.ie> --- Licensed to the public under the Apache License 2.0. - -m = Map("system", - translate("Watchcat"), - translate("Watchcat allows configuring a periodic reboot when the " .. - "Internet connection has been lost for a certain period of time." - )) - -s = m:section(TypedSection, "watchcat") -s.anonymous = true -s.addremove = true - -mode = s:option(ListValue, "mode", - translate("Operating mode")) -mode.default = "allways" -mode:value("ping", "Reboot on internet connection lost") -mode:value("allways", "Periodic reboot") - -forcedelay = s:option(Value, "forcedelay", - translate("Forced reboot delay"), - translate("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")) -forcedelay.datatype = "uinteger" -forcedelay.default = "0" - -period = s:option(Value, "period", - translate("Period"), - translate("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")) - -pinghost = s:option(Value, "pinghosts", - translate("Ping host"), - translate("Host address to ping")) -pinghost.datatype = "host(1)" -pinghost.default = "8.8.8.8" -pinghost:depends({mode="ping"}) - -pingperiod = s:option(Value, "pingperiod", - translate("Ping period"), - translate("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")) -pingperiod:depends({mode="ping"}) - -return m diff --git a/applications/luci-app-watchcat/po/ar/watchcat.po b/applications/luci-app-watchcat/po/ar/watchcat.po index 952a0ea247..ebb54f9e1b 100644 --- a/applications/luci-app-watchcat/po/ar/watchcat.po +++ b/applications/luci-app-watchcat/po/ar/watchcat.po @@ -1,71 +1,180 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2021-03-07 14:36+0000\n" +"Last-Translator: Said Zakaria <said.zakaria@gmail.com>\n" +"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationswatchcat/ar/>\n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Weblate 4.5.1\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "تحقق الفاصل" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" msgstr "" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "" + +#: 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: 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:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 -#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 -msgid "Watchcat" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +"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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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 +msgid "Unlock Modem Bands" +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 +#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 +msgid "Watchcat" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +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 78dc3e0d04..400895f8f4 100644 --- a/applications/luci-app-watchcat/po/bg/watchcat.po +++ b/applications/luci-app-watchcat/po/bg/watchcat.po @@ -9,62 +9,168 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" msgstr "" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "" + +#: 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "IPv4 address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 -#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 -msgid "Watchcat" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +"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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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 +msgid "Unlock Modem Bands" +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 +#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 +msgid "Watchcat" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +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 88bf2440a5..25b6826657 100644 --- a/applications/luci-app-watchcat/po/bn_BD/watchcat.po +++ b/applications/luci-app-watchcat/po/bn_BD/watchcat.po @@ -9,62 +9,168 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" msgstr "" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "" + +#: 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "IPv4 address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 -#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 -msgid "Watchcat" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +"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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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 +msgid "Unlock Modem Bands" +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 +#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 +msgid "Watchcat" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +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 e7013c5230..588efbe1dd 100644 --- a/applications/luci-app-watchcat/po/ca/watchcat.po +++ b/applications/luci-app-watchcat/po/ca/watchcat.po @@ -1,87 +1,232 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2014-07-01 05:59+0200\n" -"Last-Translator: Alex <alexhenrie24@gmail.com>\n" -"Language-Team: none\n" +"PO-Revision-Date: 2021-03-08 13:03+0000\n" +"Last-Translator: BenRoura <benrouravkg@gmail.com>\n" +"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationswatchcat/ca/>\n" "Language: ca\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: Pootle 2.0.6\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.5.1\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" -msgstr "Retard de reinici forçat" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" +msgstr "Paràmetres generals" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "" + +#: 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" -msgstr "Adreça de host per al ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "IPv4 address or hostname to ping." +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -"Quan sovint que es comprova la connexió a Internet. La unitat per defecte es " -"el segon, podeu utilitzar el sufix 'm' per minuts, 'h' per hores o 'd' per " -"dies." -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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 +msgid "Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" msgstr "" -"En mode periòdic, defineix el període de reinici. En mode de Internet, " -"defineix el període més llarg sense accés al Internet abans que un reinici " -"es comença. La unitat per defecte es el segon, podeu podeu utilitzar el " -"sufix 'm' per minuts, 'h' per hores o 'd' per dies." -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" -msgstr "Mode d'operació" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "Període" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" -msgstr "Host de ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" +msgstr "" + +#: 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." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" -msgstr "Període de ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +msgid "Unlock Modem Bands" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 +#: 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/luasrc/model/cbi/watchcat/watchcat.lua:6 -#, fuzzy -msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +msgid "Windows: 32 bytes" msgstr "" -"El Watchcat permet la configuració d'un reinici periòdic o un reinici quan " -"la connexió d'Internet ha estat perdut fa un cert període de temps." -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 +#~ msgid "Forced reboot delay" +#~ msgstr "Retard de reinici forçat" + +#~ msgid "Host address to ping" +#~ msgstr "Adreça de host per al 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 "" +#~ "Quan sovint que es comprova la connexió a Internet. La unitat per defecte " +#~ "es el segon, podeu utilitzar el sufix 'm' per minuts, 'h' per hores o 'd' " +#~ "per dies." + +#~ 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 "" +#~ "En mode periòdic, defineix el període de reinici. En mode de Internet, " +#~ "defineix el període més llarg sense accés al Internet abans que un " +#~ "reinici es comença. La unitat per defecte es el segon, podeu podeu " +#~ "utilitzar el sufix 'm' per minuts, 'h' per hores o 'd' per dies." + +#~ msgid "Operating mode" +#~ msgstr "Mode d'operació" + +#~ msgid "Ping host" +#~ msgstr "Host de ping" + +#~ msgid "Ping period" +#~ msgstr "Període de ping" + #, 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 "" -"Al reiniciar el sistema, el Watchcat causarà un reinici suau. Introduïu un " -"valor diferent de zero causarà un reinici dur retardat si el reinici suau " -"falla. Introduïu un nombre de segons per a habilitar, utilitzeu 0 per a " -"inhabilitar." +#~ msgid "" +#~ "Watchcat allows configuring a periodic reboot when the Internet " +#~ "connection has been lost for a certain period of time." +#~ msgstr "" +#~ "El Watchcat permet la configuració d'un reinici periòdic o un reinici " +#~ "quan la connexió d'Internet ha estat perdut fa un cert període de temps." + +#, 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 "" +#~ "Al reiniciar el sistema, el Watchcat causarà un reinici suau. Introduïu " +#~ "un valor diferent de zero causarà un reinici dur retardat si el reinici " +#~ "suau falla. Introduïu un nombre de segons per a habilitar, utilitzeu 0 " +#~ "per a inhabilitar." diff --git a/applications/luci-app-watchcat/po/cs/watchcat.po b/applications/luci-app-watchcat/po/cs/watchcat.po index 09da1e80ea..1b72375aa6 100644 --- a/applications/luci-app-watchcat/po/cs/watchcat.po +++ b/applications/luci-app-watchcat/po/cs/watchcat.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-02-02 09:02+0000\n" -"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>\n" +"PO-Revision-Date: 2021-05-07 11:32+0000\n" +"Last-Translator: Adam Salač <adam@salac.me>\n" "Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/" "luciapplicationswatchcat/cs/>\n" "Language: cs\n" @@ -10,77 +10,223 @@ msgstr "" "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 3.11-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" -msgstr "Prodleva nuceného restartu" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "Interval kontroly" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" +msgstr "" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" -msgstr "Adresa zařízení, vůči kterému bude testováno připojení (ping)" +#: 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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" +msgstr "" + +#: 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:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." 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" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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 "" -"Pokud je nastaven periodický režim práce, tak tato hodnota vyjadřuje " -"interval opakování restartu. V 'internetovém' režimu práce hodnota vyjadřuje " -"nejdelší možnou dobu, po kterou smí být zařízení bez připojení k internetu, " -"resp. nastavenému testovacímu zařízení - po jejím uplynutí je proveden " -"automaticky reset. Výchozí jednotkou jsou sekundy, pomocí přípony \"m\" lze " -"nastavit minuty, pomocí \"h\" hodiny a prostřednictvím \"d\" dny" - -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" -msgstr "Režim fungování" - -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +"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 +msgid "Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "Perioda" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" -msgstr "Cílové zařízení příkazu ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" -msgstr "Interval opakování testu ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 +#: 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." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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 +msgid "Unlock Modem Bands" +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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 -msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +msgid "Windows: 32 bytes" msgstr "" -"Nástroj Watchcat umožňuje provést restart zařízení, když ztráta připojení " -"trvá stanovenou dobu, případně restart provádět periodicky vždy." -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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 "" -"Watchcat provádí \"měkký\" restart (hodnota 0). Zadáním nenulové hodnoty " -"nastavíte interval (v sekundách), po kterém bude proveden \"tvrdý\" restart, " -"pokud \"měkký\" restart selhal" +#~ msgid "Forced reboot delay" +#~ msgstr "Prodleva nuceného restartu" + +#~ msgid "Host address to ping" +#~ msgstr "Adresa zařízení, vůči kterému bude testováno připojení (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 "" +#~ "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" + +#~ 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 "" +#~ "Pokud je nastaven periodický režim práce, tak tato hodnota vyjadřuje " +#~ "interval opakování restartu. V 'internetovém' režimu práce hodnota " +#~ "vyjadřuje nejdelší možnou dobu, po kterou smí být zařízení bez připojení " +#~ "k internetu, resp. nastavenému testovacímu zařízení - po jejím uplynutí " +#~ "je proveden automaticky reset. Výchozí jednotkou jsou sekundy, pomocí " +#~ "přípony \"m\" lze nastavit minuty, pomocí \"h\" hodiny a prostřednictvím " +#~ "\"d\" dny" + +#~ msgid "Operating mode" +#~ msgstr "Režim fungování" + +#~ msgid "Ping host" +#~ msgstr "Cílové zařízení příkazu ping" + +#~ msgid "Ping period" +#~ msgstr "Interval opakování testu ping" + +#~ msgid "" +#~ "Watchcat allows configuring a periodic reboot when the Internet " +#~ "connection has been lost for a certain period of time." +#~ msgstr "" +#~ "Nástroj Watchcat umožňuje provést restart zařízení, když ztráta připojení " +#~ "trvá stanovenou dobu, případně restart provádět periodicky vždy." + +#~ 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 "" +#~ "Watchcat provádí \"měkký\" restart (hodnota 0). Zadáním nenulové hodnoty " +#~ "nastavíte interval (v sekundách), po kterém bude proveden \"tvrdý\" " +#~ "restart, pokud \"měkký\" restart selhal" diff --git a/applications/luci-app-watchcat/po/de/watchcat.po b/applications/luci-app-watchcat/po/de/watchcat.po index beb924e0c3..5ea4d7a06f 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: 2020-07-11 21:29+0000\n" -"Last-Translator: ssantos <ssantos@web.de>\n" +"PO-Revision-Date: 2021-03-24 15:29+0000\n" +"Last-Translator: Dirk Brenken <dev@brenken.org>\n" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/" "luciapplicationswatchcat/de/>\n" "Language: de\n" @@ -10,78 +10,225 @@ 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.2-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" -msgstr "Erzwungenen Neustart verzögern um" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" +msgstr "Allgemeine Einstellungen" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" -msgstr "Gewähre UCI Zugriff auf luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "" + +#: 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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" -msgstr "Anzupingende Host-Adresse" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 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" +"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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" msgstr "" -"Wie oft soll die Internetverbindung überprüft werden. Standart-Einheit in " -"Sekunden, kann aber durch angehängtes 'm' in Minuten, 'h' in Stunden und 'd' " -"in Tage geändert werden" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: 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:95 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 "" -"Im periodischen Modus gibt er die Zeitdauer für einen Neustart an. Im " -"Internet-Modus gibt er die längste Zeitdauer ohne Internetzugang an, nach " -"der ein Neustart durchgeführt wird. Voreingestellte Einheit ist Sekunden, " -"Sie können aber die Endungen 'm' für Minuten, 'h' für Stunden und 'd' für " -"Tage benutzen" - -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" -msgstr "Betriebsart" - -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +"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 +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 +msgid "Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "Periode" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" -msgstr "Ping-Host" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" -msgstr "Ping-Zeitdauer" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 +#: 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." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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 +msgid "Unlock Modem Bands" +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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 -msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +msgid "Windows: 32 bytes" msgstr "" -"Watchcat erlaubt die Einstellung eines automatischen Neustarts, wenn die " -"Internetverbindung eine bestimmte Zeitlang ausgefallen ist." -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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 "" -"Bei einem Neustart des Systems wird Watchcat einen Warmstart auslösen, wird " -"hier ein Wert ungleich Null eingegeben, wird ein Kaltstart ausgelöst, sollte " -"der Warmstart fehlschlagen. Geben Sie eine Zahl in Sekunden zur Aktivierung " -"an, 0 schaltet diese Funktion aus" +#~ msgid "Forced reboot delay" +#~ msgstr "Erzwungenen Neustart verzögern um" + +#~ msgid "Grant UCI access for luci-app-watchcat" +#~ msgstr "Gewähre UCI Zugriff auf luci-app-watchcat" + +#~ msgid "Host address to ping" +#~ msgstr "Anzupingende Host-Adresse" + +#~ 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 "" +#~ "Wie oft soll die Internetverbindung überprüft werden. Standart-Einheit in " +#~ "Sekunden, kann aber durch angehängtes 'm' in Minuten, 'h' in Stunden und " +#~ "'d' in Tage geändert werden" + +#~ 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 "" +#~ "Im periodischen Modus gibt er die Zeitdauer für einen Neustart an. Im " +#~ "Internet-Modus gibt er die längste Zeitdauer ohne Internetzugang an, nach " +#~ "der ein Neustart durchgeführt wird. Voreingestellte Einheit ist Sekunden, " +#~ "Sie können aber die Endungen 'm' für Minuten, 'h' für Stunden und 'd' für " +#~ "Tage benutzen" + +#~ msgid "Operating mode" +#~ msgstr "Betriebsart" + +#~ msgid "Ping host" +#~ msgstr "Ping-Host" + +#~ msgid "Ping period" +#~ msgstr "Ping-Zeitdauer" + +#~ msgid "" +#~ "Watchcat allows configuring a periodic reboot when the Internet " +#~ "connection has been lost for a certain period of time." +#~ msgstr "" +#~ "Watchcat erlaubt die Einstellung eines automatischen Neustarts, wenn die " +#~ "Internetverbindung eine bestimmte Zeitlang ausgefallen ist." + +#~ 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 "" +#~ "Bei einem Neustart des Systems wird Watchcat einen Warmstart auslösen, " +#~ "wird hier ein Wert ungleich Null eingegeben, wird ein Kaltstart " +#~ "ausgelöst, sollte der Warmstart fehlschlagen. Geben Sie eine Zahl in " +#~ "Sekunden zur Aktivierung an, 0 schaltet diese Funktion aus" diff --git a/applications/luci-app-watchcat/po/el/watchcat.po b/applications/luci-app-watchcat/po/el/watchcat.po index d23483abef..12722ab783 100644 --- a/applications/luci-app-watchcat/po/el/watchcat.po +++ b/applications/luci-app-watchcat/po/el/watchcat.po @@ -8,62 +8,168 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" msgstr "" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "" + +#: 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "IPv4 address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 -#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 -msgid "Watchcat" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +"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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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 +msgid "Unlock Modem Bands" +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 +#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 +msgid "Watchcat" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +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 ca33d1f7af..ed11054ca8 100644 --- a/applications/luci-app-watchcat/po/en/watchcat.po +++ b/applications/luci-app-watchcat/po/en/watchcat.po @@ -8,75 +8,219 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" -msgstr "Forced reboot delay" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" +msgstr "" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" -msgstr "Host address to ping" +#: 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: 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:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." 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" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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 +msgid "Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" 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" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" -msgstr "Operating mode" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "Period" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" -msgstr "Ping host" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" -msgstr "Ping period" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" +msgstr "" + +#: 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." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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 +msgid "Unlock Modem Bands" +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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 -#, fuzzy -msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +msgid "Windows: 32 bytes" msgstr "" -"Watchcat allows to configure a periodic reboot and/or when internet " -"connection has been lost for a certain period of time." -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 +#~ 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 "" -"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" +#~ 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/es/watchcat.po b/applications/luci-app-watchcat/po/es/watchcat.po index 18f2dcf2a6..9c802ed846 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: 2020-05-02 10:21+0000\n" +"PO-Revision-Date: 2021-05-28 17:32+0000\n" "Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationswatchcat/es/>\n" @@ -11,76 +11,244 @@ 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.1-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" -msgstr "Espera para forzar reinicio" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" +"Se aplica a los modos de reinicio de ping y reinicio periódico</i><br /> Al " +"reiniciar el enrutador, el servicio activará un reinicio suave. Si ingresa " +"un valor distinto de cero aquí, se activará un reinicio completo retrasado " +"si falla el reinicio suave. Ingrese la cantidad de segundos para esperar a " +"que falle el reinicio suave o use 0 para desactivar la demora de reinicio " +"forzado." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "Grande: 248 bytes" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "Revisar Intervalo" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "Forzar Retraso de Reinicio" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" +msgstr "Configuración general" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" -msgstr "Conceder acceso a UCI para luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "Otorgar acceso a la aplicación LuCI watchcat" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" -msgstr "Dirección de host para hacer ping" +#: 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 "" +"Aquí puede configurar varias comprobaciones y acciones para realizar en caso " +"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 +msgid "Host To Check" +msgstr "Host para comprobar" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" +msgstr "Enorme: 1492 bytes" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: 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:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -"Cada cuánto comprobar la conexión a internet. Por defecto son segundos, pero " -"puede añadir 'm' para minutos, 'h' para horas o 'd' para días" +"Si usa ModemManager, antes de reiniciar la interfaz, configure el módem para " +"que pueda usar cualquier banda." -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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 modo periódico, define el período de reinicio. En el modo de Internet, " -"define el período de tiempo más largo sin acceso a Internet antes de iniciar " -"el reinicio. La unidad predeterminada es de segundos, puede usar el sufijo " -"'m' para los minutos, 'h' para las horas o 'd' para los días" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" -msgstr "Modo de operación" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +msgid "Interface" +msgstr "Interfaz" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +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 +msgid "Jumbo: 9000 bytes" +msgstr "Jumbo: 9000 bytes" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "Modo" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "Nombre de la interfaz de ModemManager" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "Período" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" -msgstr "Host al que hacer ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" +msgstr "Reinicio periódico" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" -msgstr "Período de ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" +msgstr "Tamaño del paquete de ping" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 -#: 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:26 +msgid "Ping Reboot" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +"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 "" -"Watchcat permite configurar un reinicio periódico cuando la conexión a " -"Internet se ha perdido durante un cierto período de tiempo." -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "Reiniciar interfaz" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "Pequeño: 1 byte" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "Estándar: 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 "" -"Al reiniciar el sistema, el watchcat activará un reinicio suave. Si ingresa " -"un valor que no sea cero aquí, se iniciará un reinicio con retraso si el " -"reinicio por software falla. Ingrese un número de segundos para activar, use " -"0 para desactivar" +"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 +msgid "Unlock Modem Bands" +msgstr "Desbloquear bandas de módem" + +#: 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:61 +#, 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 Ping Reboot y Restart Interface</i> " +#~ "<br>Especifique la interfaz para monitorear y reiniciar si falla un ping " +#~ "sobre ella." + +#~ msgid "Forced reboot delay" +#~ msgstr "Espera para forzar reinicio" + +#~ msgid "Grant UCI access for luci-app-watchcat" +#~ msgstr "Conceder acceso a UCI para luci-app-watchcat" + +#~ msgid "Host address to ping" +#~ msgstr "Dirección de host para hacer 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 "" +#~ "Cada cuánto comprobar la conexión a internet. Por defecto son segundos, " +#~ "pero puede añadir 'm' para minutos, 'h' para horas o 'd' para días" + +#~ 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 "" +#~ "En modo periódico, define el período de reinicio. En el modo de Internet, " +#~ "define el período de tiempo más largo sin acceso a Internet antes de " +#~ "iniciar el reinicio. La unidad predeterminada es de segundos, puede usar " +#~ "el sufijo 'm' para los minutos, 'h' para las horas o 'd' para los días" + +#~ msgid "Operating mode" +#~ msgstr "Modo de operación" + +#~ msgid "Ping host" +#~ msgstr "Host al que hacer ping" + +#~ msgid "Ping period" +#~ msgstr "Período de ping" + +#~ msgid "" +#~ "Watchcat allows configuring a periodic reboot when the Internet " +#~ "connection has been lost for a certain period of time." +#~ msgstr "" +#~ "Watchcat permite configurar un reinicio periódico cuando la conexión a " +#~ "Internet se ha perdido durante un cierto período de tiempo." + +#~ 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 "" +#~ "Al reiniciar el sistema, el watchcat activará un reinicio suave. Si " +#~ "ingresa un valor que no sea cero aquí, se iniciará un reinicio con " +#~ "retraso si el reinicio por software falla. Ingrese un número de segundos " +#~ "para activar, use 0 para desactivar" diff --git a/applications/luci-app-watchcat/po/fi/watchcat.po b/applications/luci-app-watchcat/po/fi/watchcat.po index af423ba69f..606e6e14e8 100644 --- a/applications/luci-app-watchcat/po/fi/watchcat.po +++ b/applications/luci-app-watchcat/po/fi/watchcat.po @@ -9,62 +9,168 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" msgstr "" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "" + +#: 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "IPv4 address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 -#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 -msgid "Watchcat" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +"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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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 +msgid "Unlock Modem Bands" +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 +#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 +msgid "Watchcat" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +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 e3844a470d..11ce878741 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: 2020-06-25 19:08+0000\n" -"Last-Translator: viking76 <liaudetgael@gmail.com>\n" +"PO-Revision-Date: 2021-04-11 16:26+0000\n" +"Last-Translator: SRay <seb@isostorm.com>\n" "Language-Team: French <https://hosted.weblate.org/projects/openwrt/" "luciapplicationswatchcat/fr/>\n" "Language: fr\n" @@ -10,78 +10,225 @@ 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.2-dev\n" +"X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" -msgstr "Délai pour le reboot forcé" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" +msgstr "Paramètres généraux" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" -msgstr "Accorder l'accès UCI à luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" -msgstr "Adresse hôte à envoyer au ping" +#: 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: 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:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -"La fréquence de vérification de la connexion Internet. 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" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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 "" -"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" - -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" -msgstr "Mode de fonctionnement" - -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +"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 +msgid "Interface" +msgstr "Interface" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "" + +#: 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 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "Période" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" -msgstr "Hôte destinataire du ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" +msgstr "" + +#: 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." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" -msgstr "Période Ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +msgid "Unlock Modem Bands" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 +#: 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/luasrc/model/cbi/watchcat/watchcat.lua:6 -msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +msgid "Windows: 32 bytes" msgstr "" -"Watchcat permet de configurer un redémarrage périodique lorsque la connexion " -"Internet a été perdue pendant un certain temps." -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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 "" -"Lors du redémarrage du système, le watchcat déclenche un soft reboot. " -"L'entrée d'une valeur non nulle ici déclenchera un hard reboot retardé si le " -"soft reboot échoue. Entrez un nombre de secondes pour activer, utilisez 0 " -"pour désactiver" +#~ msgid "Forced reboot delay" +#~ msgstr "Délai pour le reboot forcé" + +#~ msgid "Grant UCI access for luci-app-watchcat" +#~ msgstr "Accorder l'accès UCI à luci-app-watchcat" + +#~ msgid "Host address to ping" +#~ msgstr "Adresse hôte à envoyer au 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 "" +#~ "La fréquence de vérification de la connexion Internet. 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" + +#~ 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 "" +#~ "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" + +#~ msgid "Operating mode" +#~ msgstr "Mode de fonctionnement" + +#~ msgid "Ping host" +#~ msgstr "Hôte destinataire du ping" + +#~ msgid "Ping period" +#~ msgstr "Période Ping" + +#~ msgid "" +#~ "Watchcat allows configuring a periodic reboot when the Internet " +#~ "connection has been lost for a certain period of time." +#~ msgstr "" +#~ "Watchcat permet de configurer un redémarrage périodique lorsque la " +#~ "connexion Internet a été perdue pendant un certain temps." + +#~ 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 "" +#~ "Lors du redémarrage du système, le watchcat déclenche un soft reboot. " +#~ "L'entrée d'une valeur non nulle ici déclenchera un hard reboot retardé si " +#~ "le soft reboot échoue. Entrez un nombre de secondes pour activer, " +#~ "utilisez 0 pour désactiver" diff --git a/applications/luci-app-watchcat/po/he/watchcat.po b/applications/luci-app-watchcat/po/he/watchcat.po index d23483abef..12722ab783 100644 --- a/applications/luci-app-watchcat/po/he/watchcat.po +++ b/applications/luci-app-watchcat/po/he/watchcat.po @@ -8,62 +8,168 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" msgstr "" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "" + +#: 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "IPv4 address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 -#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 -msgid "Watchcat" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +"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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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 +msgid "Unlock Modem Bands" +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 +#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 +msgid "Watchcat" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +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 f9a0dcfb72..2f564d0283 100644 --- a/applications/luci-app-watchcat/po/hi/watchcat.po +++ b/applications/luci-app-watchcat/po/hi/watchcat.po @@ -9,62 +9,168 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" msgstr "" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "" + +#: 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "IPv4 address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 -#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 -msgid "Watchcat" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +"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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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 +msgid "Unlock Modem Bands" +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 +#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 +msgid "Watchcat" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +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 82ac4c15a6..a0162997cc 100644 --- a/applications/luci-app-watchcat/po/hu/watchcat.po +++ b/applications/luci-app-watchcat/po/hu/watchcat.po @@ -11,70 +11,203 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.6\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" -msgstr "Kényszerített újraindítás késleltetése" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" +msgstr "" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -#, fuzzy -msgid "Host address to ping" -msgstr "Pingelendő szerver címe" +#: 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" +msgstr "" + +#: 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:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -"Internet kapcsolat ellenőrzésének gyakorisága. Alapértelmezett egység a " -"másodperc, percekhez használd az 'm', órákhoz a 'h', vagy napokhoz a 'd' " -"utótagot." -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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 +msgid "Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" msgstr "" -"Periodikus üzemmódban ez határozza meg az újraindítás gyakoriságát. Internet " -"üzemmódban meghatározza a leghosszabb időt újraindításig, amikor nincs " -"internet kapcsolat. Alapértelmezett egység a másodperc, percekhez használd " -"az 'm', órákhoz a 'h', vagy napokhoz a 'd' utótagot." -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" -msgstr "Üzemmód" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "Periódus" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" -msgstr "Ping címe" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" -msgstr "Pingelések közti idő" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 -#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 -msgid "Watchcat" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +"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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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 +msgid "Unlock Modem Bands" +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 +#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 +msgid "Watchcat" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +msgid "Windows: 32 bytes" +msgstr "" + +#~ msgid "Forced reboot delay" +#~ msgstr "Kényszerített újraindítás késleltetése" + +#, fuzzy +#~ msgid "Host address to ping" +#~ msgstr "Pingelendő szerver címe" + +#~ 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 "" +#~ "Internet kapcsolat ellenőrzésének gyakorisága. Alapértelmezett egység a " +#~ "másodperc, percekhez használd az 'm', órákhoz a 'h', vagy napokhoz a 'd' " +#~ "utótagot." + +#~ 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 "" +#~ "Periodikus üzemmódban ez határozza meg az újraindítás gyakoriságát. " +#~ "Internet üzemmódban meghatározza a leghosszabb időt újraindításig, amikor " +#~ "nincs internet kapcsolat. Alapértelmezett egység a másodperc, percekhez " +#~ "használd az 'm', órákhoz a 'h', vagy napokhoz a 'd' utótagot." + +#~ msgid "Operating mode" +#~ msgstr "Üzemmód" + +#~ msgid "Ping host" +#~ msgstr "Ping címe" + +#~ msgid "Ping period" +#~ msgstr "Pingelések közti idő" diff --git a/applications/luci-app-watchcat/po/it/watchcat.po b/applications/luci-app-watchcat/po/it/watchcat.po index bc3eab73fb..cb736781ce 100644 --- a/applications/luci-app-watchcat/po/it/watchcat.po +++ b/applications/luci-app-watchcat/po/it/watchcat.po @@ -1,88 +1,182 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2013-02-03 14:12+0200\n" -"Last-Translator: Francesco <3gasas@gmail.com>\n" -"Language-Team: none\n" +"PO-Revision-Date: 2021-03-15 10:03+0000\n" +"Last-Translator: Giovanni Giacobbi <giovanni@giacobbi.net>\n" +"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationswatchcat/it/>\n" "Language: it\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: Pootle 2.0.6\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" -msgstr "Ritardo riavvio forzato" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" +msgstr "Impostazioni Generali" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" -msgstr "Indirizzo dell'host da pingare" +#: 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" +msgstr "" + +#: 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:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -"Ogni quanto si vuole controllare la connessione. Di default espresso in " -"secondi, puoi usare il sufisso 'm' per i minuti, 'h' per le ore o 'd' per i " -"giorni" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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 modalità periodica, definisce il periodo di riavvio. In modalità " -"internet, definisce il più lungo periodo del tempo senza connessione " -"internet prima di un riavvio è pianificato. L'unità predefinita è in " -"secondi, si può usare il suffisso 'm' per i minuti, 'h' per le ore o 'd' per " -"i giorni." - -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" -msgstr "Modalità" - -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +"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 +msgid "Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "Periodo" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" -msgstr "Ping host" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" +msgstr "" + +#: 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." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" -msgstr "Periodo del Ping" +#: 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/luasrc/model/cbi/watchcat/watchcat.lua:5 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +msgid "Unlock Modem Bands" +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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 -#, fuzzy -msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +msgid "Windows: 32 bytes" msgstr "" -"Watchcat ti permette di configurare un riavvio periodico quando la " -"connessione a internet è stata persa per un certo periodo." -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -#, 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 "" -"Quando watchcat vuole riavviare il sistema usa un soft reboot, immetendo un " -"valore diverso da 0 in questo campo il proverà un hard reboot se il soft " -"reboot fallisce. Inserire un numero espresso in secondi per abilitare, usa 0 " -"per disabilitare" +#~ msgid "Grant UCI access for luci-app-watchcat" +#~ msgstr "Concedi accesso UCI per luci-app-watchcat" diff --git a/applications/luci-app-watchcat/po/ja/watchcat.po b/applications/luci-app-watchcat/po/ja/watchcat.po index 1a44e5284f..117d9550f2 100644 --- a/applications/luci-app-watchcat/po/ja/watchcat.po +++ b/applications/luci-app-watchcat/po/ja/watchcat.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-06-14 14:42+0000\n" +"PO-Revision-Date: 2021-03-31 12:26+0000\n" "Last-Translator: Satoru Yoshida <ramat@ram.ne.jp>\n" "Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationswatchcat/ja/>\n" @@ -10,70 +10,222 @@ 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.1-dev\n" +"X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" -msgstr "強制再起動遅延時間" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "チェック間隔" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" +msgstr "一般設定" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" -msgstr "luci-app-watchcat に UCI アクセスを許可" +msgid "Grant access to LuCI app watchcat" +msgstr "" + +#: 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" -msgstr "ping するホスト・アドレス" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "IPv4 address or hostname to ping." +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 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 "インターネット接続を確認する頻度。 デフォルトの単位は秒です。分には 'm'、時間には 'h' 、日には 'd' という接尾辞を使用できます" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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 +msgid "Interface" +msgstr "インターフェース" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" msgstr "" -"定期動作モードの場合、再起動する周期を設定します。インターネットモードの場" -"合、インターネット接続が切断状態にある許容する期間を設定します。標準の単位は" -"秒ですが、'm'を接尾に付けると分、'h'を付けると時、'd'を付けると日数に設定され" -"ます。" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" -msgstr "動作モード" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "モード" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "周期" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" -msgstr "Ping 宛先ホスト" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" +msgstr "" + +#: 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." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" -msgstr "Ping 間隔" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +msgid "Unlock Modem Bands" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 +#: 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/luasrc/model/cbi/watchcat/watchcat.lua:6 -msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." -msgstr "Watchcat を使用すると、インターネット接続が一定期間失われた場合に、定期的な再起動を構成できます。" - -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +msgid "Windows: 32 bytes" msgstr "" -"システムを再起動すると、watchcat はソフト再起動をトリガーします。 ここに 0 " -"以外の値を入力すると、ソフト再起動が失敗した場合に遅延ハード再起動がトリガーされます。 有効にするには秒数を入力し、無効にするには 0 を使用します" + +#~ msgid "Forced reboot delay" +#~ msgstr "強制再起動遅延時間" + +#~ msgid "Grant UCI access for luci-app-watchcat" +#~ msgstr "luci-app-watchcatにUCIアクセスを許可" + +#~ msgid "Host address to ping" +#~ msgstr "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 "" +#~ "インターネット接続を確認する頻度。 デフォルトの単位は秒です。分には 'm'、" +#~ "時間には 'h' 、日には 'd' という接尾辞を使用できます" + +#~ 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 "" +#~ "定期動作モードの場合、再起動する周期を設定します。インターネットモードの場" +#~ "合、インターネット接続が切断状態にある許容する期間を設定します。初期設定の" +#~ "単位は秒ですが、'm'を接尾に付けると分、'h'を付けると時、'd'を付けると日数" +#~ "に設定されます" + +#~ msgid "Operating mode" +#~ msgstr "動作モード" + +#~ msgid "Ping host" +#~ msgstr "Ping 宛先ホスト" + +#~ msgid "Ping period" +#~ msgstr "Ping 間隔" + +#~ msgid "" +#~ "Watchcat allows configuring a periodic reboot when the Internet " +#~ "connection has been lost for a certain period of time." +#~ msgstr "" +#~ "Watchcat を使用すると、インターネット接続が一定期間失われた場合に、定期的" +#~ "な再起動を構成できます。" + +#~ 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 "" +#~ "システムを再起動すると、watchcat はソフト再起動をトリガーします。 ここに " +#~ "0 以外の値を入力すると、ソフト再起動が失敗した場合に遅延ハード再起動がトリ" +#~ "ガーされます。 有効にするには秒数を入力し、無効にするには 0 を使用します" diff --git a/applications/luci-app-watchcat/po/ko/watchcat.po b/applications/luci-app-watchcat/po/ko/watchcat.po index c3a831056f..4110d8f4a1 100644 --- a/applications/luci-app-watchcat/po/ko/watchcat.po +++ b/applications/luci-app-watchcat/po/ko/watchcat.po @@ -1,70 +1,179 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2021-03-21 14:31+0000\n" +"Last-Translator: asdf1234 <cydyellowgreen@gmail.com>\n" +"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationswatchcat/ko/>\n" "Language: ko\n" "MIME-Version: 1.0\n" "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" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" msgstr "" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" +msgstr "기본 설정" + #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "" + +#: 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: 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:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 -#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 -msgid "Watchcat" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +"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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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 +msgid "Unlock Modem Bands" +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 +#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 +msgid "Watchcat" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +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 5bea96a3e9..383778d47c 100644 --- a/applications/luci-app-watchcat/po/mr/watchcat.po +++ b/applications/luci-app-watchcat/po/mr/watchcat.po @@ -12,62 +12,174 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" -msgstr "सक्तीने रीबूट विलंब" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" +msgstr "" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "" + +#: 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" -msgstr "पिंग होस्ट पत्ता" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "IPv4 address or hostname to ping." +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 -#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 -msgid "Watchcat" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +"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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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 +msgid "Unlock Modem Bands" +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 +#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 +msgid "Watchcat" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +msgid "Windows: 32 bytes" +msgstr "" + +#~ msgid "Forced reboot delay" +#~ msgstr "सक्तीने रीबूट विलंब" + +#~ msgid "Host address to ping" +#~ msgstr "पिंग होस्ट पत्ता" diff --git a/applications/luci-app-watchcat/po/ms/watchcat.po b/applications/luci-app-watchcat/po/ms/watchcat.po index 237618384f..a6ede3d7c3 100644 --- a/applications/luci-app-watchcat/po/ms/watchcat.po +++ b/applications/luci-app-watchcat/po/ms/watchcat.po @@ -7,62 +7,168 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" msgstr "" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "" + +#: 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "IPv4 address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 -#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 -msgid "Watchcat" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +"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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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 +msgid "Unlock Modem Bands" +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 +#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 +msgid "Watchcat" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +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 d23483abef..e613fced5d 100644 --- a/applications/luci-app-watchcat/po/nb_NO/watchcat.po +++ b/applications/luci-app-watchcat/po/nb_NO/watchcat.po @@ -1,69 +1,193 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2021-02-27 05:11+0000\n" +"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n" +"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationswatchcat/nb_NO/>\n" +"Language: nb_NO\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" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.5\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" msgstr "" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "" + +#: 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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 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" +"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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" +msgstr "" + +#: 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:95 +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 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" +"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 +msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 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/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 -#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 -msgid "Watchcat" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +"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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" msgstr "" + +#: 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 +msgid "Unlock Modem Bands" +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 +#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 +msgid "Watchcat" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +msgid "Windows: 32 bytes" +msgstr "" +"Ved omstart av systemet vil watchcat utløse en myk omstart. Å skrive inn et " +"tall annet enn null her vil utløse en forsinket hard omstart hvis den mye " +"misslykkes. Skriv inn antall sekunder for å skru på, og 0 for å skru av." + +#~ msgid "Forced reboot delay" +#~ msgstr "Påtvingt omstartsforsinkelse" + +#~ msgid "Grant UCI access for luci-app-watchcat" +#~ msgstr "Innvilg UCI-tilgang for luci-app-watchcat" + +#~ msgid "Operating mode" +#~ msgstr "Driftsmodus" diff --git a/applications/luci-app-watchcat/po/pl/watchcat.po b/applications/luci-app-watchcat/po/pl/watchcat.po index 13643dd322..9da09b60ae 100644 --- a/applications/luci-app-watchcat/po/pl/watchcat.po +++ b/applications/luci-app-watchcat/po/pl/watchcat.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-05-02 15:56+0000\n" -"Last-Translator: Marcin Net <marcin.net@linux.pl>\n" +"PO-Revision-Date: 2021-05-27 16:32+0000\n" +"Last-Translator: Matthaiks <kitynska@gmail.com>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationswatchcat/pl/>\n" "Language: pl\n" @@ -11,76 +11,343 @@ 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.1-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" -msgstr "Wymuszone opóźnienie restartu" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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ę." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" +"Dotyczy trybów ponownego uruchamiania 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 +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 /> " +"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 +msgid "Big: 248 bytes" +msgstr "Duży: 248 bajtów" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "Interwał sprawdzania" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "Wymuś opóźnienie restartu" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" +msgstr "Ustawienia główne" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" -msgstr "Udziel dostępu UCI do luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "Udziel dostępu LuCI do aplikacji watchcat" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" -msgstr "Adres hosta do pingowania" +#: 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 "" +"Tutaj możesz skonfigurować kilka kontroli i działań, które należy podjąć w " +"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/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "Host do sprawdzenia" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 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" +"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 "" -"Jak często sprawdzać połączenie internetowe. Domyślną jednostką jest " -"sekunda, można także użyć 'm' dla minut, 'h' dla godzin lub 'd' dla dni" +"Jak często pingować podany powyżej host. <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> dla dni. <br /><br /> Przykłady:<ul><li>10 " +"sekund to: <b>10</b> lub <b>10s</b></li><li>5 minut byłoby: <b>5m</b></" +"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 +msgid "Huge: 1492 bytes" +msgstr "Ogromny: 1492 bajtów" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: 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:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -"W trybie okresowym, określa to restart. W trybie internetowym, określa " -"najdłuższy okres czasu bez dostępu do internetu przed restartem. Domyślną " -"jednostką jest sekunda, można także użyć 'm' dla minut, 'h' dla godzin lub " -"'d' dla dni" +"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 +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>" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +msgid "Interface" +msgstr "Interfejs" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" -msgstr "Tryb pracy" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "Interfejs do monitorowania i/lub restartu" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "Jumbo: 9000 bajtów" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "Tryb" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "Nazwa interfejsu ModemManager" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "Okres" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" -msgstr "Host do pingowania" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" +msgstr "Restart okresowy" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" -msgstr "Czas pomiędzy wysyłaniem pingów" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" +msgstr "Rozmiar pakietu ping" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 -#: 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:26 +msgid "Ping Reboot" +msgstr "Restart na podstawie pingu" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +"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 "" -"Watchcat pozwala na skonfigurowanie okresowych restartów, jeśli połączenie " -"internetowe zostanie utracone na określony czas." +"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." -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "Restart interfejsu" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "Mały: 1 bajt" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "Standard: 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 "" -"Restart routera Watchcat wykonuje za pomocą tzw. \"miękkiego restartu\". " -"Wpisując tutaj wartość niezerową, wymusimy \"twardy restart\", jeśli " -"\"miękki restart\" się nie powiedzie. Podaj czas w sekundach lub wpisz 0 " -"(zero), aby wyłączyć restarty" +"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 +msgid "Unlock Modem Bands" +msgstr "Odblokuj pasma modemu" + +#: 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:61 +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 Ping Restart i Restartuj Interfejs</i><br>Określ " +#~ "interfejs do monitorowania i ponownego uruchomienia w przypadku " +#~ "niepowodzenia polecenia ping." + +#~ 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 "" +#~ "Dotyczy trybów Ping Restart i Okresowy Restart.</i><br>Po ponownym " +#~ "uruchomieniu routera usługa wyzwoli miękki restart. Wprowadzenie wartości " +#~ "niezerowej w tym miejscu spowoduje opóźniony twardy restart, jeśli miękki " +#~ "restart się nie powiedzie. Wprowadź liczbę sekund oczekiwania na " +#~ "niepowodzenie miękkiego ponownego uruchomienia lub użyj 0, aby wyłączyć " +#~ "wymuszone opóźnienie ponownego uruchomienia." + +#~ 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 Ping Restart i Restartuj Interfejs</i><br>Jeśli używasz " +#~ "ModemManager, możesz uruchomić program Watchcat z interfejsem " +#~ "ModemManger, podając jego nazwę." + +#~ 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 "" +#~ "Jak często pingować podany wyżej host.<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 byłoby:<b>5m</b></li><li>1 godzina " +#~ "byłaby:<b>1h</b></li><li>1 tydzień wynosiłby:<b>7d</b></li><ul>" + +#~ 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 restartu określa, jak często należy ponownie " +#~ "uruchomić komputer. <br>W trybie restartu ping definiuje najdłuższy okres " +#~ "czasu bez odpowiedzi od hosta, aby sprawdzić przed uruchomieniem " +#~ "komputera. <br>W trybie restartu sieci definiuje najdłuższy okres czasu " +#~ "bez odpowiedzi od hosta do sprawdzenia przed ponownym uruchomieniem " +#~ "interfejsu. <br><br>Wyłączna jednostka to sekundy, bez sufiksu, ale można " +#~ "użyć sufiksu <b>m</b> przez minuty, <b>h</b> godzinami lub <b>d</b> przez " +#~ "kilka dni. <br><br>Wynik: <ul><li>10 sekund: <b>10</b> lub <b>10s</b></" +#~ "li><li>5 minut: <b>5m</b></li><li> 1 godzina będzie: <b>1h</b></li><li>1 " +#~ "tydzień będzie: <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 Restart: Ponowne uruchomienie urządzenia, jeśli ping do określonego " +#~ "hosta nie powiedzie się przez określony czas.<br>Okresowe ponowne " +#~ "uruchamianie: Ponowne uruchomienie urządzenia po określonym odstępie " +#~ "czasu.<br>Restart interfejsu: Zrestartuj interfejs sieciowy, jeśli ping " +#~ "do określonego hosta nie powiedzie się przez określony czas." + +#~ msgid "Forced reboot delay" +#~ msgstr "Wymuszone opóźnienie restartu" + +#~ msgid "Grant UCI access for luci-app-watchcat" +#~ msgstr "Udziel dostępu UCI do luci-app-watchcat" + +#~ msgid "Host address to ping" +#~ msgstr "Adres hosta do pingowania" + +#~ 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 "" +#~ "Jak często sprawdzać połączenie internetowe. Domyślną jednostką jest " +#~ "sekunda, można także użyć 'm' dla minut, 'h' dla godzin lub 'd' dla dni" + +#~ 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 "" +#~ "W trybie okresowym, określa to restart. W trybie internetowym, określa " +#~ "najdłuższy okres czasu bez dostępu do internetu przed restartem. Domyślną " +#~ "jednostką jest sekunda, można także użyć 'm' dla minut, 'h' dla godzin " +#~ "lub 'd' dla dni" + +#~ msgid "Operating mode" +#~ msgstr "Tryb pracy" + +#~ msgid "Ping host" +#~ msgstr "Host do pingowania" + +#~ msgid "Ping period" +#~ msgstr "Czas pomiędzy wysyłaniem pingów" + +#~ msgid "" +#~ "Watchcat allows configuring a periodic reboot when the Internet " +#~ "connection has been lost for a certain period of time." +#~ msgstr "" +#~ "Watchcat pozwala na skonfigurowanie okresowych restartów, jeśli " +#~ "połączenie internetowe zostanie utracone na określony czas." + +#~ 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 "" +#~ "Restart routera Watchcat wykonuje za pomocą tzw. \"miękkiego restartu\". " +#~ "Wpisując tutaj wartość niezerową, wymusimy \"twardy restart\", jeśli " +#~ "\"miękki restart\" się nie powiedzie. Podaj czas w sekundach lub wpisz 0 " +#~ "(zero), aby wyłączyć restarty" diff --git a/applications/luci-app-watchcat/po/pt/watchcat.po b/applications/luci-app-watchcat/po/pt/watchcat.po index bd8b8c9c26..e8b69730a3 100644 --- a/applications/luci-app-watchcat/po/pt/watchcat.po +++ b/applications/luci-app-watchcat/po/pt/watchcat.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-05-02 10:21+0000\n" +"PO-Revision-Date: 2021-06-13 21:32+0000\n" "Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationswatchcat/pt/>\n" @@ -10,76 +10,270 @@ 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.1-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" -msgstr "Atraso forçado para a reinicialização" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" +"Se aplica aos modos ping reboot e a reinicialização periódica</i> <br /> Ao " +"reiniciar o roteador o serviço acionará uma reinicialização suave. Inserindo " +"um valor diferente de zero aqui desencadeará uma reinicialização completa " +"com atraso caso a reinicialização suave falhe. Insira a quantidade em " +"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 +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 aplica aos modos ping reboot e os modos de reinicialização da interface</" +"i> <br /> Caso esteja a usar o ModemManager, será possível fazer com que o " +"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 +msgid "Big: 248 bytes" +msgstr "Grande: 248 bytes" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "Intervalo de verificação" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "Atraso da reinicialização forçada" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" +msgstr "Configurações gerais" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" -msgstr "Conceder acesso UCI ao luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "Conceda à app watchcat o acesso ao LuCI" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" -msgstr "Endereço de host para ping" +#: 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 "" +"Aqui é possível configurar várias verificações e ações que serão tomadas " +"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 +msgid "Host To Check" +msgstr "O host que será verificado" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" +"Quantas vezes pingar o host definido acima. <br /><br />A unidade padrão é " +"de segundos, sem um 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 /> 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/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +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:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -"A frequência de verificar a ligação à Internet. A unidade padrão é segundos, " -"pode usar o sufixo 'm' para minutos, 'h' para horas ou 'd' para dias" +"Caso use o ModemManager antes de reiniciar a interface, defina o modem para " +"poder utilizar qualquer banda." -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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 periódico, define o período de reinicialização. No modo Internet, " -"define o período mais longo sem acesso à Internet antes da reinicialização. " -"A unidade predefinida é segundos, pode utilizar o sufixo 'm' para minutos, " -"'h' para horas ou 'd' para dias" +"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 +msgid "Interface" +msgstr "Interface" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +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 +msgid "Jumbo: 9000 bytes" +msgstr "Jumbo: 9000 bytes" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "Modo" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" -msgstr "Modo de operação" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "Nome da interface do ModemManager" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "Periodo" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" -msgstr "Pingar host" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" +msgstr "Reinício periódico" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" -msgstr "Periodo de ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" +msgstr "Tamanho do Pacote Ping" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" +msgstr "Reiniciar com Ping" + +#: 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." +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 +msgid "Restart Interface" +msgstr "Interface de reinicialização" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "Pequeno: 1 byte" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "Padrão: 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 "Essas regras regem como este aparelho reage aos eventos de rede." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +msgid "Unlock Modem Bands" +msgstr "Desbloqueie as bandas do 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 "Watchcat" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 -msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." -msgstr "" -"O Watchcat permite configurar uma reinicialização periódica quando a conexão " -"com a Internet tiver sido perdida por um determinado período." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +msgid "Windows: 32 bytes" +msgstr "Windows: 32 bytes" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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 "" -"Ao reiniciar o sistema, o watchcat acionará uma reinicialização suave. " -"Introduzir um valor diferente de zero aqui irá acionar uma reinicialização " -"rígida retardada se a reinicialização suave falhar. Digite um número de " -"segundos para habilitar, use 0 para desativar" +#~ 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>Aplica-se aos modos Reiniciar com Ping e Reiniciar a Interface</i> " +#~ "<br>Defina a interface para monitorar e reiniciar se um ping falhar sobre " +#~ "ele." + +#~ msgid "Forced reboot delay" +#~ msgstr "Atraso forçado para a reinicialização" + +#~ msgid "Grant UCI access for luci-app-watchcat" +#~ msgstr "Conceder acesso UCI ao luci-app-watchcat" + +#~ msgid "Host address to ping" +#~ msgstr "Endereço de host para 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 "" +#~ "A frequência de verificar a ligação à Internet. A unidade padrão é " +#~ "segundos, pode usar o sufixo 'm' para minutos, 'h' para horas ou 'd' para " +#~ "dias" + +#~ 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 "" +#~ "No modo periódico, define o período de reinicialização. No modo Internet, " +#~ "define o período mais longo sem acesso à Internet antes da " +#~ "reinicialização. A unidade predefinida é segundos, pode utilizar o sufixo " +#~ "'m' para minutos, 'h' para horas ou 'd' para dias" + +#~ msgid "Operating mode" +#~ msgstr "Modo de operação" + +#~ msgid "Ping host" +#~ msgstr "Pingar host" + +#~ msgid "Ping period" +#~ msgstr "Periodo de ping" + +#~ msgid "" +#~ "Watchcat allows configuring a periodic reboot when the Internet " +#~ "connection has been lost for a certain period of time." +#~ msgstr "" +#~ "O Watchcat permite configurar uma reinicialização periódica quando a " +#~ "conexão com a Internet tiver sido perdida por um determinado período." + +#~ 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 "" +#~ "Ao reiniciar o sistema, o watchcat acionará uma reinicialização suave. " +#~ "Introduzir um valor diferente de zero aqui irá acionar uma " +#~ "reinicialização rígida retardada se a reinicialização suave falhar. " +#~ "Digite uma quantidade de segundos para ativar, use 0 para desativar" diff --git a/applications/luci-app-watchcat/po/pt_BR/watchcat.po b/applications/luci-app-watchcat/po/pt_BR/watchcat.po index 8dbb21c08b..a15cd92290 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: 2020-05-02 10:21+0000\n" +"PO-Revision-Date: 2021-05-27 16:32+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,77 +11,345 @@ 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.1-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" -msgstr "Atraso para reinício forçado" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" +"Se aplica aos modos ping reboot e a reinicialização periódica</i> <br /> Ao " +"reiniciar o roteador o serviço acionará uma reinicialização suave. Inserindo " +"um valor diferente de zero aqui desencadeará uma reinicialização completa " +"com atraso caso a reinicialização suave falhe. Insira o número em 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 +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 aplica aos modos ping reboot e os modos de reinicialização da interface</" +"i> <br /> Caso esteja usando o ModemManager, será possível fazer com que o " +"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 +msgid "Big: 248 bytes" +msgstr "Grande: 248 bytes" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "Intervalo de verificação" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "Atraso da reinicialização forçada" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" +msgstr "Configurações gerais" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" -msgstr "Conceda acesso UCI ao luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "Conceda ao aplicativo watchcat o acesso ao LuCI" + +#: 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 "" +"Aqui é possível configurar várias verificações e ações que serão tomadas " +"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 +msgid "Host To Check" +msgstr "O host que será verificado" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" +"Quantas vezes pingar o host definido acima. <br /><br />A unidade padrão é " +"de segundos, sem um 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 /> 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:64 +msgid "Huge: 1492 bytes" +msgstr "Enorme: 1492 bytes" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" -msgstr "Endereço do equipamento para efetuar o PING" +#: 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/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -"Com qual frequência deve verificar a conexão com a Internet. A unidade " -"padrão é segundos, mas você pode usar o sufixo 'm' para minutos, 'h' para " -"horas ou 'd' para dias" +"Caso use o ModemManager antes de reiniciar a interface, defina o modem para " +"poder utilizar qualquer banda." -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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 periódico, é definido o período para se reiniciar. No modo Internet, " -"é definido o maior período de tempo sem acesso à Internet até que um " -"reinício seja realizado. A unidade padrão é segundos, mas você pode usar o " -"sufixo 'm' para minutos, 'h' para horas ou 'd' para dias" +"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/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" -msgstr "Modo de Operação" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +msgid "Interface" +msgstr "Interface" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +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 +msgid "Jumbo: 9000 bytes" +msgstr "Jumbo: 9000 bytes" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "Modo" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "Nome da interface do ModemManager" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "Período" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" -msgstr "Pingar Máquina" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" +msgstr "Reinício periódico" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" +msgstr "Tamanho do Pacote Ping" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" +msgstr "Reiniciar com Ping" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" -msgstr "Período de ping" +#: 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." +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 +msgid "Restart Interface" +msgstr "Interface de reinicialização" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "Pequeno: 1 byte" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "Padrão: 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 "Essas regras regem como este dispositivo reage aos eventos de rede." + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +msgid "Unlock Modem Bands" +msgstr "Desbloqueie as bandas do modem" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 +#: 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/luasrc/model/cbi/watchcat/watchcat.lua:6 -msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." -msgstr "" -"Watchcat permite a configuração de um período para reiniciar e/ou quando a " -"conexão com à Internet foi perdida por um ser período de tempo." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +msgid "Windows: 32 bytes" +msgstr "Windows: 32 bytes" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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 "" -"Ao reiniciar o sistema, o watchcat vai acionar uma reinicialização suave. " -"Inserir um valor não zero aqui irá acionar uma reinicialização forçada " -"atrasada se a reinicialização suave falhar. Digite um número de segundos " -"para habilitar, use 0 para desabilitar" +#~ 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>Aplica-se para os modos Reiniciar com Ping e Reiniciar a Interface</i> " +#~ "<br>Defina a interface para monitorar e reinicie se um ping sobre ele " +#~ "falhar." + +#~ 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 "" +#~ "Aplica-se aos modos Reiniciar com Ping e Reinicialização Periódica</i> " +#~ "<br>Quando reiniciar o roteador, o serviço realizará uma reinicialização " +#~ "suave. Inserindo um valor diferente de zero aqui, desencadeará uma " +#~ "reinicialização completa com atraso caso a reinicialização suave falhe. " +#~ "Insira a quantidade de segundos para aguardar a falha da reinicialização " +#~ "ou use 0 para desativar o atraso da reinicialização forçada." + +#~ 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 "" +#~ "Aplica-se aos modos Reboot com Ping e da reinicialização da interface</i> " +#~ "<br>Usando o ModemManager, você pode fazer com que o Watchcat reinicie a " +#~ "sua interface ModemManger ao informar o seu nome." + +#~ 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 "" +#~ "Quantas vezes devemos pingar o host informado acima. <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 "" +#~ "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>Em " +#~ "modo de Reiniciar com Ping, é definido o período mais longo sem uma " +#~ "resposta a partir do host que está sendo verificado antes de realizar uma " +#~ "reinicialização. <br>Em modo Reinicio Através da Rede, é definido o " +#~ "período mais longo sem uma resposta do host que está sendo verificado " +#~ "antes que a interface seja reiniciada. <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></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 "" +#~ "Reiniciar com Ping: Reinicie este dispositivo caso um ping para " +#~ "determinado host falhe durante um determinado tempo. <br> Reinício " +#~ "Periódico: Reinicie este dispositivo depois de um determinado tempo. " +#~ "<br>Interface de reinicialização: Reinicie uma interface de rede caso um " +#~ "ping para determinado host falhe depois de um determinado tempo." + +#~ msgid "Forced reboot delay" +#~ msgstr "Atraso para reinício forçado" + +#~ msgid "Grant UCI access for luci-app-watchcat" +#~ msgstr "Conceda acesso UCI ao luci-app-watchcat" + +#~ msgid "Host address to ping" +#~ msgstr "Endereço do equipamento para efetuar o 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 "" +#~ "Com qual frequência deve verificar a conexão com a Internet. A unidade " +#~ "padrão é segundos, mas você pode usar o sufixo 'm' para minutos, 'h' para " +#~ "horas ou 'd' para dias" + +#~ 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 "" +#~ "No modo periódico, é definido o período para se reiniciar. No modo " +#~ "Internet, é definido o maior período de tempo sem acesso à Internet até " +#~ "que um reinício seja realizado. A unidade padrão é segundos, mas você " +#~ "pode usar o sufixo 'm' para minutos, 'h' para horas ou 'd' para dias" + +#~ msgid "Operating mode" +#~ msgstr "Modo de Operação" + +#~ msgid "Ping host" +#~ msgstr "Pingar Máquina" + +#~ msgid "Ping period" +#~ msgstr "Período de ping" + +#~ msgid "" +#~ "Watchcat allows configuring a periodic reboot when the Internet " +#~ "connection has been lost for a certain period of time." +#~ msgstr "" +#~ "Watchcat permite a configuração de um período para reiniciar e/ou quando " +#~ "a conexão com à Internet foi perdida por um ser período de tempo." + +#~ 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 "" +#~ "Ao reiniciar o sistema, o watchcat vai acionar uma reinicialização suave. " +#~ "Inserir um valor não zero aqui irá acionar uma reinicialização forçada " +#~ "atrasada se a reinicialização suave falhar. Digite um número de segundos " +#~ "para habilitar, use 0 para desabilitar" diff --git a/applications/luci-app-watchcat/po/ro/watchcat.po b/applications/luci-app-watchcat/po/ro/watchcat.po index 6d5a64494b..cfe9baaeee 100644 --- a/applications/luci-app-watchcat/po/ro/watchcat.po +++ b/applications/luci-app-watchcat/po/ro/watchcat.po @@ -12,62 +12,168 @@ msgstr "" "20)) ? 1 : 2);;\n" "X-Generator: Pootle 2.0.6\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" msgstr "" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "" + +#: 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "IPv4 address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "Perioadă" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 -#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 -msgid "Watchcat" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +"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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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 +msgid "Unlock Modem Bands" +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 +#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 +msgid "Watchcat" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +msgid "Windows: 32 bytes" msgstr "" diff --git a/applications/luci-app-watchcat/po/ru/watchcat.po b/applications/luci-app-watchcat/po/ru/watchcat.po index 05c9e72316..26e3ec9c57 100644 --- a/applications/luci-app-watchcat/po/ru/watchcat.po +++ b/applications/luci-app-watchcat/po/ru/watchcat.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: LuCI: watchcat\n" "POT-Creation-Date: 2013-10-06 11:15+0300\n" -"PO-Revision-Date: 2020-06-07 15:48+0000\n" +"PO-Revision-Date: 2021-03-11 08:13+0000\n" "Last-Translator: Artem <KovalevArtem.ru@gmail.com>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationswatchcat/ru/>\n" @@ -12,80 +12,227 @@ 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.1-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" -msgstr "Задержка<br />принудительной<br />перезагрузки" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "Большой: 248 байт" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "Интервал проверки" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" +msgstr "Общие настройки" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" -msgstr "Предоставить UCI доступ для luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "Предоставить доступ LuCI к приложению 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "Хост для проверки" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" +msgstr "Огромный: 1492 байта" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" -msgstr "Адрес хоста для пинг-запроса" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "IPv4 address or hostname to ping." +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -"Как часто проверять Интернет соединение. По умолчанию значение в секундах, " -"вы можете использовать суффикс 'm' для указания минут, 'h' - часов, 'd' - " -"дней" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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 "" -"В периодическом режиме, это значение задает период перезагрузки. В режиме " -"перезагрузки при потере Интернета, данное значение определяет максимальный " -"период времени без доступа в Интернет, после которого устройство " -"перезагружается. По умолчанию значение в секундах, вы можете использовать " -"суффикс 'm' для указания минут, 'h' - часов, 'd' - дней" - -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" -msgstr "Режим работы" - -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +"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 +msgid "Interface" +msgstr "Интерфейс" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "Интерфейс для мониторинга и/или перезапуска" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "Гигантский: 9000 байт" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "Режим" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "Период" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" -msgstr "Хост пинг-запроса" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" +msgstr "Периодическая перезагрузка" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" +msgstr "Размер пакета Ping" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" +msgstr "" + +#: 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." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "Маленький: 1 байт" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" -msgstr "Период пинг-запроса" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "Стандартный: 56 байт" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 +#: 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 +msgid "Unlock Modem Bands" +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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 -msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." -msgstr "" -"Watchcat позволяет настроить периодическую перезагрузку, при потере Интернет " -"соединения на определенное время." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +msgid "Windows: 32 bytes" +msgstr "Windows: 32 байта" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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 "" -"При перезагрузке системы, watchcat вызовет программную перезагрузку. Ввод " -"ненулевого значения, вызовет отложенную аппаратную перезагрузку, если " -"программная перезагрузка не удастся. Введите количество секунд, чтобы " -"включить. Используйте '0', чтобы отключить" +#~ msgid "Forced reboot delay" +#~ msgstr "Задержка<br />принудительной<br />перезагрузки" + +#~ msgid "Grant UCI access for luci-app-watchcat" +#~ msgstr "Предоставить UCI доступ для luci-app-watchcat" + +#~ msgid "Host address to ping" +#~ msgstr "Адрес хоста для пинг-запроса" + +#~ 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 "" +#~ "Как часто проверять Интернет соединение. По умолчанию значение в " +#~ "секундах, вы можете использовать суффикс 'm' для указания минут, 'h' - " +#~ "часов, 'd' - дней" + +#~ 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 "" +#~ "В периодическом режиме, это значение задает период перезагрузки. В режиме " +#~ "перезагрузки при потере Интернета, данное значение определяет " +#~ "максимальный период времени без доступа в Интернет, после которого " +#~ "устройство перезагружается. По умолчанию значение в секундах, вы можете " +#~ "использовать суффикс 'm' для указания минут, 'h' - часов, 'd' - дней" + +#~ msgid "Operating mode" +#~ msgstr "Режим работы" + +#~ msgid "Ping host" +#~ msgstr "Хост пинг-запроса" + +#~ msgid "Ping period" +#~ msgstr "Период пинг-запроса" + +#~ msgid "" +#~ "Watchcat allows configuring a periodic reboot when the Internet " +#~ "connection has been lost for a certain period of time." +#~ msgstr "" +#~ "Watchcat позволяет настроить периодическую перезагрузку, при потере " +#~ "Интернет соединения на определенное время." + +#~ 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 "" +#~ "При перезагрузке системы, watchcat вызовет программную перезагрузку. Ввод " +#~ "ненулевого значения, вызовет отложенную аппаратную перезагрузку, если " +#~ "программная перезагрузка не удастся. Введите количество секунд, чтобы " +#~ "включить. Используйте '0', чтобы отключить" diff --git a/applications/luci-app-watchcat/po/sk/watchcat.po b/applications/luci-app-watchcat/po/sk/watchcat.po index 3d98d09992..213f7465ab 100644 --- a/applications/luci-app-watchcat/po/sk/watchcat.po +++ b/applications/luci-app-watchcat/po/sk/watchcat.po @@ -8,62 +8,168 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" msgstr "" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "" + +#: 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "IPv4 address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 -#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 -msgid "Watchcat" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +"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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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 +msgid "Unlock Modem Bands" +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 +#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 +msgid "Watchcat" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +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 34999ebf4a..0a0cd964d7 100644 --- a/applications/luci-app-watchcat/po/sv/watchcat.po +++ b/applications/luci-app-watchcat/po/sv/watchcat.po @@ -12,74 +12,219 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.10-dev\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" -msgstr "Fördröjning av påtvingad omstart" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" +msgstr "" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" -msgstr "Värdadress att pinga" +#: 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "IPv4 address or hostname to ping." +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -"Hur ofta internet-anslutningen ska kollas. Standardenheten är sekunder, du " -"kan använda tillägget 'm' för minutrar, 't' för timmar eller 'd' för dagar" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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 +msgid "Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" msgstr "" -"I periodiskt läge definierar den omstartperioden. I internetläge definierar " -"den den längsta tiden utan internetåtkomst innan en omstart aktiveras. " -"Standardenheten är sekunder, du kan använda suffixet 'm' i minuter, 'h' i " -"timmar eller 'd' i dagar" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" -msgstr "Driftsläge" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "Period" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" -msgstr "Pinga värd" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" +msgstr "" + +#: 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." +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" -msgstr "Period för pingning" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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 +msgid "Unlock Modem Bands" +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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 -msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +msgid "Windows: 32 bytes" msgstr "" -"Watchcat gör det möjligt att konfigurera en periodisk omstart när Internet-" -"anslutningen har gått förlorad under en viss tid." -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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 "" -"När systemet startar om kommer watchcat att utlösa en mjuk omstart. Om du " -"anger ett värde som inte är noll här kommer det att trigga en försenad hård " -"omstart om den mjuka omstarten misslyckats. Ange ett antal sekunder för att " -"aktivera, använd 0 för att inaktivera" +#~ msgid "Forced reboot delay" +#~ msgstr "Fördröjning av påtvingad omstart" + +#~ msgid "Host address to ping" +#~ msgstr "Värdadress att pinga" + +#~ 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 "" +#~ "Hur ofta internet-anslutningen ska kollas. Standardenheten är sekunder, " +#~ "du kan använda tillägget 'm' för minutrar, 't' för timmar eller 'd' för " +#~ "dagar" + +#~ 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 "" +#~ "I periodiskt läge definierar den omstartperioden. I internetläge " +#~ "definierar den den längsta tiden utan internetåtkomst innan en omstart " +#~ "aktiveras. Standardenheten är sekunder, du kan använda suffixet 'm' i " +#~ "minuter, 'h' i timmar eller 'd' i dagar" + +#~ msgid "Operating mode" +#~ msgstr "Driftsläge" + +#~ msgid "Ping host" +#~ msgstr "Pinga värd" + +#~ msgid "Ping period" +#~ msgstr "Period för pingning" + +#~ msgid "" +#~ "Watchcat allows configuring a periodic reboot when the Internet " +#~ "connection has been lost for a certain period of time." +#~ msgstr "" +#~ "Watchcat gör det möjligt att konfigurera en periodisk omstart när " +#~ "Internet-anslutningen har gått förlorad under en viss tid." + +#~ 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 "" +#~ "När systemet startar om kommer watchcat att utlösa en mjuk omstart. Om du " +#~ "anger ett värde som inte är noll här kommer det att trigga en försenad " +#~ "hård omstart om den mjuka omstarten misslyckats. Ange ett antal sekunder " +#~ "för att aktivera, använd 0 för att inaktivera" diff --git a/applications/luci-app-watchcat/po/templates/watchcat.pot b/applications/luci-app-watchcat/po/templates/watchcat.pot index 32fab932d7..07582a9e7e 100644 --- a/applications/luci-app-watchcat/po/templates/watchcat.pot +++ b/applications/luci-app-watchcat/po/templates/watchcat.pot @@ -1,62 +1,168 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" msgstr "" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "" + +#: 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "IPv4 address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 -#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 -msgid "Watchcat" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +"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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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 +msgid "Unlock Modem Bands" +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 +#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 +msgid "Watchcat" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +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 eede16999e..f4f8f7a2a9 100644 --- a/applications/luci-app-watchcat/po/tr/watchcat.po +++ b/applications/luci-app-watchcat/po/tr/watchcat.po @@ -1,69 +1,225 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2021-05-28 17:32+0000\n" +"Last-Translator: Oğuz Ersen <oguzersen@protonmail.com>\n" +"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationswatchcat/tr/>\n" +"Language: tr\n" "MIME-Version: 1.0\n" "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" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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." -#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" +"Ping Yeniden Başlatma ve Periyodik Yeniden Başlatma modları için geçerlidir " +"</i> <br /> Yönlendiriciyi yeniden başlatırken, hizmet yumuşak bir yeniden " +"başlatmayı tetikleyecektir. Buraya sıfır olmayan bir değer girmek, yumuşak " +"yeniden başlatma başarısız olursa, gecikmeli bir donanım yeniden başlatmayı " +"tetikleyecektir. Yumuşak yeniden başlatmanın başarısız olması için " +"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/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 Yeniden Başlatma ve Yeniden Başlatma Arayüzü modları için geçerlidir </" +"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 +msgid "Big: 248 bytes" +msgstr "Büyük: 248 bayt" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "Kontrol etme aralığı" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "Zorla Yeniden Başlatma Gecikmesi" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" +msgstr "Genel Ayarlar" + +#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 +msgid "Grant access to LuCI app watchcat" +msgstr "LuCI programı watchcat için yetki ver" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12 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" +"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 "" +"Burada, bir ana bilgisayarın erişilemez hale gelmesi durumunda " +"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/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "Kontrol Edilecek Alan Adı" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 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" +"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 "" +"Yukarıda belirtilen ana bilgisayara ne sıklıkla ping atılacağı. <br /><br /" +">Varsayılan birim son ek olmadan saniyedir, ancak son ek kullanabilirsiniz " +"<b>m</b> dakika için, <b>h</b> saatler için veya <b>d</b> günler için. <br /" +"><br /> Örnekler:<ul><li>10 saniye şöyle olur: <b>10</b> veya <b>10s</b></" +"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 +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/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 +msgid "" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." 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/luasrc/model/cbi/watchcat/watchcat.lua:30 -msgid "Period" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +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>" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +msgid "Interface" +msgstr "Arayüz" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +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 +msgid "Jumbo: 9000 bytes" +msgstr "Jumbo: 9000 bayt" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "Mod" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "ModemManager Arayüzünün Adı" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 +msgid "Period" +msgstr "Periyot" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" +msgstr "Periyodik Yeniden Başlatma" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" +msgstr "Ping Paketi Boyutu" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" +msgstr "Ping tabanlı yeniden başlatma" + +#: 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." 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 +msgid "Restart Interface" +msgstr "Arayüzü yeniden başlat" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "Küçük: 1 bayt" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "Standart: 56 bayt" + +#: 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 "" +"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 +msgid "Unlock Modem Bands" +msgstr "Modem Bantlarının Kilidini Açın" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 +#: 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 "Watchcat" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 -msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." -msgstr "" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +msgid "Windows: 32 bytes" +msgstr "Windows: 32 bayt" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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 "" +#~ msgid "Forced reboot delay" +#~ msgstr "Zorla yeniden başlatma gecikmesi" + +#~ msgid "Grant UCI access for luci-app-watchcat" +#~ msgstr "luci-app-watchcat için UCI erişimi verin" diff --git a/applications/luci-app-watchcat/po/uk/watchcat.po b/applications/luci-app-watchcat/po/uk/watchcat.po index b81eb8f7c2..3ab850678e 100644 --- a/applications/luci-app-watchcat/po/uk/watchcat.po +++ b/applications/luci-app-watchcat/po/uk/watchcat.po @@ -1,79 +1,210 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2020-02-18 11:31+0000\n" -"Last-Translator: Olexandr Nesterenko <olexn@ukr.net>\n" +"PO-Revision-Date: 2021-04-04 07:26+0000\n" +"Last-Translator: Yurii Petrashko <yuripet@gmail.com>\n" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationswatchcat/uk/>\n" "Language: uk\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%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.11\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" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" -msgstr "Затримка примусового перезавантаження" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" +msgstr "Загальні налаштування" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" -msgstr "Адреса сервера для перевірки зв'язку" +#: 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 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" +"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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "IPv4 address or hostname to ping." msgstr "" -"Як часто перевіряти підключення до інтернету. Типові одиниці виміру — " -"секунди, ви можете використовувати суфікс «m» для вказування хвилин, «h» - " -"годин, «d» - днів" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" -msgstr "Режим роботи" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 +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 +msgid "Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "Період" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" -msgstr "Пінг вузла" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" +msgstr "" + +#: 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." +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" -msgstr "Період пінгів" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94 +msgid "Unlock Modem Bands" +msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 +#: 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/luasrc/model/cbi/watchcat/watchcat.lua:6 -msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +msgid "Windows: 32 bytes" msgstr "" -"Watchcat дозволяє налаштувати періодичні перезавантаження коли підключення " -"до інтернету було втрачено протягом певного періоду часу." -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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 "" +#~ msgid "Forced reboot delay" +#~ msgstr "Затримка примусового перезавантаження" + +#~ msgid "Host address to ping" +#~ msgstr "Адреса сервера для перевірки зв'язку" + +#~ 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 "" +#~ "Як часто перевіряти підключення до інтернету. Типові одиниці виміру — " +#~ "секунди, ви можете використовувати суфікс «m» для вказування хвилин, «h» " +#~ "- годин, «d» - днів" + +#~ msgid "Operating mode" +#~ msgstr "Режим роботи" + +#~ msgid "Ping host" +#~ msgstr "Пінг вузла" + +#~ msgid "Ping period" +#~ msgstr "Період пінгів" + +#~ msgid "" +#~ "Watchcat allows configuring a periodic reboot when the Internet " +#~ "connection has been lost for a certain period of time." +#~ msgstr "" +#~ "Watchcat дозволяє налаштувати періодичні перезавантаження коли " +#~ "підключення до інтернету було втрачено протягом певного періоду часу." diff --git a/applications/luci-app-watchcat/po/vi/watchcat.po b/applications/luci-app-watchcat/po/vi/watchcat.po index eede16999e..a743d57243 100644 --- a/applications/luci-app-watchcat/po/vi/watchcat.po +++ b/applications/luci-app-watchcat/po/vi/watchcat.po @@ -8,62 +8,168 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 +msgid "Big: 248 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" msgstr "" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "" + +#: 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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "IPv4 address or hostname to ping." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +msgid "Interface" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 -#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 -msgid "Watchcat" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" msgstr "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23 msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." +"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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +msgid "Standard: 56 bytes" +msgstr "" + +#: 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 +msgid "Unlock Modem Bands" +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 +#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 +msgid "Watchcat" +msgstr "" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +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 9de8e62d32..77c7349df9 100644 --- a/applications/luci-app-watchcat/po/zh_Hans/watchcat.po +++ b/applications/luci-app-watchcat/po/zh_Hans/watchcat.po @@ -4,80 +4,323 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2019-10-22 08:50+0000\n" -"Last-Translator: Zheng Qian <sotux82@gmail.com>\n" +"PO-Revision-Date: 2021-05-27 16:32+0000\n" +"Last-Translator: Eric <spice2wolf@gmail.com>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationswatchcat/zh_Hans/>\n" -"Language: zh-cn\n" +"Language: zh_Hans\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 3.9.1-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" -msgstr "强制重启延时" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 失败时重新启动。" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" +"应用于 Ping Reboot 和定期 Rebbot 模式</i> <br />当重新启动路由器时,该服务将" +"触发软重启。如果软重启失败,在这里输入非零值将触发延迟的硬重启。输入等待软重" +"启失败的秒数或使用 0 来禁用强制重启延迟。" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 接口。" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +msgid "Big: 248 bytes" +msgstr "大:248 字节" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "检查间隔" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "强制重启延迟" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" +msgstr "常规设置" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "授予访问 LuCI 应用 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 "" +"你可以在此处设置几个在一个主机变得不可访问时采取的检查和操作。点击底部的<b>添" +"加</b>按钮来设置一个以上的操作。" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "要检查的主机" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" +"多长时间 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>" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +msgid "Huge: 1492 bytes" +msgstr "巨大:1492 字节" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" -msgstr "要 ping 的主机地址" +#: 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/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -"检测网络连接的频率。默认单位为秒,您可以使用“m”作为后缀表示分钟,“h”表示小" -"时,“d”表示天" +"如果使用 ModemManager,则在重新启动接口之前,将调制解调器设置为允许使用任何频" +"段。" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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 "" -"在周期模式下,此处定义了重启的周期。在联网模式下,这个表示没有网络连接情况下" -"到执行重启的最长时间间隔。默认单位为秒,您可以使用“m”作为后缀表示分钟,“h”表" -"示小时,“d”表示天" +"在定期重启模式下,它定义重启的间隔。 <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/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" -msgstr "操作模式" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +msgid "Interface" +msgstr "接口" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "要监视和/或重启的接口" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "巨无霸:9000 字节" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "模式" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "ModemManager 接口的名称" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "周期" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" -msgstr "Ping 主机" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" +msgstr "定期重启" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" +msgstr "Ping 包大小" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" +msgstr "Ping 重启" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" -msgstr "Ping 周期" +#: 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." +msgstr "" +"Ping 重启:如果在指定的一段时间内,ping 指定主机始终失败,则重新启动该设备。" +"<br />定期重启:在指定的时间间隔后重新启动该设备。<br />重启接口:如果在指定" +"的时间内,ping 指定主机始终失败,则重新启动网络接口。" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "重启接口" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "小:1 字节" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +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 +msgid "Unlock Modem Bands" +msgstr "解锁调制解调器频段" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 +#: 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/luasrc/model/cbi/watchcat/watchcat.lua:6 -msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." -msgstr "Watchcat 允许在网络连接丢失一段时间后配置定时重启动。" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +msgid "Windows: 32 bytes" +msgstr "窗口:32 字节" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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 "" -"当重启系统时,WatchCat 将触发一个软重启。在此输入一个非 0 值,如果软重启失败" -"将会触发一个延迟的硬重启。输入秒数启用,输入 0 禁用" +#~ 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 "" +#~ "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 "" +#~ "适用于 Ping 重启和周期性重启模式</i> 重新启动路由器时,该服务将触发软重" +#~ "启。 如果软重启失败,则在此处输入非零值将触发延迟的硬重启。 输入等待软重启" +#~ "失败的秒数,或使用 0 禁用强制重启延迟。" + +#~ 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 接口。" + +#~ 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 "" +#~ "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>" + +#~ 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 "Forced reboot delay" +#~ msgstr "强制重启延时" + +#~ msgid "Grant UCI access for luci-app-watchcat" +#~ msgstr "授予UCI访问luci-app-watchcat的权限" + +#~ msgid "Host address to ping" +#~ msgstr "要 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 "" +#~ "检测网络连接的频率。默认单位为秒,您可以使用“m”作为后缀表示分钟,“h”表示小" +#~ "时,“d”表示天" + +#~ 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 "" +#~ "在周期模式下,此处定义了重启的周期。在联网模式下,这个表示没有网络连接情况" +#~ "下到执行重启的最长时间间隔。默认单位为秒,您可以使用“m”作为后缀表示分" +#~ "钟,“h”表示小时,“d”表示天" + +#~ msgid "Operating mode" +#~ msgstr "操作模式" + +#~ msgid "Ping host" +#~ msgstr "Ping 主机" + +#~ msgid "Ping period" +#~ msgstr "Ping 周期" + +#~ msgid "" +#~ "Watchcat allows configuring a periodic reboot when the Internet " +#~ "connection has been lost for a certain period of time." +#~ msgstr "Watchcat 允许在网络连接丢失一段时间后配置定时重启动。" + +#~ 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 "" +#~ "当重启系统时,WatchCat 将触发一个软重启。在此输入一个非 0 值,如果软重启失" +#~ "败将会触发一个延迟的硬重启。输入秒数启用,输入 0 禁用" diff --git a/applications/luci-app-watchcat/po/zh_Hant/watchcat.po b/applications/luci-app-watchcat/po/zh_Hant/watchcat.po index 96b53e35e8..420db58d30 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: 2020-06-30 13:41+0000\n" +"PO-Revision-Date: 2021-03-23 11:29+0000\n" "Last-Translator: Hulen <shift0106@gmail.com>\n" "Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationswatchcat/zh_Hant/>\n" @@ -13,69 +13,316 @@ 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.2-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 -msgid "Forced reboot delay" -msgstr "強制重啟延時" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82 +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 失敗時重新啟動。" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:72 +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 "" +"應用於 Ping Reboot 和定期 Rebbot 模式</i> <br />當重新啟動路由器時,該服務將" +"觸發軟開機。如果軟開機失敗,在這裡輸入非零值將觸發延遲的硬開機。輸入等待軟開" +"機失敗的秒數或使用 0 來停用強制重新啟動延遲。" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88 +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 介面。" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:63 +msgid "Big: 248 bytes" +msgstr "大:248 位元組" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:50 +msgid "Check Interval" +msgstr "檢查間隔時間" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71 +msgid "Force Reboot Delay" +msgstr "強制重新啟動延遲" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19 +msgid "General Settings" +msgstr "一般設定" #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 -msgid "Grant UCI access for luci-app-watchcat" +msgid "Grant access to LuCI app watchcat" +msgstr "授予對 LuCI 應用 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 "" +"您可以在此處設定幾個在主機變得不可存取時採取的檢查和操作。按下底部的<b>加入</" +"b>按鈕來設定一個以上的操作。" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43 +msgid "Host To Check" +msgstr "要檢查的主機" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 -msgid "Host address to ping" -msgstr "要 ping 的主機位址" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51 +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 "" +"多長時間 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>" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64 +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 "" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:95 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" +"If using ModemManager, then before restarting the interface, set the modem " +"to be allowed to use any band." msgstr "" -"檢測網路連線的頻率。預設單位為秒,您可以使用“m”作為字尾表示分鐘,“h”表示小" -"時,“d”表示天。" +"如果使用 ModemManager,則在重新啟動介面之前,將數據機設定為允許使用任何頻段。" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32 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" +"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 "" -"在週期模式下,此處定義了重新啟動的週期。在連網模式下,這個表示沒有網路連線情況下到執行重新啟動的最長時間間隔。預設單位為秒,您可以使用「m」作為字尾表示分" -"鐘,「h」表示小時,「d」表示天。" +"在定期重新啟動模式下,它定義重新啟動的間隔。 <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/luasrc/model/cbi/watchcat/watchcat.lua:15 -msgid "Operating mode" -msgstr "操作模式" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80 +msgid "Interface" +msgstr "介面" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81 +msgid "Interface to monitor and/or restart" +msgstr "要監視和/或重新啟動的介面" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65 +msgid "Jumbo: 9000 bytes" +msgstr "Jumbo:9000 位元組" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22 +msgid "Mode" +msgstr "模式" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87 +msgid "Name of ModemManager Interface" +msgstr "ModemManager 介面的名稱" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:31 msgid "Period" msgstr "週期" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 -msgid "Ping host" -msgstr "Ping 主機" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27 +msgid "Periodic Reboot" +msgstr "定期重新啟動" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59 +msgid "Ping Packet Size" +msgstr "Ping 封包大小" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 -msgid "Ping period" -msgstr "Ping 週期" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:26 +msgid "Ping Reboot" +msgstr "Ping 重新啟動" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 +#: 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." +msgstr "" +"Ping 重新啟動:如果在指定的一段時間內,ping 指定主機始終失敗,則重新啟動該裝" +"置。<br />定期重新啟動:在指定的時間間隔後重新啟動該裝置。<br />重新啟動介" +"面:如果在指定的時間內,ping 指定主機始終失敗,則重新啟動網路介面。" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28 +msgid "Restart Interface" +msgstr "重新啟動介面" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60 +msgid "Small: 1 byte" +msgstr "小:1 位元組" + +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:62 +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 +msgid "Unlock Modem Bands" +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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3 msgid "Watchcat" msgstr "Watchcat" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 -msgid "" -"Watchcat allows configuring a periodic reboot when the Internet connection " -"has been lost for a certain period of time." -msgstr "Watchcat 允許在網路連接遺失一段時間後設定定時重新啟動。" +#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61 +msgid "Windows: 32 bytes" +msgstr "Windows:32 位元組" -#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -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 "" -"當重新啟動系統時,WatchCat 將觸發一個軟開機。在此輸入一個非 0 值,如果軟開機失敗將會觸發一個延遲的硬開機。輸入秒數啟用,輸入 0 停用" +#~ 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 "" +#~ "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 "" +#~ "適用於 Ping 重新啟動和週期性重新啟動模式</i> 重新啟動路由器時,該服務將觸" +#~ "發軟開機。 如果軟開機失敗,則在此處輸入非零值將觸發延遲的硬開機。輸入等待" +#~ "軟開機失敗的秒數,或使用 0 停用強制重新啟動延遲。" + +#~ 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 介面。" + +#~ 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 "" +#~ "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>" + +#~ 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 "Forced reboot delay" +#~ msgstr "強制重新啟動延遲" + +#~ msgid "Grant UCI access for luci-app-watchcat" +#~ msgstr "授予 luci-app-watchcat 擁有 UCI 存取的權限" + +#~ msgid "Host address to ping" +#~ msgstr "通過 \"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 "" +#~ "檢查網路連接的頻率;預設單位為「秒」,您還可以使用字尾 \"m\"(分鐘)、\"h" +#~ "\"(小時)、\"d\"(天)" + +#~ 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 "" +#~ "在週期模式下,此處定義為「重新啟動的週期」;在 Internet 模式下,它定義為在" +#~ "重新啟動以前無法存取 Internet 的「最長時間段」。預設單位為「秒」,您還可以" +#~ "使用字尾 \"m\"(分鐘)、\"h\"(小時)、\"d\"(天)" + +#~ msgid "Operating mode" +#~ msgstr "操作模式" + +#~ msgid "Ping host" +#~ msgstr "ping 主機" + +#~ msgid "Ping period" +#~ msgstr "ping 週期" + +#~ msgid "" +#~ "Watchcat allows configuring a periodic reboot when the Internet " +#~ "connection has been lost for a certain period of time." +#~ msgstr "" +#~ "Watchcat(斷線巡弋貓)允許您配置路由器在網路連接遺失一段時間後的定時重新啟" +#~ "動工作。" + +#~ 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 "" +#~ "Watchcat 將在系統重新啟動時觸發「熱啟動」,如果失敗會觸發一個延遲的「冷啟" +#~ "動」。要啟用該選項,請在此處設定延遲的「秒數」,輸入「0」則表示停用" diff --git a/applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json b/applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json index 80f141acd6..720c00509d 100644 --- a/applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json +++ b/applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json @@ -3,13 +3,11 @@ "title": "Watchcat", "order": 90, "action": { - "type": "cbi", - "path": "watchcat/watchcat", - "post": { "cbi.submit": true } + "type": "view", + "path": "watchcat" }, "depends": { - "acl": [ "luci-app-watchcat" ], - "uci": { "system": true } + "acl": [ "luci-app-watchcat" ] } } } diff --git a/applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json b/applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json index 29de34b6d3..ef306fab12 100644 --- a/applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json +++ b/applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json @@ -1,11 +1,14 @@ { "luci-app-watchcat": { - "description": "Grant UCI access for luci-app-watchcat", + "description": "Grant access to LuCI app watchcat", "read": { - "uci": [ "system" ] + "file": { + "/usr/bin/watchcat.sh": [ "exec" ] + }, + "uci": [ "watchcat" ] }, "write": { - "uci": [ "system" ] + "uci": [ "watchcat" ] } } } |