Merge pull request #4658 from nickberry17/update_luci_watchcat

luci-app-watchcat: add support for new features + JS refactor
This commit is contained in:
Florian Eckert 2021-03-04 15:25:31 +01:00 committed by GitHub
commit de90da1464
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
38 changed files with 5523 additions and 1446 deletions

View 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 . # This is free software, licensed under the Apache License, Version 2.0 .
#
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
LUCI_TITLE:=LuCI Support for Watchcat LUCI_TITLE:=LuCI Support for Watchcat
LUCI_DEPENDS:=+luci-compat +watchcat LUCI_DEPENDS:=+watchcat
include ../../luci.mk include ../../luci.mk

View file

@ -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();
}
});

View file

@ -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

View file

@ -10,62 +10,163 @@ msgstr ""
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "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" "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" 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 "" msgstr ""
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 #: 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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
msgid "Host address to ping"
msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
msgid "" msgid ""
"How often to check internet connection. Default unit is seconds, you can you " "Here you can set up several checks and actions to take in the event that a "
"use the suffix 'm' for minutes, 'h' for hours or 'd' for days" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"up more than one action."
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Operating mode" msgid "Huge: 1492 bytes"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: 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 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" msgid "Period"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period 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"
msgstr "" msgstr ""

View file

@ -9,62 +9,163 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" 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 "" msgstr ""
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 #: 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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
msgid "Host address to ping"
msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
msgid "" msgid ""
"How often to check internet connection. Default unit is seconds, you can you " "Here you can set up several checks and actions to take in the event that a "
"use the suffix 'm' for minutes, 'h' for hours or 'd' for days" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"up more than one action."
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Operating mode" msgid "Huge: 1492 bytes"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: 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 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" msgid "Period"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period 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"
msgstr "" msgstr ""

View file

@ -9,62 +9,163 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" 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 "" msgstr ""
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 #: 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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
msgid "Host address to ping"
msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
msgid "" msgid ""
"How often to check internet connection. Default unit is seconds, you can you " "Here you can set up several checks and actions to take in the event that a "
"use the suffix 'm' for minutes, 'h' for hours or 'd' for days" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"up more than one action."
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Operating mode" msgid "Huge: 1492 bytes"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: 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 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" msgid "Period"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period 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"
msgstr "" msgstr ""

View file

@ -11,77 +11,216 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n" "X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" msgid ""
msgstr "Retard de reinici forçat" "<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 #: 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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
msgid "Host address to ping"
msgstr "Adreça de host per al ping"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
msgid "" msgid ""
"How often to check internet connection. Default unit is seconds, you can you " "Here you can set up several checks and actions to take in the event that a "
"use the suffix 'm' for minutes, 'h' for hours or 'd' for days" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"up more than one action."
msgstr "" 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:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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 "" 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 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Operating mode" msgid "Huge: 1492 bytes"
msgstr "Mode d'operació" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: 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 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" msgid "Period"
msgstr "Període" msgstr "Període"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "Host de ping" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "Període de ping" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "Watchcat" msgstr "Watchcat"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
#, fuzzy msgid "Windows: 32 bytes"
msgid ""
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period of time."
msgstr "" 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 #, fuzzy
msgid "" #~ msgid ""
"When rebooting the system, the watchcat will trigger a soft reboot. Entering " #~ "Watchcat allows configuring a periodic reboot when the Internet "
"a non zero value here will trigger a delayed hard reboot if the soft reboot " #~ "connection has been lost for a certain period of time."
"fails. Enter a number of seconds to enable, use 0 to disable" #~ msgstr ""
msgstr "" #~ "El Watchcat permet la configuració d'un reinici periòdic o un reinici "
"Al reiniciar el sistema, el Watchcat causarà un reinici suau. Introduïu un " #~ "quan la connexió d'Internet ha estat perdut fa un cert període de temps."
"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 " #, fuzzy
"inhabilitar." #~ 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."

View file

@ -12,75 +12,216 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 3.11-dev\n" "X-Generator: Weblate 3.11-dev\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" msgid ""
msgstr "Prodleva nuceného restartu" "<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 #: 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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
msgid "Host address to ping"
msgstr "Adresa zařízení, vůči kterému bude testováno připojení (ping)"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
msgid "" msgid ""
"How often to check internet connection. Default unit is seconds, you can you " "Here you can set up several checks and actions to take in the event that a "
"use the suffix 'm' for minutes, 'h' for hours or 'd' for days" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"up more than one action."
msgstr "" 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:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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 "" 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 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Operating mode" msgid "Huge: 1492 bytes"
msgstr "Režim fungování" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: 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 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" msgid "Period"
msgstr "Perioda" msgstr "Perioda"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "Cílové zařízení příkazu ping" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "Interval opakování testu ping" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "Watchcat" msgstr "Watchcat"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period of time."
msgstr "" 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 "Forced reboot delay"
msgid "" #~ msgstr "Prodleva nuceného restartu"
"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 " #~ msgid "Host address to ping"
"fails. Enter a number of seconds to enable, use 0 to disable" #~ msgstr "Adresa zařízení, vůči kterému bude testováno připojení (ping)"
msgstr ""
"Watchcat provádí \"měkký\" restart (hodnota 0). Zadáním nenulové hodnoty " #~ msgid ""
"nastavíte interval (v sekundách), po kterém bude proveden \"tvrdý\" restart, " #~ "How often to check internet connection. Default unit is seconds, you can "
"pokud \"měkký\" restart selhal" #~ "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"

View file

@ -12,76 +12,218 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.2-dev\n" "X-Generator: Weblate 4.2-dev\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" msgid ""
msgstr "Erzwungenen Neustart verzögern um" "<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 #: 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 "Gewähre UCI Zugriff auf luci-app-watchcat"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40
msgid "Host address to ping"
msgstr "Anzupingende Host-Adresse"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
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 "" 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:12
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "Here you can set up several checks and actions to take in the event that a "
"the longest period of time without internet access before a reboot is " "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "up more than one action."
"for hours or 'd' for days"
msgstr "" 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 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Operating mode" msgid "Host To Check"
msgstr "Betriebsart" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid ""
"How often to ping the host specified above. <br><br>The default unit is "
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
"li><ul>"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Huge: 1492 bytes"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js: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 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" msgid "Period"
msgstr "Periode" msgstr "Periode"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "Ping-Host" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "Ping-Zeitdauer" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "Watchcat" msgstr "Watchcat"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period of time."
msgstr "" 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 "Forced reboot delay"
msgid "" #~ msgstr "Erzwungenen Neustart verzögern um"
"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 " #~ msgid "Grant UCI access for luci-app-watchcat"
"fails. Enter a number of seconds to enable, use 0 to disable" #~ msgstr "Gewähre UCI Zugriff auf luci-app-watchcat"
msgstr ""
"Bei einem Neustart des Systems wird Watchcat einen Warmstart auslösen, wird " #~ msgid "Host address to ping"
"hier ein Wert ungleich Null eingegeben, wird ein Kaltstart ausgelöst, sollte " #~ msgstr "Anzupingende Host-Adresse"
"der Warmstart fehlschlagen. Geben Sie eine Zahl in Sekunden zur Aktivierung "
"an, 0 schaltet diese Funktion aus" #~ 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"

View file

@ -8,62 +8,163 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" 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 "" msgstr ""
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 #: 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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
msgid "Host address to ping"
msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
msgid "" msgid ""
"How often to check internet connection. Default unit is seconds, you can you " "Here you can set up several checks and actions to take in the event that a "
"use the suffix 'm' for minutes, 'h' for hours or 'd' for days" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"up more than one action."
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Operating mode" msgid "Huge: 1492 bytes"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: 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 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" msgid "Period"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period 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"
msgstr "" msgstr ""

View file

@ -8,75 +8,214 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" msgid ""
msgstr "Forced reboot delay" "<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 #: 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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
msgid "Host address to ping"
msgstr "Host address to ping"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
msgid "" msgid ""
"How often to check internet connection. Default unit is seconds, you can you " "Here you can set up several checks and actions to take in the event that a "
"use the suffix 'm' for minutes, 'h' for hours or 'd' for days" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"up more than one action."
msgstr "" 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:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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 "" 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 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Operating mode" msgid "Huge: 1492 bytes"
msgstr "Operating mode" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: 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 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" msgid "Period"
msgstr "Period" msgstr "Period"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "Ping host" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "Ping period" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "Watchcat" msgstr "Watchcat"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
#, fuzzy msgid "Windows: 32 bytes"
msgid ""
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period of time."
msgstr "" 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 #, fuzzy
msgid "" #~ msgid ""
"When rebooting the system, the watchcat will trigger a soft reboot. Entering " #~ "Watchcat allows configuring a periodic reboot when the Internet "
"a non zero value here will trigger a delayed hard reboot if the soft reboot " #~ "connection has been lost for a certain period of time."
"fails. Enter a number of seconds to enable, use 0 to disable" #~ msgstr ""
msgstr "" #~ "Watchcat allows to configure a periodic reboot and/or when internet "
"When rebooting the system the watchcat will trigger a soft reboot, Entering " #~ "connection has been lost for a certain period of time."
"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" #, 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"

View file

@ -13,74 +13,216 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.1-dev\n" "X-Generator: Weblate 4.1-dev\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" msgid ""
msgstr "Espera para forzar reinicio" "<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 #: 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 "Conceder acceso a UCI para luci-app-watchcat"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40
msgid "Host address to ping"
msgstr "Dirección de host para hacer ping"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
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 "" 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:12
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "Here you can set up several checks and actions to take in the event that a "
"the longest period of time without internet access before a reboot is " "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "up more than one action."
"for hours or 'd' for days"
msgstr "" 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 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Operating mode" msgid "Host To Check"
msgstr "Modo de operación" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid ""
"How often to ping the host specified above. <br><br>The default unit is "
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
"li><ul>"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Huge: 1492 bytes"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js: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 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" msgid "Period"
msgstr "Período" msgstr "Período"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "Host al que hacer ping" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "Período de ping" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "Watchcat" msgstr "Watchcat"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period of time."
msgstr "" 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 "Forced reboot delay"
msgid "" #~ msgstr "Espera para forzar reinicio"
"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 " #~ msgid "Grant UCI access for luci-app-watchcat"
"fails. Enter a number of seconds to enable, use 0 to disable" #~ msgstr "Conceder acceso a UCI para luci-app-watchcat"
msgstr ""
"Al reiniciar el sistema, el watchcat activará un reinicio suave. Si ingresa " #~ msgid "Host address to ping"
"un valor que no sea cero aquí, se iniciará un reinicio con retraso si el " #~ msgstr "Dirección de host para hacer ping"
"reinicio por software falla. Ingrese un número de segundos para activar, use "
"0 para desactivar" #~ 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"

View file

@ -9,62 +9,163 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" 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 "" msgstr ""
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 #: 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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
msgid "Host address to ping"
msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
msgid "" msgid ""
"How often to check internet connection. Default unit is seconds, you can you " "Here you can set up several checks and actions to take in the event that a "
"use the suffix 'm' for minutes, 'h' for hours or 'd' for days" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"up more than one action."
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Operating mode" msgid "Huge: 1492 bytes"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: 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 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" msgid "Period"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period 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"
msgstr "" msgstr ""

View file

@ -12,76 +12,218 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.2-dev\n" "X-Generator: Weblate 4.2-dev\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" msgid ""
msgstr "Délai pour le reboot forcé" "<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 #: 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 "Accorder l'accès UCI à luci-app-watchcat"
#: 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/luasrc/model/cbi/watchcat/watchcat.lua:47
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 "" 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:12
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "Here you can set up several checks and actions to take in the event that a "
"the longest period of time without internet access before a reboot is " "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "up more than one action."
"for hours or 'd' for days"
msgstr "" 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 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Operating mode" msgid "Host To Check"
msgstr "Mode de fonctionnement" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid ""
"How often to ping the host specified above. <br><br>The default unit is "
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
"li><ul>"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Huge: 1492 bytes"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js: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 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" msgid "Period"
msgstr "Période" msgstr "Période"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "Hôte destinataire du ping" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "Période Ping" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "Watchcat" msgstr "Watchcat"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period of time."
msgstr "" 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 "Forced reboot delay"
msgid "" #~ msgstr "Délai pour le reboot forcé"
"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 " #~ msgid "Grant UCI access for luci-app-watchcat"
"fails. Enter a number of seconds to enable, use 0 to disable" #~ msgstr "Accorder l'accès UCI à luci-app-watchcat"
msgstr ""
"Lors du redémarrage du système, le watchcat déclenche un soft reboot. " #~ msgid "Host address to ping"
"L'entrée d'une valeur non nulle ici déclenchera un hard reboot retardé si le " #~ msgstr "Adresse hôte à envoyer au ping"
"soft reboot échoue. Entrez un nombre de secondes pour activer, utilisez 0 "
"pour désactiver" #~ 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"

View file

@ -8,62 +8,163 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" 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 "" msgstr ""
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 #: 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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
msgid "Host address to ping"
msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
msgid "" msgid ""
"How often to check internet connection. Default unit is seconds, you can you " "Here you can set up several checks and actions to take in the event that a "
"use the suffix 'm' for minutes, 'h' for hours or 'd' for days" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"up more than one action."
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Operating mode" msgid "Huge: 1492 bytes"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: 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 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" msgid "Period"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period 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"
msgstr "" msgstr ""

View file

@ -9,62 +9,163 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" 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 "" msgstr ""
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 #: 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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
msgid "Host address to ping"
msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
msgid "" msgid ""
"How often to check internet connection. Default unit is seconds, you can you " "Here you can set up several checks and actions to take in the event that a "
"use the suffix 'm' for minutes, 'h' for hours or 'd' for days" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"up more than one action."
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Operating mode" msgid "Huge: 1492 bytes"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: 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 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" msgid "Period"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period 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"
msgstr "" msgstr ""

View file

@ -11,70 +11,198 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n" "X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" msgid ""
msgstr "Kényszerített újraindítás késleltetése" "<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 #: 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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
#, fuzzy
msgid "Host address to ping"
msgstr "Pingelendő szerver címe"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
msgid "" msgid ""
"How often to check internet connection. Default unit is seconds, you can you " "Here you can set up several checks and actions to take in the event that a "
"use the suffix 'm' for minutes, 'h' for hours or 'd' for days" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"up more than one action."
msgstr "" 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:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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 "" 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 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Operating mode" msgid "Huge: 1492 bytes"
msgstr "Üzemmód" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: 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 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" msgid "Period"
msgstr "Periódus" msgstr "Periódus"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "Ping címe" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "Pingelések közti idő" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period of time."
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 #~ msgid "Forced reboot delay"
msgid "" #~ msgstr "Kényszerített újraindítás késleltetése"
"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 " #, fuzzy
"fails. Enter a number of seconds to enable, use 0 to disable" #~ msgid "Host address to ping"
msgstr "" #~ 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ő"

View file

@ -12,57 +12,159 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.5\n" "X-Generator: Weblate 4.5\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:88
msgid "Forced reboot delay" msgid ""
msgstr "Ritardo riavvio forzato" "<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 #: 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 UCI access for luci-app-watchcat"
msgstr "Concedi accesso UCI per luci-app-watchcat" msgstr "Concedi accesso UCI per luci-app-watchcat"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:18
msgid "Host address to ping"
msgstr "Indirizzo dell'host da pingare"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
msgid "" msgid ""
"How often to check internet connection. Default unit is seconds, you can you " "Here you can set up several checks and actions to take in the event that a "
"use the suffix 'm' for minutes, 'h' for hours or 'd' for days" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"up more than one action."
msgstr "" 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:49
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:57
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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 "" 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 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
msgid "Operating mode" msgid "Huge: 1492 bytes"
msgstr "Modalità" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:100
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:38
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/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" msgid "Period"
msgstr "Periodo" msgstr "Periodo"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
msgid "Ping host" msgid "Periodic Reboot"
msgstr "Ping host" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:65
msgid "Ping period" msgid "Ping Packet Size"
msgstr "Periodo del Ping" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 #: 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/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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "Watchcat" msgstr "Watchcat"
@ -71,17 +173,60 @@ msgstr "Watchcat"
msgid "" msgid ""
"Watchcat allows configuring a periodic reboot when the Internet connection " "Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period of time." "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 "" 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 "Forced reboot delay"
msgid "" #~ msgstr "Ritardo riavvio forzato"
"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 " #~ msgid "Host address to ping"
"fails. Enter a number of seconds to enable, use 0 to disable" #~ msgstr "Indirizzo dell'host da pingare"
msgstr ""
"Quando watchcat vuole riavviare il sistema usa un soft reboot, inserendo un " #~ msgid ""
"valore diverso da 0 in questo campo il proverà un hard reboot se il soft " #~ "How often to check internet connection. Default unit is seconds, you can "
"reboot fallisce. Inserisci un numero espresso in secondi per abilitare, usa " #~ "you use the suffix 'm' for minutes, 'h' for hours or 'd' for days"
"0 per disabilitare" #~ 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"

View file

@ -12,66 +12,215 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.4-dev\n" "X-Generator: Weblate 4.4-dev\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" msgid ""
msgstr "強制再起動遅延時間" "<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 #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
msgid "Grant UCI access for luci-app-watchcat" msgid "Grant access to LuCI app watchcat"
msgstr "luci-app-watchcatにUCIアクセスを許可"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40
msgid "Host address to ping"
msgstr "ping するホスト・アドレス"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
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' という接尾辞を使用できます"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31
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 "" msgstr ""
"定期動作モードの場合、再起動する周期を設定します。インターネットモードの場合、インターネット接続が切断状態にある許容する期間を設定します。初期設定の単位は"
"秒ですが、'm'を接尾に付けると分、'h'を付けると時、'd'を付けると日数に設定されます"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
msgid "Operating mode" msgid ""
msgstr "動作モード" "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:30 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid ""
"How often to ping the host specified above. <br><br>The default unit is "
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
"li><ul>"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Huge: 1492 bytes"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js: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 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" msgid "Period"
msgstr "周期" msgstr "周期"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "Ping 宛先ホスト" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "Ping 間隔" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "Watchcat" msgstr "Watchcat"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"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"
msgstr "" 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 を使用します"

View file

@ -9,62 +9,163 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" 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 "" msgstr ""
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 #: 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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
msgid "Host address to ping"
msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
msgid "" msgid ""
"How often to check internet connection. Default unit is seconds, you can you " "Here you can set up several checks and actions to take in the event that a "
"use the suffix 'm' for minutes, 'h' for hours or 'd' for days" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"up more than one action."
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Operating mode" msgid "Huge: 1492 bytes"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: 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 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" msgid "Period"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period 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"
msgstr "" msgstr ""

View file

@ -12,62 +12,169 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 3.11-dev\n" "X-Generator: Weblate 3.11-dev\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" msgid ""
msgstr "सक्तीने रीबूट विलंब" "<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 #: 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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
msgid "Host address to ping"
msgstr "पिंग होस्ट पत्ता"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
msgid "" msgid ""
"How often to check internet connection. Default unit is seconds, you can you " "Here you can set up several checks and actions to take in the event that a "
"use the suffix 'm' for minutes, 'h' for hours or 'd' for days" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"up more than one action."
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Operating mode" msgid "Huge: 1492 bytes"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: 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 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" msgid "Period"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period of time."
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 #~ msgid "Forced reboot delay"
msgid "" #~ 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 " #~ msgid "Host address to ping"
"fails. Enter a number of seconds to enable, use 0 to disable" #~ msgstr "पिंग होस्ट पत्ता"
msgstr ""

View file

@ -7,62 +7,163 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" 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 "" msgstr ""
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 #: 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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
msgid "Host address to ping"
msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
msgid "" msgid ""
"How often to check internet connection. Default unit is seconds, you can you " "Here you can set up several checks and actions to take in the event that a "
"use the suffix 'm' for minutes, 'h' for hours or 'd' for days" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"up more than one action."
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Operating mode" msgid "Huge: 1492 bytes"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: 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 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" msgid "Period"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period 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"
msgstr "" msgstr ""

View file

@ -15,27 +15,75 @@ msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21
msgid "Forced reboot delay" msgid "Forced reboot delay"
msgstr "Påtvingt omstartsforsinkelse" 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 #: 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 UCI access for luci-app-watchcat"
msgstr "Innvilg UCI-tilgang for luci-app-watchcat" msgstr "Innvilg UCI-tilgang for luci-app-watchcat"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:18
msgid "Host address to ping" 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 "" 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 "" msgid "Host To Check"
"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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:57
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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/htdocs/luci-static/resources/view/watchcat.js:100
msgid ""
"If using ModemManager, then before restarting the interface, set the modem "
"to be allowed to use any band."
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 #: 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 #: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30
msgid "Period" msgid "Period"
msgstr "Periode" msgstr "Periode"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:24
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 msgid ""
msgid "Ping host" "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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
msgid "Ping period" 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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:5 #: 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "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 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:37
msgid "" msgid "Period"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period of time."
msgstr "" msgstr ""
"Watchcat tillater oppsett av periodisk omstart når tilknytningen til " "Watchcat tillater oppsett av periodisk omstart når tilknytningen til "
"Internett har gått tapt en gitt periode." "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 "" msgid ""
"When rebooting the system, the watchcat will trigger a soft reboot. Entering " "Ping Reboot: Reboot this device if a ping to a specified host fails for a "
"a non zero value here will trigger a delayed hard reboot if the soft reboot " "specified duration of time. <br> Periodic Reboot: Reboot this device after a "
"fails. Enter a number of seconds to enable, use 0 to disable" "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 "" msgstr ""
"Ved omstart av systemet vil watchcat utløse en myk omstart. Å skrive inn et " "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 " "tall annet enn null her vil utløse en forsinket hard omstart hvis den mye "

View file

@ -13,74 +13,216 @@ msgstr ""
"|| n%100>=20) ? 1 : 2;\n" "|| n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.1-dev\n" "X-Generator: Weblate 4.1-dev\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" msgid ""
msgstr "Wymuszone opóźnienie restartu" "<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 #: 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 "Udziel dostępu UCI do luci-app-watchcat"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40
msgid "Host address to ping"
msgstr "Adres hosta do pingowania"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
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 "" 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:12
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "Here you can set up several checks and actions to take in the event that a "
"the longest period of time without internet access before a reboot is " "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "up more than one action."
"for hours or 'd' for days"
msgstr "" 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 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Operating mode" msgid "Host To Check"
msgstr "Tryb pracy" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid ""
"How often to ping the host specified above. <br><br>The default unit is "
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
"li><ul>"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Huge: 1492 bytes"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js: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 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" msgid "Period"
msgstr "Okres" msgstr "Okres"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "Host do pingowania" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "Czas pomiędzy wysyłaniem pingów" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "Watchcat" msgstr "Watchcat"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period of time."
msgstr "" 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 "Forced reboot delay"
msgid "" #~ msgstr "Wymuszone opóźnienie restartu"
"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 " #~ msgid "Grant UCI access for luci-app-watchcat"
"fails. Enter a number of seconds to enable, use 0 to disable" #~ msgstr "Udziel dostępu UCI do luci-app-watchcat"
msgstr ""
"Restart routera Watchcat wykonuje za pomocą tzw. \"miękkiego restartu\". " #~ msgid "Host address to ping"
"Wpisując tutaj wartość niezerową, wymusimy \"twardy restart\", jeśli " #~ msgstr "Adres hosta do pingowania"
"\"miękki restart\" się nie powiedzie. Podaj czas w sekundach lub wpisz 0 "
"(zero), aby wyłączyć restarty" #~ 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"

View file

@ -12,74 +12,217 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.2-dev\n" "X-Generator: Weblate 4.2-dev\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" msgid ""
msgstr "Atraso forçado para a reinicialização" "<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 #: 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 "Conceder acesso UCI ao luci-app-watchcat"
#: 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/luasrc/model/cbi/watchcat/watchcat.lua:47
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 "" 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:12
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "Here you can set up several checks and actions to take in the event that a "
"the longest period of time without internet access before a reboot is " "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "up more than one action."
"for hours or 'd' for days"
msgstr "" 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 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Operating mode" msgid "Host To Check"
msgstr "Modo de operação" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid ""
"How often to ping the host specified above. <br><br>The default unit is "
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
"li><ul>"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Huge: 1492 bytes"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js: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 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" msgid "Period"
msgstr "Periodo" msgstr "Periodo"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "Pingar host" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "Periodo de ping" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "Watchcat" msgstr "Watchcat"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period of time."
msgstr "" 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 "Forced reboot delay"
msgid "" #~ msgstr "Atraso forçado para a reinicialização"
"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 " #~ msgid "Grant UCI access for luci-app-watchcat"
"fails. Enter a number of seconds to enable, use 0 to disable" #~ msgstr "Conceder acesso UCI ao luci-app-watchcat"
msgstr ""
"Ao reiniciar o sistema, o watchcat acionará uma reinicialização suave. " #~ msgid "Host address to ping"
"Introduzir um valor diferente de zero aqui irá acionar uma reinicialização " #~ msgstr "Endereço de host para ping"
"rígida retardada se a reinicialização suave falhar. Digite uma quantidade de "
"segundos para ativar, use 0 para desativar" #~ 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"

View file

@ -13,75 +13,217 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.1-dev\n" "X-Generator: Weblate 4.1-dev\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" msgid ""
msgstr "Atraso para reinício forçado" "<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 #: 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 "Conceda acesso UCI ao luci-app-watchcat"
#: 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/luasrc/model/cbi/watchcat/watchcat.lua:47
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 "" 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:12
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "Here you can set up several checks and actions to take in the event that a "
"the longest period of time without internet access before a reboot is " "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "up more than one action."
"for hours or 'd' for days"
msgstr "" 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 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Operating mode" msgid "Host To Check"
msgstr "Modo de Operação" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid ""
"How often to ping the host specified above. <br><br>The default unit is "
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
"li><ul>"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Huge: 1492 bytes"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js: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 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" msgid "Period"
msgstr "Período" msgstr "Período"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "Pingar Máquina" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "Período de ping" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "Watchcat" msgstr "Watchcat"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period of time."
msgstr "" 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 "Forced reboot delay"
msgid "" #~ msgstr "Atraso para reinício forçado"
"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 " #~ msgid "Grant UCI access for luci-app-watchcat"
"fails. Enter a number of seconds to enable, use 0 to disable" #~ msgstr "Conceda acesso UCI ao luci-app-watchcat"
msgstr ""
"Ao reiniciar o sistema, o watchcat vai acionar uma reinicialização suave. " #~ msgid "Host address to ping"
"Inserir um valor não zero aqui irá acionar uma reinicialização forçada " #~ msgstr "Endereço do equipamento para efetuar o PING"
"atrasada se a reinicialização suave falhar. Digite um número de segundos "
"para habilitar, use 0 para desabilitar" #~ 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"

View file

@ -12,62 +12,163 @@ msgstr ""
"20)) ? 1 : 2);;\n" "20)) ? 1 : 2);;\n"
"X-Generator: Pootle 2.0.6\n" "X-Generator: Pootle 2.0.6\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" 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 "" msgstr ""
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 #: 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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
msgid "Host address to ping"
msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
msgid "" msgid ""
"How often to check internet connection. Default unit is seconds, you can you " "Here you can set up several checks and actions to take in the event that a "
"use the suffix 'm' for minutes, 'h' for hours or 'd' for days" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"up more than one action."
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Operating mode" msgid "Huge: 1492 bytes"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: 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 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" msgid "Period"
msgstr "Perioadă" msgstr "Perioadă"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period 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"
msgstr "" msgstr ""

View file

@ -16,76 +16,218 @@ msgstr ""
"Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" msgid ""
msgstr "Задержка<br />принудительной<br />перезагрузки" "<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 #: 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 "Предоставить UCI доступ для luci-app-watchcat"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40
msgid "Host address to ping"
msgstr "Адрес хоста для пинг-запроса"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
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 "" 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:12
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "Here you can set up several checks and actions to take in the event that a "
"the longest period of time without internet access before a reboot is " "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "up more than one action."
"for hours or 'd' for days"
msgstr "" msgstr ""
"В периодическом режиме, это значение задает период перезагрузки. В режиме "
"перезагрузки при потере Интернета, данное значение определяет максимальный "
"период времени без доступа в Интернет, после которого устройство "
"перезагружается. По умолчанию значение в секундах, вы можете использовать "
"суффикс 'm' для указания минут, 'h' - часов, 'd' - дней"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Operating mode" msgid "Host To Check"
msgstr "Режим работы" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid ""
"How often to ping the host specified above. <br><br>The default unit is "
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
"li><ul>"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Huge: 1492 bytes"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js: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 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" msgid "Period"
msgstr "Период" msgstr "Период"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "Хост пинг-запроса" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "Период пинг-запроса" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "Watchcat" msgstr "Watchcat"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period of time."
msgstr "" msgstr ""
"Watchcat позволяет настроить периодическую перезагрузку, при потере Интернет "
"соединения на определенное время."
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 #~ msgid "Forced reboot delay"
msgid "" #~ msgstr "Задержка<br />принудительной<br />перезагрузки"
"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 " #~ msgid "Grant UCI access for luci-app-watchcat"
"fails. Enter a number of seconds to enable, use 0 to disable" #~ msgstr "Предоставить UCI доступ для luci-app-watchcat"
msgstr ""
"При перезагрузке системы, watchcat вызовет программную перезагрузку. Ввод " #~ msgid "Host address to ping"
"ненулевого значения, вызовет отложенную аппаратную перезагрузку, если " #~ msgstr "Адрес хоста для пинг-запроса"
"программная перезагрузка не удастся. Введите количество секунд, чтобы "
"включить. Используйте '0', чтобы отключить" #~ 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', чтобы отключить"

View file

@ -8,62 +8,163 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\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 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" 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 "" msgstr ""
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 #: 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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
msgid "Host address to ping"
msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
msgid "" msgid ""
"How often to check internet connection. Default unit is seconds, you can you " "Here you can set up several checks and actions to take in the event that a "
"use the suffix 'm' for minutes, 'h' for hours or 'd' for days" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"up more than one action."
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Operating mode" msgid "Huge: 1492 bytes"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: 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 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" msgid "Period"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period 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"
msgstr "" msgstr ""

View file

@ -12,74 +12,214 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.10-dev\n" "X-Generator: Weblate 3.10-dev\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" msgid ""
msgstr "Fördröjning av påtvingad omstart" "<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 #: 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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
msgid "Host address to ping"
msgstr "Värdadress att pinga"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
msgid "" msgid ""
"How often to check internet connection. Default unit is seconds, you can you " "Here you can set up several checks and actions to take in the event that a "
"use the suffix 'm' for minutes, 'h' for hours or 'd' for days" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"up more than one action."
msgstr "" 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:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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 "" 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 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Operating mode" msgid "Huge: 1492 bytes"
msgstr "Driftsläge" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: 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 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" msgid "Period"
msgstr "Period" msgstr "Period"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "Pinga värd" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "Period för pingning" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "Watchcat" msgstr "Watchcat"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period of time."
msgstr "" 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 "Forced reboot delay"
msgid "" #~ msgstr "Fördröjning av påtvingad omstart"
"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 " #~ msgid "Host address to ping"
"fails. Enter a number of seconds to enable, use 0 to disable" #~ msgstr "Värdadress att pinga"
msgstr ""
"När systemet startar om kommer watchcat att utlösa en mjuk omstart. Om du " #~ msgid ""
"anger ett värde som inte är noll här kommer det att trigga en försenad hård " #~ "How often to check internet connection. Default unit is seconds, you can "
"omstart om den mjuka omstarten misslyckats. Ange ett antal sekunder för att " #~ "you use the suffix 'm' for minutes, 'h' for hours or 'd' for days"
"aktivera, använd 0 för att inaktivera" #~ 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"

View file

@ -1,62 +1,163 @@
msgid "" msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8" msgstr "Content-Type: text/plain; charset=UTF-8"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" 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 "" msgstr ""
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 #: 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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
msgid "Host address to ping"
msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
msgid "" msgid ""
"How often to check internet connection. Default unit is seconds, you can you " "Here you can set up several checks and actions to take in the event that a "
"use the suffix 'm' for minutes, 'h' for hours or 'd' for days" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"up more than one action."
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Operating mode" msgid "Huge: 1492 bytes"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: 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 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" msgid "Period"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period 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"
msgstr "" msgstr ""

View file

@ -12,62 +12,169 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.4.1-dev\n" "X-Generator: Weblate 4.4.1-dev\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" msgid ""
msgstr "Zorla yeniden başlatma gecikmesi" "<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 #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
msgid "Grant UCI access for luci-app-watchcat" msgid "Grant access to LuCI app watchcat"
msgstr "luci-app-watchcat için UCI erişimi verin"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40
msgid "Host address to ping"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
msgid "" msgid ""
"How often to check internet connection. Default unit is seconds, you can you " "Here you can set up several checks and actions to take in the event that a "
"use the suffix 'm' for minutes, 'h' for hours or 'd' for days" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"up more than one action."
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Operating mode" msgid "Huge: 1492 bytes"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: 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 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" msgid "Period"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period of time."
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 #~ msgid "Forced reboot delay"
msgid "" #~ msgstr "Zorla yeniden başlatma gecikmesi"
"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 " #~ msgid "Grant UCI access for luci-app-watchcat"
"fails. Enter a number of seconds to enable, use 0 to disable" #~ msgstr "luci-app-watchcat için UCI erişimi verin"
msgstr ""

View file

@ -13,67 +13,193 @@ msgstr ""
"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 3.11\n" "X-Generator: Weblate 3.11\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" msgid ""
msgstr "Затримка примусового перезавантаження" "<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 #: 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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
msgid "Host address to ping"
msgstr "Адреса сервера для перевірки зв'язку"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
msgid "" msgid ""
"How often to check internet connection. Default unit is seconds, you can you " "Here you can set up several checks and actions to take in the event that a "
"use the suffix 'm' for minutes, 'h' for hours or 'd' for days" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"up more than one action."
msgstr "" 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:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Operating mode" msgid "Huge: 1492 bytes"
msgstr "Режим роботи" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: 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 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" msgid "Period"
msgstr "Період" msgstr "Період"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "Пінг вузла" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "Період пінгів" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "Watchcat" msgstr "Watchcat"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period of time."
msgstr "" msgstr ""
"Watchcat дозволяє налаштувати періодичні перезавантаження коли підключення "
"до інтернету було втрачено протягом певного періоду часу."
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 #~ msgid "Forced reboot delay"
msgid "" #~ 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 " #~ msgid "Host address to ping"
"fails. Enter a number of seconds to enable, use 0 to disable" #~ msgstr "Адреса сервера для перевірки зв'язку"
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 дозволяє налаштувати періодичні перезавантаження коли "
#~ "підключення до інтернету було втрачено протягом певного періоду часу."

View file

@ -8,62 +8,163 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" 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 "" msgstr ""
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3 #: 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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
msgid "Host address to ping"
msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
msgid "" msgid ""
"How often to check internet connection. Default unit is seconds, you can you " "Here you can set up several checks and actions to take in the event that a "
"use the suffix 'm' for minutes, 'h' for hours or 'd' for days" "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"up more than one action."
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "How often to ping the host specified above. <br><br>The default unit is "
"the longest period of time without internet access before a reboot is " "seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"for hours or 'd' for days" "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 "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Operating mode" msgid "Huge: 1492 bytes"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: 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 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" msgid "Period"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"Watchcat allows configuring a periodic reboot when the Internet connection "
"has been lost for a certain period 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"
msgstr "" msgstr ""

View file

@ -15,69 +15,211 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.4.1-dev\n" "X-Generator: Weblate 4.4.1-dev\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" msgid ""
msgstr "强制重启延时" "<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 #: 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 "授予UCI访问luci-app-watchcat的权限"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40
msgid "Host address to ping"
msgstr "要 ping 的主机地址"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
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 "" 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:12
msgid "" msgid ""
"In periodic mode, it defines the reboot period. In internet mode, it defines " "Here you can set up several checks and actions to take in the event that a "
"the longest period of time without internet access before a reboot is " "host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
"engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "up more than one action."
"for hours or 'd' for days"
msgstr "" msgstr ""
"在周期模式下,此处定义了重启的周期。在联网模式下,这个表示没有网络连接情况下"
"到执行重启的最长时间间隔。默认单位为秒您可以使用“m”作为后缀表示分钟“h”表"
"示小时“d”表示天"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Operating mode" msgid "Host To Check"
msgstr "操作模式" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:30 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid ""
"How often to ping the host specified above. <br><br>The default unit is "
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
"li><ul>"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Huge: 1492 bytes"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js: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 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" msgid "Period"
msgstr "周期" msgstr "周期"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "Ping 主机" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "Ping 周期" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "Watchcat" msgstr "Watchcat"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"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"
msgstr "" 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 禁用"

View file

@ -15,65 +15,213 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.4.1-dev\n" "X-Generator: Weblate 4.4.1-dev\n"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
msgid "Forced reboot delay" msgid ""
msgstr "強制重新啟動延遲" "<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 #: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
msgid "Grant UCI access for luci-app-watchcat" msgid "Grant access to LuCI app watchcat"
msgstr "授予 luci-app-watchcat 擁有 UCI 存取的權限"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40
msgid "Host address to ping"
msgstr "通過 \"ping\" 測試的主機位址"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47
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\"(天)"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:31
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 "" msgstr ""
"在週期模式下,此處定義為「重新啟動的週期」;在 Internet 模式下,它定義為在重新啟動以前無法存取 Internet "
"的「最長時間段」。預設單位為「秒」,您還可以使用字尾 \"m\"(分鐘)、\"h\"(小時)、\"d\"(天)"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
msgid "Operating mode" msgid ""
msgstr "操作模式" "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:30 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:43
msgid "Host To Check"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:51
msgid ""
"How often to ping the host specified above. <br><br>The default unit is "
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
"<b>h</b> for hours or <b>d</b> for days. <br><br> Examples:<ul><li>10 "
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
"li><ul>"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:64
msgid "Huge: 1492 bytes"
msgstr ""
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js: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 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" msgid "Period"
msgstr "週期" msgstr "週期"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
msgid "Ping host" msgid "Periodic Reboot"
msgstr "ping 主機" msgstr ""
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:59
msgid "Ping period" msgid "Ping Packet Size"
msgstr "ping 週期" 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 #: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
msgid "Watchcat" msgid "Watchcat"
msgstr "Watchcat" msgstr "Watchcat"
#: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 #: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:61
msgid "" msgid "Windows: 32 bytes"
"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"
msgstr "" 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」則表示停用"

View file

@ -3,13 +3,11 @@
"title": "Watchcat", "title": "Watchcat",
"order": 90, "order": 90,
"action": { "action": {
"type": "cbi", "type": "view",
"path": "watchcat/watchcat", "path": "watchcat"
"post": { "cbi.submit": true }
}, },
"depends": { "depends": {
"acl": [ "luci-app-watchcat" ], "acl": [ "luci-app-watchcat" ]
"uci": { "system": true }
} }
} }
} }

View file

@ -1,11 +1,14 @@
{ {
"luci-app-watchcat": { "luci-app-watchcat": {
"description": "Grant UCI access for luci-app-watchcat", "description": "Grant access to LuCI app watchcat",
"read": { "read": {
"uci": [ "system" ] "file": {
"/usr/bin/watchcat.sh": [ "exec" ]
},
"uci": [ "watchcat" ]
}, },
"write": { "write": {
"uci": [ "system" ] "uci": [ "watchcat" ]
} }
} }
} }