mirror of
https://github.com/kenzok8/small-package
synced 2025-01-05 11:36:47 +08:00
update 2024-02-25 20:21:31
This commit is contained in:
parent
bf2dc1856f
commit
fccc91e98d
22
luci-app-gowebdav/Makefile
Normal file
22
luci-app-gowebdav/Makefile
Normal file
@ -0,0 +1,22 @@
|
||||
# Copyright (C) 2016 Openwrt.org
|
||||
#
|
||||
# This is a free software, use it under GNU General Public License v3.0.
|
||||
#
|
||||
# Created By ImmortalWrt
|
||||
# https://github.com/project-openwrt
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=luci-app-gowebdav
|
||||
PKG_VERSION:=1.0
|
||||
PKG_RELEASE:=1
|
||||
|
||||
LUCI_TITLE:=LuCI support for GoWebDav
|
||||
LUCI_DEPENDS:=+gowebdav
|
||||
LUCI_PKGARCH:=all
|
||||
|
||||
PKG_MAINTAINER:=CN_SZTL <cnsztl@immortalwrt.org>
|
||||
|
||||
include $(TOPDIR)/feeds/luci/luci.mk
|
||||
|
||||
# call BuildPackage - OpenWrt buildroot signature
|
22
luci-app-gowebdav/luasrc/controller/gowebdav.lua
Normal file
22
luci-app-gowebdav/luasrc/controller/gowebdav.lua
Normal file
@ -0,0 +1,22 @@
|
||||
module("luci.controller.gowebdav", package.seeall)
|
||||
|
||||
function index()
|
||||
if not nixio.fs.access("/etc/config/gowebdav") then
|
||||
return
|
||||
end
|
||||
|
||||
entry({"admin", "nas"}, firstchild(), _("NAS"), 45).dependent = false
|
||||
|
||||
local page = entry({"admin", "nas", "gowebdav"}, cbi("gowebdav"), _("GoWebDav"), 100)
|
||||
page.dependent = true
|
||||
page.acl_depends = { "luci-app-gowebdav" }
|
||||
|
||||
entry({"admin", "nas", "gowebdav", "status"}, call("act_status")).leaf = true
|
||||
end
|
||||
|
||||
function act_status()
|
||||
local e = {}
|
||||
e.running = luci.sys.call("pgrep gowebdav >/dev/null") == 0
|
||||
luci.http.prepare_content("application/json")
|
||||
luci.http.write_json(e)
|
||||
end
|
60
luci-app-gowebdav/luasrc/model/cbi/gowebdav.lua
Normal file
60
luci-app-gowebdav/luasrc/model/cbi/gowebdav.lua
Normal file
@ -0,0 +1,60 @@
|
||||
-- Created By ImmortalWrt
|
||||
-- https://github.com/immortalwrt
|
||||
|
||||
m = Map("gowebdav", translate("GoWebDav"))
|
||||
m.description = translate("GoWebDav is a tiny, simple, fast WevDav server.")
|
||||
|
||||
m:section(SimpleSection).template = "gowebdav/gowebdav_status"
|
||||
|
||||
s = m:section(TypedSection, "gowebdav")
|
||||
s.addremove = false
|
||||
s.anonymous = true
|
||||
|
||||
o = s:option(Flag, "enable", translate("Enable"))
|
||||
o.rmempty = false
|
||||
|
||||
o = s:option(Value, "listen_port", translate("Listen Port"))
|
||||
o.placeholder = 6086
|
||||
o.default = 6086
|
||||
o.datatype = "port"
|
||||
o.rmempty = false
|
||||
|
||||
o = s:option(Value, "username", translate("Username"))
|
||||
o.description = translate("Leave blank to disable auth.")
|
||||
o.datatype = "string"
|
||||
|
||||
o = s:option(Value, "password", translate("Password"))
|
||||
o.description = translate("Leave blank to disable auth.")
|
||||
o.datatype = "string"
|
||||
o.password = true
|
||||
|
||||
o = s:option(Value, "root_dir", translate("Root Directory"))
|
||||
o.placeholder = "/mnt"
|
||||
o.default = "/mnt"
|
||||
o.rmempty = false
|
||||
|
||||
o = s:option(Flag, "read_only", translate("Read-Only Mode"))
|
||||
o.rmempty = false
|
||||
|
||||
o = s:option(Flag, "show_hidden", translate("Show Hidden Files"))
|
||||
o.rmempty = false
|
||||
|
||||
o = s:option(Flag, "allow_wan", translate("Allow Access From Internet"))
|
||||
o.rmempty = false
|
||||
|
||||
o = s:option(Flag, "use_https", translate("Use HTTPS instead of HTTP"))
|
||||
o.rmempty = false
|
||||
|
||||
o = s:option(Value, "cert_cer", translate("Path to Certificate"))
|
||||
o.datatype = "file"
|
||||
o:depends("use_https", 1)
|
||||
|
||||
o = s:option(Value, "cert_key", translate("Path to Certificate Key"))
|
||||
o.datatype = "file"
|
||||
o:depends("use_https", 1)
|
||||
|
||||
o = s:option(Button, "download_reg", translate("Download Reg File"))
|
||||
o.template = "gowebdav/download_reg"
|
||||
o.description = translate("Windows doesn't allow HTTP auth by default, you need to import this reg key to enable it (Reboot needed).")
|
||||
|
||||
return m
|
15
luci-app-gowebdav/luasrc/view/gowebdav/download_reg.htm
Normal file
15
luci-app-gowebdav/luasrc/view/gowebdav/download_reg.htm
Normal file
@ -0,0 +1,15 @@
|
||||
<%+cbi/valueheader%>
|
||||
<script type="text/javascript">//<![CDATA[
|
||||
function download(filename, reg) {
|
||||
var element = document.createElement('a');
|
||||
element.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(reg));
|
||||
element.setAttribute('download', filename);
|
||||
element.style.display = 'none';
|
||||
document.body.appendChild(element);
|
||||
element.click();
|
||||
document.body.removeChild(element);
|
||||
};
|
||||
//]]>
|
||||
</script>
|
||||
<input type="button" class="btn cbi-button cbi-button-reload" value="<%:Click Download%>" onclick='download("allow_http.reg","Windows Registry Editor Version 5.00\r\n\r\n[HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\WebClient\\Parameters]\r\n\"BasicAuthLevel\"=dword:00000002\r\n\"FileSizeLimitInBytes\"=dword:ffffffff")' />
|
||||
<%+cbi/valuefooter%>
|
27
luci-app-gowebdav/luasrc/view/gowebdav/gowebdav_status.htm
Normal file
27
luci-app-gowebdav/luasrc/view/gowebdav/gowebdav_status.htm
Normal file
@ -0,0 +1,27 @@
|
||||
<script type="text/javascript">//<![CDATA[
|
||||
XHR.poll(1, '<%=url([[admin]], [[nas]], [[gowebdav]], [[status]])%>', null,
|
||||
function(x, data) {
|
||||
var tb = document.getElementById('gowebdav_status');
|
||||
if (data && tb) {
|
||||
if (data.running) {
|
||||
var links = '<em style=\"color:green\"><b>GoWebDav <%:RUNNING%></b></em><input class="cbi-button cbi-button-reload mar-10" type="button" value="<%:Open Web Interface%>" onclick="openwebui();" />';
|
||||
tb.innerHTML = links;
|
||||
} else {
|
||||
tb.innerHTML = '<em style=\"color:red\"><b>GoWebDav <%:NOT RUNNING%></b></em>';
|
||||
}
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
function openwebui() {
|
||||
var url = window.location.hostname+":<%=luci.sys.exec("uci -q get gowebdav.config.listen_port"):gsub("^%s*(.-)%s*$", "%1")%>";
|
||||
window.open('http://'+url,'target','');
|
||||
};
|
||||
//]]>
|
||||
</script>
|
||||
<style>.mar-10 {margin-left: 50px; margin-right: 10px;}</style>
|
||||
<fieldset class="cbi-section">
|
||||
<p id="gowebdav_status">
|
||||
<em><%:Collecting data...%></em>
|
||||
</p>
|
||||
</fieldset>
|
53
luci-app-gowebdav/po/zh_Hans/gowebdav.po
Normal file
53
luci-app-gowebdav/po/zh_Hans/gowebdav.po
Normal file
@ -0,0 +1,53 @@
|
||||
msgid "GoWebDav"
|
||||
msgstr "GoWebDav"
|
||||
|
||||
msgid "GoWebDav is a tiny, simple, fast WevDav server."
|
||||
msgstr "GoWebDav 是一个轻巧、简单、快速的 WebDav 服务端程序。"
|
||||
|
||||
msgid "Enable"
|
||||
msgstr "启用"
|
||||
|
||||
msgid "Listen Port"
|
||||
msgstr "监听端口"
|
||||
|
||||
msgid "Username"
|
||||
msgstr "用户名"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "密码"
|
||||
|
||||
msgid "Leave blank to disable auth."
|
||||
msgstr "留空以禁用身份验证。"
|
||||
|
||||
msgid "Root Directory"
|
||||
msgstr "开放目录"
|
||||
|
||||
msgid "Read-Only Mode"
|
||||
msgstr "只读模式"
|
||||
|
||||
msgid "Show Hidden Files"
|
||||
msgstr "显示隐藏文件"
|
||||
|
||||
msgid "Download Reg File"
|
||||
msgstr "下载注册表文件"
|
||||
|
||||
msgid "Click Download"
|
||||
msgstr "点击下载"
|
||||
|
||||
msgid "Windows doesn't allow HTTP auth by default, you need to import this reg key to enable it (Reboot needed)."
|
||||
msgstr "Windows 系统默认不允许 HTTP 鉴权,您需要手动导入注册表文件以开启此功能(需重启)。"
|
||||
|
||||
msgid "Allow Access From Internet"
|
||||
msgstr "允许从外网访问"
|
||||
|
||||
msgid "Use HTTPS instead of HTTP"
|
||||
msgstr "使用 HTTPS 模式"
|
||||
|
||||
msgid "Path to Certificate"
|
||||
msgstr "证书位置"
|
||||
|
||||
msgid "Path to Certificate Key"
|
||||
msgstr "密钥位置"
|
||||
|
||||
msgid "Open Web Interface"
|
||||
msgstr "打开 Web 界面"
|
17
luci-app-gowebdav/root/etc/uci-defaults/luci-gowebdav
Executable file
17
luci-app-gowebdav/root/etc/uci-defaults/luci-gowebdav
Executable file
@ -0,0 +1,17 @@
|
||||
#!/bin/sh
|
||||
|
||||
uci -q batch <<-EOF >/dev/null
|
||||
delete ucitrack.@gowebdav[-1]
|
||||
add ucitrack gowebdav
|
||||
set ucitrack.@gowebdav[-1].init=gowebdav
|
||||
commit ucitrack
|
||||
delete firewall.gowebdav
|
||||
set firewall.gowebdav=include
|
||||
set firewall.gowebdav.type=script
|
||||
set firewall.gowebdav.path=/var/etc/gowebdav.include
|
||||
set firewall.gowebdav.reload=1
|
||||
commit firewall
|
||||
EOF
|
||||
|
||||
rm -f /tmp/luci-indexcache
|
||||
exit 0
|
@ -0,0 +1,11 @@
|
||||
{
|
||||
"luci-app-gowebdav": {
|
||||
"description": "Grant UCI access for luci-app-gowebdav",
|
||||
"read": {
|
||||
"uci": [ "gowebdav" ]
|
||||
},
|
||||
"write": {
|
||||
"uci": [ "gowebdav" ]
|
||||
}
|
||||
}
|
||||
}
|
12
luci-app-ota/Makefile
Executable file
12
luci-app-ota/Makefile
Executable file
@ -0,0 +1,12 @@
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
LUCI_TITLE:=LuCI for OTA upgrade
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+curl +jsonfilter
|
||||
PKG_VERSION:=1.1
|
||||
PKG_RELEASE:=4
|
||||
PKG_MAINTAINER:=jjm2473 <jjm2473@gmail.com>
|
||||
|
||||
include $(TOPDIR)/feeds/luci/luci.mk
|
||||
# call BuildPackage - OpenWrt buildroot signature
|
175
luci-app-ota/luasrc/controller/admin/ota.lua
Normal file
175
luci-app-ota/luasrc/controller/admin/ota.lua
Normal file
@ -0,0 +1,175 @@
|
||||
--[[
|
||||
LuCI - Lua Configuration Interface
|
||||
Copyright 2021 jjm2473
|
||||
]]--
|
||||
|
||||
require "luci.util"
|
||||
module("luci.controller.admin.ota",package.seeall)
|
||||
|
||||
function index()
|
||||
if nixio.fs.access("/rom/bin/ota") then
|
||||
entry({"admin", "system", "ota"}, call("action_ota"), _("OTA"), 69)
|
||||
entry({"admin", "system", "ota", "check"}, post("action_check"))
|
||||
entry({"admin", "system", "ota", "download"}, post("action_download"))
|
||||
entry({"admin", "system", "ota", "progress"}, call("action_progress"))
|
||||
entry({"admin", "system", "ota", "cancel"}, post("action_cancel"))
|
||||
end
|
||||
end
|
||||
|
||||
local function ota_exec(cmd)
|
||||
local nixio = require "nixio"
|
||||
local os = require "os"
|
||||
local fs = require "nixio.fs"
|
||||
local rshift = nixio.bit.rshift
|
||||
|
||||
local oflags = nixio.open_flags("wronly", "creat")
|
||||
local lock, code, msg = nixio.open("/var/lock/ota_api.lock", oflags)
|
||||
if not lock then
|
||||
return 255, "", "Open stdio lock failed: " .. msg
|
||||
end
|
||||
|
||||
-- Acquire lock
|
||||
local stat, code, msg = lock:lock("tlock")
|
||||
if not stat then
|
||||
lock:close()
|
||||
return 255, "", "Lock stdio failed: " .. msg
|
||||
end
|
||||
|
||||
local r = os.execute(cmd .. " >/var/log/ota.stdout 2>/var/log/ota.stderr")
|
||||
local e = fs.readfile("/var/log/ota.stderr")
|
||||
local o = fs.readfile("/var/log/ota.stdout")
|
||||
|
||||
fs.unlink("/var/log/ota.stderr")
|
||||
fs.unlink("/var/log/ota.stdout")
|
||||
|
||||
lock:lock("ulock")
|
||||
lock:close()
|
||||
|
||||
e = e or ""
|
||||
if r == 256 and e == "" then
|
||||
e = "os.execute failed, is /var/log full or not existed?"
|
||||
end
|
||||
return rshift(r, 8), o or "", e or ""
|
||||
end
|
||||
|
||||
local function image_supported(image)
|
||||
return (os.execute("sysupgrade -T %q >/dev/null" % image) == 0)
|
||||
end
|
||||
|
||||
function action_ota()
|
||||
local image_tmp = "/tmp/firmware.img"
|
||||
local http = require "luci.http"
|
||||
if http.formvalue("apply") == "1" then
|
||||
if not image_supported(image_tmp) then
|
||||
luci.template.render("admin_system/ota", {image_invalid = true})
|
||||
return
|
||||
end
|
||||
local keep = (http.formvalue("keep") == "1") and "" or "-n"
|
||||
luci.template.render("admin_system/ota_flashing", {
|
||||
title = luci.i18n.translate("Flashing…"),
|
||||
msg = luci.i18n.translate("The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a few minutes before you try to reconnect. It might be necessary to renew the address of your computer to reach the device again, depending on your settings."),
|
||||
addr = (#keep > 0) and "10.0.0.1" or nil
|
||||
})
|
||||
fork_exec("sleep 1; killall dropbear uhttpd nginx; sleep 1; /etc/init.d/dockerd stop; sync; echo 3 > /proc/sys/vm/drop_caches; sleep 3; /sbin/sysupgrade %s %q" %{ keep, image_tmp })
|
||||
else
|
||||
luci.template.render("admin_system/ota")
|
||||
end
|
||||
end
|
||||
|
||||
function action_check()
|
||||
local r,o,e = ota_exec("ota check")
|
||||
local ret = {
|
||||
code = 500,
|
||||
msg = "Unknown"
|
||||
}
|
||||
if r == 0 then
|
||||
ret.code = 0
|
||||
ret.msg = o
|
||||
elseif r == 1 then
|
||||
ret.code = 1
|
||||
ret.msg = "Already the latest firmware"
|
||||
else
|
||||
ret.code = 500
|
||||
ret.msg = e
|
||||
end
|
||||
luci.http.prepare_content("application/json")
|
||||
luci.http.write_json(ret)
|
||||
end
|
||||
|
||||
function action_download()
|
||||
local r,o,e = ota_exec("ota download")
|
||||
local ret = {
|
||||
code = 500,
|
||||
msg = "Unknown"
|
||||
}
|
||||
if r == 0 then
|
||||
ret.code = 0
|
||||
ret.msg = ""
|
||||
else
|
||||
ret.code = 500
|
||||
ret.msg = e
|
||||
end
|
||||
luci.http.prepare_content("application/json")
|
||||
luci.http.write_json(ret)
|
||||
end
|
||||
|
||||
function action_progress()
|
||||
local r,o,e = ota_exec("ota progress")
|
||||
local ret = {
|
||||
code = 500,
|
||||
msg = "Unknown"
|
||||
}
|
||||
if r == 0 then
|
||||
ret.code = 0
|
||||
ret.msg = "done"
|
||||
elseif r == 1 or r == 2 then
|
||||
ret.code = r
|
||||
ret.msg = o
|
||||
else
|
||||
ret.code = 500
|
||||
ret.msg = e
|
||||
end
|
||||
luci.http.prepare_content("application/json")
|
||||
luci.http.write_json(ret)
|
||||
end
|
||||
|
||||
function action_cancel()
|
||||
local r,o,e = ota_exec("ota cancel")
|
||||
local ret = {
|
||||
code = 500,
|
||||
msg = "Unknown"
|
||||
}
|
||||
if r == 0 then
|
||||
ret.code = 0
|
||||
ret.msg = "ok"
|
||||
else
|
||||
ret.code = 500
|
||||
ret.msg = e
|
||||
end
|
||||
luci.http.prepare_content("application/json")
|
||||
luci.http.write_json(ret)
|
||||
end
|
||||
|
||||
function fork_exec(command)
|
||||
local pid = nixio.fork()
|
||||
if pid > 0 then
|
||||
return
|
||||
elseif pid == 0 then
|
||||
-- change to root dir
|
||||
nixio.chdir("/")
|
||||
|
||||
-- patch stdin, out, err to /dev/null
|
||||
local null = nixio.open("/dev/null", "w+")
|
||||
if null then
|
||||
nixio.dup(null, nixio.stderr)
|
||||
nixio.dup(null, nixio.stdout)
|
||||
nixio.dup(null, nixio.stdin)
|
||||
if null:fileno() > 2 then
|
||||
null:close()
|
||||
end
|
||||
end
|
||||
|
||||
-- replace with target command
|
||||
nixio.exec("/bin/sh", "-c", command)
|
||||
end
|
||||
end
|
217
luci-app-ota/luasrc/view/admin_system/ota.htm
Normal file
217
luci-app-ota/luasrc/view/admin_system/ota.htm
Normal file
@ -0,0 +1,217 @@
|
||||
<%#
|
||||
Licensed to the public under the Apache License 2.0.
|
||||
-%>
|
||||
|
||||
<%+header%>
|
||||
|
||||
<%
|
||||
local fs = require "nixio.fs"
|
||||
-%>
|
||||
|
||||
<h2 name="content"><%:OTA%></h2>
|
||||
|
||||
<style>
|
||||
.state-ctl .state {
|
||||
display: none;
|
||||
padding: 0 !important;
|
||||
margin: 0 !important;
|
||||
border: 0 !important;
|
||||
}
|
||||
|
||||
.state-ctl.state-ctl-unchecked .state.state-unchecked,
|
||||
.state-ctl.state-ctl-checked .state.state-checked,
|
||||
.state-ctl.state-ctl-downloading .state.state-downloading,
|
||||
.state-ctl.state-ctl-downloaded .state.state-downloaded
|
||||
{
|
||||
display: inherit;
|
||||
}
|
||||
|
||||
</style>
|
||||
<fieldset class="cbi-section">
|
||||
<fieldset class="cbi-section state-ctl state-ctl-unchecked">
|
||||
<legend><%:Upgrade firmware On the Air%></legend>
|
||||
<div class="cbi-section-descr"><%:Check and upgrade firmware from the Internet%></div>
|
||||
<% if image_invalid then %>
|
||||
<div class="cbi-section-error"><%:The image file does not contain a supported format. Maybe try again later.%></div>
|
||||
<% end %>
|
||||
<div class="cbi-section-node">
|
||||
<div class="state state-unchecked">
|
||||
<form>
|
||||
<div class="cbi-value">
|
||||
<label class="cbi-value-title" id="check_result"></label>
|
||||
<div class="cbi-value-field">
|
||||
<input class="cbi-button cbi-button-reload" type="button" name="check" value="<%:Check update%>" />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<div class="state state-checked">
|
||||
<form>
|
||||
<div class="cbi-value">
|
||||
<label class="cbi-value-title" id="download_result"><%:Found new firmware%></label>
|
||||
<div class="cbi-value-field">
|
||||
<input class="cbi-button cbi-button-apply" type="button" name="download" value="<%:Download firmware%>" />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<div class="state state-downloading">
|
||||
<form>
|
||||
<div class="cbi-value">
|
||||
<label class="cbi-value-title" id="download_progress">0%</label>
|
||||
<div class="cbi-value-field">
|
||||
<input class="cbi-button cbi-button-reset" type="button" name="cancel" value="<%:Cancel download%>" />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<div class="state state-downloaded">
|
||||
<% if fs.access("/usr/lib/lua/luci/controller/admin/system.lua") then %>
|
||||
<form method="post" action="<%=url('admin/system/flashops/sysupgrade')%>" enctype="multipart/form-data">
|
||||
<input type="hidden" name="token" value="<%=token%>" />
|
||||
<input type="hidden" name="step" value="1" />
|
||||
<div class="cbi-value">
|
||||
<label class="cbi-value-title"><%:Firmware downloaded%></label>
|
||||
<div class="cbi-value-field">
|
||||
<input type="submit" class="cbi-button cbi-input-apply" value="<%:Flash image...%>" />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<% else %>
|
||||
<form method="post" action="<%=url('admin/system/ota')%>">
|
||||
<input type="hidden" name="apply" value="1" />
|
||||
<input type="hidden" name="token" value="<%=token%>" />
|
||||
<div class="cbi-value">
|
||||
<label class="cbi-value-title" for="keep"><%:Keep settings and retain the current configuration%></label>
|
||||
<div class="cbi-value-field">
|
||||
<input type="checkbox" name="keep" value="1" id="keep" checked="checked" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="cbi-value cbi-value-last">
|
||||
<label class="cbi-value-title"><%:Firmware downloaded%></label>
|
||||
<div class="cbi-value-field">
|
||||
<input type="submit" class="cbi-button cbi-input-apply" value="<%:Flash image...%>" />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<% end %>
|
||||
</div>
|
||||
</div>
|
||||
<div class="state state-checked state-downloading state-downloaded">
|
||||
<div class="cbi-section-descr">
|
||||
<h2><%:The latest firmware%>:</h2>
|
||||
<div id="upgrade_log"></div>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
<script>
|
||||
(function(){
|
||||
var csrfToken = "<%=token%>";
|
||||
var check = document.querySelector('input[name="check"]');
|
||||
var download = document.querySelector('input[name="download"]');
|
||||
var cancel = document.querySelector('input[name="cancel"]');
|
||||
var state_ctl = document.querySelector('.state-ctl');
|
||||
var check_result = document.querySelector('#check_result');
|
||||
var download_result = document.querySelector('#download_result');
|
||||
var download_progress = document.querySelector('#download_progress');
|
||||
var upgrade_log = document.querySelector('#upgrade_log');
|
||||
|
||||
var xhr_post = function(url, data, cb) {
|
||||
data = data || {};
|
||||
data.token = '<%=token%>';
|
||||
new XHR().post(url, data, function(x, d){
|
||||
cb && cb(x, x.status==200?JSON.parse(x.responseText):{code:500,msg:x.responseText});
|
||||
});
|
||||
};
|
||||
var state_switch = function(from, to) {
|
||||
state_ctl.classList.remove("state-ctl-" + from);
|
||||
state_ctl.classList.add("state-ctl-" + to);
|
||||
};
|
||||
check.onclick = function(){
|
||||
check.disabled = 'disabled';
|
||||
check_result.innerText = "<%:Checking...%>";
|
||||
xhr_post("<%=url('admin/system/ota/check')%>", {}, function(x, d){
|
||||
check.disabled = undefined;
|
||||
switch(d.code){
|
||||
case 0:
|
||||
check_result.innerText = "";
|
||||
upgrade_log.innerHTML = d.msg;
|
||||
state_switch("unchecked", "checked");
|
||||
break;
|
||||
case 1:
|
||||
check_result.innerText = "<%:Already the latest firmware%>";
|
||||
break;
|
||||
default:
|
||||
check_result.innerText = "<%:Check failed%>";
|
||||
alert("<%:Check failed%>:\n"+d.msg);
|
||||
}
|
||||
});
|
||||
};
|
||||
var refresh_download_progress_paused = false;
|
||||
var refresh_download_progress_timer = null;
|
||||
var refresh_download_progress = function() {
|
||||
if (refresh_download_progress_paused) {
|
||||
refresh_download_progress_timer = setTimeout(refresh_download_progress, 500);
|
||||
return;
|
||||
}
|
||||
XHR.get("<%=url('admin/system/ota/progress')%>", {}, function(x, d){
|
||||
refresh_download_progress_timer = null;
|
||||
switch(d.code){
|
||||
case 0:
|
||||
download_progress.innerText = "";
|
||||
state_switch("downloading", "downloaded");
|
||||
break;
|
||||
case 1:
|
||||
if (d.msg.startsWith('#')) {
|
||||
if (!refresh_download_progress_paused)
|
||||
cancel.disabled = undefined;
|
||||
download_progress.innerText = "<%:Downloading%>: "+d.msg.replaceAll(/[# ]/g, '');
|
||||
} else {
|
||||
if (!refresh_download_progress_paused)
|
||||
cancel.disabled = 'disabled';
|
||||
download_progress.innerText = d.msg;
|
||||
}
|
||||
refresh_download_progress_timer = setTimeout(refresh_download_progress, 500);
|
||||
break;
|
||||
case 2:
|
||||
download_result.innerText = "<%:Download canceled%>";
|
||||
state_switch("downloading", "checked");
|
||||
break;
|
||||
default:
|
||||
download_result.innerText = "<%:Download failed%>";
|
||||
state_switch("downloading", "checked");
|
||||
alert("<%:Download failed%>:"+d.msg);
|
||||
}
|
||||
});
|
||||
};
|
||||
download.onclick = function(){
|
||||
download.disabled = 'disabled';
|
||||
xhr_post("<%=url('admin/system/ota/download')%>", {}, function(x, d){
|
||||
download.disabled = undefined;
|
||||
switch(d.code){
|
||||
case 0:
|
||||
download_progress.innerText = "<%:Downloading%>: ...";
|
||||
cancel.disabled = 'disabled';
|
||||
state_switch("checked", "downloading");
|
||||
refresh_download_progress_timer = setTimeout(refresh_download_progress, 500);
|
||||
break;
|
||||
default:
|
||||
alert("<%:Download failed%>:"+d.msg);
|
||||
}
|
||||
});
|
||||
};
|
||||
cancel.onclick = function() {
|
||||
cancel.disabled = 'disabled';
|
||||
refresh_download_progress_paused = true;
|
||||
|
||||
xhr_post("<%=url('admin/system/ota/cancel')%>", {}, function(x, d){
|
||||
refresh_download_progress_paused = false;
|
||||
});
|
||||
};
|
||||
})();
|
||||
</script>
|
||||
|
||||
</fieldset>
|
||||
|
||||
<%+footer%>
|
111
luci-app-ota/luasrc/view/admin_system/ota_flashing.htm
Normal file
111
luci-app-ota/luasrc/view/admin_system/ota_flashing.htm
Normal file
File diff suppressed because one or more lines are too long
1
luci-app-ota/po/zh-cn
Symbolic link
1
luci-app-ota/po/zh-cn
Symbolic link
@ -0,0 +1 @@
|
||||
zh_Hans
|
53
luci-app-ota/po/zh_Hans/ota.po
Normal file
53
luci-app-ota/po/zh_Hans/ota.po
Normal file
@ -0,0 +1,53 @@
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=UTF-8"
|
||||
|
||||
msgid "OTA"
|
||||
msgstr "在线升级"
|
||||
|
||||
msgid "Already the latest firmware"
|
||||
msgstr "已经是最新固件"
|
||||
|
||||
msgid "Check update"
|
||||
msgstr "检查更新"
|
||||
|
||||
msgid "Found new firmware"
|
||||
msgstr "发现新固件"
|
||||
|
||||
msgid "Download firmware"
|
||||
msgstr "下载固件"
|
||||
|
||||
msgid "Cancel download"
|
||||
msgstr "取消下载"
|
||||
|
||||
msgid "Firmware downloaded"
|
||||
msgstr "固件已下载"
|
||||
|
||||
msgid "Flash image..."
|
||||
msgstr "刷写固件..."
|
||||
|
||||
msgid "Checking..."
|
||||
msgstr "检查中..."
|
||||
|
||||
msgid "Check failed"
|
||||
msgstr "检查失败"
|
||||
|
||||
msgid "Downloading"
|
||||
msgstr "下载中"
|
||||
|
||||
msgid "Download canceled"
|
||||
msgstr "下载已取消"
|
||||
|
||||
msgid "Download failed"
|
||||
msgstr "下载失败"
|
||||
|
||||
msgid "Upgrade firmware On the Air"
|
||||
msgstr "在线升级固件"
|
||||
|
||||
msgid "Check and upgrade firmware from the Internet"
|
||||
msgstr "通过网络检查和更新固件"
|
||||
|
||||
msgid "The latest firmware"
|
||||
msgstr "最新固件"
|
||||
|
||||
msgid "The image file does not contain a supported format. Maybe try again later."
|
||||
msgstr "镜像文件格式不支持或损坏。也许稍候再试试"
|
147
luci-app-ota/root/bin/ota
Executable file
147
luci-app-ota/root/bin/ota
Executable file
@ -0,0 +1,147 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /etc/os-release
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
||||
API=$(uci -q get ota.config.api_url)
|
||||
WRLOCK=/var/lock/ota_background.lock
|
||||
|
||||
# x86_64
|
||||
[ $(uname -m) = "x86_64" ] && alias board_name="echo x86_64"
|
||||
|
||||
action=${1}
|
||||
shift
|
||||
|
||||
sha256() {
|
||||
sha256sum $1 | cut -d' ' -f1
|
||||
}
|
||||
|
||||
download() {
|
||||
read_json
|
||||
if [ -f /tmp/firmware.img ]; then
|
||||
echo "Checking existed firmware.img..." >> /tmp/firmware.img.progress
|
||||
if [ "`sha256 /tmp/firmware.img`" = "$FW_SHA256SUM" ]; then
|
||||
return 0;
|
||||
else
|
||||
echo "Check failed, redownload" >> /tmp/firmware.img.progress
|
||||
rm -f /tmp/firmware.img
|
||||
fi
|
||||
fi
|
||||
touch /tmp/firmware.img.progress
|
||||
echo 3 > /proc/sys/vm/drop_caches
|
||||
curl -kL -4 --user-agent 'SmartDrive/32106782 CFNetwork/1335.0.3 Darwin/21.6.0' --fail --show-error --connect-timeout 5 --progress-bar --no-buffer -o /tmp/firmware.img.part "$FW_URL" 2>/tmp/firmware.img.progress &
|
||||
echo "$! $PPID" > /var/run/ota/download.pid
|
||||
if wait $!; then
|
||||
rm -f /var/run/ota/download.pid
|
||||
echo "Checking new firmware.img.part..." > /tmp/firmware.img.progress
|
||||
if [ "`sha256 /tmp/firmware.img.part`" = "$FW_SHA256SUM" ]; then
|
||||
mv /tmp/firmware.img.part /tmp/firmware.img && echo $FW_SHA256SUM > /tmp/firmware.img.sha256sum
|
||||
rm -f /tmp/firmware.img.progress
|
||||
return 0
|
||||
else
|
||||
echo "Checksum failed!" >>/tmp/firmware.img.progress
|
||||
fi
|
||||
fi
|
||||
rm -f /var/run/ota/download.pid
|
||||
rm -f /tmp/firmware.img.part
|
||||
return 1
|
||||
}
|
||||
|
||||
lock_download() {
|
||||
local lock="$WRLOCK"
|
||||
exec 200>$lock
|
||||
flock -n 200 || return
|
||||
download
|
||||
flock -u 200
|
||||
}
|
||||
|
||||
# 0: found newer fw, 1: already newest fw, *: err
|
||||
do_check() {
|
||||
url_check=$(curl -I -o /dev/null -s -w %{http_code} "$API")
|
||||
[ $url_check -ne 200 ] && exit 255
|
||||
curl -s "$API" > /var/run/ota/fw.json
|
||||
read_json
|
||||
if [ "$BUILD_DATE" -lt "$FW_BUILD_DATE" ]; then
|
||||
echo "<h3>Firmware Date: <font color=\"green\">$(date "+%Y-%m-%d %H:%M:%S" -d "@$FW_BUILD_DATE")</font></h3>"
|
||||
return 0
|
||||
elif [ "$BUILD_DATE" -ge "$FW_BUILD_DATE" ]; then
|
||||
return 1
|
||||
else
|
||||
return 255
|
||||
fi
|
||||
}
|
||||
|
||||
# async download
|
||||
do_download(){
|
||||
[ ! -f "/var/run/ota/fw.json" ] && { echo "do check first" >&2 ; return 254; }
|
||||
lock_download &
|
||||
return 0
|
||||
}
|
||||
|
||||
# 0: done, 1: downloading, 2: failed, *: err
|
||||
do_progress() {
|
||||
read_json
|
||||
[ -f /tmp/firmware.img.sha256sum ] && [ "`cat /tmp/firmware.img.sha256sum`" = "$FW_SHA256SUM" ] && return 0
|
||||
[ -f /tmp/firmware.img.progress ] || { echo "download not in progress" >&2 ; return 254; }
|
||||
[ -f /tmp/firmware.img.part ] && { cat /tmp/firmware.img.progress | tr '\r' '\n' | tail -n1; return 1; }
|
||||
tail -1 /tmp/firmware.img.progress | grep -Fq 'Canceled!' && { echo "Canceled"; return 2; }
|
||||
grep -v '\r' /tmp/firmware.img.progress >&2
|
||||
return 1
|
||||
}
|
||||
|
||||
do_cancel() {
|
||||
if [ -f /var/run/ota/download.pid ]; then
|
||||
local pid=`cat /var/run/ota/download.pid`
|
||||
if [ -n "$pid" ]; then
|
||||
kill -TERM $pid;
|
||||
while kill -9 $pid >/dev/null 2>&1; do
|
||||
if ! sleep 1; then
|
||||
break
|
||||
fi
|
||||
done
|
||||
rm -rf /tmp/firmware.img* /var/lock/ota_background.lock /var/lock/ota_api.lock
|
||||
echo "" >> /tmp/firmware.img.progress
|
||||
echo "Canceled!" >> /tmp/firmware.img.progress
|
||||
fi
|
||||
fi
|
||||
return 0
|
||||
}
|
||||
|
||||
read_json(){
|
||||
FW_BUILD_DATE=$(jsonfilter -i /var/run/ota/fw.json -e "@['$(board_name)'][0]['build_date']")
|
||||
FW_SHA256SUM=$(jsonfilter -i /var/run/ota/fw.json -e "@['$(board_name)'][0]['sha256sum']")
|
||||
FW_URL=$(jsonfilter -i /var/run/ota/fw.json -e "@['$(board_name)'][0]['url']")
|
||||
}
|
||||
|
||||
ota_init(){
|
||||
mkdir -p /var/run/ota >/dev/null 2>&1 || true
|
||||
}
|
||||
|
||||
usage() {
|
||||
echo "usage: ota sub-command"
|
||||
echo "where sub-command is one of:"
|
||||
echo " check Check firmware upgrade"
|
||||
echo " download Download latest firmware"
|
||||
echo " progress Download progress"
|
||||
echo " cancel Cancel download"
|
||||
}
|
||||
|
||||
ota_init || exit 255
|
||||
|
||||
case $action in
|
||||
"check")
|
||||
do_check
|
||||
;;
|
||||
"download")
|
||||
do_download
|
||||
;;
|
||||
"progress")
|
||||
do_progress
|
||||
;;
|
||||
"cancel")
|
||||
do_cancel
|
||||
;;
|
||||
*)
|
||||
usage
|
||||
;;
|
||||
esac
|
3
luci-app-ota/root/etc/config/ota
Normal file
3
luci-app-ota/root/etc/config/ota
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
config ota 'config'
|
||||
option api_url ''
|
11
luci-app-ota/root/usr/share/rpcd/acl.d/luci-app-ota.json
Normal file
11
luci-app-ota/root/usr/share/rpcd/acl.d/luci-app-ota.json
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
"luci-app-ota": {
|
||||
"description": "Grant UCI access for luci-app-ota",
|
||||
"read": {
|
||||
"uci": [ "ota" ]
|
||||
},
|
||||
"write": {
|
||||
"uci": [ "ota" ]
|
||||
}
|
||||
}
|
||||
}
|
@ -6,7 +6,7 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=luci-app-passwall
|
||||
PKG_VERSION:=4.74-3
|
||||
PKG_VERSION:=4.74-4
|
||||
PKG_RELEASE:=
|
||||
|
||||
PKG_CONFIG_DEPENDS:= \
|
||||
|
@ -624,4 +624,11 @@ o:value("v2ray-plugin")
|
||||
o = s:option(Value, option_name("plugin_opts"), translate("opts"))
|
||||
o:depends({ [option_name("plugin_enabled")] = true })
|
||||
|
||||
o = s:option(ListValue, option_name("domain_strategy"), "Domain Strategy", translate("If is domain name, The requested domain name will be resolved to IP before connect."))
|
||||
o.default = "prefer_ipv6"
|
||||
o:value("prefer_ipv4")
|
||||
o:value("prefer_ipv6")
|
||||
o:value("ipv4_only")
|
||||
o:value("ipv6_only")
|
||||
|
||||
api.luci_types(arg[1], m, s, type_name, option_prefix)
|
||||
|
@ -73,6 +73,7 @@ function gen_outbound(flag, node, tag, proxy_table)
|
||||
type = node.protocol,
|
||||
server = node.address,
|
||||
server_port = tonumber(node.port),
|
||||
domain_strategy = node.domain_strategy,
|
||||
detour = node.detour,
|
||||
}
|
||||
|
||||
|
@ -1566,3 +1566,6 @@ msgstr "分片间隔"
|
||||
|
||||
msgid "Fragmentation interval (ms)"
|
||||
msgstr "分片间隔(ms)"
|
||||
|
||||
msgid "If is domain name, The requested domain name will be resolved to IP before connect."
|
||||
msgstr "如果是域名,域名将在请求发出之前解析为 IP。"
|
||||
|
@ -6,8 +6,8 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=luci-app-socat
|
||||
PKG_VERSION:=20230129
|
||||
PKG_RELEASE:=1
|
||||
PKG_VERSION:=1.0
|
||||
PKG_RELEASE:=6
|
||||
|
||||
PKG_MAINTAINER:=Lienol <lawlienol@gmail.com>
|
||||
|
||||
@ -15,10 +15,6 @@ LUCI_TITLE:=LuCI support for Socat
|
||||
LUCI_DEPENDS:=+socat
|
||||
LUCI_PKGARCH:=all
|
||||
|
||||
define Package/$(PKG_NAME)/conffiles
|
||||
/etc/config/socat
|
||||
endef
|
||||
|
||||
include $(TOPDIR)/feeds/luci/luci.mk
|
||||
|
||||
# call BuildPackage - OpenWrt buildroot signature
|
||||
|
@ -34,7 +34,7 @@ o.datatype = "portrange"
|
||||
o.rmempty = false
|
||||
o:depends("protocol", "port_forwards")
|
||||
|
||||
o = s:option(Flag, "reuseaddr", "reuseaddr", translate("Bind to a port local"))
|
||||
o = s:option(Flag, "reuseaddr", translate("REUSEADDR"), translate("Bind to a port local"))
|
||||
o.default = "1"
|
||||
o.rmempty = false
|
||||
|
||||
@ -75,25 +75,6 @@ o = s:option(Value, "dest_port", translate("Destination port"))
|
||||
o.datatype = "portrange"
|
||||
o.rmempty = false
|
||||
|
||||
o = s:option(ListValue, "proxy", translate("Proxy"))
|
||||
o:value("", translate("None"))
|
||||
o:value("socks4/4a", "Socks4/4a")
|
||||
o:value("http", "HTTP")
|
||||
o:depends({ proto = "tcp", dest_proto = "tcp4" })
|
||||
|
||||
o = s:option(Value, "proxy_server", translate("Proxy Server"))
|
||||
o.placeholder = "127.0.0.1"
|
||||
o.default = o.placeholder
|
||||
o:depends("proxy", "socks4/4a")
|
||||
o:depends("proxy", "http")
|
||||
|
||||
o = s:option(Value, "proxy_port", translate("Proxy Port"))
|
||||
o.datatype = "port"
|
||||
o.placeholder = "1080"
|
||||
o.default = o.placeholder
|
||||
o:depends("proxy", "socks4/4a")
|
||||
o:depends("proxy", "http")
|
||||
|
||||
o = s:option(Flag, "firewall_accept", translate("Open firewall port"))
|
||||
o.default = "1"
|
||||
o.rmempty = false
|
||||
|
@ -3,7 +3,7 @@ local e = luci.model.uci.cursor()
|
||||
|
||||
m = Map("socat")
|
||||
m.title = translate("Socat")
|
||||
m.description = translate("Socat is a versatile networking tool named after 'Socket CAT', which can be regarded as an N-fold enhanced version of NetCat")
|
||||
m.description = translate("Socat is a relay for bidirectional data transfer between two independent data channels.")
|
||||
|
||||
s = m:section(NamedSection, "global", "global")
|
||||
s.anonymous = true
|
||||
|
1
luci-app-socat/po/zh-cn
Symbolic link
1
luci-app-socat/po/zh-cn
Symbolic link
@ -0,0 +1 @@
|
||||
zh_Hans
|
@ -1 +0,0 @@
|
||||
zh-cn
|
@ -1,8 +1,8 @@
|
||||
msgid "Socat"
|
||||
msgstr "Socat"
|
||||
|
||||
msgid "Socat is a versatile networking tool named after 'Socket CAT', which can be regarded as an N-fold enhanced version of NetCat"
|
||||
msgstr "Socat 是 Linux 下的一个多功能的网络工具,名字来由是「Socket CAT」。其功能与有瑞士军刀之称的 Netcat 类似,可以看做是 Netcat 的加强版。"
|
||||
msgid "Socat is a relay for bidirectional data transfer between two independent data channels."
|
||||
msgstr "Socat 是用于在两个独立数据通道之间进行双向数据传输的中继器。"
|
||||
|
||||
msgid "Socat Config"
|
||||
msgstr "Socat 配置"
|
||||
@ -20,10 +20,10 @@ msgid "Protocol"
|
||||
msgstr "协议"
|
||||
|
||||
msgid "IPv6 Only"
|
||||
msgstr "仅IPv6"
|
||||
msgstr "仅 IPv6"
|
||||
|
||||
msgid "When checked, only IPv6 ports are listen for, otherwise IPv4 will also be listened for."
|
||||
msgstr "当勾选时,仅监听IPv6,否则将会同时监听IPv4。"
|
||||
msgstr "当勾选时,仅监听 IPv6,否则将会同时监听 IPv4。"
|
||||
|
||||
msgid "Port Forwards"
|
||||
msgstr "端口转发"
|
||||
@ -34,6 +34,9 @@ msgstr "监听协议"
|
||||
msgid "Listen port"
|
||||
msgstr "监听端口"
|
||||
|
||||
msgid "REUSEADDR"
|
||||
msgstr "地址重用"
|
||||
|
||||
msgid "Bind to a port local"
|
||||
msgstr "绑定到本地端口"
|
||||
|
||||
@ -46,14 +49,5 @@ msgstr "目标地址"
|
||||
msgid "Destination port"
|
||||
msgstr "目标端口"
|
||||
|
||||
msgid "Proxy"
|
||||
msgstr "代理"
|
||||
|
||||
msgid "Proxy Server"
|
||||
msgstr "代理服务器"
|
||||
|
||||
msgid "Proxy Port"
|
||||
msgstr "代理端口"
|
||||
|
||||
msgid "Open firewall port"
|
||||
msgstr "打开防火墙端口"
|
@ -1,3 +0,0 @@
|
||||
|
||||
config global 'global'
|
||||
option enable '0'
|
@ -7,43 +7,26 @@ CONFIG=socat
|
||||
CONFIG_PATH=/var/etc/$CONFIG
|
||||
|
||||
add_rule() {
|
||||
iptables -N SOCAT
|
||||
iptables -I INPUT -j SOCAT
|
||||
ip6tables -N SOCAT
|
||||
ip6tables -I INPUT -j SOCAT
|
||||
accept_port=$(cat /var/etc/$CONFIG.port | tr "\n" " ")
|
||||
if [ "$accept_port" ]; then
|
||||
uci -q delete firewall.socat
|
||||
uci set firewall.socat=rule
|
||||
uci set firewall.socat.name="socat"
|
||||
uci set firewall.socat.target="ACCEPT"
|
||||
uci set firewall.socat.src="wan"
|
||||
uci set firewall.socat.dest_port="$accept_port"
|
||||
uci set firewall.socat.enabled="1"
|
||||
uci commit firewall
|
||||
/etc/init.d/firewall reload >/dev/null 2>&1
|
||||
else
|
||||
del_rule
|
||||
fi
|
||||
}
|
||||
|
||||
del_rule() {
|
||||
iptables -D INPUT -j SOCAT 2>/dev/null
|
||||
iptables -F SOCAT 2>/dev/null
|
||||
iptables -X SOCAT 2>/dev/null
|
||||
ip6tables -D INPUT -j SOCAT 2>/dev/null
|
||||
ip6tables -F SOCAT 2>/dev/null
|
||||
ip6tables -X SOCAT 2>/dev/null
|
||||
}
|
||||
|
||||
gen_include() {
|
||||
echo '#!/bin/sh' > /var/etc/$CONFIG.include
|
||||
extract_rules() {
|
||||
local _ipt="iptables"
|
||||
[ "$1" == "6" ] && _ipt="ip6tables"
|
||||
|
||||
echo "*$2"
|
||||
${_ipt}-save -t $2 | grep "SOCAT" | \
|
||||
sed -e "s/^-A \(INPUT\)/-I \1 1/"
|
||||
echo 'COMMIT'
|
||||
}
|
||||
cat <<-EOF >> /var/etc/$CONFIG.include
|
||||
iptables-save -c | grep -v "SOCAT" | iptables-restore -c
|
||||
iptables-restore -n <<-EOT
|
||||
$(extract_rules 4 filter)
|
||||
EOT
|
||||
ip6tables-save -c | grep -v "SOCAT" | ip6tables-restore -c
|
||||
ip6tables-restore -n <<-EOT
|
||||
$(extract_rules 6 filter)
|
||||
EOT
|
||||
EOF
|
||||
return 0
|
||||
uci -q delete firewall.socat
|
||||
uci commit firewall
|
||||
/etc/init.d/firewall reload >/dev/null 2>&1
|
||||
}
|
||||
|
||||
run_service() {
|
||||
@ -58,9 +41,6 @@ run_service() {
|
||||
config_get dest_proto $1 dest_proto
|
||||
config_get dest_ip $1 dest_ip
|
||||
config_get dest_port $1 dest_port
|
||||
config_get proxy $1 proxy
|
||||
config_get proxy_server $1 proxy_server
|
||||
config_get proxy_port $1 proxy_port
|
||||
config_get firewall_accept $1 firewall_accept
|
||||
ln -s /usr/bin/socat ${CONFIG_PATH}/$1
|
||||
|
||||
@ -80,36 +60,18 @@ run_service() {
|
||||
if [ "$protocol" == "port_forwards" ]; then
|
||||
listen=${proto}${family}
|
||||
[ "$family" == "" ] && listen=${proto}6
|
||||
[ "$proxy" != "" ] && {
|
||||
proxy_arg=""
|
||||
[ "$proxy" == "socks4/4a" ] && {
|
||||
dest_proto="socks4a"
|
||||
proxy_arg="socksport"
|
||||
}
|
||||
[ "$proxy" == "http" ] && {
|
||||
dest_proto="proxy"
|
||||
proxy_arg="proxyport"
|
||||
}
|
||||
[ -n "$proxy_server" ] && dest_proto="${dest_proto}:${proxy_server}"
|
||||
[ -n "$proxy_port" ] && proxy_arg=",${proxy_arg}=${proxy_port}"
|
||||
}
|
||||
${CONFIG_PATH}/$1 ${listen}-listen:${listen_port}${ipv6only_params}${reuseaddr},fork ${dest_proto}:${dest_ip}:${dest_port}${proxy_arg} >/dev/null 2>&1 &
|
||||
${CONFIG_PATH}/$1 ${listen}-listen:${listen_port}${ipv6only_params}${reuseaddr},fork ${dest_proto}:${dest_ip}:${dest_port} >/dev/null 2>&1 &
|
||||
fi
|
||||
|
||||
[ "$firewall_accept" == "1" ] && {
|
||||
if [ -z "$family" ] || [ "$family" == "6" ]; then
|
||||
ip6tables -A SOCAT -p $proto --dport $listen_port -m comment --comment "$remarks" -j ACCEPT
|
||||
fi
|
||||
if [ -z "$family" ] || [ "$family" == "4" ]; then
|
||||
iptables -A SOCAT -p $proto --dport $listen_port -m comment --comment "$remarks" -j ACCEPT
|
||||
fi
|
||||
echo $listen_port >> /var/etc/$CONFIG.port
|
||||
}
|
||||
}
|
||||
|
||||
stop_service() {
|
||||
busybox ps -w | grep "$CONFIG_PATH/" | grep -v "grep" | awk '{print $1}' | xargs kill -9 >/dev/null 2>&1 &
|
||||
del_rule
|
||||
rm -rf $CONFIG_PATH /var/etc/$CONFIG.include
|
||||
rm -rf $CONFIG_PATH /var/etc/$CONFIG.port
|
||||
}
|
||||
|
||||
start() {
|
||||
@ -118,10 +80,10 @@ start() {
|
||||
stop_service
|
||||
else
|
||||
mkdir -p $CONFIG_PATH
|
||||
add_rule
|
||||
rm -f /var/etc/$CONFIG.port
|
||||
config_load $CONFIG
|
||||
config_foreach run_service "config"
|
||||
gen_include
|
||||
add_rule
|
||||
fi
|
||||
}
|
||||
|
||||
|
@ -1,13 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
uci -q batch <<-EOF >/dev/null
|
||||
delete firewall.socat
|
||||
set firewall.socat=include
|
||||
set firewall.socat.type=script
|
||||
set firewall.socat.path=/var/etc/socat.include
|
||||
set firewall.socat.reload=1
|
||||
EOF
|
||||
|
||||
uci -q batch <<-EOF >/dev/null
|
||||
delete ucitrack.@socat[-1]
|
||||
add ucitrack socat
|
||||
@ -15,5 +7,5 @@ uci -q batch <<-EOF >/dev/null
|
||||
commit ucitrack
|
||||
EOF
|
||||
|
||||
rm -rf /tmp/luci-*cache
|
||||
rm -rf /tmp/luci-*cache*
|
||||
exit 0
|
||||
|
@ -1,10 +0,0 @@
|
||||
# This is free software, licensed under the Apache License, Version 2.0 .
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
LUCI_TITLE:=LuCI Support for Watchcat
|
||||
LUCI_DEPENDS:=+watchcat
|
||||
|
||||
include $(TOPDIR)/feeds/luci/luci.mk
|
||||
|
||||
# call BuildPackage - OpenWrt buildroot signature
|
@ -1,124 +0,0 @@
|
||||
'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. <br />\
|
||||
Run Script: Run a script if a ping to a specified host fails for a specified duration of time. <br />"));
|
||||
o.value('ping_reboot', _('Ping Reboot'));
|
||||
o.value('periodic_reboot', _('Periodic Reboot'));
|
||||
o.value('restart_iface', _('Restart Interface'));
|
||||
o.value('run_script', _('Run Script'));
|
||||
|
||||
o = s.taboption('general', form.Value, 'script',
|
||||
_('Script to run'),
|
||||
_(`Script to run when the host has not responded for the specified duration of time. The script is passed the interface name as $1`));
|
||||
o.datatype = 'file';
|
||||
o.default = "/etc/watchcat.user.sh";
|
||||
o.depends({ mode: "run_script" });
|
||||
|
||||
o = s.taboption('general', form.Value, 'period',
|
||||
_('Period'),
|
||||
_("In Periodic Reboot mode, it defines how often to reboot. <br /> \
|
||||
In Ping Reboot mode, it defines the longest period of \
|
||||
time without a reply from the Host To Check before a reboot is engaged. <br /> \
|
||||
In Network Restart or Run Script mode, it defines the longest period of \
|
||||
time without a reply from the Host to Check before the interface is restarted or the script is run. \
|
||||
<br /><br />The default unit is seconds, without a suffix, but you can use the \
|
||||
suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> \
|
||||
for days. <br /><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</b></li><li> \
|
||||
1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></li><ul>"));
|
||||
o.default = '6h';
|
||||
|
||||
o = s.taboption('general', form.Value, 'pinghosts', _('Host To Check'), _(`IP address or hostname to ping.`));
|
||||
o.datatype = 'host';
|
||||
o.default = '8.8.8.8';
|
||||
o.depends({ mode: "ping_reboot" });
|
||||
o.depends({ mode: "restart_iface" });
|
||||
o.depends({ mode: "run_script" });
|
||||
|
||||
o = s.taboption('general', form.ListValue, 'addressfamily',
|
||||
_('Address family for pinging the host'));
|
||||
o.default = 'any';
|
||||
o.depends({ mode: 'ping_reboot' });
|
||||
o.depends({ mode: 'restart_iface' });
|
||||
o.depends({ mode: "run_script" });
|
||||
o.value('any');
|
||||
o.value('ipv4');
|
||||
o.value('ipv6');
|
||||
|
||||
o = s.taboption('general', form.Value, 'pingperiod',
|
||||
_('Check Interval'),
|
||||
_("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.depends({ mode: "run_script" });
|
||||
|
||||
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.depends({ mode: "run_script" });
|
||||
|
||||
o = s.taboption('general', form.Value, 'forcedelay',
|
||||
_('Force Reboot Delay'),
|
||||
_("Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting the router, the service will trigger a soft reboot. \
|
||||
Entering a non-zero value here will trigger a delayed hard reboot if the soft reboot were to fail. \
|
||||
Enter the number of seconds to wait for the soft reboot to fail or use 0 to disable the forced reboot delay."));
|
||||
o.default = '1m';
|
||||
o.depends({ mode: 'ping_reboot' });
|
||||
o.depends({ mode: 'periodic_reboot' });
|
||||
|
||||
o = s.taboption('general', widgets.DeviceSelect, 'interface',
|
||||
_('Interface'),
|
||||
_('Interface to monitor and/or restart'),
|
||||
_('<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /> Specify the interface to monitor and react if a ping over it fails.'));
|
||||
o.depends({ mode: 'ping_reboot' });
|
||||
o.depends({ mode: 'restart_iface' });
|
||||
o.depends({ mode: 'run_script' });
|
||||
|
||||
o = s.taboption('general', widgets.NetworkSelect, 'mmifacename',
|
||||
_('Name of ModemManager Interface'),
|
||||
_("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();
|
||||
}
|
||||
});
|
@ -1,199 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2021-03-07 14:36+0000\n"
|
||||
"Last-Translator: Said Zakaria <said.zakaria@gmail.com>\n"
|
||||
"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/ar/>\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
||||
"X-Generator: Weblate 4.5.1\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"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:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "تحقق الفاصل"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
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:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
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. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
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:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr ""
|
@ -1,198 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2021-09-27 22:36+0000\n"
|
||||
"Last-Translator: Iskren Mihaylov <iskren.mihaylov91@gmail.com>\n"
|
||||
"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/bg/>\n"
|
||||
"Language: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.9-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"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:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "Основни настройки"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "Интерфейс"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
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:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
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. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
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:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr ""
|
@ -1,198 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2021-10-08 18:54+0000\n"
|
||||
"Last-Translator: Rayhan Nabi <rayhanjanam@gmail.com>\n"
|
||||
"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/"
|
||||
"openwrt/luciapplicationswatchcat/bn_BD/>\n"
|
||||
"Language: bn_BD\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.9-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"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:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "সাধারণ সেটিংস"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "ইন্টারফেস"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
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:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
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. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
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:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr ""
|
@ -1,198 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2021-03-08 13:03+0000\n"
|
||||
"Last-Translator: BenRoura <benrouravkg@gmail.com>\n"
|
||||
"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/ca/>\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.5.1\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"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:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "Paràmetres generals"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
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:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr "Període"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
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. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
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:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr "Watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr ""
|
@ -1,198 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2023-09-27 19:02+0000\n"
|
||||
"Last-Translator: David Rapaň <david@rapan.cz>\n"
|
||||
"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/cs/>\n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.1-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"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:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "Interval kontroly"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "Rozhraní"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
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:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr "Perioda"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
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. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
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:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr "Watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr ""
|
@ -1,241 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2022-09-10 07:18+0000\n"
|
||||
"Last-Translator: drax red <drax@outlook.dk>\n"
|
||||
"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/da/>\n"
|
||||
"Language: da\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.14.1-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
"<i>Gælder for Ping Reboot, Genstart Interface og Run Script-tilstande</i> "
|
||||
"<br /> Angiv den grænseflade, der skal overvåges og reagere, hvis et ping "
|
||||
"over det mislykkes."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr "Adressefamilie til pinging af værten"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"value here will trigger a delayed hard reboot if the soft reboot were to "
|
||||
"fail. Enter the number of seconds to wait for the soft reboot to fail or use "
|
||||
"0 to disable the forced reboot delay."
|
||||
msgstr ""
|
||||
"Gælder for Ping-genstart og periodisk genstart</i> <br /> Ved genstart af "
|
||||
"routeren vil tjenesten udløse en blød genstart. Indtastning af en værdi, der "
|
||||
"ikke er nul her, vil udløse en forsinket hård genstart, hvis den bløde "
|
||||
"genstart mislykkes. Indtast det antal sekunder, der skal vente på, at den "
|
||||
"bløde genstart mislykkes, eller brug 0 for at deaktivere den tvungne "
|
||||
"genstartsforsinkelse."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
"Gælder for Ping Genstart og Genstart Interface-tilstande</i> <br /> Hvis du "
|
||||
"bruger ModemManager, kan du få Watchcat til at genstarte din ModemManger-"
|
||||
"interface ved at angive dens navn."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr "Stor: 248 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "Tjek interval"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr "Tving genstartsforsinkelse"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "Generelle indstillinger"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr "Giv adgang til LuCI app watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
"Her kan du opsætte flere kontroller og handlinger, der skal tages i tilfælde "
|
||||
"af, at en vært bliver utilgængelig. Klik på knappen <b>Tilføj</b> nederst "
|
||||
"for at konfigurere mere end én handling."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr "Vært at tjekke"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
"Hvor ofte skal man pinge værten specificeret ovenfor. <br /><br /"
|
||||
">Standardenheden er sekunder uden suffiks, men du kan bruge suffikset <b>m</"
|
||||
"b> i minutter, <b>h</b> i timer eller <b>d </b> i dagevis. <br /><br /> "
|
||||
"Eksempler:<ul><li>10 sekunder ville være: <b>10</b> eller <b>10s</b></"
|
||||
"li><li>5 minutter ville være: <b>5m</b></li><li>1 time ville være: <b>1t</"
|
||||
"b></li><li>1 uge ville være: <b>7d</b></ li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr "Kæmpe: 1492 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr "IP-adresse eller værtsnavn, der skal pinges."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
"Hvis du bruger ModemManager, så før du genstarter interface, skal du "
|
||||
"indstille modemmet til at have lov til at bruge et hvilket som helst bånd."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
"I tilstanden Periodisk genstart defineres det, hvor ofte der skal "
|
||||
"genstartes. <br /> I tilstanden Ping-genstart defineres det længste tidsrum "
|
||||
"uden svar fra værten til kontrol, før der foretages en genstart. <br /> I "
|
||||
"tilstanden Netværksgenstart eller Kør script defineres det længste tidsrum "
|
||||
"uden svar fra værten til kontrol, før grænsefladen genstartes, eller "
|
||||
"scriptet køres. <br /><br />Standard enheden er sekunder, uden suffiks, men "
|
||||
"du kan bruge suffiks <b>m</b> for minutter, <b>h</b> for timer eller <b>d</"
|
||||
"b> for dage. <br /><br />Eksempler:<ul><li>10 sekunder ville være: <b>10</b> "
|
||||
"eller <b>10s</b></li><li>5 minutter ville være: <b>10</b> eller <b>10s</b></"
|
||||
"li><li>5 minutter ville være: <b>5m</b></li><li> 1 time ville være: <b>1h</"
|
||||
"b></li><li>1 uge ville være: <b>7d</b></li></li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "Interface"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr "Interface til overvågning og/eller genstart"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
msgid "Jumbo: 9000 bytes"
|
||||
msgstr "Jumbo: 9000 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22
|
||||
msgid "Mode"
|
||||
msgstr "Mode"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr "Navn på ModemManager Interface"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr "Periode"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr "Periodisk genstart"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr "Ping-pakkestørrelse"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
msgid "Ping Reboot"
|
||||
msgstr "Ping genstart"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23
|
||||
msgid ""
|
||||
"Ping Reboot: Reboot this device if a ping to a specified host fails for a "
|
||||
"specified duration of time. <br /> Periodic Reboot: Reboot this device after "
|
||||
"a specified interval of time. <br /> Restart Interface: Restart a network "
|
||||
"interface if a ping to a specified host fails for a specified duration of "
|
||||
"time. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
"Ping Reboot: Genstart denne enhed, hvis en ping til en angivet vært "
|
||||
"mislykkes i et angivet tidsrum. <br /> Periodisk genstart: Genstart denne "
|
||||
"enhed efter et angivet tidsinterval. <br /> Genstart Interface: Genstart en "
|
||||
"netværks Interface, hvis en ping til en angivet vært mislykkes i et angivet "
|
||||
"tidsrum. <br /> Run Script (Kør script): Kør et script, hvis en ping til en "
|
||||
"angivet vært mislykkes i et angivet tidsrum. <br />"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr "Genstart interface"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr "Kør script"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr "Script til at køre"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
"Script, der skal køres, når værten ikke har svaret i den angivne "
|
||||
"tidsperiode. Scriptet får interface navnet som $1"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr "Lille: 1 byte"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
msgid "Standard: 56 bytes"
|
||||
msgstr "Standard: 56 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
msgid "These rules will govern how this device reacts to network events."
|
||||
msgstr ""
|
||||
"Disse regler styrer, hvordan denne enhed reagerer på netværkshændelser."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr "Lås modembånd op"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr "Watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr "Windows: 32 bytes"
|
@ -1,245 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2022-12-27 13:49+0000\n"
|
||||
"Last-Translator: ssantos <ssantos@web.de>\n"
|
||||
"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/de/>\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.15.1-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
"<i>Trifft auf Ping Neustart, Reaktivieren der Schnittstelle und Skript "
|
||||
"ausführende Modi zu</i><br /> Nenne die zu überwachende Schnittstelle und "
|
||||
"reagiere, falls ein Ping darauf fehlschlägt."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr "Adressfamilie für pingen des Hosts"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"value here will trigger a delayed hard reboot if the soft reboot were to "
|
||||
"fail. Enter the number of seconds to wait for the soft reboot to fail or use "
|
||||
"0 to disable the forced reboot delay."
|
||||
msgstr ""
|
||||
"Gilt für die Modi \"Ping Reboot und regelmäßiger Reboot\"</i> <br /> Wenn "
|
||||
"der Router neu gestartet wird, löst der Dienst einen Soft Reboot aus. Wenn "
|
||||
"Sie hier einen Wert ungleich Null eingeben, wird ein verzögerter Hard Reboot "
|
||||
"ausgelöst, wenn der Soft Reboot fehlschlägt. Geben Sie die Anzahl der "
|
||||
"Sekunden ein, die gewartet werden sollen, bis der Soft-Reboot fehlschlägt, "
|
||||
"oder verwenden Sie 0, um die Verzögerung des erzwungenen Neustarts zu "
|
||||
"deaktivieren."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
"Gilt für die Modi \"Ping Reboot und Restart Schnittstelle<\"/i> <br /> Wenn "
|
||||
"Sie den ModemManager verwenden, können Sie Watchcat veranlassen,um das "
|
||||
"ModemManger-Interface neu zu starten, indem Sie dessen Namen angeben."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr "Groß: 248 Bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "Kontrollintervall"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr "Neustartverzögerung erzwingen"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "Allgemeine Einstellungen"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr "Zugriff auf die LuCI-App watchcat gewähren"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
"Hier können verschiedene Prüfungen und Aktionen für den Fall durchgeführt "
|
||||
"werden, falls ein Host nicht mehr erreicht werden kann. Klicken Sie auf die "
|
||||
"Schaltfläche <b>Hinzufügen</b> am unteren Rand, um mehr als eine Aktion "
|
||||
"einzurichten."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr "Host zu überprüfen"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
"Wie oft der oben angegebene Host angepingt werden soll. <br /><br />Der "
|
||||
"Standardwert ist in Sekunden, ohne suffix, aber du kannst Suffix <b>m</b> "
|
||||
"für Minuten, <b>h</b> für Stunden oder <b>d</b> für Tage. <br /><br /"
|
||||
">Beispiele: <ul><li>zehn Sekunden wären: <b>10</b> oder <b>10s</b></"
|
||||
"li><li>fünf Minuten wären: <b>5m</b></li><li>eine Stunde wäre: <b>1h</b></"
|
||||
"li><li>eine Woche wäre: <b>7d</b></li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr "Riesig: 1492 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr "IP-Adresse oder Hostname zum Anpingen."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
"Wenn Sie ModemManager verwenden, stellen Sie das Modem vor dem Neustart der "
|
||||
"Schnittstelle so ein, dass es jedes Band verwenden darf."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
"Im Modus \"Regelmäßiger Neustart\" legt er fest, wie oft neu gestartet "
|
||||
"werden soll. <br /> Im Modus \"Ping-Neustart\" legt er die längste "
|
||||
"Zeitspanne fest, in der keine Antwort vom zu prüfenden Host kommt, bevor ein "
|
||||
"Neustart durchgeführt wird. <br /> Im Modus \"Netzwerk-Neustart\" oder "
|
||||
"\"Skript ausführen\" legt er die längste Zeitspanne fest, in der keine "
|
||||
"Antwort vom zu prüfenden Host kommt, bevor die Schnittstelle neu gestartet "
|
||||
"oder das Skript ausgeführt wird. <br /><br />Die Standardeinheit ist "
|
||||
"Sekunden, ohne ein Suffix, aber Sie können das Suffix <b>m</b> für Minuten, "
|
||||
"<b>h</b> für Stunden oder <b>d</b> für Tage verwenden. <br /><br />Beispiele:"
|
||||
"<ul><li>10 Sekunden wären: <b>10</b> oder <b>10s</b></li><li>5 Minuten "
|
||||
"wären: <b>5m</b></li><li>1 Stunde wäre: <b>1h</b></li><li>1 Woche wäre: "
|
||||
"<b>7d</b></li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "Schnittstelle"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr "Schnittstelle zum überwachen und/oder neustarten"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
msgid "Jumbo: 9000 bytes"
|
||||
msgstr "Jumbo: 9000 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22
|
||||
msgid "Mode"
|
||||
msgstr "Modus"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr "Name der ModemManager Schnittstelle"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr "Periode"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr "Regelmäßiger Neustart"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr "Ping Paket größe"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
msgid "Ping Reboot"
|
||||
msgstr "Ping neustart"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23
|
||||
msgid ""
|
||||
"Ping Reboot: Reboot this device if a ping to a specified host fails for a "
|
||||
"specified duration of time. <br /> Periodic Reboot: Reboot this device after "
|
||||
"a specified interval of time. <br /> Restart Interface: Restart a network "
|
||||
"interface if a ping to a specified host fails for a specified duration of "
|
||||
"time. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
"Ping-Neustart: Startet das Gerät neu, wenn ein Ping zu einem bestimmten Host "
|
||||
"für eine bestimmte Zeitspanne fehlschlägt. <br /> Regelmäßiger Neustart: "
|
||||
"Startet das Gerät nach einem bestimmten Zeitintervall neu. <br /> "
|
||||
"Schnittstelle neu starten: Startet eine Netzwerkschnittstelle neu, wenn ein "
|
||||
"Ping zu einem bestimmten Host für eine bestimmte Zeitspanne fehlschlägt. "
|
||||
"<br /> Skript ausführen: Führt ein Skript aus, wenn ein Ping zu einem "
|
||||
"bestimmten Host für eine bestimmte Zeitspanne fehlschlägt. <br />"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr "Schnittstelle neustarten"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr "Skript ausführen"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr "Auszuführendes Skript"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
"Skript, das ausgeführt wird, wenn der Host für die angegebene Zeitspanne "
|
||||
"nicht geantwortet hat. Der Schnittstellenname wird dem Skript als $1 "
|
||||
"übergeben"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr "Klein: 1 byte"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
msgid "Standard: 56 bytes"
|
||||
msgstr "Standard: 56 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
msgid "These rules will govern how this device reacts to network events."
|
||||
msgstr "Diese Regeln bestimmen, wie das Gerät auf Netzwerkereignisse reagiert."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr "Modem-Bänder freischalten"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr "Watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr "Windows: 32 bytes"
|
@ -1,195 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"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:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
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:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
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. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
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:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr ""
|
@ -1,198 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2023-11-30 14:34+0000\n"
|
||||
"Last-Translator: rygle <pittos@post.com>\n"
|
||||
"Language-Team: English <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/en/>\n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.3-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"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:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "General Settings"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "Interface"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
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:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr "Period"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
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. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
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:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr "Watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr ""
|
@ -1,244 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2023-03-23 17:49+0000\n"
|
||||
"Last-Translator: gallegonovato <fran-carro@hotmail.es>\n"
|
||||
"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/es/>\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.16.2-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
"<i>Se aplica a los modos de reinicio de ping, reactivación de interfaz y "
|
||||
"ejecución de secuencias de comandos</i><br /> Identifique la interfaz para "
|
||||
"monitorear y responder si falla un ping."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr "Familia de direcciones para hacer ping al host"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"value here will trigger a delayed hard reboot if the soft reboot were to "
|
||||
"fail. Enter the number of seconds to wait for the soft reboot to fail or use "
|
||||
"0 to disable the forced reboot delay."
|
||||
msgstr ""
|
||||
"Se aplica a los modos de Reinicio por Ping y Reinicio periódico</i><br /> Al "
|
||||
"reiniciar el enrutador, el servicio desencadenará un reinicio suave. "
|
||||
"Poniendo un valor distinto de cero aquí, se desencadenará un reinicio "
|
||||
"completo retrasado si falla el reinicio suave. Ponga el número de segundos "
|
||||
"que hay que esperar a que el reinicio suave falle o use 0 para desactivar el "
|
||||
"retraso de reinicio forzado."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
"Se aplica a los modos Reinicio por Ping y Reiniciar interfaz</i> <br /> Si "
|
||||
"usa ModemManager, puede hacer que Watchcat reinicie su interfaz ModemManger "
|
||||
"especificando su nombre."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr "Grande: 248 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "Intervalo de comprobación"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr "Forzar Retraso de Reinicio"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "Configuración general"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr "Otorgar acceso a la aplicación LuCI watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
"Aquí puede configurar varias comprobaciones y acciones para realizar en caso "
|
||||
"de que no se pueda contactar con un host. Haga clic en el botón <b>Agregar</"
|
||||
"b> en la parte inferior para configurar más de una acción."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr "Host para comprobar"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
"Con qué frecuencia hacer ping al host especificado anteriormente. <br /><br /"
|
||||
">La unidad predeterminada es segundos sin sufijo, pero puede usar el sufijo "
|
||||
"<b>m</b> para minutos, <b>h</b> para horas o <b>d</b >b> representa el "
|
||||
"número de días. <br /><br />Ejemplo: <ul><li>10 segundos es: <b>10</b> o "
|
||||
"<b>10s</b></li><li>5 minutos es:<b >5m</b></li><li>1 hora es: <b>1h</b></"
|
||||
"li><li>1 semana es: <b>7d</b></li><ul >"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr "Enorme: 1492 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr "Dirección IP o nombre de host para hacer ping."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
"Si usa ModemManager, antes de reiniciar la interfaz, configure el módem para "
|
||||
"que pueda usar cualquier banda."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
"Para el modo de reinicio programado, define con qué frecuencia reiniciar. "
|
||||
"<br />Para el modo de reinicio de Ping, define el tiempo máximo sin recibir "
|
||||
"una respuesta del host para verificar antes de reiniciar. <br />Para "
|
||||
"reiniciar la interfaz o ejecutar el modo de secuencia de comandos, define el "
|
||||
"tiempo máximo sin recibir una respuesta del host para verificar antes de "
|
||||
"reiniciar la interfaz o ejecutar la secuencia de comandos. <br /><br />La "
|
||||
"unidad predeterminada es segundos sin sufijo, pero puede usar el sufijo "
|
||||
"<b>m</b> para minutos, <b>h</b> para horas o <b>d</b > b> significa día. "
|
||||
"<br /><br />Ejemplo: <ul><li>10 segundos es: <b>10</b> o <b>10s</b></"
|
||||
"li><li>5 minutos es:<b >5m</b></li><li>1 hora es: <b>1h</b></li><li>1 semana "
|
||||
"es: <b>7d</b></li><ul >"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "Interfaz"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr "Interfaz para monitorear y/o reiniciar"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
msgid "Jumbo: 9000 bytes"
|
||||
msgstr "Jumbo: 9000 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22
|
||||
msgid "Mode"
|
||||
msgstr "Modo"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr "Nombre de la interfaz de ModemManager"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr "Período"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr "Reinicio periódico"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr "Tamaño del paquete de ping"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
msgid "Ping Reboot"
|
||||
msgstr "Reinicio del ping"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23
|
||||
msgid ""
|
||||
"Ping Reboot: Reboot this device if a ping to a specified host fails for a "
|
||||
"specified duration of time. <br /> Periodic Reboot: Reboot this device after "
|
||||
"a specified interval of time. <br /> Restart Interface: Restart a network "
|
||||
"interface if a ping to a specified host fails for a specified duration of "
|
||||
"time. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
"Reinicio de ping: si el ping al host especificado siempre falla dentro del "
|
||||
"tiempo especificado, el dispositivo se reiniciará. <br />Reinicio "
|
||||
"programado: reinicia el dispositivo después de un intervalo de tiempo "
|
||||
"específico. <br />Reiniciar interfaz: si dentro del tiempo especificado, el "
|
||||
"ping del host especificado siempre falla, reinicie la interfaz de red "
|
||||
"específica. <br />Ejecutar secuencia de comandos: si dentro del tiempo "
|
||||
"especificado, el ping del host especificado siempre falla, ejecute una "
|
||||
"secuencia de comandos específica. <br />"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr "Reiniciar interfaz"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr "Ejecutar script"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr "Script a ejecutar"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
"Script a ejecutar cuando el host no ha respondido durante el tiempo "
|
||||
"especificado. Al script se le pasa el nombre de la interfaz como $1"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr "Pequeño: 1 byte"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
msgid "Standard: 56 bytes"
|
||||
msgstr "Estándar: 56 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
msgid "These rules will govern how this device reacts to network events."
|
||||
msgstr ""
|
||||
"Estas reglas regirán cómo reacciona este dispositivo a los eventos de la red."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr "Desbloquear bandas de módem"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr "Watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr "Windows: 32 bytes"
|
@ -1,198 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2022-03-12 13:29+0000\n"
|
||||
"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
|
||||
"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/fi/>\n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.12-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"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:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "Tarkistusväli"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "Yleiset asetukset"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
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:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
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. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
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:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr ""
|
@ -1,244 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2024-02-01 22:49+0000\n"
|
||||
"Last-Translator: ButterflyOfFire <boffire@users.noreply.hosted.weblate.org>\n"
|
||||
"Language-Team: French <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/fr/>\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.4-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
"<i>S'applique aux modes de redémarrage par ping et de redémarrage "
|
||||
"périodique</i> <br/>Indiquer l'interface à monitorer et corriger en cas "
|
||||
"d'échec de ping."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr "Famille d'adresses pour le ping de l'hôte"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"value here will trigger a delayed hard reboot if the soft reboot were to "
|
||||
"fail. Enter the number of seconds to wait for the soft reboot to fail or use "
|
||||
"0 to disable the forced reboot delay."
|
||||
msgstr ""
|
||||
"S'applique aux modes de redémarrage par ping et de redémarrage périodique</"
|
||||
"i> <br />Lorsque le service redémarre le routeur, il déclenche un "
|
||||
"redémarrage en douceur. La saisie d'une valeur non nulle ici déclenchera un "
|
||||
"redémarrage dur différé si le redémarrage progressif devait échouer. Entrez "
|
||||
"le nombre de secondes à attendre pour que le redémarrage progressif échoue "
|
||||
"ou utilisez 0 pour désactiver le délai de redémarrage forcé."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
"S'applique aux modes d'interface Ping Reboot et Restart</i> <br />Si vous "
|
||||
"utilisez ModemManager, vous pouvez demander à Watchcat de redémarrer votre "
|
||||
"interface ModemManger en spécifiant son nom."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr "Grand : 248 octets"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "Intervalle de contrôle"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr "Délai de redémarrage forcé"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "Réglages généraux"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr "Accorder l'accès à l'application LuCI watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
"Ici, vous pouvez configurer plusieurs vérifications et actions à "
|
||||
"entreprendre dans le cas où un hôte devient inaccessible. Cliquez sur le "
|
||||
"bouton <b>Add</b> en bas pour configurer plusieurs actions."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr "Hôte à vérifier"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
"La fréquence à laquelle il faut envoyer un ping à l'hôte spécifié ci-dessus. "
|
||||
"<br /><br />L'unité par défaut est la seconde, sans suffixe, mais vous "
|
||||
"pouvez utiliser le suffixe <b>m</b> pour les minutes, <b>h</b> pour les "
|
||||
"heures ou <b>d</b> pour les jours. <br /><br /> Exemples:<ul><li>10 secondes "
|
||||
"seraient : <b>10</b> ou <b>10s</b></li><li>5 minutes seraient : <b>5m</b></"
|
||||
"li><li>1 heure serait : <b>1h</b></li><li>1 semaine serait : <b>7j</b></"
|
||||
"li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr "Énorme : 1492 octets"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr "Adresse IP ou nom d'hôte à interroger."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
"Si vous utilisez ModemManager, avant de redémarrer l'interface, configurez "
|
||||
"le modem pour qu'il soit autorisé à utiliser n'importe quelle bande."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
"En mode Redémarrage périodique, elle définit la fréquence de redémarrage. "
|
||||
"<br />En mode Redémarrage par ping, elle définit la plus longue période sans "
|
||||
"réponse de l'hôte à vérifier avant qu'un redémarrage ne soit engagé. <br /"
|
||||
">En mode Redémarrage du réseau, elle définit la plus longue période sans "
|
||||
"réponse de l'hôte à vérifier avant que l'interface ne soit redémarrée. <br /"
|
||||
"><br />L'unité par défaut est la seconde, sans suffixe, mais vous pouvez "
|
||||
"utiliser le suffixe <b>m</b> pour les minutes, <b>h</b> pour les heures ou "
|
||||
"<b>d</b> pour les jours. <br /><br />Exemples :<ul><li>10 secondes "
|
||||
"seraient : <b>10</b> ou <b>10s</b></li><li>5 minutes seraient : <b>5m</b></"
|
||||
"li><li><li>1 heure serait : <b>1h</b></li><li>1 semaine serait : <b>7j</b></"
|
||||
"li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "Interface"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr "Interface à surveiller et/ou redémarrer"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
msgid "Jumbo: 9000 bytes"
|
||||
msgstr "Jumbo : 9000 octets"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22
|
||||
msgid "Mode"
|
||||
msgstr "Mode"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr "Nom de l'interface ModemManager"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr "Période"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr "Redémarrage périodique"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr "Taille du paquet Ping"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
msgid "Ping Reboot"
|
||||
msgstr "Ping de redémarrage"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23
|
||||
msgid ""
|
||||
"Ping Reboot: Reboot this device if a ping to a specified host fails for a "
|
||||
"specified duration of time. <br /> Periodic Reboot: Reboot this device after "
|
||||
"a specified interval of time. <br /> Restart Interface: Restart a network "
|
||||
"interface if a ping to a specified host fails for a specified duration of "
|
||||
"time. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
"Ping Reboot : Redémarrez ce périphérique si un ping vers un hôte spécifié "
|
||||
"échoue pendant une durée spécifiée. <br /> Redémarrage périodique : "
|
||||
"Redémarrez cet appareil après un intervalle de temps spécifié. <br /> "
|
||||
"Redémarrer l'interface : Redémarrez une interface réseau si un ping vers un "
|
||||
"hôte spécifié échoue pendant une durée spécifiée. <br /> Exécuter le "
|
||||
"script : exécutez un script si un ping vers un hôte spécifié échoue pendant "
|
||||
"une durée spécifiée. <br />"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr "Redémarrer l'interface"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr "Script de lancement"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr "Script à exécuter"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
"Script à exécuter lorsque l'hôte n'a pas répondu pendant la durée spécifiée. "
|
||||
"Le script reçoit le nom de l'interface en tant que $1"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr "Petit : 1 octet"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
msgid "Standard: 56 bytes"
|
||||
msgstr "Standard : 56 octets"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
msgid "These rules will govern how this device reacts to network events."
|
||||
msgstr ""
|
||||
"Ces règles régissent la façon dont cet appareil réagit aux événements du "
|
||||
"réseau."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr "Déverrouiller les bandes du modem"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr "Watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr "Windows : 32 octets"
|
@ -1,195 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"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:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
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:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
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. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
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:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr ""
|
@ -1,195 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: hi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"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:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
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:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
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. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
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:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr ""
|
@ -1,198 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2021-08-16 16:38+0000\n"
|
||||
"Last-Translator: Bence Csókás <bence.csokas@gmail.com>\n"
|
||||
"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/hu/>\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.8-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"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:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr "Nagy: 248 bájt"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "Általános Beállítások"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "Csatoló"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
msgid "Jumbo: 9000 bytes"
|
||||
msgstr "Jumbo: 9000 bájt"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22
|
||||
msgid "Mode"
|
||||
msgstr "Mód"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr "ModemManager csatoló neve"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr "Periódus"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
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. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr "Kicsi: 1 bájt"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
msgid "Standard: 56 bytes"
|
||||
msgstr "Normál: 56 bájt"
|
||||
|
||||
#: 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:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr "Watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr "Windows: 32 bájt"
|
@ -1,213 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2024-02-13 17:54+0000\n"
|
||||
"Last-Translator: SKAL <sir_kalot@yahoo.it>\n"
|
||||
"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/it/>\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.4-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
"<i>Si applica a Ping Reboot, Restart Interface e Run Script</i> <br /> "
|
||||
"Specificare l'interfaccia da monitorare e reagisci se il ping verso di essa "
|
||||
"fallisce."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr "Famiglia di indirizzi per il ping dell'host"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"value here will trigger a delayed hard reboot if the soft reboot were to "
|
||||
"fail. Enter the number of seconds to wait for the soft reboot to fail or use "
|
||||
"0 to disable the forced reboot delay."
|
||||
msgstr ""
|
||||
"Si applica a Ping Reboot e Periodic Reboot</i> <br /> Durante il riavvio del "
|
||||
"router, il servizio avvierà un soft reboot. Inserendo qui un valore non zero "
|
||||
"scatterà un hard reboot ritardato se il soft reboot dovesse fallire. "
|
||||
"Inserire il numero di secondi per attendere il fallimento del soft reboot o "
|
||||
"usare 0 per disabilitare il ritardo del riavvio forzato."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
"Si applica alle modalità Riavvio Ping e Riavvia Interfaccia</i> <br /> Se si "
|
||||
"utilizza ModemManager, è possibile far riavviare a Watchcat l'interfaccia di "
|
||||
"ModemManger specificandone il nome."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr "Grande: 248 byte"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "Intervallo di Controllo"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr "Ritardo del riavvio forzato"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "Impostazioni generali"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr "Host da controllare"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr "Enorme: 1492 byte"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr "Indirizzo IP o nome host da pingare."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
"Se si utilizza ModemManager, prima di riavviare l'interfaccia, impostare il "
|
||||
"modem in modo che possa utilizzare qualsiasi banda."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "Interfaccia"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr "Interfaccia da monitorare e/o riavviare"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
msgid "Jumbo: 9000 bytes"
|
||||
msgstr "Gigante: 9000 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22
|
||||
msgid "Mode"
|
||||
msgstr "Modalità"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr "Nome dell'interfaccia ModemManager"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr "Periodo"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr "Riavvio periodico"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr "Dimensione del pacchetto Ping"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
msgid "Ping Reboot"
|
||||
msgstr "Riavvio ping"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23
|
||||
msgid ""
|
||||
"Ping Reboot: Reboot this device if a ping to a specified host fails for a "
|
||||
"specified duration of time. <br /> Periodic Reboot: Reboot this device after "
|
||||
"a specified interval of time. <br /> Restart Interface: Restart a network "
|
||||
"interface if a ping to a specified host fails for a specified duration of "
|
||||
"time. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr "Riavvia interfaccia"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr "Eseguire lo script"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr "Script da eseguire"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr "Piccolo: 1 byte"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
msgid "Standard: 56 bytes"
|
||||
msgstr "Normale: 56 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
msgid "These rules will govern how this device reacts to network events."
|
||||
msgstr ""
|
||||
"Queste regole regolano il modo in cui questo dispositivo reagisce agli "
|
||||
"eventi di rete."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr "Sblocca le bande del modem"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr "Watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr "Windows: 32 bytes"
|
@ -1,198 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2021-03-31 12:26+0000\n"
|
||||
"Last-Translator: Satoru Yoshida <ramat@ram.ne.jp>\n"
|
||||
"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/ja/>\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.6-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"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:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "チェック間隔"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "一般設定"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "インターフェース"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
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:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr "周期"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
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. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
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:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr "Watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr ""
|
@ -1,198 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2022-08-01 05:54+0000\n"
|
||||
"Last-Translator: somni <me@somni.one>\n"
|
||||
"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/ko/>\n"
|
||||
"Language: ko\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.14-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"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:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "확인 간격"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "기본 설정"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
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:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
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. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
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:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr ""
|
@ -1,200 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2023-12-15 21:46+0000\n"
|
||||
"Last-Translator: Džiugas J <dziugas1959@hotmail.com>\n"
|
||||
"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/lt/>\n"
|
||||
"Language: lt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > "
|
||||
"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? "
|
||||
"1 : 2);\n"
|
||||
"X-Generator: Weblate 5.3\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"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:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr "Didelis: 248-i baitai"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "Patikrinimo intervalas"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "Bendri nustatymai"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr "Duoti prieigą prie „LuCI-app-watchcat“"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr "Milžiniškas: 1492-u baitai"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "Sąsaja ir Sietuvas"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
msgid "Jumbo: 9000 bytes"
|
||||
msgstr "Eksponentiškas: 9000-iai baitai"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22
|
||||
msgid "Mode"
|
||||
msgstr "Režimas"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr "Periodas"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
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. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr "Vykdyti skriptą"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr "Mažas: 1-as baitas"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
msgid "Standard: 56 bytes"
|
||||
msgstr "Standartinis: 56-i baitai"
|
||||
|
||||
#: 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:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr "„Watchcat“"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr "„Windows“: 32-u baitai"
|
@ -1,198 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2020-02-01 06:56+0000\n"
|
||||
"Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n"
|
||||
"Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/mr/>\n"
|
||||
"Language: mr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 3.11-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"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:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
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:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
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. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
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:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr ""
|
@ -1,198 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2024-01-22 09:21+0000\n"
|
||||
"Last-Translator: Abdul Muizz Bin Abdul Jalil <abmuizz@gmail.com>\n"
|
||||
"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/ms/>\n"
|
||||
"Language: ms\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.4-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"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:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "Antara muka"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
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:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
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. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
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:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr ""
|
@ -1,206 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2024-01-26 16:51+0000\n"
|
||||
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/nb_NO/>\n"
|
||||
"Language: nb_NO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.4-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
"<i>Gjelder for Ping Restart, Restart Grensesnitt og Kjør Skript</i> <br /> "
|
||||
"Spesifiser grensesnittet for å overvåke og reagere hvis en ping over det "
|
||||
"mislykkes."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr "Adressefamilie til pinging av verten"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"value here will trigger a delayed hard reboot if the soft reboot were to "
|
||||
"fail. Enter the number of seconds to wait for the soft reboot to fail or use "
|
||||
"0 to disable the forced reboot delay."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "Generelle innstillinger"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
msgid "Jumbo: 9000 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22
|
||||
msgid "Mode"
|
||||
msgstr "Modus"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
"Watchcat tillater oppsett av periodisk omstart når tilknytningen til "
|
||||
"Internett har gått tapt en gitt periode."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
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. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
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:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr ""
|
||||
"Ved omstart av systemet vil watchcat utløse en myk omstart. Å skrive inn et "
|
||||
"tall annet enn null her vil utløse en forsinket hard omstart hvis den mye "
|
||||
"misslykkes. Skriv inn antall sekunder for å skru på, og 0 for å skru av."
|
@ -1,242 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2024-02-03 16:13+0000\n"
|
||||
"Last-Translator: Matthaiks <kitynska@gmail.com>\n"
|
||||
"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/pl/>\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||
"|| n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.4-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
"<i>Dotyczy trybów restartu na podstawie pingu, restartu interfejsu i "
|
||||
"uruchamiania skrytpu</i> <br /> Określ interfejs do monitorowania i "
|
||||
"reagowania w przypadku niepowodzenia pingowania."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr "Rodzina adresów do pingowania hosta"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"value here will trigger a delayed hard reboot if the soft reboot were to "
|
||||
"fail. Enter the number of seconds to wait for the soft reboot to fail or use "
|
||||
"0 to disable the forced reboot delay."
|
||||
msgstr ""
|
||||
"Dotyczy trybów restartu na podstawie pingu i okresowego ponownego "
|
||||
"uruchamiania</i> <br /> Po ponownym uruchomieniu routera usługa uruchomi "
|
||||
"miękki restart. Wprowadzenie wartości niezerowej spowoduje opóźniony twardy "
|
||||
"restart, jeśli miękki ponowny rozruch nie powiedzie się. Wprowadź liczbę "
|
||||
"sekund oczekiwania na niepowodzenie miękkiego ponownego uruchomienia lub "
|
||||
"użyj 0, aby wyłączyć wymuszone opóźnienie ponownego uruchomienia."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
"Dotyczy trybów restartu na podstawie pingu i restartu interfejsu</i> <br /> "
|
||||
"Jeśli używasz ModemManager, program Watchcat może ponownie uruchomić "
|
||||
"interfejs ModemManger, określając jego nazwę."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr "Duży: 248 bajtów"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "Interwał sprawdzania"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr "Wymuś opóźnienie restartu"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "Ustawienia główne"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr "Udziel dostępu do aplikacji LuCI watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
"Tutaj możesz skonfigurować kilka kontroli i działań, które należy podjąć w "
|
||||
"przypadku, gdy host staje się nieosiągalny. Kliknij przycisk<b>Dodaj</b>na "
|
||||
"dole, aby skonfigurować więcej niż jedną akcję."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr "Host do sprawdzenia"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
"Jak często pingować podany powyżej host. <br /><br />Domyślną jednostką są "
|
||||
"sekundy, bez przyrostka, ale możesz użyć przyrostka <b>m</b> dla minut, "
|
||||
"<b>h</b> dla godzin lub <b>d</b> dla dni. <br /><br /> Przykłady:<ul><li>10 "
|
||||
"sekund to: <b>10</b> lub <b>10s</b></li><li>5 minut byłoby: <b>5m</b></"
|
||||
"li><li>1 godzina byłaby: <b>1h</b></li><li>1 tydzień wynosiłby: <b>7d</b></"
|
||||
"li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr "Ogromny: 1492 bajtów"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr "Adres IP lub nazwa hosta do pingowania."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
"Jeśli używasz ModemManagera, to przed restartem interfejsu ustaw modem by "
|
||||
"mógł używać dowolnego pasma."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
"W trybie restartu okresowego określa, jak często ma być wykonywany restart."
|
||||
"<br /> W trybie restartu na podstawie pingu określa najdłuższy okres czasu "
|
||||
"bez odpowiedzi od hosta do sprawdzenia przed ponownym uruchomieniem.<br /> W "
|
||||
"trybie ponownego uruchomienia sieci lub uruchomienia skryptu określa "
|
||||
"najdłuższy okres czasu bez odpowiedzi od hosta do sprawdzenia przed ponownym "
|
||||
"uruchomieniem interfejsu lub uruchomieniem skryptu.<br /><br />Domyślną "
|
||||
"jednostką są sekundy, bez przyrostka, ale można użyć przyrostka <b>m</b> dla "
|
||||
"minut, <b>h</b> dla godzin lub <b>d</b> dla dni. <br /><br />Przykłady:"
|
||||
"<ul><li>10 sekund to: <b>10</b> lub <b>10s</b></li><li>5 minut to: <b>5m</"
|
||||
"b></li><li> 1 godzina to: <b>1h</b></li><li>1 tydzień to: <b>7d</b></li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "Interfejs"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr "Interfejs do monitorowania i/lub restartu"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
msgid "Jumbo: 9000 bytes"
|
||||
msgstr "Jumbo: 9000 bajtów"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22
|
||||
msgid "Mode"
|
||||
msgstr "Tryb"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr "Nazwa interfejsu ModemManager"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr "Okres"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr "Restart okresowy"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr "Rozmiar pakietu ping"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
msgid "Ping Reboot"
|
||||
msgstr "Restart na podstawie pingu"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23
|
||||
msgid ""
|
||||
"Ping Reboot: Reboot this device if a ping to a specified host fails for a "
|
||||
"specified duration of time. <br /> Periodic Reboot: Reboot this device after "
|
||||
"a specified interval of time. <br /> Restart Interface: Restart a network "
|
||||
"interface if a ping to a specified host fails for a specified duration of "
|
||||
"time. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
"Restart na podstawie pingu: uruchom ponownie to urządzenie, jeśli ping do "
|
||||
"określonego hosta nie powiedzie się przez określony czas. <br /> Restart "
|
||||
"okresowy: uruchom ponownie to urządzenie po określonym czasie. <br />Restart "
|
||||
"interfejsu: zrestartuj interfejs sieciowy, jeśli ping do określonego hosta "
|
||||
"nie powiedzie się przez określony czas. <br /> Uruchom skrypt: uruchom "
|
||||
"skrypt, jeśli ping do określonego hosta nie powiedzie się przez określony "
|
||||
"czas. <br />"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr "Restart interfejsu"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr "Uruchom skrypt"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr "Skrypt do uruchomienia"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
"Skrypt do uruchomienia, gdy host nie odpowiada przez określony czas. Do "
|
||||
"skryptu przekazywana jest nazwa interfejsu jako $1"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr "Mały: 1 bajt"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
msgid "Standard: 56 bytes"
|
||||
msgstr "Standardowy: 56 bajtów"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
msgid "These rules will govern how this device reacts to network events."
|
||||
msgstr ""
|
||||
"Reguły te określają sposób, w jaki urządzenie reaguje na zdarzenia w sieci."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr "Odblokuj pasma modemu"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr "Watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr "Windows: 32 bajty"
|
@ -1,241 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2022-11-30 14:48+0000\n"
|
||||
"Last-Translator: Gonçalo Pereira <goncalo_pereira@outlook.pt>\n"
|
||||
"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/pt/>\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.15-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
"<i>Aplica-se aos modos Ping Reboot, Restart Interface e Executar Script</i> "
|
||||
"<br /> Especifique a interface para monitorar e reagir se um ping por ele "
|
||||
"falhar."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr "Família de endereços para pingar o host"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"value here will trigger a delayed hard reboot if the soft reboot were to "
|
||||
"fail. Enter the number of seconds to wait for the soft reboot to fail or use "
|
||||
"0 to disable the forced reboot delay."
|
||||
msgstr ""
|
||||
"Aplica-se aos modos de reinicialização de ping e reinicialização periódica</"
|
||||
"i> <br /> Ao reinicializar o roteador, o serviço acionará uma "
|
||||
"reinicialização suave. A inserção de um valor diferente a zero aqui acionará "
|
||||
"uma reinicialização forçada atrasada se a reinicialização suave falhar. "
|
||||
"Insira a quantidade de segundos para aguardar a falha da reinicialização "
|
||||
"suave ou use 0 para desativar o atraso da reinicialização forçada."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
"Se aplica aos modos ping reboot e os modos de reinicialização da interface</"
|
||||
"i> <br /> Caso esteja a usar o ModemManager, será possível fazer com que o "
|
||||
"Watchcat reinicie a sua interface ModemManger através da definição do seu "
|
||||
"nome."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr "Grande: 248 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "Intervalo de verificação"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr "Atraso para reinicialização forçada"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "Configurações gerais"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr "Conceda à app watchcat o acesso ao LuCI"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
"Aqui é possível configurar várias verificações e ações que serão tomadas "
|
||||
"caso um host se torne inalcançável. Clique no botão <b>Adicionar</b> na "
|
||||
"parte inferior para configurar mais de uma ação."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr "O host que será verificado"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
"Quantas vezes pingar o host definido acima. <br /><br />A unidade padrão é "
|
||||
"de segundos, sem um sufixo, porém é possível usar o sufixo <b>m</b> para "
|
||||
"minutos, <b>h</b> para horas ou <b>d</b> para dias. <br /><br /> Exemplos: "
|
||||
"<ul><li>10 segundos seriam: <b>10</b> ou <b>10s</b></li><li>5 minutos "
|
||||
"seriam: <b>5m</b></li><li>1 hora seria: <b>1h</b></li><li>1 semana seria: "
|
||||
"<b>7d</b></li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr "Enorme: 1492 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr "Endereço IP ou nome do host a pingar."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
"Caso use o ModemManager antes de reiniciar a interface, defina o modem para "
|
||||
"poder utilizar qualquer banda."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
"No modo de reinicialização periódica, define a frequência de "
|
||||
"reinicialização. <br /> No modo Ping Reboot, define o maior período sem uma "
|
||||
"resposta do host a ser analisado antes que uma reinicialização seja "
|
||||
"iniciada. <br /> No modo Network Restart ou Executar Script, define o maior "
|
||||
"período sem uma resposta do host a ser analisado antes que a interface seja "
|
||||
"reiniciada ou o script, seja executado. <br /><br />A unidade padrão é "
|
||||
"segundos, sem sufixo, mas pode usar o sufixo <b>m</b> para minutos, <b>h</b> "
|
||||
"para horas ou <b>d </b> por dias. <br /><br />Exemplos:<ul><li>10 segundos "
|
||||
"seriam: <b>10</b> ou <b>10s</b></li><li>5 minutos seriam: <b>5m</b></li><li> "
|
||||
"1 hora seria: <b>1h</b></li><li>1 semana seria: <b>7d</b></ li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "Interface"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr "Interface para monitorar e/ou reiniciar"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
msgid "Jumbo: 9000 bytes"
|
||||
msgstr "Jumbo: 9000 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22
|
||||
msgid "Mode"
|
||||
msgstr "Modo"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr "Nome da interface do ModemManager"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr "Periodo"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr "Reinício periódico"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr "Tamanho do Pacote Ping"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
msgid "Ping Reboot"
|
||||
msgstr "Reiniciar com Ping"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23
|
||||
msgid ""
|
||||
"Ping Reboot: Reboot this device if a ping to a specified host fails for a "
|
||||
"specified duration of time. <br /> Periodic Reboot: Reboot this device after "
|
||||
"a specified interval of time. <br /> Restart Interface: Restart a network "
|
||||
"interface if a ping to a specified host fails for a specified duration of "
|
||||
"time. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
"Ping Reboot: reinicializar este aparelho se um ping para um host "
|
||||
"especificado falhar por um período especificado. <br /> Reinicialização "
|
||||
"Periódica: reinicializar este aparelho após um intervalo de tempo "
|
||||
"especificado. <br /> Reiniciar interface: reiniciar uma interface de rede se "
|
||||
"um ping para um host especificado falhar por um período especificado. <br /> "
|
||||
"Executar script: executa um script se um ping para um host especificado "
|
||||
"falhar por um período especificado. <br />"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr "Interface de reinicialização"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr "Executar script"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr "Script a executar"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
"O script a ser executado quando o host não respondeu no tempo especificado. "
|
||||
"O script recebe o nome da interface como $1"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr "Pequeno: 1 byte"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
msgid "Standard: 56 bytes"
|
||||
msgstr "Padrão: 56 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
msgid "These rules will govern how this device reacts to network events."
|
||||
msgstr "Essas regras regem como este aparelho reage aos eventos de rede."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr "Desbloqueie as bandas do modem"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr "Watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr "Windows: 32 bytes"
|
@ -1,243 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2022-09-05 01:37+0000\n"
|
||||
"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
|
||||
"openwrt/luciapplicationswatchcat/pt_BR/>\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 4.14.1-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
"<i>Aplica-se ao Ping Reboot, Reiniciar Interface, e Executar os modos "
|
||||
"Script</i> <br /> Especifica a interface para monitorizar e reagir caso um "
|
||||
"ping falhe sobre ela."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr "Família de endereços para pingar o host"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"value here will trigger a delayed hard reboot if the soft reboot were to "
|
||||
"fail. Enter the number of seconds to wait for the soft reboot to fail or use "
|
||||
"0 to disable the forced reboot delay."
|
||||
msgstr ""
|
||||
"Se aplica aos modos ping reboot e a reinicialização periódica</i> <br /> Ao "
|
||||
"reiniciar o roteador o serviço acionará uma reinicialização suave. Inserindo "
|
||||
"um valor diferente de zero aqui desencadeará uma reinicialização completa "
|
||||
"com atraso caso a reinicialização suave falhe. Insira o número em segundos "
|
||||
"para esperar a falha da reinicialização suave ou use 0 para desativar o "
|
||||
"atraso de reinicialização forçada."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
"Se aplica aos modos ping reboot e os modos de reinicialização da interface</"
|
||||
"i> <br /> Caso esteja usando o ModemManager, será possível fazer com que o "
|
||||
"Watchcat reinicie a sua interface ModemManger através da definição do seu "
|
||||
"nome."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr "Grande: 248 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "Intervalo de verificação"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr "Atraso da reinicialização forçada"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "Configurações gerais"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr "Conceda ao aplicativo watchcat o acesso ao LuCI"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
"Aqui é possível configurar várias verificações e ações que serão tomadas "
|
||||
"caso um host se torne inalcançável. Clique no botão <b>Adicionar</b> na "
|
||||
"parte inferior para configurar mais de uma ação."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr "O host que será verificado"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
"Quantas vezes pingar o host definido acima. <br /><br />A unidade padrão é "
|
||||
"de segundos, sem um sufixo, porém é possível usar o sufixo <b>m</b> para "
|
||||
"minutos, <b>h</b> para horas ou <b>d</b> para dias. <br /><br /> Exemplos: "
|
||||
"<ul><li>10 segundos seriam: <b>10</b> ou <b>10s</b></li><li>5 minutos "
|
||||
"seriam: <b>5m</b></li><li>1 hora seria: <b>1h</b></li><li>1 semana seria: "
|
||||
"<b>7d</b></li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr "Enorme: 1492 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr "Endereço IP ou o nome do host para pingar."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
"Caso use o ModemManager antes de reiniciar a interface, defina o modem para "
|
||||
"poder utilizar qualquer banda."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
"No modo de reinicialização periódica, é definido a frequência de "
|
||||
"reinicialização. <br /> No modo Ping Reboot, é definido o maior período de "
|
||||
"tempo sem uma resposta do host de verificação antes que uma reinicialização "
|
||||
"seja iniciada. <br /> No modo reinicio da rede ou executar script, é "
|
||||
"definido o maior período de tempo sem uma resposta do host de verificação "
|
||||
"antes que a interface seja reiniciada ou o script seja executado. <br /><br /"
|
||||
">A unidade padrão é em segundos, sem sufixo, porém é possível usar o sufixo "
|
||||
"<b>m</b> para minutos, <b>h</b> para horas ou <b>d </b> por dias. <br /><br /"
|
||||
">Exemplos:<ul><li>10 segundos seriam: <b>10</b> ou <b>10s</b></li><li>5 "
|
||||
"minutos seriam: <b>5m</b></li><li> 1 hora seria: <b>1h</b></li><li>1 semana "
|
||||
"seria: <b>7d</b></ li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "Interface"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr "Interface para monitorar e/ou reiniciar"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
msgid "Jumbo: 9000 bytes"
|
||||
msgstr "Jumbo: 9000 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22
|
||||
msgid "Mode"
|
||||
msgstr "Modo"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr "Nome da interface do ModemManager"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr "Período"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr "Reinício periódico"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr "Tamanho do Pacote Ping"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
msgid "Ping Reboot"
|
||||
msgstr "Reiniciar com Ping"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23
|
||||
msgid ""
|
||||
"Ping Reboot: Reboot this device if a ping to a specified host fails for a "
|
||||
"specified duration of time. <br /> Periodic Reboot: Reboot this device after "
|
||||
"a specified interval of time. <br /> Restart Interface: Restart a network "
|
||||
"interface if a ping to a specified host fails for a specified duration of "
|
||||
"time. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
"Ping de reinicialização: Reinicializa este dispositivo caso um ping para um "
|
||||
"determinado host falhe por um período de tempo determinado. <br /> Reinicio "
|
||||
"periódico: Reinicializa este dispositivo após um determinado intervalo de "
|
||||
"tempo. <br /> Reinicia a interface: Reinicia uma interface de rede caso um "
|
||||
"ping para um determinado host falhe por um período de tempo determinado. "
|
||||
"<br /> Executa script: executa um script caso um ping para um determinado "
|
||||
"host falhe por um período de tempo determinado. <br />"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr "Reinicie a interface"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr "Executa script"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr "Script que será executado"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
"O script que será executado quando o host não responder por período de tempo "
|
||||
"determinado. O script recebe o nome da interface como $1"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr "Pequeno: 1 byte"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
msgid "Standard: 56 bytes"
|
||||
msgstr "Padrão: 56 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
msgid "These rules will govern how this device reacts to network events."
|
||||
msgstr "Essas regras regem como este dispositivo reage aos eventos de rede."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr "Desbloqueie as bandas do modem"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr "Watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr "Windows: 32 bytes"
|
@ -1,245 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2022-10-07 17:18+0000\n"
|
||||
"Last-Translator: Simona Iacob <s@zp1.net>\n"
|
||||
"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/ro/>\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
|
||||
"20)) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.14.1\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
"<i>Se aplică în modurile Ping Reboot, Restart Interface și Run Script</i> "
|
||||
"<br /> Specificați interfața care trebuie monitorizată și reacționează în "
|
||||
"cazul în care un ping pe aceasta eșuează."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr "Familia de adrese pentru ping la gazdă"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"value here will trigger a delayed hard reboot if the soft reboot were to "
|
||||
"fail. Enter the number of seconds to wait for the soft reboot to fail or use "
|
||||
"0 to disable the forced reboot delay."
|
||||
msgstr ""
|
||||
"Se aplică la modurile Ping Reboot și Reboot periodic</i> <br /> La "
|
||||
"repornirea routerului, serviciul va declanșa o repornire ușoară. "
|
||||
"Introducerea unei valori diferite de zero aici va declanșa o repornire dură "
|
||||
"întârziată în cazul în care repornirea soft ar eșua. Introduceți numărul de "
|
||||
"secunde de așteptare pentru ca repornirea soft să eșueze sau utilizați 0 "
|
||||
"pentru a dezactiva întârzierea repornirii forțate."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
"Se aplică la modurile Ping Reboot și Restart Interface</i> <br /> Dacă "
|
||||
"folosiți ModemManager, puteți face ca Watchcat să repornească interfața "
|
||||
"ModemManger prin specificarea numelui acesteia."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr "Mare: 248 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "Interval de verificare"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr "Întârziere forțată a repornirii"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "Setări generale"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr "Acordarea accesului la aplicația LuCI watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
"Aici puteți configura mai multe verificări și acțiuni care trebuie "
|
||||
"întreprinse în cazul în care o gazdă devine inaccesibilă. Faceți clic pe "
|
||||
"butonul <b>Add</b> (Adăugare) din partea de jos pentru a configura mai multe "
|
||||
"acțiuni."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr "Gazdă de verificat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
"Cât de des să faceți ping la gazda specificată mai sus. <br /><br />Unitatea "
|
||||
"implicită sunt secundele, fără sufix, dar puteți folosi sufixul <b>m</b> "
|
||||
"pentru minute, <b>h</b> pentru ore sau <b>d </b> zile întregi. <br /><br /> "
|
||||
"Exemple:<ul><li>10 secunde ar fi: <b>10</b> sau <b>10s</b></li><li>5 minute "
|
||||
"ar fi: <b>5m</b></li><li>1 oră ar fi: <b>1h</b></li><li>1 săptămână ar fi: "
|
||||
"<b>7d</b></li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr "Imens: 1492 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr "Adresa IP sau numele de gazdă pentru ping."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
"În cazul în care se utilizează ModemManager, înainte de a reporni interfața, "
|
||||
"setați modemul pentru a fi autorizat să utilizeze orice bandă."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
"În modul Repornire periodică, se definește cât de des trebuie să se "
|
||||
"repornească. <br /> În modul Ping Reboot, definește cea mai lungă perioadă "
|
||||
"de timp fără un răspuns din partea gazdei de verificat înainte de repornire. "
|
||||
"<br /> În modul Repornire rețea sau Executare script, definește cea mai "
|
||||
"lungă perioadă de timp fără un răspuns din partea gazdei la Check înainte ca "
|
||||
"interfața să fie repornită sau scriptul să fie executat. <br /><br /"
|
||||
">Unitatea implicită este secundele, fără sufix, dar se poate folosi sufixul "
|
||||
"<b>m</b> pentru minute, <b>h</b> pentru ore sau <b>d</b> pentru zile. <br /"
|
||||
"><br />Examples:<ul><li>10 secunde ar fi: <b>10</b> or <b>10s</b></li><li>5 "
|
||||
"minute ar fi: <b>5m</b></li><li> 1 oră ar fi: <b>1h</b></li><li>1 săptămână "
|
||||
"ar fi: <b>7d</b></li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "Interfață"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr "Interfața de monitorizare și/sau repornire"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
msgid "Jumbo: 9000 bytes"
|
||||
msgstr "Jumbo: 9000 octeți"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22
|
||||
msgid "Mode"
|
||||
msgstr "Mod"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr "Numele interfeței ModemManager"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr "Perioadă"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr "Repornire periodică"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr "Dimensiunea pachetului Ping"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
msgid "Ping Reboot"
|
||||
msgstr "Repornire Ping"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23
|
||||
msgid ""
|
||||
"Ping Reboot: Reboot this device if a ping to a specified host fails for a "
|
||||
"specified duration of time. <br /> Periodic Reboot: Reboot this device after "
|
||||
"a specified interval of time. <br /> Restart Interface: Restart a network "
|
||||
"interface if a ping to a specified host fails for a specified duration of "
|
||||
"time. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
"Ping Reboot: Reporniți acest dispozitiv în cazul în care un ping către o "
|
||||
"gazdă specificată eșuează pentru o anumită perioadă de timp. <br /> "
|
||||
"Repornire periodică: Reporniți acest dispozitiv după un interval de timp "
|
||||
"specificat. <br /> Reporniți interfața: Reporniți o interfață de rețea dacă "
|
||||
"un ping către o gazdă specificată nu reușește pentru o anumită perioadă de "
|
||||
"timp. <br /> Rulați scriptul: Executați un script dacă un ping către o gazdă "
|
||||
"specificată eșuează pentru o anumită perioadă de timp. <br />"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr "Reporniți interfața"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr "Rulați scriptul"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr "Script pentru a rula"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
"Script care se execută atunci când gazda nu a răspuns pentru o perioadă de "
|
||||
"timp specificată. Scriptului i se transmite numele interfeței ca $1"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr "Mic: 1 octet"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
msgid "Standard: 56 bytes"
|
||||
msgstr "Standard: 56 octeți"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
msgid "These rules will govern how this device reacts to network events."
|
||||
msgstr ""
|
||||
"Aceste reguli vor guverna modul în care acest dispozitiv reacționează la "
|
||||
"evenimentele din rețea."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr "Deblocarea benzilor de modem"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr "Priveștepisica"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr "Ferestre: 32 octeți"
|
@ -1,248 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: LuCI: watchcat\n"
|
||||
"POT-Creation-Date: 2013-10-06 11:15+0300\n"
|
||||
"PO-Revision-Date: 2024-02-03 21:48+0000\n"
|
||||
"Last-Translator: st7105 <st7105@gmail.com>\n"
|
||||
"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/ru/>\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.4-dev\n"
|
||||
"Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
|
||||
"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
"<i>Используется в режимах \"Перезагрузка на основе пинга\", \"Перезагрузка "
|
||||
"интерфейса\", и \"Запуск сценария\"</i> <br /> Выберите интерфейс, через "
|
||||
"который будет посылаться пинг."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr "Версия интернет-протокола для отправки пинга устройству"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"value here will trigger a delayed hard reboot if the soft reboot were to "
|
||||
"fail. Enter the number of seconds to wait for the soft reboot to fail or use "
|
||||
"0 to disable the forced reboot delay."
|
||||
msgstr ""
|
||||
"Используется в режимах \"Перезагрузка на основе пинга\" и \"Периодическая "
|
||||
"перезагрузка\"</i> <br /> При перезагрузке маршрутизатора служба попробует "
|
||||
"выполнить корректную перезагрузку. Если она затянется, будет выполнена "
|
||||
"принудительная перезагрузка. Этим параметром задается время в секундах, "
|
||||
"отведенное для корректной перезагрузки. Установка 0 приведёт к отключению "
|
||||
"принудительной перезагрузки."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
"Используется в режимах \"Перезагрузка на основе пинга\" и \"Перезагрузка "
|
||||
"интерфейса\"</i> <br /> Если используется ModemManager, вы можете "
|
||||
"использовать Watchcat для перезагрузки вашего интерфейса ModemManger, указав "
|
||||
"его имя."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr "Большой: 248 байт"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "Период проверки"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr "Задержка принудительной перезагрузки"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "Основные настройки"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr "Предоставить доступ LuCI к приложению watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
"Здесь вы можете задать несколько условий и действий на случай, если внешнее "
|
||||
"устройство станет недоступным. Нажмите кнопку <b>Добавить</b> внизу, чтобы "
|
||||
"добавить ещё одно действие."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr "Устройство для проверки"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
"Как часто отправлять пинги на указанное выше устройство. <br /><br />По "
|
||||
"умолчанию единицей измерения являются секунды (без суффикса). Вы можете "
|
||||
"использовать суффикс <b>m</b> для минут, <b>h</b> для часов или <b>d</b> для "
|
||||
"дней. <br /><br /> Примеры:<ul><li>10 секунд будет: <b>10</b> или <b>10s</"
|
||||
"b></li><li>5 минут будет: <b>5m</b></li><li>1 час будет: <b>1h</b></li><li>1 "
|
||||
"неделя будет: <b>7d</b></li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr "Огромный: 1492 байта"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr "IP-адрес или имя узла для отправки пингов."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
"Если используется ModemManager, то перед перезапуском интерфейса установите "
|
||||
"для модема разрешение использовать любой диапазон."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
"\"Перезагрузка на основе пинга\": наибольший период времени без ответа от "
|
||||
"проверяемого хоста, прежде чем будет выполнена перезагрузка <br /> "
|
||||
"\"Периодическая перезагрузка\": частота перезагрузки <br /> \"Перезагрузка "
|
||||
"интерфейса\", \"Запуск сценария\": наибольший период времени без ответа от "
|
||||
"проверяемого хоста, прежде чем будет перезапущен интерфейс или запущен "
|
||||
"сценарий. <br /><br />По умолчанию единицей измерения являются секунды, без "
|
||||
"суффикса, но вы можете использовать суффикс <b>m</b> для минут, <b>h</b> для "
|
||||
"часов или <b>d</b> для дней. <br /><br />Примеры:<ul><li>10 секунд будет: "
|
||||
"<b>10</b> или <b>10s</b></li><li>5 минут будет: <b>5m</b></li><li> 1 час "
|
||||
"будет: <b>1h</b></li><li>1 неделя будет: <b>7d</b></li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "Интерфейс"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr "Интерфейс для мониторинга и/или перезапуска"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
msgid "Jumbo: 9000 bytes"
|
||||
msgstr "Jumbo: 9000 байт"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22
|
||||
msgid "Mode"
|
||||
msgstr "Режим"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr "Имя интерфейса ModemManager"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr "Период"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr "Периодическая перезагрузка"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr "Размер пакета Ping"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
msgid "Ping Reboot"
|
||||
msgstr "Перезагрузка на основе ping"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23
|
||||
msgid ""
|
||||
"Ping Reboot: Reboot this device if a ping to a specified host fails for a "
|
||||
"specified duration of time. <br /> Periodic Reboot: Reboot this device after "
|
||||
"a specified interval of time. <br /> Restart Interface: Restart a network "
|
||||
"interface if a ping to a specified host fails for a specified duration of "
|
||||
"time. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
"Перезагрузка на основе пинга: Перезагрузить устройство, если от указанного "
|
||||
"узла в течение заданного времени не приходят ответы на пинг-запросы. <br /> "
|
||||
"Периодическая перезагрузка: Перезагрузить устройство через указанный "
|
||||
"интервал времени. <br /> Перезагрузка интерфейса: Перезагрузить сетевой "
|
||||
"интерфейс, если от указанного узла в течение заданного времени не приходят "
|
||||
"ответы на пинг-запросы. <br /> Запуск сценария: Запустить сценарий, если от "
|
||||
"указанного узла в течение заданного времени не приходят ответы на пинг-"
|
||||
"запросы. <br />"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr "Перезагрузка сетевого интерфейса"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr "Запуск сценария"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr "Сценарий для выполнения"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
"Сценарий для запуска, когда хост не отвечает в течение указанного времени. "
|
||||
"Сценарию передается имя сетевого интерфейса в качестве $1"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr "Маленький: 1 байт"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
msgid "Standard: 56 bytes"
|
||||
msgstr "Стандартный: 56 байт"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
msgid "These rules will govern how this device reacts to network events."
|
||||
msgstr ""
|
||||
"Правила ниже определят, как это устройство будет реагировать на сетевые "
|
||||
"события."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr "Разблокировать диапазоны модема"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr "Watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr "Windows: 32 байта"
|
@ -1,198 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2021-12-06 14:03+0000\n"
|
||||
"Last-Translator: Dušan Kazik <prescott66@gmail.com>\n"
|
||||
"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/sk/>\n"
|
||||
"Language: sk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.10-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"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:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "Interval kontroly"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
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:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
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. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
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:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr ""
|
@ -1,200 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2022-08-28 23:17+0000\n"
|
||||
"Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n"
|
||||
"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/sv/>\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.14.1-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr "Adress-familjen för att pinga värden"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"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:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr "Stor: 248 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "Kontrollintervall"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr "Påtvinga fördröjning av omstart"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "Generella inställningar"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr "Värd att kontrollera"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr "Jättestor: 1492 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr "IP-adress eller värdnamn att pinga."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "Gränssnitt"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr "Gränssnitt att bevaka och/eller starta om"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
msgid "Jumbo: 9000 bytes"
|
||||
msgstr "Jumbo: 9000 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22
|
||||
msgid "Mode"
|
||||
msgstr "Läge"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr "Namn på gränssnittet för ModemManager"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr "Period"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr "Periodisk omstart"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr "Paketstorlek för pingning"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
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. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr "Starta om gränssnitt"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr "Kör skript"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr "Skript att köra"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr "Liten: 1 byte"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
msgid "Standard: 56 bytes"
|
||||
msgstr "Standard: 56 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
msgid "These rules will govern how this device reacts to network events."
|
||||
msgstr ""
|
||||
"De här reglerna kommer att styra hur den här enheten reagerar på "
|
||||
"nätverkshändelser."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr "Lås upp modemband"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr "Watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr "Fönster: 32 bytes"
|
@ -1,187 +0,0 @@
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=UTF-8"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"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:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
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:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
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. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
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:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr ""
|
@ -1,243 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2022-09-25 14:22+0000\n"
|
||||
"Last-Translator: semih <semiht@gmail.com>\n"
|
||||
"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/tr/>\n"
|
||||
"Language: tr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.14.1\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
"<i>Ping Yeniden Başlatma, Arabirimi Yeniden Başlatma ve Komut Dosyasını "
|
||||
"Çalıştırma modları için geçerlidir</i> <br /> Üzerinde bir ping başarısız "
|
||||
"olursa izlenecek ve tepki verecek arabirimi belirt."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr "Ana bilgisayara ping atmak için adres ailesi"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"value here will trigger a delayed hard reboot if the soft reboot were to "
|
||||
"fail. Enter the number of seconds to wait for the soft reboot to fail or use "
|
||||
"0 to disable the forced reboot delay."
|
||||
msgstr ""
|
||||
"Ping Yeniden Başlatma ve Periyodik Yeniden Başlatma modları için geçerlidir "
|
||||
"</i> <br /> Yönlendiriciyi yeniden başlatırken, hizmet yumuşak bir yeniden "
|
||||
"başlatmayı tetikleyecektir. Buraya sıfır olmayan bir değer girmek, yumuşak "
|
||||
"yeniden başlatma başarısız olursa, gecikmeli bir donanım yeniden başlatmayı "
|
||||
"tetikleyecektir. Yumuşak yeniden başlatmanın başarısız olması için "
|
||||
"beklenecek saniye sayısını girin veya zorunlu yeniden başlatma gecikmesini "
|
||||
"devre dışı bırakmak için 0'ı kullanın."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
"Ping Yeniden Başlatma ve Yeniden Başlatma Arayüzü modları için geçerlidir </"
|
||||
"i> <br /> ModemManager kullanıyorsanız, Watchcat'in adını belirterek "
|
||||
"ModemManger arayüzünüzü yeniden başlatmasını sağlayabilirsiniz."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr "Büyük: 248 bayt"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "Kontrol etme aralığı"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr "Zorla Yeniden Başlatma Gecikmesi"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "Genel Ayarlar"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr "LuCI programı watchcat için yetki ver"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
"Burada, bir ana bilgisayarın erişilemez hale gelmesi durumunda "
|
||||
"gerçekleştirilecek çeşitli kontroller ve eylemler ayarlayabilirsiniz. Birden "
|
||||
"fazla eylem ayarlamak için alttaki <b>Ekle</b> düğmesini tıklayın."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr "Kontrol Edilecek Alan Adı"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
"Yukarıda belirtilen ana bilgisayara ne sıklıkla ping atılacağı. <br /><br /"
|
||||
">Varsayılan birim son ek olmadan saniyedir, ancak son ek kullanabilirsiniz "
|
||||
"<b>m</b> dakika için, <b>h</b> saatler için veya <b>d</b> günler için. <br /"
|
||||
"><br /> Örnekler:<ul><li>10 saniye şöyle olur: <b>10</b> veya <b>10s</b></"
|
||||
"li><li>5 dakika şöyle olur: <b>5m</b></li><li>1 saat: <b>1h</b></li><li>1 "
|
||||
"hafta: <b>7d</b></li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr "Çok Büyük: 1492 bayt"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr "Ping için IP adresi veya ana bilgisayar adı."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
"ModemManager kullanılıyorsa, arayüzü yeniden başlatmadan önce modemin "
|
||||
"herhangi bir bandı kullanmasına izin verilecek şekilde ayarlayın."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
"Periyodik Yeniden Başlatma modunda, ne sıklıkta yeniden başlatılacağı "
|
||||
"tanımlanır. <br /> Ping Yeniden Başlatma modunda, yeniden başlatma "
|
||||
"yapılmadan önce Kontrol Edilecek Ana Bilgisayardan yanıt alınmaksızın en "
|
||||
"uzun süreyi tanımlar. <br /> Ağ Yeniden Başlatma veya Komut Dosyasını "
|
||||
"Çalıştırma modunda, arayüz yeniden başlatılmadan veya komut dosyası "
|
||||
"çalıştırılmadan önce Ana Bilgisayardan Kontrol edilecek en uzun süreyi "
|
||||
"tanımlar. <br /><br />Varsayılan birim saniyedir, son ek yoktur, ancak "
|
||||
"dakika için <b>m</b>, saat için <b>h</b> veya gün için <b>d</b> son ekini "
|
||||
"kullanabilirsiniz. <br /><br />Örnekler:<ul><li>10 saniye: <b>10</b> veya "
|
||||
"<b>10s</b></li><li>5 dakika: <b>5m</b></li><li> 1 saat: <b>1h</b></li><li>1 "
|
||||
"hafta: <b>7d</b></ li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "Arayüz"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr "İzlenenecek ve/ya yeniden başlatılacak arayüz"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
msgid "Jumbo: 9000 bytes"
|
||||
msgstr "Jumbo: 9000 bayt"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22
|
||||
msgid "Mode"
|
||||
msgstr "Mod"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr "ModemManager Arayüzünün Adı"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr "Periyot"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr "Periyodik Yeniden Başlatma"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr "Ping Paketi Boyutu"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
msgid "Ping Reboot"
|
||||
msgstr "Ping tabanlı yeniden başlatma"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23
|
||||
msgid ""
|
||||
"Ping Reboot: Reboot this device if a ping to a specified host fails for a "
|
||||
"specified duration of time. <br /> Periodic Reboot: Reboot this device after "
|
||||
"a specified interval of time. <br /> Restart Interface: Restart a network "
|
||||
"interface if a ping to a specified host fails for a specified duration of "
|
||||
"time. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
"Ping Yeniden Başlatma: Belirtilen bir ana bilgisayara ping belirli bir süre "
|
||||
"boyunca başarısız olursa bu cihazı yeniden başlat. <br /> Periyodik Yeniden "
|
||||
"Başlatma: Belirli bir zaman aralığından sonra bu cihazı yeniden başlat. <br /"
|
||||
"> Arabirimi Yeniden Başlat: Belirtilen bir ana bilgisayara ping belirli bir "
|
||||
"süre boyunca başarısız olursa, bir ağ arabirimini yeniden başlat. <br /> "
|
||||
"Komut Dosyasını Çalıştır: Belirtilen bir ana bilgisayara ping belirli bir "
|
||||
"süre boyunca başarısız olursa bir komut dosyası çalıştır. <br />"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr "Arayüzü yeniden başlat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr "Komut Dosyasını Çalıştır"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr "Çalıştırılacak komut dosyası"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
"Ana bilgisayar belirtilen süre boyunca yanıt vermediğinde çalıştırılacak "
|
||||
"komut dosyası. Komut dosyası, arabirim adına $1 olarak iletilir"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr "Küçük: 1 bayt"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
msgid "Standard: 56 bytes"
|
||||
msgstr "Standart: 56 bayt"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
msgid "These rules will govern how this device reacts to network events."
|
||||
msgstr ""
|
||||
"Bu kurallar cihazın ağ olaylarına hangi şekilde tepki vereceğini yönetir."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr "Modem Bantlarının Kilidini Açın"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr "Watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr "Windows: 32 bayt"
|
@ -1,221 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2022-12-29 23:53+0000\n"
|
||||
"Last-Translator: Dan <denqwerta@gmail.com>\n"
|
||||
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/uk/>\n"
|
||||
"Language: uk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.15.1-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"value here will trigger a delayed hard reboot if the soft reboot were to "
|
||||
"fail. Enter the number of seconds to wait for the soft reboot to fail or use "
|
||||
"0 to disable the forced reboot delay."
|
||||
msgstr ""
|
||||
"Застосовується до режимів Ping-перезавантаження та Періодичного "
|
||||
"перезавантаження</i> <br /> Під час перезавантаження маршрутизатора служба "
|
||||
"запускає м’яке перезапуск. Якщо ввести значення, відмінне від нуля - викличе "
|
||||
"відкладене жорсткий перезапуск, якщо м’який буде невдалим. Введіть кількість "
|
||||
"секунд, протягом яких необхідно чекати, поки програмне перезавантаження не "
|
||||
"завершиться, або використовуйте 0, щоб вимкнути затримку примусового "
|
||||
"перезавантаження."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
"Застосовується до режимів Ping-перезавантаження та Перезапуску інтерфейсу </"
|
||||
"i> <br /> Якщо використовується ModemManager, ви можете попросити Watchcat "
|
||||
"перезапустити інтерфейс ModemManger, вказавши його назву."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr "Великий: 248 байт"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "Інтервал перевірки"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr "Затримка примусового перезавантаження"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "Загальні налаштування"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr "Надати доступ LuCI до застосунку watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
"Тут ви можете налаштувати декілька перевірок і дій, які потрібно виконати на "
|
||||
"випадок, якщо хост стане недоступним. Натисніть кнопку <b>Додати</b> знизу, "
|
||||
"щоб налаштувати більш ніж одну дію."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr "Хост для перевірки"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
"Як часто виконувати ping до хоста, визначеному вище. <br /><br />Одиницями "
|
||||
"за промовчанням є секунди без суфікса, але ви можете використовувати суфікс "
|
||||
"<b>m</b> для хвилин, <b>h</b> для годин або <b>d </b> для днів. <br /><br /> "
|
||||
"Приклади:<ul><li>10 секунд буде: <b>10</b> або <b>10 секунд</b></li><li>5 "
|
||||
"хвилин буде: <b>5 хв</b></li><li>1 година буде: <b>1 год</b></li><li>1 "
|
||||
"тиждень: <b>7 дн</b></ li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr "Величезний: 1492 байта"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
"Якщо ви користуєтесь ModemManager, то перед перезапуском інтерфейсу "
|
||||
"налаштуйте модем так, щоб він міг використовувати будь-який діапазон."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "Інтерфейс"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr "Інтерфейс для моніторингу та/або перезапуску"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
msgid "Jumbo: 9000 bytes"
|
||||
msgstr "Гігантський: 9000 байт"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22
|
||||
msgid "Mode"
|
||||
msgstr "Режим"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr "Назва інтерфейса ModemManager-а"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr "Період"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr "Періодичне перезавантаження"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr "Розмір Ping-пакета"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
msgid "Ping Reboot"
|
||||
msgstr "Ping-перезавантаження"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23
|
||||
msgid ""
|
||||
"Ping Reboot: Reboot this device if a ping to a specified host fails for a "
|
||||
"specified duration of time. <br /> Periodic Reboot: Reboot this device after "
|
||||
"a specified interval of time. <br /> Restart Interface: Restart a network "
|
||||
"interface if a ping to a specified host fails for a specified duration of "
|
||||
"time. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr "Перезапустити інтерфейс"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr "Маленький: 1 байт"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
msgid "Standard: 56 bytes"
|
||||
msgstr "Стандартний: 56 байт"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
msgid "These rules will govern how this device reacts to network events."
|
||||
msgstr ""
|
||||
"Ці правила регулюватимуть те, як цей пристрій реагуватиме на події мережі."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr "Розблокувати діапазони модема"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr "Watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr "Windows: 32 байти"
|
@ -1,241 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2023-06-20 13:51+0000\n"
|
||||
"Last-Translator: Quy <haonguyen93056@gmail.com>\n"
|
||||
"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationswatchcat/vi/>\n"
|
||||
"Language: vi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.18.1\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
"<i>Áp dụng cho các chế độ Khởi động lại bằng Ping, Khởi động lại giao diện "
|
||||
"và Chạy tập lệnh</i> <br /> Chỉ định giao diện để theo dõi và phản ứng nếu "
|
||||
"ping qua nó không thành công."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr "Address family for pinging the host"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"value here will trigger a delayed hard reboot if the soft reboot were to "
|
||||
"fail. Enter the number of seconds to wait for the soft reboot to fail or use "
|
||||
"0 to disable the forced reboot delay."
|
||||
msgstr ""
|
||||
"Áp dụng cho chế độ Khởi động lại Ping và Khởi động lại định kỳ</i> <br />Khi "
|
||||
"khởi động lại bộ định tuyến, dịch vụ sẽ kích hoạt khởi động lại mềm. Nhập "
|
||||
"một giá trị khác không ở đây sẽ kích hoạt khởi động lại cứng bị trì hoãn nếu "
|
||||
"khởi động lại mềm không thành công. Nhập số giây để chờ khởi động lại mềm "
|
||||
"không thành công hoặc sử dụng 0 để vô hiệu hóa độ trễ khởi động lại bắt buộc."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
"Áp dụng cho chế độ Khởi động lại Ping và Khởi động lại giao diện</i> <br /"
|
||||
">Nếu sử dụng ModemManager, bạn có thể yêu cầu Watchcat khởi động lại giao "
|
||||
"diện ModemManger của mình bằng cách chỉ định tên của nó."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr "Big: 248 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "Kiểm tra khoảng thời gian"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr "Force Reboot Delay"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "Các cài đặt chung"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr "Cấp quyền truy cập vào ứng dụng LuCI watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
"Tại đây, bạn có thể thiết lập một số kiểm tra và hành động cần thực hiện "
|
||||
"trong trường hợp máy chủ không thể truy cập được. Nhấp vào nút <b>Thêm</b> ở "
|
||||
"dưới cùng để thiết lập nhiều hành động."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr "Máy chủ để kiểm tra"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
"Tần suất ping máy chủ được chỉ định ở trên. <br /><br />Đơn vị mặc định là "
|
||||
"giây, không có hậu tố, nhưng bạn có thể sử dụng hậu tố <b>m</b> cho phút, "
|
||||
"<b>h</b> cho giờ hoặc <b>d </b> trong nhiều ngày. <br /><br /> Ví dụ:"
|
||||
"<ul><li>10 giây sẽ là: <b>10</b> hoặc <b>10 giây</b></li><li>5 phút sẽ là: "
|
||||
"<b>5 phút</b></li><li>1 giờ sẽ là: <b>1h</b></li><li>1 tuần sẽ là: <b>7 "
|
||||
"ngày</b></ li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr "Huge: 1492 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr "Địa chỉ IP hoặc tên máy chủ để ping."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
"Nếu sử dụng ModemManager, thì trước khi khởi động lại giao diện, hãy đặt "
|
||||
"modem được phép sử dụng bất kỳ băng tần nào."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
"Trong chế độ Khởi động lại định kỳ, nó xác định tần suất khởi động lại. <br /"
|
||||
">Trong chế độ Khởi động lại Ping, nó xác định khoảng thời gian dài nhất mà "
|
||||
"Máy chủ không có phản hồi để kiểm tra trước khi thực hiện khởi động lại. "
|
||||
"<br />Trong chế độ Khởi động lại mạng hoặc Chạy tập lệnh, nó xác định khoảng "
|
||||
"thời gian dài nhất mà Máy chủ không phản hồi để Kiểm tra trước khi giao diện "
|
||||
"được khởi động lại hoặc tập lệnh được chạy. <br /><br />Đơn vị mặc định là "
|
||||
"giây, không có hậu tố, nhưng bạn có thể sử dụng hậu tố <b>m</b> cho phút, "
|
||||
"<b>h</b> cho giờ hoặc <b>d </b> trong nhiều ngày. <br /><br />Ví dụ:"
|
||||
"<ul><li>10 giây sẽ là: <b>10</b> hoặc <b>10 giây</b></li><li>5 phút sẽ là: "
|
||||
"<b>5 phút</b></li><li> 1 giờ sẽ là: <b>1h</b></li><li>1 tuần sẽ là: <b>7 "
|
||||
"ngày</b></ li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "Giao diện"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr "Giao diện để theo dõi và/hoặc khởi động lại"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
msgid "Jumbo: 9000 bytes"
|
||||
msgstr "Jumbo: 9000 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22
|
||||
msgid "Mode"
|
||||
msgstr "Chế độ"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr "Tên giao diện ModemManager"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr "Giai đoạn"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr "Khởi động lại định kỳ"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr "Kích thước gói Ping"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
msgid "Ping Reboot"
|
||||
msgstr "Khởi động lại Ping"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23
|
||||
msgid ""
|
||||
"Ping Reboot: Reboot this device if a ping to a specified host fails for a "
|
||||
"specified duration of time. <br /> Periodic Reboot: Reboot this device after "
|
||||
"a specified interval of time. <br /> Restart Interface: Restart a network "
|
||||
"interface if a ping to a specified host fails for a specified duration of "
|
||||
"time. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
"Khởi động lại Ping: Khởi động lại thiết bị này nếu ping đến một máy chủ được "
|
||||
"chỉ định không thành công trong một khoảng thời gian nhất định. <br />Khởi "
|
||||
"động lại định kỳ: Khởi động lại thiết bị này sau một khoảng thời gian nhất "
|
||||
"định. <br />Khởi động lại giao diện: Khởi động lại giao diện mạng nếu ping "
|
||||
"đến một máy chủ cụ thể không thành công trong một khoảng thời gian cụ thể. "
|
||||
"<br />Chạy tập lệnh: Chạy tập lệnh nếu lệnh ping đến một máy chủ cụ thể "
|
||||
"không thành công trong một khoảng thời gian cụ thể. <br />"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr "Khởi động lại giao thức"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr "Chạy Script"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr "Đoạn mã để chạy"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
"Tập lệnh chạy khi máy chủ không phản hồi trong khoảng thời gian đã chỉ định. "
|
||||
"Tập lệnh được chuyển tên giao diện là $1"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr "Small: 1 byte"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
msgid "Standard: 56 bytes"
|
||||
msgstr "Standard: 56 bytes"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
msgid "These rules will govern how this device reacts to network events."
|
||||
msgstr ""
|
||||
"Các quy tắc này sẽ chi phối cách thiết bị này phản ứng với các sự kiện mạng."
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr "Mở khóa băng tần modem"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr "Watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr "Windows: 32 bytes"
|
@ -1,228 +0,0 @@
|
||||
#
|
||||
# Yangfl <mmyangfl@gmail.com>, 2018.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2022-12-08 06:15+0000\n"
|
||||
"Last-Translator: MkQtS <onewordwrong@aliyun.com>\n"
|
||||
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
|
||||
"openwrt/luciapplicationswatchcat/zh_Hans/>\n"
|
||||
"Language: zh_Hans\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.15-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
"<i>应用于 Ping重启、重启接口 和 执行脚本 模式</i> <br />指定要监视的接口并在 "
|
||||
"ping 失败时做出反应。"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr "Ping 主机的地址簇"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"value here will trigger a delayed hard reboot if the soft reboot were to "
|
||||
"fail. Enter the number of seconds to wait for the soft reboot to fail or use "
|
||||
"0 to disable the forced reboot delay."
|
||||
msgstr ""
|
||||
"应用于 Ping 重启 和 定时重启 模式</i> <br />当重新启动路由器时,该服务将触发"
|
||||
"软重启。如果软重启失败,在这里输入非零值将触发延迟的硬重启。输入等待软重启失"
|
||||
"败的秒数或使用 0 来禁用强制重启延迟。"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
"应用于 Ping 重启 和 重启接口 模式</i> <br />如果使用 ModemManager,你可以通过"
|
||||
"指定名称让 Watchcat 重新启动你的 ModemManager 接口。"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr "大:248 字节"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "检查间隔"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr "强制重启延迟"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "常规设置"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr "授予访问 LuCI 应用 watchcat 的权限"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
"你可以在此处设置数个检查以及在特定主机变得不可访问时要采取的操作。点击底部的"
|
||||
"<b>添加</b>按钮可以设置多条规则。"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr "要检查的主机"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
"多长时间 ping 一次上面指定的主机。<br /><br />默认单位是秒,不带后缀,但你可"
|
||||
"以使用后缀<b>m</b>代表分钟, <b>h</b>代表小时或<b>d</b>代表天数。<br /><br />"
|
||||
"示例:<ul><li>10秒是:<b>10</b> 或 <b>10s</b></li><li>5 分钟是:<b>5m</b></"
|
||||
"li><li>1 小时是:<b>1h</b></li><li>1 周是:<b>7d</b></li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr "巨大:1492 字节"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr "要 ping 的 IP 地址或主机名。"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
"如果使用 ModemManager,则在重新启动接口之前,将调制解调器设置为允许使用任何频"
|
||||
"段。"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
"对于 定时重启 模式,它定义了重启的频率。<br />对于 Ping 重启 模式,它定义了在"
|
||||
"重启前未收到来自要检查的主机的回复的最长时间。<br />对于 重启接口 或 执行脚"
|
||||
"本 模式,它定义了在重启接口或执行脚本前未收到要检查的主机的回复的最长时间。"
|
||||
"<br /><br />默认单位是秒,不带后缀,但你可以使用后缀 <b>m</b> 代表分钟, "
|
||||
"<b>h</b> 代表小时或 <b>d</b> 代表天。<br /><br />示例:<ul><li>10秒是:"
|
||||
"<b>10</b> 或 <b>10s</b></li><li>5 分钟是:<b>5m</b></li><li>1 小时是:<b>1h</"
|
||||
"b></li><li>1 周是:<b>7d</b></li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "接口"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr "要监视和/或重启的接口"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
msgid "Jumbo: 9000 bytes"
|
||||
msgstr "巨无霸:9000 字节"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22
|
||||
msgid "Mode"
|
||||
msgstr "模式"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr "ModemManager 接口的名称"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr "周期"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr "定时重启"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr "Ping 包大小"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
msgid "Ping Reboot"
|
||||
msgstr "Ping 重启"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23
|
||||
msgid ""
|
||||
"Ping Reboot: Reboot this device if a ping to a specified host fails for a "
|
||||
"specified duration of time. <br /> Periodic Reboot: Reboot this device after "
|
||||
"a specified interval of time. <br /> Restart Interface: Restart a network "
|
||||
"interface if a ping to a specified host fails for a specified duration of "
|
||||
"time. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
"Ping 重启:如果在指定的时间内,ping 指定主机始终失败,则重新启动本设备。<br /"
|
||||
">定时重启:在指定的时间间隔后重新启动本设备。<br />重启接口:如果在指定的时间"
|
||||
"内,ping 指定主机始终失败,则重新启动特定网络接口。<br />执行脚本:如果在指定"
|
||||
"的时间内,ping 指定主机始终失败,则执行特定脚本。<br />"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr "重启接口"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr "执行脚本"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr "要执行的脚本"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
"当特定主机在指定的时间内未回复时要执行的脚本。脚本将接口名称作为 $1 传递"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr "小:1 字节"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
msgid "Standard: 56 bytes"
|
||||
msgstr "标准:56 字节"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
msgid "These rules will govern how this device reacts to network events."
|
||||
msgstr "这些规则将控制此设备如何对网络事件做出反应。"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr "解锁调制解调器频段"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr "Watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr "Windows:32 字节"
|
@ -1,227 +0,0 @@
|
||||
#
|
||||
# Yangfl <mmyangfl@gmail.com>, 2018.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2024-01-05 04:02+0000\n"
|
||||
"Last-Translator: Yuan Law <traverslombard@outlook.com>\n"
|
||||
"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/"
|
||||
"openwrt/luciapplicationswatchcat/zh_Hant/>\n"
|
||||
"Language: zh_Hant\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.4-dev\n"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:104
|
||||
msgid ""
|
||||
"<i>Applies to Ping Reboot, Restart Interface, and Run Script modes</i> <br /"
|
||||
"> Specify the interface to monitor and react if a ping over it fails."
|
||||
msgstr ""
|
||||
"<i>應用於 Ping重新啟動、重新啟動介面 和 執行指令碼 模式</i> <br />指定要監視"
|
||||
"的介面並在 ping 失敗時做出反應。"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:60
|
||||
msgid "Address family for pinging the host"
|
||||
msgstr "Ping 主機的位址家族"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:94
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Periodic Reboot modes</i> <br /> When rebooting "
|
||||
"the router, the service will trigger a soft reboot. Entering a non-zero "
|
||||
"value here will trigger a delayed hard reboot if the soft reboot were to "
|
||||
"fail. Enter the number of seconds to wait for the soft reboot to fail or use "
|
||||
"0 to disable the forced reboot delay."
|
||||
msgstr ""
|
||||
"應用於 Ping 重新啟動 和 定時重新啟動 模式</i> <br />當重新啟動路由器時,該服"
|
||||
"務將觸發軟重新啟動。如果軟重新啟動失敗,在這裡輸入非零值將觸發延遲的硬重新啟"
|
||||
"動。輸入等待軟重新啟動失敗的秒數或使用 0 來停用強制重新啟動延遲。"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:111
|
||||
msgid ""
|
||||
"Applies to Ping Reboot and Restart Interface modes</i> <br /> If using "
|
||||
"ModemManager, you can have Watchcat restart your ModemManger interface by "
|
||||
"specifying its name."
|
||||
msgstr ""
|
||||
"應用於 Ping Reboot 和 Restart 介面模式</i> <br />如果使用 ModemManager,您可"
|
||||
"以透過指定名稱讓 Watchcat 重新啟動您的 ModemManager 介面。"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:84
|
||||
msgid "Big: 248 bytes"
|
||||
msgstr "大:248 位元組"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:70
|
||||
msgid "Check Interval"
|
||||
msgstr "檢查間隔時間"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:93
|
||||
msgid "Force Reboot Delay"
|
||||
msgstr "強制重新啟動延遲"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:19
|
||||
msgid "General Settings"
|
||||
msgstr "一般設定"
|
||||
|
||||
#: applications/luci-app-watchcat/root/usr/share/rpcd/acl.d/luci-app-watchcat.json:3
|
||||
msgid "Grant access to LuCI app watchcat"
|
||||
msgstr "授予對 LuCI 應用 watchcat 的存取權限"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:12
|
||||
msgid ""
|
||||
"Here you can set up several checks and actions to take in the event that a "
|
||||
"host becomes unreachable. Click the <b>Add</b> button at the bottom to set "
|
||||
"up more than one action."
|
||||
msgstr ""
|
||||
"您可以在此處設定幾個在主機變得不可存取時採取的檢查和操作。按下底部的<b>加入</"
|
||||
"b>按鈕來設定一個以上的操作。"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "Host To Check"
|
||||
msgstr "要檢查的主機"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:71
|
||||
msgid ""
|
||||
"How often to ping the host specified above. <br /><br />The default unit is "
|
||||
"seconds, without a suffix, but you can use the suffix <b>m</b> for minutes, "
|
||||
"<b>h</b> for hours or <b>d</b> for days. <br /><br /> Examples:<ul><li>10 "
|
||||
"seconds would be: <b>10</b> or <b>10s</b></li><li>5 minutes would be: <b>5m</"
|
||||
"b></li><li>1 hour would be: <b>1h</b></li><li>1 week would be: <b>7d</b></"
|
||||
"li><ul>"
|
||||
msgstr ""
|
||||
"多長時間 ping 一次上面指定的主機。<br /><br />預設單位是秒,不帶尾碼,但您可"
|
||||
"以使用尾碼<b>m</b> 代表分鐘, <b>h</b> 代表小時或 <b>d</b> 代表天數。<br /"
|
||||
"><br />範例:<ul><li>10 秒是:<b>10</b> 或<b>10s</b></li><li>5 分鐘是:"
|
||||
"<b>5m</b></li><li>1 小時是:<b>1h</b></li><li>1 週是:<b>7d</b></li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:85
|
||||
msgid "Huge: 1492 bytes"
|
||||
msgstr "巨大:1492 位元組"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:52
|
||||
msgid "IP address or hostname to ping."
|
||||
msgstr "要 ping 的 IP 位址或主機名稱。"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:118
|
||||
msgid ""
|
||||
"If using ModemManager, then before restarting the interface, set the modem "
|
||||
"to be allowed to use any band."
|
||||
msgstr ""
|
||||
"如果使用 ModemManager,則在重新啟動介面之前,將數據機設定為允許使用任何頻段。"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:41
|
||||
msgid ""
|
||||
"In Periodic Reboot mode, it defines how often to reboot. <br /> In Ping "
|
||||
"Reboot mode, it defines the longest period of time without a reply from the "
|
||||
"Host To Check before a reboot is engaged. <br /> In Network Restart or Run "
|
||||
"Script mode, it defines the longest period of time without a reply from the "
|
||||
"Host to Check before the interface is restarted or the script is run. <br /"
|
||||
"><br />The default unit is seconds, without a suffix, but you can use the "
|
||||
"suffix <b>m</b> for minutes, <b>h</b> for hours or <b>d</b> for days. <br /"
|
||||
"><br />Examples:<ul><li>10 seconds would be: <b>10</b> or <b>10s</b></"
|
||||
"li><li>5 minutes would be: <b>5m</b></li><li> 1 hour would be: <b>1h</b></"
|
||||
"li><li>1 week would be: <b>7d</b></li><ul>"
|
||||
msgstr ""
|
||||
"對於 定時重新啟動 模式,它定義了重新啟動的頻率。<br />對於 Ping 重新啟動 模"
|
||||
"式,它定義了在重新啟動前未收到來自要檢查的主機的回覆的最長時間。<br />對於 重"
|
||||
"新啟動介面 或 執行指令碼 模式,它定義了在重新啟動介面或執行指令碼前未收到要檢"
|
||||
"查的主機的回覆的最長時間。<br /><br />預設單位是秒,不帶尾碼,但您可以使用尾"
|
||||
"碼 <b>m</b> 代表分鐘, <b>h</b> 代表小時或 <b>d</b> 代表天。<br /><br />範"
|
||||
"例:<ul><li>10秒是:<b>10</b> 或 <b>10s</b></li><li>5 分鐘是:<b>5m</b></"
|
||||
"li><li>1 小時是:<b>1h</b></li><li>1 週是:<b>7d</b></li><ul>"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:102
|
||||
msgid "Interface"
|
||||
msgstr "介面"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:103
|
||||
msgid "Interface to monitor and/or restart"
|
||||
msgstr "要監視和/或重新啟動的介面"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:86
|
||||
msgid "Jumbo: 9000 bytes"
|
||||
msgstr "Jumbo:9000 位元組"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:22
|
||||
msgid "Mode"
|
||||
msgstr "模式"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:110
|
||||
msgid "Name of ModemManager Interface"
|
||||
msgstr "ModemManager 介面的名稱"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:40
|
||||
msgid "Period"
|
||||
msgstr "週期"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:28
|
||||
msgid "Periodic Reboot"
|
||||
msgstr "定期重新啟動"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:80
|
||||
msgid "Ping Packet Size"
|
||||
msgstr "Ping 封包大小"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:27
|
||||
msgid "Ping Reboot"
|
||||
msgstr "Ping 重新啟動"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:23
|
||||
msgid ""
|
||||
"Ping Reboot: Reboot this device if a ping to a specified host fails for a "
|
||||
"specified duration of time. <br /> Periodic Reboot: Reboot this device after "
|
||||
"a specified interval of time. <br /> Restart Interface: Restart a network "
|
||||
"interface if a ping to a specified host fails for a specified duration of "
|
||||
"time. <br /> Run Script: Run a script if a ping to a specified host fails "
|
||||
"for a specified duration of time. <br />"
|
||||
msgstr ""
|
||||
"Ping 重新啟動:如果在指定的時間內,ping 指定主機始終失敗,則重新啟動本裝置。"
|
||||
"<br />定時重新啟動:在指定的時間間隔後重新啟動本裝置。<br />重新啟動介面:如"
|
||||
"果在指定的時間內,ping 指定主機始終失敗,則重新啟動特定網路介面。<br />執行指"
|
||||
"令碼:如果在指定的時間內,ping 指定主機始終失敗,則執行特定指令碼。<br />"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:29
|
||||
msgid "Restart Interface"
|
||||
msgstr "重新啟動介面"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:30
|
||||
msgid "Run Script"
|
||||
msgstr "執行指令碼"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:33
|
||||
msgid "Script to run"
|
||||
msgstr "要執行的指令碼"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:34
|
||||
msgid ""
|
||||
"Script to run when the host has not responded for the specified duration of "
|
||||
"time. The script is passed the interface name as $1"
|
||||
msgstr ""
|
||||
"當特定主機在指定的時間內未回覆時要執行的指令碼。指令碼將介面名稱作為 $1 傳遞"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:81
|
||||
msgid "Small: 1 byte"
|
||||
msgstr "小:1 位元組"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:83
|
||||
msgid "Standard: 56 bytes"
|
||||
msgstr "標準:56 位元組"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
msgid "These rules will govern how this device reacts to network events."
|
||||
msgstr "這些規則將控制此裝置如何對網路事件做出反應。"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:117
|
||||
msgid "Unlock Modem Bands"
|
||||
msgstr "解鎖數據機頻段"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:11
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:15
|
||||
#: applications/luci-app-watchcat/root/usr/share/luci/menu.d/luci-app-watchcat.json:3
|
||||
msgid "Watchcat"
|
||||
msgstr "Watchcat"
|
||||
|
||||
#: applications/luci-app-watchcat/htdocs/luci-static/resources/view/watchcat.js:82
|
||||
msgid "Windows: 32 bytes"
|
||||
msgstr "Windows:32 位元組"
|
@ -1,10 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
uci -q batch <<-EOF >/dev/null
|
||||
delete ucitrack.@watchcat[-1]
|
||||
add ucitrack watchcat
|
||||
set ucitrack.@watchcat[-1].init=watchcat
|
||||
commit ucitrack
|
||||
EOF
|
||||
|
||||
exit 0
|
@ -1,13 +0,0 @@
|
||||
{
|
||||
"admin/services/watchcat": {
|
||||
"title": "Watchcat",
|
||||
"order": 90,
|
||||
"action": {
|
||||
"type": "view",
|
||||
"path": "watchcat"
|
||||
},
|
||||
"depends": {
|
||||
"acl": [ "luci-app-watchcat" ]
|
||||
}
|
||||
}
|
||||
}
|
@ -1,14 +0,0 @@
|
||||
{
|
||||
"luci-app-watchcat": {
|
||||
"description": "Grant access to LuCI app watchcat",
|
||||
"read": {
|
||||
"file": {
|
||||
"/usr/bin/watchcat.sh": [ "exec" ]
|
||||
},
|
||||
"uci": [ "watchcat" ]
|
||||
},
|
||||
"write": {
|
||||
"uci": [ "watchcat" ]
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user