luci-app-watchcat: add support for new features and convert to JavaScript 4658/head
authorNicholas Smith <nicholas@nbembedded.com>
Mon, 14 Dec 2020 01:39:09 +0000 (11:39 +1000)
committerNicholas Smith <nicholas@nbembedded.com>
Thu, 4 Mar 2021 11:01:03 +0000 (21:01 +1000)
Signed-off-by: Nicholas Smith <nicholas@nbembedded.com>
38 files changed:
applications/luci-app-watchcat/Makefile
applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js [new file with mode: 0644]
applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua [deleted file]
applications/luci-app-watchcat/po/ar/watchcat.po
applications/luci-app-watchcat/po/bg/watchcat.po
applications/luci-app-watchcat/po/bn_BD/watchcat.po
applications/luci-app-watchcat/po/ca/watchcat.po
applications/luci-app-watchcat/po/cs/watchcat.po
applications/luci-app-watchcat/po/de/watchcat.po
applications/luci-app-watchcat/po/el/watchcat.po
applications/luci-app-watchcat/po/en/watchcat.po
applications/luci-app-watchcat/po/es/watchcat.po
applications/luci-app-watchcat/po/fi/watchcat.po
applications/luci-app-watchcat/po/fr/watchcat.po
applications/luci-app-watchcat/po/he/watchcat.po
applications/luci-app-watchcat/po/hi/watchcat.po
applications/luci-app-watchcat/po/hu/watchcat.po
applications/luci-app-watchcat/po/it/watchcat.po
applications/luci-app-watchcat/po/ja/watchcat.po
applications/luci-app-watchcat/po/ko/watchcat.po
applications/luci-app-watchcat/po/mr/watchcat.po
applications/luci-app-watchcat/po/ms/watchcat.po
applications/luci-app-watchcat/po/nb_NO/watchcat.po
applications/luci-app-watchcat/po/pl/watchcat.po
applications/luci-app-watchcat/po/pt/watchcat.po
applications/luci-app-watchcat/po/pt_BR/watchcat.po
applications/luci-app-watchcat/po/ro/watchcat.po
applications/luci-app-watchcat/po/ru/watchcat.po
applications/luci-app-watchcat/po/sk/watchcat.po
applications/luci-app-watchcat/po/sv/watchcat.po
applications/luci-app-watchcat/po/templates/watchcat.pot
applications/luci-app-watchcat/po/tr/watchcat.po
applications/luci-app-watchcat/po/uk/watchcat.po
applications/luci-app-watchcat/po/vi/watchcat.po
applications/luci-app-watchcat/po/zh_Hans/watchcat.po
applications/luci-app-watchcat/po/zh_Hant/watchcat.po
applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json
applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json

index 58e12ecbf5aa2e787b9b245b889727287369bf7a..c3c7aada9d9d6e7d8cac4a23e3c4d64bf594cc06 100644 (file)
@@ -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 (file)
index 0000000..835536a
--- /dev/null
@@ -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.NetworkSelect, '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 (file)
index f64370b..0000000
+++ /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
index 952a0ea247783a91a5ccfdf975bf9a56e55ee022..f939f3fdf9a5517bd46faa9dcf17b3f47f3d087a 100644 (file)
@@ -10,62 +10,163 @@ msgstr ""
 "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"
 
-#: 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: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/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/luasrc/model/cbi/watchcat/watchcat.lua:15
-msgid "Operating mode"
+#: 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 ""
 
-#: 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 ""
index 78dc3e0d0487573fca2b1585946f0585ac117df4..a3177daa6421757b84ca40d01d4b18c10c78dfdc 100644 (file)
@@ -9,62 +9,163 @@ 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/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: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/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/luasrc/model/cbi/watchcat/watchcat.lua:15
-msgid "Operating mode"
+#: 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 ""
 
-#: 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 ""
index 88bf2440a5a46a60ed4c8abba7bbf64473a59f4c..e17eca8cc1ef0a9936d04bc0896565bd74850c11 100644 (file)
@@ -9,62 +9,163 @@ 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/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: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/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/luasrc/model/cbi/watchcat/watchcat.lua:15
-msgid "Operating mode"
+#: 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 ""
 
-#: 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 ""
index e7013c5230092b2e8ad1335d4b2bbdd1778aaa85..acc8c330b2bfd8b7550c87f2df39474abd271c3d 100644 (file)
@@ -11,77 +11,216 @@ 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 "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 ""
 
 #: 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 "Adreça de host per al 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: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/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 "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/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: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: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
-#, 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."
index 09da1e80ead68f0f7c75902a499776cdb4b2bf6d..dbac6e4a05442bedb6d1b8eb596ce4ab50519823 100644 (file)
@@ -12,75 +12,216 @@ msgstr ""
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 "X-Generator: Weblate 3.11-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 ""
+
+#: 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/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: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/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 "Interval opakování testu 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 ""
-"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"
index beb924e0c3e60b2d83e57d2fdee673d836a35b25..125c5efb75cf3affdf14f0c292e55deab705f1fa 100644 (file)
@@ -12,76 +12,218 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.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 ""
 
 #: 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/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: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: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 ""
-"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: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 ""
-"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
+"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"
index d23483abef49341da668050b58d5e6b8d59fc1f0..68209fed1ba5620ce3e0b5107b1e075dd10d60af 100644 (file)
@@ -8,62 +8,163 @@ 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/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: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/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/luasrc/model/cbi/watchcat/watchcat.lua:15
-msgid "Operating mode"
+#: 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 ""
 
-#: 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 ""
index ca33d1f7af87938bcc92e57e6127bb2182752428..c0c4adb3b8d9a41400cd58da0d743b10b0e18b8b 100644 (file)
@@ -8,75 +8,214 @@ 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: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 ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22
+msgid "Mode"
 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: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/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 period"
+#: 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 ""
-"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"
index 18f2dcf2a6d5dc9e913510d854273f00569bc308..37f6d2222010c586dce1cdb316ef0da694a877c6 100644 (file)
@@ -13,74 +13,216 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.1-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 ""
+
+#: 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 "Conceder acceso a UCI para 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/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: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: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"
 
-#: 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 ""
-"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: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 "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 ""
+
+#: 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/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:62
+msgid "Standard: 56 bytes"
+msgstr ""
 
-#: 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."
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
+msgid "Windows: 32 bytes"
 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"
-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"
+#~ 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"
index af423ba69f01c92e1a77ae8ff1dff4b50f95bc94..607e943c7354021fe00eb1f767d49adbd237175c 100644 (file)
@@ -9,62 +9,163 @@ 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/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: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/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/luasrc/model/cbi/watchcat/watchcat.lua:15
-msgid "Operating mode"
+#: 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 ""
 
-#: 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 ""
index e3844a470d39ee692d4715b41d9e986ca9001b80..1de310f002be95353c7968807ed6722b79b785c3 100644 (file)
@@ -12,76 +12,218 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
 "X-Generator: Weblate 4.2-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 ""
 
 #: 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: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 ""
+
+#: 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 "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/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: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 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"
index d23483abef49341da668050b58d5e6b8d59fc1f0..68209fed1ba5620ce3e0b5107b1e075dd10d60af 100644 (file)
@@ -8,62 +8,163 @@ 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/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: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/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/luasrc/model/cbi/watchcat/watchcat.lua:15
-msgid "Operating mode"
+#: 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 ""
 
-#: 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 ""
index f9a0dcfb72bdfd47215d2c0e23a6a8a7497c96fd..bb01389a05be1ebe0624a5e5f0e5af9cec9bbd7b 100644 (file)
@@ -9,62 +9,163 @@ 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/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: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/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/luasrc/model/cbi/watchcat/watchcat.lua:15
-msgid "Operating mode"
+#: 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 ""
 
-#: 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 ""
index 82ac4c15a6c15e13d8e39092f412ec0e4844fbf6..e9399e0941dde129a66c7255c6b01f3b213c5824 100644 (file)
@@ -11,70 +11,198 @@ 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/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 ""
-"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: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/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 ""
-"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: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ő"
index bc8def0a4bbea0a05c615052e334b2dd4d4142dd..888bc10aeb55ebd956f82c7bd2619e11c8d34a8b 100644 (file)
@@ -12,57 +12,159 @@ msgstr ""
 "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"
-msgstr "Ritardo riavvio forzato"
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88
+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:78
+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:94
+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:69
+msgid "Big: 248 bytes"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:56
+msgid "Check Interval"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:77
+msgid "Force Reboot Delay"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:25
+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 "Concedi accesso UCI per luci-app-watchcat"
 
-#: 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:18
+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:49
+msgid "Host To Check"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:57
+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:70
+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:100
 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:38
 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:86
+msgid "Interface"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87
+msgid "Interface to monitor and/or restart"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
+msgid "Jumbo: 9000 bytes"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
+msgid "Mode"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
+msgid "Name of ModemManager Interface"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:37
 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:33
+msgid "Periodic Reboot"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65
+msgid "Ping Packet Size"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32
+msgid "Ping Reboot"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
+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:34
+msgid "Restart Interface"
+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:66
+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:68
+msgid "Standard: 56 bytes"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:21
+msgid "These rules will govern how this device reacts to network events."
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:99
+msgid "Unlock Modem Bands"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:17
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:21
 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
 msgid "Watchcat"
 msgstr "Watchcat"
@@ -71,17 +173,60 @@ msgstr "Watchcat"
 msgid ""
 "Watchcat allows configuring a periodic reboot when the Internet connection "
 "has been lost for a certain period of time."
+#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:56
+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
-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, inserendo un "
-"valore diverso da 0 in questo campo il proverà un hard reboot se il soft "
-"reboot fallisce. Inserisci un numero espresso in secondi per abilitare, usa "
-"0 per disabilitare"
+#~ msgid "Forced reboot delay"
+#~ msgstr "Ritardo riavvio forzato"
+
+#~ msgid "Host address to ping"
+#~ msgstr "Indirizzo dell'host da pingare"
+
+#~ 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 ""
+#~ "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"
+
+#~ 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."
+
+#~ msgid "Operating mode"
+#~ msgstr "Modalità"
+
+#~ msgid "Ping host"
+#~ msgstr "Ping host"
+
+#~ msgid "Ping period"
+#~ msgstr "Periodo del Ping"
+
+#, fuzzy
+#~ msgid ""
+#~ "Watchcat allows configuring a periodic reboot when the Internet "
+#~ "connection has been lost for a certain period of time."
+#~ msgstr ""
+#~ "Watchcat ti permette di configurare un riavvio periodico quando la "
+#~ "connessione a internet è stata persa per un certo periodo."
+
+#, 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"
index 35e9a3d315652928b6d776b07fb3d41344c53111..b26a67e9ea02a06f54157c501202febe6da65965 100644 (file)
@@ -12,66 +12,215 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 4.4-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/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: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: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/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 "周期"
 
-#: 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/luasrc/model/cbi/watchcat/watchcat.lua:46
-msgid "Ping period"
-msgstr "Ping 間隔"
+#: 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
-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 を使用します"
index c3a831056fa693a9c60537a7ce5f538b7b372277..bc54415fa5d5a64663f0d30db998100feadb1b17 100644 (file)
@@ -9,62 +9,163 @@ 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/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: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/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/luasrc/model/cbi/watchcat/watchcat.lua:15
-msgid "Operating mode"
+#: 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 ""
 
-#: 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 ""
index 5bea96a3e9a43ceeea73bfffe2c8a2ebaa63919b..b004d84e1115770a2b2e12f3149e48434103172a 100644 (file)
@@ -12,62 +12,169 @@ 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/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/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: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/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/luasrc/model/cbi/watchcat/watchcat.lua:15
-msgid "Operating mode"
+#: 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 ""
 
-#: 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 "पिंग होस्ट पत्ता"
index 237618384fd2ca99d85231ec612066c365efb05e..c424ef0ceaab52faf43f799ff68145bae678892e 100644 (file)
@@ -7,62 +7,163 @@ 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/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: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/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/luasrc/model/cbi/watchcat/watchcat.lua:15
-msgid "Operating mode"
+#: 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 ""
 
-#: 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 ""
index 4734874a15960d6d24ea2b9ae901b614fe7e81be..3183c15d0be665e648090dd5170d2931531ca4cd 100644 (file)
@@ -15,27 +15,75 @@ msgstr ""
 #: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21
 msgid "Forced reboot delay"
 msgstr "Påtvingt omstartsforsinkelse"
+#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:54
+msgid "<i>Applies to Ping Reboot and Network Restart modes</i>"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:78
+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:94
+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:69
+msgid "Big: 248 bytes"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:56
+msgid "Check Interval"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:77
+msgid "Force Reboot Delay"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:25
+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 "Innvilg UCI-tilgang for luci-app-watchcat"
 
-#: 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:18
+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:49
+msgid "Host To Check"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:57
 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:70
+msgid "Huge: 1492 bytes"
 msgstr ""
 
-#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:100
 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
@@ -45,33 +93,98 @@ msgstr "Driftsmodus"
 #: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30
 msgid "Period"
 msgstr "Periode"
+#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:24
+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:86
+msgid "Interface"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:87
+msgid "Interface to monitor and/or restart"
+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:71
+msgid "Jumbo: 9000 bytes"
 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:28
+msgid "Mode"
 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"
 msgstr "Watchcat"
+#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:91
+msgid "Name of ModemManager Interface"
+msgstr ""
 
-#: 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:37
+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:22
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
+msgid "Periodic Reboot"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65
+msgid "Ping Packet Size"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:32
+msgid "Ping Reboot"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
 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"
+"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:34
+msgid "Restart Interface"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:66
+msgid "Small: 1 byte"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:68
+msgid "Standard: 56 bytes"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:21
+msgid "These rules will govern how this device reacts to network events."
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:99
+msgid "Unlock Modem Bands"
+msgstr ""
+
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:17
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:21
+#: 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:67
+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 "
index 13643dd32292ff66ad242fdc75e9d272f1708c59..c7592ba574459d2b88568906aa7d26c89bfb7eb9 100644 (file)
@@ -13,74 +13,216 @@ msgstr ""
 "|| n%100>=20) ? 1 : 2;\n"
 "X-Generator: Weblate 4.1-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 ""
+
+#: 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 "Udziel dostępu UCI do 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/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: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: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 ""
-"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"
 
-#: 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 ""
-"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"
 
-#: 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 ""
+
+#: 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 "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 ""
+
+#: 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/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:62
+msgid "Standard: 56 bytes"
+msgstr ""
 
-#: 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."
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
+msgid "Windows: 32 bytes"
 msgstr ""
-"Watchcat pozwala na skonfigurowanie okresowych restartów, jeśli połączenie "
-"internetowe zostanie utracone na 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"
-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"
+#~ 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"
index 5a6a7a3aae1f657853f089edcf1d638e5cab49bc..9b2543701c0d45c65c31192adc36ca946c990510 100644 (file)
@@ -12,74 +12,217 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.2-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 ""
+
+#: 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 "Conceder acesso UCI ao 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/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: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: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"
 
-#: 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 ""
-"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"
 
-#: 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: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 "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 ""
+
+#: 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/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:62
+msgid "Standard: 56 bytes"
+msgstr ""
 
-#: 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."
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
+msgid "Windows: 32 bytes"
 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/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 uma quantidade de "
-"segundos para ativar, use 0 para desativar"
+#~ 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"
index 8dbb21c08b2e4302d769e719cdd9139d92363a12..7dce7bcc844ff4b40c1e384996036a2982e88b34 100644 (file)
@@ -13,75 +13,217 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
 "X-Generator: Weblate 4.1-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 ""
+
+#: 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 "Conceda acesso UCI ao 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/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: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: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"
 
-#: 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 ""
-"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"
 
-#: 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: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 "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 ""
+
+#: 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/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:62
+msgid "Standard: 56 bytes"
+msgstr ""
 
-#: 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."
+#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
+msgid "Windows: 32 bytes"
 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/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 "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"
index 6d5a64494b8dc638a4afc9a35e51478ca638a741..6f446cf78db1ea6a3315710533f195ea32ad1956 100644 (file)
@@ -12,62 +12,163 @@ 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/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: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/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/luasrc/model/cbi/watchcat/watchcat.lua:15
-msgid "Operating mode"
+#: 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 "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 ""
index 05c9e723163593a36c83f9b070b525f920919b29..b2097a913a82dee6759928f221a295e38557837e 100644 (file)
@@ -16,76 +16,218 @@ msgstr ""
 "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 ""
+
+#: 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 ""
 
-#: 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/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: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 ""
+
+#: 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/luasrc/model/cbi/watchcat/watchcat.lua:46
-msgid "Ping period"
-msgstr "Период пинг-запроса"
+#: 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 позволяет настроить периодическую перезагрузку, при потере Интернет "
-"соединения на определенное время."
 
-#: 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', чтобы отключить"
index 3d98d09992c45814c366a82e77ea3733bc5d8b95..d9ea2b848310faebcb9d73bf017db848e883ca89 100644 (file)
@@ -8,62 +8,163 @@ 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/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: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/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/luasrc/model/cbi/watchcat/watchcat.lua:15
-msgid "Operating mode"
+#: 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 ""
 
-#: 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 ""
index 34999ebf4a278c165e8da7663eb5edde8c1bea2a..2750c72a7b2e8b97e0bf2a0cd33f3da5cd56182b 100644 (file)
@@ -12,74 +12,214 @@ 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/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 ""
-"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:64
+msgid "Huge: 1492 bytes"
+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"
+"If using ModemManager, then before restarting the interface, set the modem "
+"to be allowed to use any band."
 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: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/luasrc/model/cbi/watchcat/watchcat.lua:30
+#: 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 "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/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 "Period för pingning"
+#: 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 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"
index 32fab932d7c82fa638939fe4842b368622c34eeb..755e7eb50594eb170cb02a9a0ab4fa94233a061e 100644 (file)
 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/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: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/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/luasrc/model/cbi/watchcat/watchcat.lua:15
-msgid "Operating mode"
+#: 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 ""
 
-#: 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 ""
index a6ef2dff0bb17f92a629fa7035fa7ad515550bc6..c7d643aeedd86409e1f9b7f72ce5587ae80e669e 100644 (file)
@@ -12,62 +12,169 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 4.4.1-dev\n"
 
-#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21
-msgid "Forced reboot delay"
-msgstr "Zorla yeniden başlatma gecikmesi"
+#: 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 için UCI erişimi verin"
+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: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/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/luasrc/model/cbi/watchcat/watchcat.lua:15
-msgid "Operating mode"
+#: 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 ""
 
-#: 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 "Zorla yeniden başlatma gecikmesi"
+
+#~ msgid "Grant UCI access for luci-app-watchcat"
+#~ msgstr "luci-app-watchcat için UCI erişimi verin"
index b81eb8f7c2cd9ab7be848acb94c0fdc4f8f8ce12..84517a2be27fbe357482988f8715feca24691e05 100644 (file)
@@ -13,67 +13,193 @@ msgstr ""
 "4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "X-Generator: Weblate 3.11\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/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 "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 ""
-"Як часто перевіряти підключення до інтернету. Типові одиниці виміру — "
-"секунди, ви можете використовувати суфікс «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/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/luasrc/model/cbi/watchcat/watchcat.lua:15
-msgid "Operating 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 "Період"
 
-#: 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 дозволяє налаштувати періодичні перезавантаження коли "
+#~ "підключення до інтернету було втрачено протягом певного періоду часу."
index eede16999e1b0c2e9614d4145e3ef46df9d32bd1..aed555bbc32fb4e0f97464f3c8424ab5b81044d0 100644 (file)
@@ -8,62 +8,163 @@ 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/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: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/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/luasrc/model/cbi/watchcat/watchcat.lua:15
-msgid "Operating mode"
+#: 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 ""
 
-#: 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 ""
index e691bf972ca48cd220f7018f3f3f790fea436327..e4627245b85823e36560300c0b248aec4336c145 100644 (file)
@@ -15,69 +15,211 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 4.4.1-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 "授予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 "要 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: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"
+"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 "授予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 禁用"
index 11564461be83443e6d426f84c0efd30742fd9375..712c902cf0130f406f0214ce0b81ca9d992fdbe6 100644 (file)
@@ -15,65 +15,213 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 4.4.1-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/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: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: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 ""
-"在週期模式下,此處定義為「重新啟動的週期」;在 Internet 模式下,它定義為在重新啟動以前無法存取 Internet "
-"的「最長時間段」。預設單位為「秒」,您還可以使用字尾 \"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/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 "週期"
 
-#: 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/luasrc/model/cbi/watchcat/watchcat.lua:46
-msgid "Ping period"
-msgstr "ping 週期"
+#: 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
-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」則表示停用"
+
+#~ 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」則表示停用"
index 80f141acd6e410671efc2d6814d65f977eda7f5c..720c00509dca5901751629d62b5523a34f66d734 100644 (file)
@@ -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" ]
                }
        }
 }
index 29de34b6d341fe0b67dc54a351891942cc782c12..ef306fab129247c8a1db5e2745ecdad5b426102b 100644 (file)
@@ -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" ]
                }
        }
 }